/* =========================================================================
   SEO.CSS — Search Engine Optimization Service Page
   Colour scheme: --color-primary #2563eb / white / dark
   Elite-class animated design — Risevate Agency
   ========================================================================= */

/* ── CSS Variables ───────────────────────────────────────────────────────── */
:root {
    --seo-primary:    #2563eb;
    --seo-primary-dk: #1d4ed8;
    --seo-primary-lt: #3b82f6;
    --seo-indigo:     #6366f1;
    --seo-violet:     #7c3aed;
    --seo-text:       #0f1117;
    --seo-muted:      #6b7280;
    --seo-bg:         #f8f9fc;
    --seo-white:      #ffffff;
    --seo-border:     rgba(0,0,0,0.07);
    --seo-glow:       rgba(37,99,235,0.18);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.seo-hero {
    position: relative;
    padding: 130px 0 0;
    overflow: hidden;
    background: #f8f9fc;
    min-height: 640px;
}

/* ── Background Grid ── */
.seo-hero-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(37,99,235,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

/* ── Animated Blobs ── */
.seo-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.seo-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
}
.seo-blob-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(37,99,235,0.20) 0%, transparent 70%);
    top: -160px; left: -160px;
    animation: seoBlobA 9s ease-in-out infinite alternate;
}
.seo-blob-2 {
    width: 440px; height: 440px;
    background: radial-gradient(circle, rgba(99,102,241,0.14) 0%, transparent 70%);
    top: 40px; right: -120px;
    animation: seoBlobB 11s ease-in-out infinite alternate;
}
.seo-blob-3 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(59,130,246,0.10) 0%, transparent 70%);
    bottom: -40px; left: 40%;
    animation: seoBlobC 7s ease-in-out infinite alternate;
}
@keyframes seoBlobA { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(70px,50px) scale(1.08)} }
@keyframes seoBlobB { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-60px,70px) scale(1.05)} }
@keyframes seoBlobC { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(50px,-60px) scale(1.1)} }

/* ── Floating Rings ── */
.seo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(37,99,235,0.10);
    pointer-events: none;
    animation: seoRingPulse 4s ease-in-out infinite;
}
.seo-ring-1 { width: 320px; height: 320px; top: 60px; right: 8%; animation-delay: 0s; }
.seo-ring-2 { width: 480px; height: 480px; top: -20px; right: 2%; animation-delay: 1s; border-color: rgba(99,102,241,0.07); }
.seo-ring-3 { width: 200px; height: 200px; bottom: 80px; left: 5%; animation-delay: 2s; }
@keyframes seoRingPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%       { transform: scale(1.04); opacity: 1; }
}

/* ── Particle Dots ── */
.seo-hero-particles { position: absolute; inset: 0; pointer-events: none; }
.seo-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--seo-primary);
    animation: seoParticleFly linear infinite;
}
@keyframes seoParticleFly {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    15%  { opacity: 0.9; }
    85%  { opacity: 0.4; }
    100% { transform: translateY(-140px) scale(0.3); opacity: 0; }
}

/* ── Hero Inner ── */
.seo-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.seo-hero-centered     { grid-template-columns: 1fr !important; gap: 0 !important; justify-items: center; }
.seo-hero-content-center { text-align: center; max-width: 820px; width: 100%; }
.seo-hero-content-center .seo-hero-desc    { max-width: 620px; margin-left: auto; margin-right: auto; }
.seo-hero-content-center .seo-hero-actions { justify-content: center; }
.seo-hero-content-center .seo-hero-stats   { justify-content: center; }

/* ── Badge ── */
.seo-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(37,99,235,0.16);
    backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #374151;
    margin-bottom: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    opacity: 0;
    animation: seoFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}
