*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --blue: #2563EB;
    --blue-lt: #3B82F6;
    --blue-dark: #1D4ED8;
    --blue-pale: #EFF6FF;
    --purple: #7C3AED;
    --purple-pale: #F5F3FF;
    --text: #0F172A;
    --muted: #64748B;
    --border: #E2E8F0;
    --bg: #FFFFFF;
    --bg2: #F8FAFC;
    --r: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
    --shadow: 0 4px 16px rgba(0, 0, 0, .08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    line-height: 1.6;
    background: #F1F5F9;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Manrope', sans-serif;
    line-height: 1.15;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================================
UTILITIES
============================================================ */
.page-wrapper {
    background: #fff;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 4px 32px rgba(0, 0, 0, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.06);
    border-radius: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 88px 0;
}

.tag-line {
    font-size: .82rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-heading {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--text);
}

.section-sub {
    font-size: clamp(13px, 1.5vw, 15px);
    color: var(--muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.blue {
    color: var(--blue);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    border: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, .3);
}

.btn-blue:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 18px rgba(37, 99, 235, .4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-white {
    background: #fff;
    color: var(--blue);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--blue-pale);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--blue);
    font-size: .85rem;
    font-weight: 600;
    transition: gap .2s;
}

.link-arrow:hover {
    gap: 8px;
}

.link-arrow::after {
    content: '→';
}

.ph {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDFB 100%);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: .75rem;
    font-weight: 600;
    text-align: center;
    border: 1.5px dashed #BFDBFE;
}

.ph span {
    padding: 10px;
    line-height: 1.6;
}

.hero {
    background: #fff;
}

.hero-cards-overlay {
    background: #fff;
}

.who {
    background: #F8FAFC;
}

.services {
    background: #fff;
}

.testimonials {
    background: #F8FAFC;
}

.contact {
    background: #fff;
}

/* ============================================================
NAVBAR
============================================================ */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
}

.logo-v {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: .93rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: .03em;
    transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #134FD2, #691EEA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
HERO
============================================================ */
.hero {
    padding: 64px 0 0;
    background: #fff;
    overflow: visible;
}

.hero-cards-overlay {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding-bottom: 72px;
    background: #fff;
}

.hero-scard {
    background: #fff;
    border: none;
    border-radius: 16px;
    padding: 20px 18px 36px 18px;
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    position: relative;
    min-height: auto;
    height: auto;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.08);
    transition: box-shadow .2s;
}

.hero-scard:hover {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 40px rgba(0, 0, 0, 0.12);
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 550px));
    gap: 14px;
    max-width: 1114px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 900px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .hero-cards-overlay {
        margin-top: 0;
    }
}

.hero {
    padding: 64px 0 72px;
    background: #fff;
    overflow: hidden;
}

.hero-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

.hero-left {
    padding-right: 0;
    padding-top: 16px;
}

.hero-left h1 {
    font-size: clamp(38px, 4.8vw, 58px);
    font-weight: 800;
    line-height: 1.06;
    color: #0F172A;
    margin-bottom: 22px;
    letter-spacing: -.03em;
}

.hero-left>p {
    font-size: .97rem;
    color: #64748B;
    line-height: 1.75;
    margin-bottom: 32px;
}

.scard-icon {
    grid-column: 1;
    grid-row: 1;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.scard-icon.blue {
    background: #DBEAFE;
}

.scard-icon.purple {
    background: #EDE9FE;
}

.scard-title {
    grid-column: 2;
    grid-row: 1;
    font-family: 'Manrope', sans-serif;
    font-size: .92rem;
    font-weight: 700;
    color: #2563EB;
    align-self: center;
}

.scard-title.purple {
    color: #7C3AED;
}

.scard-desc {
    grid-column: 2;
    grid-row: 2;
    font-size: .8rem;
    color: #64748B;
    line-height: 1.6;
}

.scard-arrow {
    position: absolute;
    bottom: 14px;
    right: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: #2563EB;
}

.scard-arrow.purple {
    color: #7C3AED;
}

.hero-right {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 80px);
    gap: 0;
}

.hero-tile-lavender {
    grid-column: 1 / 2;
    grid-row: 2 / 4;
    background: #DDE4FF;
    border-radius: 12px;
    margin: 6px;
}

.hero-tile-man {
    grid-column: 1 / 5;
    grid-row: 1 / 5;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px;
}

