/* ============================================================
   ONLYBUSINESS AGENCY — Styles
   Social Media Marketing & Positioning · Blue / White / Green
   ============================================================ */

:root {
    /* Palette */
    --blue: #0057FF;
    --blue-deep: #0A2540;
    --blue-light: #3B82FF;
    --blue-soft: #EAF1FF;
    --blue-glow: rgba(0, 87, 255, 0.18);
    --green: #00C896;
    --green-deep: #00A47B;
    --green-soft: #E5F9F1;
    --green-glow: rgba(0, 200, 150, 0.18);
    --white: #FFFFFF;
    --cream: #F7FAFC;
    --ink: #0A2540;
    --ink-soft: #1F3656;
    --gray-400: #6B7A90;
    --gray-300: #92A0B5;
    --gray-200: #C9D3E2;
    --gray-100: #E2E8F0;
    --gray-50: #F1F4F9;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 37, 64, 0.12);
    --shadow-blue: 0 18px 40px rgba(0, 87, 255, 0.22);
    --shadow-green: 0 18px 40px rgba(0, 200, 150, 0.25);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink-soft);
    line-height: 1.65;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

::selection {
    background: var(--blue);
    color: var(--white);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.5px;
    box-shadow: var(--shadow-blue);
    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-2px) rotate(2deg); }
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -0.5px;
}

.logo-dot { color: var(--green); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--ink); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--blue);
    transition: width 0.3s var(--ease-out);
    border-radius: 2px;
}

.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--ink);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
    background: var(--blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s var(--ease-out);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 87, 255, 0.25);
}

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 87, 255, 0.35);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 200, 150, 0.25);
}

.btn-green:hover {
    background: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 200, 150, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--gray-100);
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--blue-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-arrow {
    transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 24px 80px;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 87, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 87, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at 50% 40%, rgba(0, 0, 0, 1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.25) 0%, transparent 70%);
    top: -160px; right: -120px;
    animation: orbFloat1 14s ease-in-out infinite;
}

.hero-orb-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.28) 0%, transparent 70%);
    bottom: -120px; left: -80px;
    animation: orbFloat2 17s ease-in-out infinite;
}

.hero-orb-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(59, 130, 255, 0.18) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 11s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 25px) scale(1.06); }
    66% { transform: translate(25px, -20px) scale(0.96); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(45px, -35px); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -55%) scale(1.15); opacity: 1; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 880px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--gray-100);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 150, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(0, 200, 150, 0); }
}

#hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 9vw, 96px);
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: 28px;
    font-weight: 700;
}

.hero-line {
    display: block;
    animation: heroReveal 1s var(--ease-out) both;
}

.hero-line-1 { animation-delay: 0.2s; }
.hero-line-2 { animation-delay: 0.4s; }

.gradient-text {
    background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes heroReveal {
    from { opacity: 0; transform: translateY(40px); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--gray-400);
    max-width: 620px;
    margin: 0 auto 40px;
    animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 72px;
    animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s var(--ease-out) 0.9s both;
}

.stat { text-align: center; }

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 36px;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-num .accent,
.stat-num .accent-green { font-weight: 700; }

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--gray-100);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, var(--blue));
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section {
    padding: 110px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--blue-soft);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 18px;
    font-weight: 700;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.65;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
#trust {
    padding: 50px 0;
    background: var(--cream);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gray-400);
    font-weight: 600;
}

.trust-logos {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.trust-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--gray-300);
    letter-spacing: 0.5px;
    transition: color 0.3s, transform 0.3s;
}

.trust-logo:hover {
    color: var(--ink);
    transform: translateY(-2px);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px 30px;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-soft) 0%, var(--green-soft) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
    z-index: 0;
}

.service-card > * { position: relative; z-index: 1; }

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

.service-card:hover::before { opacity: 1; }

.service-number {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    display: grid;
    place-items: center;
    color: var(--white);
    margin-bottom: 22px;
    transition: transform 0.4s var(--ease-spring);
}

.service-card:nth-child(even) .service-icon {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(-3deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 14px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green-soft);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.2l3 3 6-6.4' stroke='%2300C896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 8%; right: 8%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--gray-200) 0,
        var(--gray-200) 4px,
        transparent 4px,
        transparent 10px
    );
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 12px;
}

.process-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--blue);
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 20px rgba(0, 87, 255, 0.12);
    transition: all 0.4s var(--ease-spring);
}

.process-step:hover .process-num {
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-blue);
}

.process-step h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.process-step p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================================
   RESULTS
   ============================================================ */
#results {
    background: var(--ink);
    color: var(--white);
    overflow: hidden;
}

