/* HERO SECTION */
.hero {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
    padding: 40px 0 36px;
}

/* Bu blok tüm section'larda ortak kullanılır (bkz. hero.php docblock) */
.floating-hearts {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-heart {
    position: absolute;
}

@media (prefers-reduced-motion: no-preference) {
    .floating-heart {
        animation-name: floating-heart-move;
        animation-timing-function: ease-in-out;
        animation-iteration-count: infinite;
    }
}

@keyframes floating-heart-move {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(8deg); }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-blob-1 {
    top: -6rem;
    right: -6rem;
    width: 18rem;
    height: 18rem;
    background: var(--primary-400);
    opacity: .1;
}

.hero-blob-2 {
    bottom: -6rem;
    left: -6rem;
    width: 18rem;
    height: 18rem;
    background: var(--accent-400);
    opacity: .18;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: var(--body);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 68, 124, .06);
    border: 1px solid rgba(12, 68, 124, .18);
    color: var(--primary-700);
    font-family: var(--font-heading);
    font-size: .68rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    transform-origin: center;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-pill {
        animation: hero-heartbeat 3.6s cubic-bezier(.45, 0, .55, 1) infinite;
    }
}

.hero-pill svg {
    width: 14px;
    height: 14px;
    color: var(--primary-600);
    flex-shrink: 0;
}

@keyframes hero-heartbeat {
    0%   { transform: scale(1); }
    20%  { transform: scale(1.1); }
    40%  { transform: scale(1); }
    60%  { transform: scale(1.1); }
    80%  { transform: scale(1); }
    100% { transform: scale(1); }
}

.hero-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.hero-title-accent {
    order: 1;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    margin-bottom: 10px;
}

.hero-title-main {
    order: 2;
    font-family: var(--font-logo);
    font-size: clamp(2.1rem, 7vw, 3.75rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: .98;
    margin-bottom: 8px;
}

.hero-title-sub {
    order: 3;
    font-family: var(--font-logo);
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.hero-description {
    font-size: 1rem;
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-link {
    color: var(--primary-600);
    text-decoration: underline;
    text-decoration-color: rgba(12, 68, 124, .35);
    text-underline-offset: 3px;
    font-weight: 600;
    transition: color .15s ease;
}

.hero-link:hover,
.hero-link:focus {
    color: var(--primary-700);
    text-decoration-color: rgba(12, 68, 124, .5);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 12px;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px 8px 8px;
    border-radius: 999px;
    font-family: inherit;
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
    width: 100%;
    box-sizing: border-box;
}

.btn-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.btn-hero-icon svg {
    width: 20px;
    height: 20px;
}

.btn-hero-label {
    font-family: var(--font-logo);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
}

.btn-hero-call {
    background: var(--primary-600);
    border-color: var(--primary-600);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-hero-call .btn-hero-icon {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.btn-hero-call:hover,
.btn-hero-call:focus {
    background: var(--primary-700);
    border-color: var(--primary-700);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    outline: none;
}

.btn-hero-whatsapp {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, .3);
}

.btn-hero-whatsapp .btn-hero-icon {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.btn-hero-whatsapp:hover,
.btn-hero-whatsapp:focus {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, .38);
    outline: none;
}

.btn-hero:active {
    transform: translateY(0);
}

.hero-cta-note {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 32px;
    padding-left: 8px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-logo);
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 800;
    color: var(--primary-700);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: .65rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    line-height: 1.3;
}

.hero-right {
    position: relative;
    width: 100%;
    margin-top: 24px;
}

.hero-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-mosaic-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-mosaic-item {
    position: relative;
    border-radius: 14px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-mosaic-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 46, 87, .75), rgba(8, 46, 87, 0) 55%);
}

.hero-mosaic-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-mosaic-col--tall .hero-mosaic-item {
    height: 100%;
    min-height: 260px;
}

.hero-mosaic-col--stack .hero-mosaic-item {
    height: 125px;
}

.hero-mosaic-label {
    position: relative;
    z-index: 1;
    padding: .75rem;
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: #fff;
}

.hero-floating-card {
    position: absolute;
    bottom: -14px;
    left: -10px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.floating-card-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.floating-card-icon svg {
    width: 18px;
    height: 18px;
}

.floating-card-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.floating-card-text strong {
    font-family: var(--font-logo);
    font-size: .875rem;
    color: var(--ink);
    font-weight: 600;
}

.floating-card-text span {
    font-size: .7rem;
    color: var(--muted);
    font-weight: 500;
}

.hero-floating-rating {
    position: absolute;
    top: -18px;
    right: 10px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 9px 12px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
    text-align: center;
    min-width: 90px;
}

.hero-floating-rating .rating-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
    margin-bottom: 4px;
}

.hero-floating-rating .rating-stars svg {
    width: 10px;
    height: 10px;
    color: #fbbf24;
}

.hero-floating-rating .rating-score {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.hero-floating-rating .rating-label {
    font-family: var(--font-heading);
    font-size: .56rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
}

/* HİZMETLERİMİZ */
.services {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--border-color);
    scroll-margin-top: 90px;
}

.services > .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    scroll-margin-top: 90px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-400);
}