.hero-tile-man img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tile-blue {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    background: #C7D2FE;
    border-radius: 12px;
    margin: 6px;
}

.hero-tile-woman {
    grid-column: 1 / 2;
    grid-row: 3 / 5;
    border-radius: 12px;
    overflow: hidden;
    margin: 6px;
}

.hero-tile-woman img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tile-purple {
    grid-column: 3 / 5;
    grid-row: 3 / 5;
    background: #EDE9FE;
    border-radius: 12px;
    margin: 6px;
}

@media (max-width: 900px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-right {
        display: none;
    }
}

.hero-bg,
.hero-grid,
.hero-content {
    display: none !important;
}

/* ============================================================
WHO WE ARE
============================================================ */
.who-header {
    display: none;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.who-media {
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.who-badge {
    display: inline-block;
    background: #FBBF24;
    color: #1a1a1a;
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
}

.who-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.who-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.who-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
}

.who-stat-label {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
    .who-grid {
        grid-template-columns: 1fr;
    }

    .who-media {
        height: 280px;
    }

    .who-stats {
        gap: 20px;
    }
}

/* ============================================================
WHAT WE OFFER
============================================================ */
.offer {
    background: #fff;
}

.offer-header {
    text-align: center;
    margin-bottom: 52px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 353px);
    gap: 24px;
    justify-content: center;
}

.offer-card {
    width: 353px;
    height: 418px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #EEF2F7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 8px 32px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}

.offer-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10), 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.offer-card-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card-body {
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.offer-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.offer-card-title.blue {
    color: #2563EB;
}

.offer-card-title.purple {
    color: #7C3AED;
}

.offer-card-body p {
    font-size: .82rem;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid currentColor;
    width: fit-content;
    transition: background .2s, color .2s;
}

.offer-link.blue {
    color: #2563EB;
}

.offer-link.purple {
    color: #7C3AED;
}

.offer-link.blue:hover {
    background: #2563EB;
    color: #fff;
}

.offer-link.purple:hover {
    background: #7C3AED;
    color: #fff;
}

@media (max-width: 1100px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card {
        width: 100%;
        height: auto;
    }

    .offer-card-img {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
WHY ANANTLA
============================================================ */
.projects {
    background: #F8FAFC;
}

.mockups-showcase {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
    overflow: hidden;
}

.mockup-col {
    display: contents;
}

.mockup-col-left {
    padding-bottom: 40px;
}

.mockup-col-right {
    padding-bottom: 40px;
}

.mockup-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

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

.mockup-hand {
    flex-shrink: 0;
    filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.18));
}

.mockup-hand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.mockup-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
    padding-top: 40px;
    border-top: 1px solid #EEF2F7;
}

.mockup-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mf-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mf-icon.blue {
    background: #DBEAFE;
}

.mf-icon.purple {
    background: #EDE9FE;
}

.mockup-feature strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.mockup-feature p {
    font-size: .78rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .mockups-showcase {
        flex-direction: column;
        align-items: center;
    }

    .mockup-col-left,
    .mockup-col-right {
        flex-direction: row;
        padding-bottom: 0;
    }

    .mockup-hand {
        width: 280px !important;
        height: auto !important;
    }

    .mockup-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .mockup-features {
        grid-template-columns: 1fr;
    }

    .mockup-col-left,
    .mockup-col-right {
        display: none;
    }
}

/* ============================================================
CTA BANNER
============================================================ */
.contact {
    background: #fff;
}

.contact-header {
    text-align: center;
    margin-bottom: 52px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: center;
}

.contact-left {
    padding: 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(105, 30, 234, 0.05), rgba(19, 79, 210, 0.05));
    border: 1px solid #EEF2F7;
}