.seo-badge-dot {
    width: 8px; height: 8px;
    background: var(--seo-primary);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37,99,235,0.4);
    animation: seoPulse 2s infinite;
}
@keyframes seoPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,99,235,0.4); }
    70%  { box-shadow: 0 0 0 8px rgba(37,99,235,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}

/* ── Title ── */
.seo-hero-title {
    font-size: clamp(38px, 4.8vw, 66px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--seo-text);
    margin-bottom: 22px;
}
.seo-title-line-1 {
    display: block;
    opacity: 0;
    animation: seoFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
    margin-bottom: 4px;
}
.seo-title-line-2 {
    display: block;
    opacity: 0;
    animation: seoFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.35s forwards;
}

/* ── Gradient Text ── */
.seo-gradient-text {
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 35%, #3b82f6 65%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* ── Description ── */
.seo-hero-desc {
    font-size: 17px;
    color: var(--seo-muted);
    line-height: 1.68;
    margin-bottom: 34px;
    opacity: 0;
    animation: seoFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.48s forwards;
}

/* ── CTA Buttons ── */
.seo-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    opacity: 0;
    animation: seoFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.60s forwards;
}

.seo-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--seo-primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 22px rgba(37,99,235,0.38);
    position: relative;
    overflow: hidden;
}
.seo-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.seo-btn-primary:hover::before { opacity: 1; }
.seo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37,99,235,0.52);
    background: var(--seo-primary-dk);
}

.seo-wa-btn { position: relative; }
.seo-wa-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.seo-wa-btn:hover::after { opacity: 0.28; }

.seo-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--seo-primary);
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1.5px solid rgba(37,99,235,0.28);
    transition: all 0.3s ease;
}
.seo-btn-ghost:hover {
    background: rgba(37,99,235,0.07);
    border-color: rgba(37,99,235,0.55);
    transform: translateY(-2px);
}

/* ── Stats Bar ── */
.seo-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 0 52px;
    border-top: 1px solid rgba(0,0,0,0.08);
    flex-wrap: wrap;
    opacity: 0;
    animation: seoFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.72s forwards;
}
.seo-stat { display: flex; flex-direction: column; }
.seo-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--seo-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}
.seo-stat-label { font-size: 12px; color: var(--seo-muted); font-weight: 500; margin-top: 2px; }
.seo-stat-sep   { width: 1px; height: 38px; background: rgba(0,0,0,0.1); }

/* ── Ranking Strip ── */
.seo-ranking-strip {
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding: 18px 0;
    position: relative;
    z-index: 2;
}
.seo-ranking-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.seo-ranking-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #9ca3af;
    white-space: nowrap;
}
.seo-rank-badges { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.seo-rank-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #374151;
    background: #f3f4f6;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.25s ease;
}
.seo-rank-badge:hover { background: rgba(37,99,235,0.06); border-color: rgba(37,99,235,0.18); transform: translateY(-1px); }
.seo-rank-icon { font-size: 15px; display: inline-flex; align-items: center; line-height: 1; }
.seo-rank-icon svg { display: block; flex-shrink: 0; }

/* =========================================================================
   SECTION SHARED STYLES
   ========================================================================= */