.service-visual {
    height: 190px;
    overflow: hidden;
}

.service-visual-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-visual-navy {
    background: linear-gradient(160deg, var(--primary-500), var(--primary-700));
}

.service-visual-peach {
    background: linear-gradient(160deg, var(--accent-400), var(--accent-600));
}

.service-content {
    padding: 1.5rem 1.75rem 1.75rem;
}

.service-title {
    font-family: var(--font-logo);
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

.service-description {
    color: var(--body);
    font-size: .92rem;
    line-height: 1.65;
}

/* NEDEN BİZ? */
.why-us {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--bg-white);
    scroll-margin-top: 90px;
}

.why-us > .container {
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.why-us-item {
    position: relative;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}

.why-us-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-500), var(--accent-500));
    opacity: 0;
    transition: opacity .3s ease;
}

.why-us-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-400);
    transform: translateY(-4px);
}

.why-us-item:hover::before {
    opacity: 1;
}

.why-us-number {
    position: absolute;
    bottom: 10px;
    right: 18px;
    font-family: var(--font-logo);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(12, 68, 124, .12);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.why-us-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}

.why-us-icon svg {
    width: 26px;
    height: 26px;
}

.why-us-icon-navy {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    box-shadow: 0 4px 20px rgba(12, 68, 124, .35);
    color: #fff;
}

.why-us-icon-peach {
    background: linear-gradient(135deg, var(--accent-400), var(--accent-600));
    box-shadow: 0 4px 20px rgba(237, 166, 136, .3);
    color: var(--ink);
}

.why-us-item h3 {
    font-family: var(--font-logo);
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--ink);
    line-height: 1.4;
    position: relative;
}

.why-us-item p {
    font-size: .875rem;
    line-height: 1.7;
    color: var(--body);
    margin: 0;
    position: relative;
}

/* MÜŞTERİ YORUMLARI */
.testimonials {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--border-color);
    scroll-margin-top: 90px;
}

.testimonials > .container {
    position: relative;
    z-index: 1;
}

/* ---- Kayan şerit ----
   Aynı kart listesi PHP tarafında iki kez basılıyor; şerit %-50 kaydığında
   birinci set tam olarak ikincinin başladığı yere denk geliyor, bu da
   kesintisiz/sonsuz bir kayma hissi veriyor. Duraklatma prefers-reduced-motion
   ile ve hover'da (okumak isteyen kullanıcı için) devreye giriyor. */
.testimonials-marquee {
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 2.5rem;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.testimonials-track {
    display: flex;
    width: max-content;
    gap: 20px;
    padding: 4px 0 1rem;
}

@media (prefers-reduced-motion: no-preference) {
    .testimonials-track {
        animation: testimonials-scroll 55s linear infinite;
    }

    .testimonials-track:hover {
        animation-play-state: paused;
    }
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-marquee {
        overflow-x: auto;
    }
}

@keyframes testimonials-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.testimonial-card {
    flex-shrink: 0;
    width: 300px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .25s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .9rem;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.testimonial-avatar-navy {
    background: linear-gradient(160deg, var(--primary-500), var(--primary-700));
}

.testimonial-avatar-peach {
    background: linear-gradient(160deg, var(--accent-400), var(--accent-600));
    color: var(--ink);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.35;
}

.testimonial-meta strong {
    font-family: var(--font-logo);
    font-size: .92rem;
    color: var(--ink);
}

.testimonial-meta span {
    font-size: .74rem;
    color: var(--muted);
}

.testimonial-tag {
    flex-shrink: 0;
    background: rgba(12, 68, 124, .08);
    color: var(--primary-600);
    font-family: var(--font-heading);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: .2rem .55rem;
    border-radius: 999px;
    margin-left: auto;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: .75rem;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: .88rem;
    line-height: 1.65;
    color: var(--body);
}

/* SIKÇA SORULAN SORULAR */
.faq {
    /* Not: overflow:hidden BİLEREK yok - .faq-info masaüstünde position:sticky
       kullanıyor, section'da overflow:hidden olsaydı sticky bozulurdu. Kalpler
       zaten .floating-hearts kendi overflow:hidden'ıyla kendi kutusuna klipleniyor. */
    position: relative;
    padding: 4rem 0;
    background: var(--border-color);
    scroll-margin-top: 90px;
}

.faq > .container {
    position: relative;
    z-index: 1;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.faq-info .section-title {
    margin-top: .25rem;
}

.faq-desc {
    margin-top: .5rem;
}

.faq-trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.faq-trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.faq-trust-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent-600);
    flex-shrink: 0;
}

.faq-trust-item strong {
    display: block;
    font-family: var(--font-logo);
    font-size: .95rem;
    color: var(--ink);
}

.faq-trust-item span {
    display: block;
    font-size: .74rem;
    color: var(--muted);
}

.faq-contact-label {
    font-family: var(--font-logo);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .75rem;
}

.faq-contact-buttons {
    display: flex;
    gap: .75rem;
}

.faq-contact-buttons .btn {
    border-radius: 999px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: .25rem 1.5rem;
}

/* Not: section arka planı da var(--border-color) olduğu için kart beyaz -
   aksi halde faq-item'ların alt/üst çizgileri arka planla aynı renk olup
   kaybolurdu. */
.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.1rem 0;
    background: none;
    border: none;
    text-align: left;
}