.contact-left h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-left p {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-items {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-items a,
.contact-items span {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #EEF2F7;
    font-size: 0.9rem;
    color: #334155;
    text-decoration: none;
    transition: all .2s;
}

.contact-items a:hover {
    border-color: #691EEA;
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.contact-right {
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: 32px;
    border-radius: 16px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #EEF2F7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    font-size: 14px;
    background: #fff;
    transition: all .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #691EEA;
    box-shadow: 0 0 0 3px rgba(105, 30, 234, 0.12);
}

.contact-items .icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, #691EEA, #134FD2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-items .icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.contact-items a:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: #691EEA;
}

.contact-items a:nth-child(1) .icon {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
}

.contact-items a:nth-child(2) .icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-items span .icon {
    background: linear-gradient(135deg, #691EEA, #134FD2);
}

.btn-primary {
    background: linear-gradient(135deg, #691EEA, #134FD2);
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(19, 79, 210, 0.35);
}

.contact-link.blue {
    color: #2563EB;
}

.contact-link.purple {
    color: #7C3AED;
}

.contact-link.blue:hover {
    background: #2563EB;
    color: #fff;
}

.contact-link.purple:hover {
    background: #7C3AED;
    color: #fff;
}

@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-card {
        width: 100%;
        height: auto;
    }

    .contact-card-img {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.cta-banner {
    background: linear-gradient(135deg, #134FD2 0%, #1a3fc0 50%, #691EEA 100%);
    border-radius: 20px;
    margin: 0 32px;
    padding: 60px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
    top: -100px;
    right: 120px;
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    bottom: -60px;
    right: -40px;
    pointer-events: none;
}

.cta-text h2 {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    max-width: 440px;
}

.cta-banner .btn-white {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    padding: 13px 28px;
    font-size: .9rem;
}

@media (max-width: 768px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
    }
  }
/* ============================================================
POLICY
=============================================================*/
.privacy-hero {
    background: linear-gradient(135deg, #134FD2 0%, #1a3fc0 50%, #691EEA 100%);
    padding: 72px 0 64px;
    text-align: center;
}

.privacy-hero h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.privacy-hero p {
    font-size: .95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.privacy-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 32px 96px;
}

.privacy-toc {
    background: #F8FAFC;
    border: 1px solid #EEF2F7;
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 52px;
}

.privacy-toc h3 {
    font-size: .88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748B;
    margin-bottom: 16px;
}

.privacy-toc ol {
    margin: 0;
    padding-left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

.privacy-toc ol li a {
    font-size: .85rem;
    color: #134FD2;
    text-decoration: none;
    font-weight: 500;
}

.privacy-toc ol li a:hover {
    text-decoration: underline;
}

.privacy-section {
    margin-bottom: 48px;
    scroll-margin-top: 80px;
}

.privacy-section h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EEF2F7;
}

.privacy-section p {
    font-size: .9rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 12px;
}

.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 12px;
}

.privacy-section ul li {
    font-size: .9rem;
    color: #475569;
    line-height: 1.85;
    margin-bottom: 6px;
}

.privacy-highlight {
    background: #EDE9FE;
    border-left: 4px solid #691EEA;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    margin: 20px 0;
    font-size: .88rem;
    color: #3730A3;
    line-height: 1.7;
}

.privacy-updated {
    display: inline-block;
    background: #DBEAFE;
    color: #1D4ED8;
    font-size: .78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 40px;
}

.privacy-contact-box {
    background: linear-gradient(135deg, #134FD2 0%, #691EEA 100%);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    margin-top: 64px;
}

.privacy-contact-box h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.privacy-contact-box p {
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.privacy-contact-box a {
    display: inline-block;
    background: #fff;
    color: #134FD2;
    font-size: .88rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity .2s;
}

.privacy-contact-box a:hover {
    opacity: .9;
}

@media (max-width: 640px) {
    .privacy-toc ol {
        grid-template-columns: 1fr;
    }

    .privacy-body {
        padding: 40px 20px 72px;
    }
}

/* ============================================================
FOOTER
============================================================ */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 56px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
    max-width: 220px;
}

.footer-brand address {
    font-style: normal;
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.9;
}

.footer-col h5 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li a {
    font-size: .83rem;
    color: var(--muted);
    transition: color .2s;
}

.footer-col li a:hover {
    color: var(--blue);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: background .2s, border-color .2s;
    cursor: pointer;
}

.social-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: .8rem;
    color: var(--muted);
    transition: color .2s;
}

.footer-legal a:hover {
    color: var(--blue);
}

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 960px) {

    .hero-grid,
    .who-grid {
        grid-template-columns: 1fr;
    }

    .offer-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 20px;
    }

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

    .nav-links {
        display: none;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        margin: 0 16px;
        padding: 40px 28px;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .offer-grid,
    .why-grid,
    .hero-services {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }
}

/* ============================================================
ANIMATIONS
============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-left {
    animation: fadeUp .65s ease both;
}

.hero-right {
    animation: fadeUp .65s ease .15s both;
}