.seo-section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(37,99,235,0.08);
    border: 1px solid rgba(37,99,235,0.16);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--seo-primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.seo-section-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--seo-text);
    margin-bottom: 12px;
    line-height: 1.15;
}
.seo-section-desc {
    font-size: 16px;
    color: var(--seo-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}

/* =========================================================================
   WHAT WE DO — SERVICES SECTION
   ========================================================================= */
.seo-services-section {
    padding: 110px 0;
    background: var(--seo-white);
}
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.seo-service-card {
    background: var(--seo-bg);
    border: 1px solid var(--seo-border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ic,#2563eb), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.seo-service-card:hover::before { opacity: 1; }
.seo-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: rgba(37,99,235,0.12);
    background: #fff;
}
.seo-service-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: var(--ib, rgba(37,99,235,0.1));
    color: var(--ic, #2563eb);
    transition: transform 0.3s ease;
}
.seo-service-card:hover .seo-service-icon { transform: scale(1.1) rotate(-3deg); }
.seo-service-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--seo-text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.seo-service-card p {
    font-size: 14px;
    color: var(--seo-muted);
    line-height: 1.65;
    margin-bottom: 18px;
}
.seo-service-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.3px;
    border: 1px solid;
}

/* =========================================================================
   AUDIT / HIGHLIGHT STRIP
   ========================================================================= */
.seo-audit-strip {
    background: linear-gradient(135deg, #0f1117 0%, #1a2035 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.seo-audit-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.seo-audit-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.seo-audit-left h3 {
    font-size: clamp(24px, 2.6vw, 36px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.2;
}
.seo-audit-left p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.seo-audit-divider {
    width: 1px;
    height: 100px;
    background: rgba(255,255,255,0.1);
}
.seo-audit-checks { display: flex; flex-direction: column; gap: 12px; }
.seo-audit-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}
.seo-audit-check-icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(37,99,235,0.25);
    border: 1px solid rgba(37,99,235,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.seo-audit-check-icon svg { stroke: #93c5fd; }

/* =========================================================================
   PACKAGES / PRICING SECTION
   ========================================================================= */
.seo-pricing-section {
    padding: 110px 0;
    background: var(--seo-bg);
}
.seo-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    align-items: start;
}
.seo-pkg-card {
    background: var(--seo-white);
    border: 1px solid var(--seo-border);
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.seo-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

/* Popular card */
.seo-pkg-card-popular {
    background: linear-gradient(160deg, #0f1117 0%, #1a2540 100%);
    border-color: rgba(37,99,235,0.35);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(37,99,235,0.22);
}
.seo-pkg-card-popular:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 30px 80px rgba(37,99,235,0.32);
}
.seo-pkg-card-popular::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 60% 20%, rgba(37,99,235,0.18) 0%, transparent 60%);
    pointer-events: none;
}

/* Top accent bar */
.seo-pkg-tier {
    height: 4px;
    width: 100%;
    background: #e5e7eb;
}
.seo-pkg-tier-popular {
    background: linear-gradient(90deg, #2563eb, #6366f1);
}
.seo-pkg-tier-enterprise {
    background: linear-gradient(90deg, #0f172a, #374151);
}

.seo-pkg-popular-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}

.seo-pkg-body { padding: 32px; }

.seo-pkg-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,0.1);
    margin-bottom: 20px;
}
.seo-pkg-card-popular .seo-pkg-icon { background: rgba(37,99,235,0.25); }

.seo-pkg-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--seo-text);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.seo-pkg-card-popular .seo-pkg-name { color: #fff; }

.seo-pkg-sub {
    font-size: 13px;
    color: var(--seo-muted);
    margin-bottom: 22px;
    font-weight: 500;
}
.seo-pkg-card-popular .seo-pkg-sub { color: rgba(255,255,255,0.5); }

.seo-pkg-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}
.seo-pkg-cur {
    font-size: 14px;
    font-weight: 700;
    color: var(--seo-primary);
}
.seo-pkg-card-popular .seo-pkg-cur { color: #93c5fd; }
.seo-pkg-amt {
    font-size: 42px;
    font-weight: 900;
    color: var(--seo-text);
    letter-spacing: -0.04em;
    line-height: 1;
}
.seo-pkg-card-popular .seo-pkg-amt { color: #fff; }
.seo-pkg-per {
    font-size: 14px;
    color: var(--seo-muted);
    font-weight: 500;
}
.seo-pkg-card-popular .seo-pkg-per { color: rgba(255,255,255,0.45); }

.seo-pkg-kw {
    font-size: 12px;
    color: var(--seo-muted);
    margin-bottom: 22px;
    font-weight: 500;
}
.seo-pkg-card-popular .seo-pkg-kw { color: rgba(255,255,255,0.4); }

.seo-pkg-divider {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.07);
    margin: 0 0 22px;
}
.seo-pkg-card-popular .seo-pkg-divider { border-color: rgba(255,255,255,0.08); }

.seo-pkg-features { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.seo-pkg-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13.5px;
    color: var(--seo-muted);
    line-height: 1.45;
}
.seo-pkg-card-popular .seo-pkg-features li { color: rgba(255,255,255,0.7); }
.seo-pkg-features li svg { flex-shrink: 0; margin-top: 1px; }

.seo-pkg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    border: 1.5px solid rgba(37,99,235,0.25);
    color: var(--seo-primary);
    background: transparent;
}
.seo-pkg-btn:hover {
    background: rgba(37,99,235,0.07);
    border-color: rgba(37,99,235,0.5);
    transform: translateY(-2px);
}
.seo-pkg-btn-popular {
    background: linear-gradient(135deg, #2563eb, #6366f1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 24px rgba(37,99,235,0.38);
}
.seo-pkg-btn-popular:hover {
    background: linear-gradient(135deg, #1d4ed8, #4f46e5);
    box-shadow: 0 10px 36px rgba(37,99,235,0.55);
    transform: translateY(-3px);
}

/* ── Enterprise Add-ons note ── */
.seo-pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 14px;
    color: var(--seo-muted);
}
.seo-pricing-note a { color: var(--seo-primary); font-weight: 600; text-decoration: none; }
.seo-pricing-note a:hover { text-decoration: underline; }

/* =========================================================================
   PROCESS / HOW IT WORKS
   ========================================================================= */
.seo-process-section {
    padding: 110px 0;
    background: var(--seo-white);
}
.seo-process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 64px;
    position: relative;
}
.seo-process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(100% / 10);
    right: calc(100% / 10);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.2) 20%, rgba(37,99,235,0.2) 80%, transparent);
    pointer-events: none;
}
.seo-process-step {
    flex: 1;
    padding: 32px 22px;
    text-align: center;
    opacity: 0;
    transform: translateY(22px);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    background: var(--seo-bg);
    border: 1px solid var(--seo-border);
    border-radius: 18px;
    margin: 0 6px;
    position: relative;
    z-index: 1;
}
.seo-process-step.visible { opacity: 1; transform: translateY(0); }
.seo-process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.07);
    border-color: rgba(37,99,235,0.12);
}
.seo-process-num {
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 auto 18px;
    border-radius: 16px;
    border: 2px solid;
    background: var(--seo-white);
}
.seo-process-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--seo-text);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.seo-process-desc { font-size: 13.5px; color: var(--seo-muted); line-height: 1.6; }
.seo-process-arrow {
    font-size: 20px;
    color: #d1d5db;
    align-self: center;
    flex-shrink: 0;
    padding-bottom: 20px;
}

