/* ==========================================================================
   META DIGITAL DEVELOPERS - 2026 MODERN MARKETING AGENCY
   ========================================================================== */

:root {
    --blue-950: #0a1838;
    --blue-900: #102a6b;
    --blue-800: #1e3a8a;
    --blue-700: #1d4ed8;
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;
    --ink: #0b1020;
    --ink-2: #1a2244;
    --muted: #5b6680;
    --line: #e5e9f2;
    --bg: #ffffff;
    --bg-soft: #f6f8fd;
    --grad-primary: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
    --grad-deep: linear-gradient(135deg, #0a1838 0%, #1e3a8a 60%, #2563eb 100%);
    --grad-bright: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    --shadow-sm: 0 2px 8px rgba(15, 38, 90, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 38, 90, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 38, 90, 0.14);
    --shadow-glow: 0 20px 60px rgba(37, 99, 235, 0.35);
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --container: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.2rem; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ============== NAVIGATION ============== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(15, 38, 90, 0.06);
}
.nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.logo-img {
    height: 56px;
    width: auto;
    display: block;
    max-width: 260px;
    object-fit: contain;
}
.nav.scrolled .logo-img { height: 48px; }
.footer .logo-img {
    height: 60px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 10px;
}
.page-hero ~ * .logo-img,
.page-hero .logo-img { /* darker hero backgrounds — keep transparent */ }
.logo-mark {
    width: 40px; height: 40px;
    border-radius: 11px;
    background: var(--grad-primary);
    display: grid; place-items: center;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
}
.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(255,255,255,0.2));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text span:first-child { font-size: 0.95rem; font-weight: 800; }
.logo-text span:last-child { font-size: 0.65rem; color: var(--blue-600); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links li { position: relative; }
.nav-links a {
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.94rem;
    color: #243056;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav-links a:hover { background: var(--blue-50); color: var(--blue-700); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 280px;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
}
.nav-links li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
}
.dropdown-menu a:hover { background: var(--blue-50); }
.dropdown-menu a strong { display: block; color: var(--ink); margin-bottom: 2px; }
.dropdown-menu a span { font-size: 0.78rem; color: var(--muted); }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 99, 235, 0.42); }
.btn-secondary {
    background: #fff;
    color: var(--blue-700);
    border: 1.5px solid var(--blue-100);
}
.btn-secondary:hover { background: var(--blue-50); border-color: var(--blue-300); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 12px 18px;
}
.btn-ghost:hover { background: var(--blue-50); }
.btn-light {
    background: rgba(255,255,255,0.95);
    color: var(--blue-700);
}
.btn-light:hover { background: #fff; transform: translateY(-2px); }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.menu-toggle { display: none; padding: 10px; }
.menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); margin: 5px 0; border-radius: 2px;
    transition: all 0.25s ease;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    background: radial-gradient(1200px 600px at 80% -10%, rgba(96, 165, 250, 0.18), transparent 60%),
                radial-gradient(900px 500px at 0% 30%, rgba(37, 99, 235, 0.10), transparent 60%),
                #fbfcff;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000, transparent 75%);
}
.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: var(--blue-700);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 26px;
}
.hero-eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.28);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.28); }
    50% { box-shadow: 0 0 0 7px rgba(59, 130, 246, 0); }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .grad {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars > div {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--grad-primary);
    border: 3px solid #fff;
    margin-left: -10px;
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 0.78rem;
    box-shadow: var(--shadow-sm);
}
.avatars > div:first-child { margin-left: 0; }
.trust-text { font-size: 0.9rem; color: var(--muted); }
.trust-text strong { color: var(--ink); }
.stars { color: #f59e0b; letter-spacing: 1px; font-size: 0.95rem; }

/* Hero visual */
.hero-visual {
    position: relative;
    height: 540px;
}
.hv-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    padding: 18px 20px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hv-main {
    inset: 0;
    background: var(--grad-deep);
    border-radius: var(--radius-lg);
    border: 0;
    color: #fff;
    padding: 32px;
    overflow: hidden;
    animation: none;
}
.hv-main::before {
    content: '';
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.5), transparent 65%);
    top: -100px; right: -80px;
    filter: blur(20px);
}
.hv-main::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.4), transparent 65%);
    bottom: -120px; left: -100px;
    filter: blur(20px);
}
.hv-main-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.hv-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.hv-headline { font-size: 1.6rem; font-weight: 700; line-height: 1.15; max-width: 320px; color: #fff; }

.hv-chart {
    margin-top: auto;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px;
    backdrop-filter: blur(20px);
}
.hv-chart-head { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hv-chart-num { font-size: 1.7rem; font-weight: 700; color: #fff; margin-bottom: 8px; font-family: 'Space Grotesk', sans-serif; }
.hv-chart-num span { color: #6ee7b7; font-size: 1rem; margin-left: 6px; }
.hv-bars { display: flex; align-items: end; gap: 5px; height: 50px; }
.hv-bar {
    flex: 1;
    background: linear-gradient(to top, var(--blue-500), var(--blue-300));
    border-radius: 3px 3px 0 0;
    opacity: 0.9;
}

.hv-stat {
    top: 30px; right: -20px;
    width: 200px;
    animation-delay: -2s;
}
.hv-stat .label { font-size: 0.78rem; color: var(--muted); margin-bottom: 4px; }
.hv-stat .value { font-size: 1.65rem; font-weight: 700; color: var(--ink); font-family: 'Space Grotesk', sans-serif; }
.hv-stat .change { font-size: 0.78rem; color: #16a34a; font-weight: 600; }

.hv-rating {
    bottom: 60px; left: -28px;
    width: 220px;
    display: flex; align-items: center; gap: 14px;
    animation-delay: -4s;
}
.hv-rating .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--blue-50);
    color: var(--blue-600);
    display: grid; place-items: center;
    font-size: 22px;
}
.hv-rating .label { font-size: 0.78rem; color: var(--muted); }
.hv-rating .value { font-size: 1.1rem; font-weight: 700; }

/* ============== LOGOS BAND ============== */
.logos-band {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.logos-band .label {
    text-align: center;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 30px;
}
.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}
.logo-item {
    height: 36px;
    display: grid; place-items: center;
    color: #94a3b8;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
    opacity: 0.85;
    transition: all 0.2s ease;
}
.logo-item:hover { color: var(--blue-700); opacity: 1; }

/* ============== SECTIONS ============== */
.section { padding: 110px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
    background: var(--grad-deep);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(800px 400px at 10% 100%, rgba(96, 165, 250, 0.18), transparent 60%),
        radial-gradient(600px 400px at 90% 0%, rgba(29, 78, 216, 0.4), transparent 60%);
}
.section-dark .container { position: relative; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.75); }

.section-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-700);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.section-dark .section-eyebrow {
    background: rgba(255,255,255,0.1);
    color: #93c5fd;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--muted);
    margin-top: 18px;
    line-height: 1.65;
}

/* ============== SERVICES GRID ============== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 30px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(15, 38, 90, 0.12);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: var(--blue-50);
    color: var(--blue-700);
    display: grid; place-items: center;
    margin-bottom: 22px;
    font-size: 26px;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--grad-primary);
    color: #fff;
    transform: scale(1.06) rotate(-4deg);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 22px; }
.service-features {
    list-style: none;
    margin-bottom: 26px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-features li {
    font-size: 0.9rem;
    color: #3b4868;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-features li::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--blue-50);
    color: var(--blue-600);
    display: inline-grid; place-items: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'><path d='M6.5 11l-3-3 1-1 2 2 5-5 1 1z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
}
.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-700);
    font-weight: 600;
    font-size: 0.92rem;
    transition: gap 0.25s ease;
}
.service-link:hover { gap: 10px; }
.service-link::after {
    content: '→';
    transition: transform 0.25s ease;
}

/* ============== STATS ============== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: 0; }
.stat-value {
    font-size: clamp(2.4rem, 4.5vw, 3.75rem);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.02em;
}

/* ============== PROCESS ============== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 32px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--blue-300) 0 8px, transparent 8px 16px);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}
.process-num {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--blue-100);
    color: var(--blue-700);
    display: grid; place-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 auto 22px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}
.process-step:hover .process-num {
    background: var(--grad-primary);
    color: #fff;
    border-color: transparent;
    transform: scale(1.06);
    box-shadow: var(--shadow-glow);
}
.process-step h4 { margin-bottom: 10px; font-size: 1.18rem; }
.process-step p { color: var(--muted); font-size: 0.95rem; }

/* ============== FEATURE / SPLIT ============== */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.split-reverse .split-text { order: 2; }
.split h2 { margin-bottom: 24px; }
.split p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.feature-list li { display: flex; gap: 16px; align-items: flex-start; }
.feature-list .check {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--blue-50);
    color: var(--blue-700);
    display: grid; place-items: center;
    font-weight: 700;
}
.feature-list strong { display: block; margin-bottom: 4px; }
.feature-list span { color: var(--muted); font-size: 0.94rem; }