#results::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 87, 255, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 200, 150, 0.2), transparent 50%);
    pointer-events: none;
}

#results .container { position: relative; z-index: 1; }

#results .section-tag {
    background: rgba(0, 87, 255, 0.18);
    color: #6FA0FF;
}

#results .section-header h2 { color: var(--white); }
#results .section-desc { color: var(--gray-200); }

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    padding: 36px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out);
}

.result-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 200, 150, 0.4);
}

.result-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #6FA0FF 0%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.result-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.result-card p {
    font-size: 14px;
    color: var(--gray-200);
    line-height: 1.6;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing { background: var(--white); }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--gray-100);
    border-radius: 22px;
    padding: 38px 32px;
    position: relative;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-soft);
}

.pricing-card.featured {
    background: linear-gradient(180deg, var(--ink) 0%, var(--blue-deep) 100%);
    border-color: transparent;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.pricing-card.featured:hover {
    transform: translateY(-16px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-green);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue);
    margin-bottom: 14px;
}

.pricing-card.featured .pricing-name { color: #6FA0FF; }

.pricing-price {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-price small {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0;
}

.pricing-card.featured .pricing-price small { color: var(--gray-200); }

.pricing-tagline {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 26px;
    min-height: 42px;
}

.pricing-card.featured .pricing-tagline { color: var(--gray-200); }

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 14.5px;
    color: var(--ink-soft);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.pricing-card.featured .pricing-features li { color: var(--gray-200); }

.pricing-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--green-soft);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.2l3 3 6-6.4' stroke='%2300C896' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li::before {
    background-color: rgba(0, 200, 150, 0.2);
}

.pricing-card .btn {
    width: 100%;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.4s var(--ease-out);
    position: relative;
}

.testimonial::before {
    content: '“';
    position: absolute;
    top: 14px; right: 22px;
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 1;
    color: var(--blue-soft);
    z-index: 0;
}

.testimonial > * { position: relative; z-index: 1; }

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-soft);
}

.testimonial-stars {
    color: #FFB400;
    margin-bottom: 14px;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonial-body {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--green));
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 14.5px;
    line-height: 1.3;
}

.testimonial-role {
    font-size: 12.5px;
    color: var(--gray-400);
    line-height: 1.3;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--white); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s var(--ease-out);
}

.faq-item.open {
    border-color: var(--blue-soft);
    background: var(--cream);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    transition: color 0.3s;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease-spring), background 0.3s;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--blue);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
    padding: 0 24px 22px;
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
    background: linear-gradient(180deg, var(--white) 0%, var(--blue-soft) 100%);
    overflow: hidden;
}

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

.contact-info h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 54px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    color: var(--gray-400);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 32px;
}

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

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.3s var(--ease-out);
}

.contact-channel:hover {
    border-color: var(--blue);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    display: grid;
    place-items: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-channel:nth-child(2) .contact-icon {
    background: linear-gradient(135deg, var(--green), var(--green-deep));
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 22px;
    padding: 38px 32px;
    box-shadow: var(--shadow-lg);
}

.form-row { margin-bottom: 18px; }

.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 13px 16px;
    background: var(--cream);
    border: 1.5px solid var(--gray-100);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--blue-glow);
}

.form-textarea {
    min-height: 110px;
    resize: vertical;
    font-family: var(--font-body);
}

.form-feedback {
    font-size: 13px;
    margin-top: 12px;
    min-height: 18px;
    color: var(--green-deep);
    font-weight: 500;
}

.form-feedback.error { color: #DC2626; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--ink);
    color: var(--gray-200);
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }

.footer-tag {
    font-size: 14px;
    line-height: 1.65;
    color: var(--gray-200);
    max-width: 320px;
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 600;
}

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

.footer-col a {
    text-decoration: none;
    color: var(--gray-200);
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: var(--gray-300);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-200);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .results-grid { grid-template-columns: repeat(2, 1fr); }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .process-grid::before { display: none; }

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

    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }

    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 720px) {
    section { padding: 80px 0; }

    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 78%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        border-left: 1px solid var(--gray-100);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(10, 37, 64, 0.1);
        padding: 0 40px;
        align-items: flex-start;
    }

    .nav-links.open { right: 0; }
    .nav-links a { font-size: 17px; }

    .hero-stats { gap: 24px; }
    .stat-divider { display: none; }

    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .results-grid,
    .process-grid { grid-template-columns: 1fr; }

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

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }

    .footer-bottom { justify-content: center; text-align: center; }

    .trust-inner { gap: 28px; }
    .trust-logos { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