/* =========================================================================
   RESULTS / METRICS
   ========================================================================= */
.seo-results-section { padding: 110px 0; background: var(--seo-bg); }
.seo-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}
.seo-result-card {
    background: var(--seo-white);
    border: 1px solid var(--seo-border);
    border-radius: 20px;
    padding: 36px 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.seo-result-card.visible  { opacity: 1; transform: translateY(0); }
.seo-result-card:hover    { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,0.07); }
.seo-result-card-featured {
    background: linear-gradient(140deg, #0f1117 0%, #1e293b 100%);
    border-color: rgba(37,99,235,0.3);
    position: relative;
    overflow: hidden;
}
.seo-result-card-featured::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(37,99,235,0.18) 0%, transparent 60%);
    pointer-events: none;
}
.seo-result-metric {
    font-size: 52px;
    font-weight: 900;
    color: var(--seo-primary);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.seo-result-card-featured .seo-result-metric { color: #93c5fd; }
.seo-result-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--seo-muted);
    margin-bottom: 16px;
}
.seo-result-card-featured .seo-result-label { color: rgba(255,255,255,0.45); }
.seo-result-text {
    font-size: 14px;
    color: var(--seo-muted);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}
.seo-result-card-featured .seo-result-text { color: rgba(255,255,255,0.7); }
.seo-result-author { display: flex; align-items: center; gap: 12px; }
.seo-result-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.seo-result-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--seo-text);
}
.seo-result-card-featured .seo-result-name { color: #fff; }
.seo-result-biz { font-size: 12px; color: var(--seo-muted); }
.seo-result-card-featured .seo-result-biz { color: rgba(255,255,255,0.45); }

/* =========================================================================
   TOOLS / TECH STACK ROW
   ========================================================================= */
.seo-tools-section {
    padding: 80px 0;
    background: var(--seo-white);
    border-top: 1px solid var(--seo-border);
}
.seo-tools-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.seo-tools-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #9ca3af;
    white-space: nowrap;
}
.seo-tools-list { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.seo-tool-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--seo-bg);
    border: 1px solid var(--seo-border);
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    transition: all 0.25s ease;
    cursor: default;
}
.seo-tool-chip:hover {
    background: #fff;
    border-color: rgba(37,99,235,0.18);
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}
.seo-tool-icon { font-size: 16px; }

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.seo-cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--seo-bg);
    overflow: hidden;
}
.seo-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.seo-cta-blob-1 {
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    filter: blur(110px);
    background: radial-gradient(circle, rgba(37,99,235,0.11) 0%, transparent 70%);
    top: -120px; left: -120px;
}
.seo-cta-blob-2 {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%;
    filter: blur(100px);
    background: radial-gradient(circle, rgba(99,102,241,0.09) 0%, transparent 70%);
    bottom: -80px; right: -80px;
}
.seo-cta-inner { text-align: center; position: relative; z-index: 1; }
.seo-cta-title {
    font-size: clamp(36px, 4.2vw, 58px);
    font-weight: 900;
    letter-spacing: -0.035em;
    color: var(--seo-text);
    margin-bottom: 16px;
    line-height: 1.1;
}
.seo-cta-desc {
    font-size: 17px;
    color: var(--seo-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.65;
}
.seo-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.seo-float-wa {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    animation: seoFloatIn 0.8s cubic-bezier(0.16,1,0.3,1) 1.2s both;
}
.seo-float-wa span { display: none !important; }
.seo-float-wa:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 14px 38px rgba(37,211,102,0.65);
}
@keyframes seoFloatIn {
    from { opacity: 0; transform: translateY(20px) scale(0.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* =========================================================================
   REVEAL / SCROLL ANIMATIONS
   ========================================================================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================================
   SHARED KEYFRAMES
   ========================================================================= */
@keyframes seoFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1200px) {
    .seo-pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .seo-pkg-card-popular { transform: none; }
    .seo-pkg-card-popular:hover { transform: translateY(-6px); }
}
@media (max-width: 1024px) {
    .seo-hero-inner     { grid-template-columns: 1fr; gap: 48px; }
    .seo-services-grid  { grid-template-columns: repeat(2, 1fr); }
    .seo-results-grid   { grid-template-columns: repeat(2, 1fr); }
    .seo-process-steps  { flex-wrap: wrap; }
    .seo-process-arrow  { display: none; }
    .seo-process-steps::before { display: none; }
    .seo-audit-inner    { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .seo-audit-divider  { display: none; }
    .seo-audit-checks   { align-items: center; }
}
@media (max-width: 768px) {
    .seo-hero          { padding: 90px 0 0; }
    .seo-services-grid { grid-template-columns: 1fr; }
    .seo-pricing-grid  { grid-template-columns: 1fr; }
    .seo-results-grid  { grid-template-columns: 1fr; }
    .seo-hero-stats    { flex-wrap: wrap; gap: 16px; }
    .seo-ranking-inner { justify-content: center; }
    .seo-process-steps { flex-direction: column; }
    .seo-process-step  { margin: 0 0 12px; }
    .seo-tools-inner   { justify-content: center; }
}
@media (max-width: 480px) {
    .seo-pricing-grid  { grid-template-columns: 1fr; }
    .seo-results-grid  { grid-template-columns: 1fr; }
}