.faq-q-num {
    flex-shrink: 0;
    font-family: var(--font-logo);
    font-weight: 800;
    font-size: .8rem;
    color: var(--primary-400);
}

.faq-q-text {
    flex: 1;
    font-family: var(--font-logo);
    font-weight: 600;
    font-size: .92rem;
    color: var(--ink);
}

.faq-chev {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--muted);
    transition: transform .3s ease, color .3s ease;
}

.faq-item.open .faq-q-text {
    color: var(--primary-600);
}

.faq-item.open .faq-chev {
    transform: rotate(180deg);
    color: var(--primary-600);
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-ans p {
    margin: 0;
    padding: 0 1.9rem 1.1rem 0;
    color: var(--body);
    font-size: .88rem;
    line-height: 1.7;
}

/* NASIL ÇALIŞIR? */
.how-to {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--bg-white);
    scroll-margin-top: 90px;
}

.how-to > .container {
    position: relative;
    z-index: 1;
}

.how-to-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    margin-bottom: 2.5rem;
}

.how-to-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 2.5rem 80px;
    position: relative;
}

.how-to-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-400), transparent);
}

.step-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(12, 68, 124, .35);
    flex-shrink: 0;
    z-index: 1;
}

.step-circle svg {
    width: 24px;
    height: 24px;
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-500);
    color: var(--ink);
    font-family: var(--font-logo);
    font-size: .62rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.step-title {
    font-family: var(--font-logo);
    font-size: 1.05rem;
    margin: 0 0 8px;
    line-height: 1.35;
    padding-top: 12px;
}

.step-description {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.7;
    margin: 0;
}


/* KAPANIŞ CTA */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--bg-white);
    scroll-margin-top: 90px;
}

.cta-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--border-color);
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
}

.cta-card-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-600);
    font-family: var(--font-heading);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta-card-eyebrow svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.cta-card-title {
    font-family: var(--font-logo);
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-card-desc {
    font-size: 1rem;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.cta-card-desc strong {
    color: var(--ink);
}

.cta-checklist {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.cta-checklist li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .92rem;
    color: var(--ink);
    font-weight: 500;
}

.cta-checklist svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    padding: 3px;
    border-radius: 50%;
    background: var(--accent-400);
    color: var(--ink);
}

.cta-contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
}

.cta-contact-label {
    display: block;
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1rem;
}

.cta-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-sizing: border-box;
}

.cta-contact-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: #fff;
}

.cta-contact-btn-icon svg {
    width: 18px;
    height: 18px;
}

.cta-contact-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
    text-align: left;
}

.cta-contact-btn-call {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
}

.cta-contact-btn-call .cta-contact-btn-text em {
    font-style: normal;
    font-size: .74rem;
    color: rgba(255, 255, 255, .75);
}

.cta-contact-btn-call .cta-contact-btn-text strong {
    font-family: var(--font-logo);
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.cta-contact-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: .85rem 0;
    color: var(--muted);
    font-size: .78rem;
}

.cta-contact-divider::before,
.cta-contact-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.cta-contact-btn-whatsapp {
    background: var(--whatsapp);
}

.cta-contact-btn-whatsapp .cta-contact-btn-text {
    font-family: var(--font-logo);
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    justify-content: center;
}

.cta-contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.cta-contact-stats strong {
    display: block;
    font-family: var(--font-logo);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-700);
}

.cta-contact-stats span {
    display: block;
    font-size: .66rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-top: 2px;
}