.split-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/4.4;
    background: var(--grad-deep);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}
.split-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(400px 300px at 100% 0%, rgba(96, 165, 250, 0.4), transparent 60%),
        radial-gradient(400px 300px at 0% 100%, rgba(37, 99, 235, 0.3), transparent 60%);
}
.sv-content { position: relative; height: 100%; display: flex; flex-direction: column; gap: 18px; }
.sv-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 16px 18px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}
.sv-pill .icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.14);
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}
.sv-pill .label { font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.sv-pill .value { font-weight: 700; font-size: 1.05rem; }
.sv-pill .badge {
    margin-left: auto;
    background: rgba(110, 231, 183, 0.18);
    color: #6ee7b7;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ============== TESTIMONIALS ============== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    transition: all 0.3s ease;
}
.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-100);
}
.testimonial .stars { margin-bottom: 18px; font-size: 1rem; }
.testimonial blockquote {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #2a3556;
    margin-bottom: 26px;
    font-weight: 500;
}
.tm-author { display: flex; align-items: center; gap: 14px; }
.tm-author-img {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 1rem;
}
.tm-author-name { font-weight: 700; }
.tm-author-role { font-size: 0.85rem; color: var(--muted); }

/* ============== CTA SECTION ============== */
.cta-block {
    background: var(--grad-deep);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(600px 400px at 0% 100%, rgba(96, 165, 250, 0.3), transparent 60%),
        radial-gradient(600px 400px at 100% 0%, rgba(37, 99, 235, 0.5), transparent 60%);
}
.cta-block .inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-block h2 { color: #fff; margin-bottom: 18px; }
.cta-block p { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============== FOOTER ============== */
.footer {
    background: #050a1f;
    color: #c9d2eb;
    padding: 80px 0 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}
.footer-brand p { color: #92a0c8; margin-top: 22px; max-width: 320px; line-height: 1.7; font-size: 0.95rem; }
.footer h5 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 0.94rem; color: #c9d2eb; transition: color 0.2s ease; }
.footer ul a:hover { color: #fff; }
.footer-contact a { display: block; margin-bottom: 8px; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    display: grid; place-items: center;
    transition: all 0.2s ease;
    color: #c9d2eb;
}
.socials a:hover { background: var(--blue-600); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.88rem;
    color: #92a0c8;
}
.footer-bottom-links { display: flex; gap: 24px; }

/* ============== INNER PAGE HERO ============== */
.page-hero {
    padding: 180px 0 90px;
    position: relative;
    overflow: hidden;
    background: var(--grad-deep);
    color: #fff;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1000px 500px at 10% 100%, rgba(96, 165, 250, 0.22), transparent 60%),
        radial-gradient(800px 400px at 100% 0%, rgba(37, 99, 235, 0.4), transparent 60%);
}
.page-hero .container { position: relative; }
.breadcrumb {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 26px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 10px; opacity: 0.5; }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero .lead {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    max-width: 720px;
    margin-top: 22px;
    line-height: 1.65;
}
.page-hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============== BENEFITS GRID ============== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-200, #bfdbfe);
}
.benefit-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: var(--blue-50);
    color: var(--blue-700);
    display: grid; place-items: center;
    margin-bottom: 18px;
    font-size: 22px;
}
.benefit-card h4 { margin-bottom: 10px; }
.benefit-card p { color: var(--muted); font-size: 0.95rem; }

/* ============== FAQ ============== */
.faq-grid {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 6px 28px;
    transition: all 0.25s ease;
}
.faq-item[open] { border-color: var(--blue-200, #bfdbfe); box-shadow: var(--shadow-sm); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    color: var(--ink);
    font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--blue-600);
    font-weight: 300;
    transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; color: var(--muted); line-height: 1.7; }

/* ============== PRICING / PACKAGES ============== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 38px 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.price-card.featured {
    background: var(--grad-deep);
    color: #fff;
    border: 0;
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
    position: relative;
    overflow: hidden;
}
.price-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(400px 300px at 100% 0%, rgba(96, 165, 250, 0.3), transparent 60%);
}
.price-card.featured > * { position: relative; }
.price-card.featured h3 { color: #fff; }
.price-card.featured .price { color: #fff; }
.price-card.featured .feature-list span { color: rgba(255,255,255,0.8); }
.price-card.featured .feature-list strong { color: #fff; }
.price-card.featured .feature-list .check { background: rgba(255,255,255,0.16); color: #fff; }
.price-tier {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-600);
    font-weight: 700;
    margin-bottom: 12px;
}
.price-card.featured .price-tier { color: #93c5fd; }
.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--ink);
    margin: 12px 0 6px;
}
.price small { font-size: 0.95rem; color: var(--muted); font-weight: 400; }
.price-card.featured .price small { color: rgba(255,255,255,0.7); }
.price-desc { color: var(--muted); margin-bottom: 26px; font-size: 0.95rem; }
.price-card.featured .price-desc { color: rgba(255,255,255,0.8); }
.price-card .feature-list { margin-bottom: 26px; flex: 1; }
.price-card .feature-list li { font-size: 0.94rem; }
.popular-badge {
    position: absolute;
    top: 22px; right: 22px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.24);
    color: #fff;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============== CONTACT ============== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    background: var(--grad-deep);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    position: sticky;
    top: 110px;
    overflow: hidden;
    position: relative;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(400px 300px at 100% 100%, rgba(96, 165, 250, 0.35), transparent 60%);
}
.contact-info-card > * { position: relative; }
.contact-info-card h2 { color: #fff; }
.contact-info-card p { color: rgba(255,255,255,0.8); margin: 18px 0 36px; font-size: 1.02rem; line-height: 1.7; }
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    color: #fff;
}
.contact-method .icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(20px);
    display: grid; place-items: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-method .label { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 2px; }
.contact-method strong { font-weight: 600; font-size: 1rem; }

.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-size: 0.86rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.form-control {
    padding: 14px 16px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    font-size: 0.96rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fafbfd;
}
.form-control:focus {
    outline: none;
    border-color: var(--blue-500);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ============== ANIMATIONS ============== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual { height: 460px; max-width: 540px; }
    .services-grid, .testimonials-grid, .pricing-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-grid::before { display: none; }
    .split { grid-template-columns: 1fr; gap: 40px; }
    .split-reverse .split-text { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { position: static; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); }
    .price-card.featured { transform: none; }
}

@media (max-width: 720px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .hero { padding: 140px 0 70px; }
    .hero-visual { height: 380px; }
    .hv-stat { width: 170px; right: -10px; }
    .hv-rating { left: -10px; width: 200px; }
    .section { padding: 80px 0; }
    .services-grid, .testimonials-grid, .pricing-grid, .benefits-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .cta-block { padding: 60px 28px; border-radius: var(--radius-lg); }
    .contact-form, .contact-info-card { padding: 30px; }
    .container { padding: 0 20px; }
    .nav-inner { padding: 0 20px; }
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 20px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--ink);
    font-weight: 500;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--blue-50); color: var(--blue-700); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }
