/**
 * SEO Landing Page Styles
 * SEO 최적화 랜딩 페이지 스타일
 */

:root {
    --seo-primary: #00D4AA;
    --seo-primary-dark: #00b894;
    --seo-gradient: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    --seo-blue: #0066ff;
    --seo-blue-light: #e6f0ff;
    --seo-text-dark: #191f28;
    --seo-text-gray: #6b7684;
    --seo-text-light: #8b95a1;
    --seo-bg-light: #f8fafb;
    --seo-bg-dark: #0a1628;
    --seo-border: #e5e8eb;
    --seo-white: #ffffff;
    --seo-success: #00c853;
    --seo-warning: #ff9800;
    --seo-danger: #ff5252;
}

/* ========================================
   Hero Section
======================================== */
.seo-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.seo-hero-inner {
    max-width: 700px;
}

.hero-eyebrow {
    margin-bottom: 24px;
}

.eyebrow-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--seo-gradient);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eyebrow-partners {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    color: var(--seo-text-gray);
    font-size: 14px;
}

.eyebrow-partners .dot {
    width: 4px;
    height: 4px;
    background: var(--seo-text-light);
    border-radius: 50%;
}

.hero-headline {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--seo-text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-headline .text-gradient {
    background: var(--seo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 20px;
    color: var(--seo-text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--seo-gradient);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 170, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: white;
    color: var(--seo-text-dark);
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid var(--seo-border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--seo-primary);
    color: var(--seo-primary);
}

/* Hero Visual Cards */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--seo-border);
    animation: float 3s ease-in-out infinite;
}

.visual-card.card-ranking { animation-delay: 0s; }
.visual-card.card-traffic { animation-delay: 0.5s; }
.visual-card.card-cost { animation-delay: 1s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-label {
    font-size: 13px;
    color: var(--seo-text-gray);
    margin-bottom: 8px;
}

.card-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--seo-text-dark);
}

.card-value .number {
    color: var(--seo-primary);
}

.card-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin-top: 8px;
}

.card-trend.up {
    color: var(--seo-success);
}

.card-trend.down {
    color: var(--seo-success);
}

/* ========================================
   Hero Visual V2 - Dashboard Style
======================================== */
.hero-visual-v2 {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 1600px) {
    .hero-visual-v2 {
        right: 10%;
    }
}

@media (max-width: 1400px) {
    .hero-visual-v2 {
        right: 5%;
    }
}

@media (max-width: 1300px) {
    .hero-visual-v2 {
        right: 2%;
    }
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 12px 24px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 440px;
    animation: dashboardFloat 4s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

.dashboard-card:hover {
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.02),
        0 16px 32px rgba(0, 212, 170, 0.12),
        0 32px 64px rgba(0, 0, 0, 0.08);
}

@keyframes dashboardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--seo-border);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-text {
    display: flex;
    flex-direction: column;
}

.title-main {
    font-weight: 600;
    color: var(--seo-text-dark);
    font-size: 15px;
    line-height: 1.2;
}

.title-sub {
    font-size: 11px;
    color: var(--seo-text-light);
    margin-top: 2px;
}

.dashboard-badges {
    display: flex;
    gap: 8px;
}

.dashboard-icon {
    width: 36px;
    height: 36px;
    background: var(--seo-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.dashboard-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.dashboard-badge.live {
    background: rgba(0, 200, 83, 0.1);
    color: #00c853;
}

.dashboard-badge.award {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #00c853;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

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

.stat-card {
    background: var(--seo-bg-light);
    border-radius: 16px;
    padding: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: white;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon {
    transition: transform 0.3s ease;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.stat-icon.ranking-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
}

.stat-icon.traffic-icon {
    background: linear-gradient(135deg, #00D4AA 0%, #00B4D8 100%);
    color: white;
}

.stat-icon.cost-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-period {
    font-size: 10px;
    font-weight: 600;
    color: var(--seo-text-light);
    background: white;
    padding: 3px 8px;
    border-radius: 10px;
}

.stat-content {
    text-align: left;
}

.stat-label {
    font-size: 11px;
    color: var(--seo-text-gray);
    margin-bottom: 6px;
    font-weight: 500;
}

.stat-value-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--seo-text-dark);
    line-height: 1;
}

.stat-unit {
    font-size: 14px;
    font-weight: 600;
    color: var(--seo-text-gray);
}

.stat-change {
    margin-left: auto;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.stat-change.positive {
    background: rgba(0, 200, 83, 0.15);
    color: #00c853;
}

.stat-change.savings {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

/* Progress Bar */
.stat-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.stat-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.stat-bar-fill.ranking-fill {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

/* Mini Chart */
.stat-mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 32px;
    margin-bottom: 10px;
}

.chart-bar {
    flex: 1;
    background: rgba(0, 212, 170, 0.3);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.chart-bar.active {
    background: var(--seo-gradient);
}

/* Donut Chart */
.stat-donut {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
}

.donut-chart {
    width: 100%;
    height: 100%;
}

.donut-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.06);
    stroke-width: 3;
}

.donut-fill {
    fill: none;
    stroke: url(#donutGradient);
    stroke-width: 3;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dasharray 1.5s ease-out;
    stroke: #667eea;
}

/* Stat Detail */
.stat-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.detail-label {
    font-size: 10px;
    color: var(--seo-text-light);
}

.detail-value {
    font-size: 11px;
    font-weight: 600;
    color: var(--seo-text-dark);
}

.detail-value.highlight {
    color: var(--seo-primary);
}

/* Dashboard Footer */
.dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--seo-border);
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--seo-text-light);
}

.footer-info i {
    color: var(--seo-primary);
}

.footer-clients {
    display: flex;
    align-items: center;
    gap: 6px;
}

.clients-count {
    font-size: 14px;
    font-weight: 800;
    color: var(--seo-primary);
}

.clients-label {
    font-size: 11px;
    color: var(--seo-text-gray);
}

/* Dashboard Footer V2 */
.footer-trust {
    display: flex;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.08);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--seo-primary-dark);
}

.trust-badge i {
    font-size: 10px;
}

.footer-clients {
    display: flex;
    align-items: center;
    gap: 10px;
}

.clients-avatars {
    display: flex;
}

.clients-avatars .avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--seo-gradient);
    color: white;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    border: 2px solid white;
}

.clients-avatars .avatar:first-child {
    margin-left: 0;
}

.clients-text {
    display: flex;
    flex-direction: column;
}

.clients-text .clients-count {
    font-size: 13px;
    line-height: 1.2;
}

.clients-text .clients-label {
    font-size: 10px;
}

/* Dashboard CTA Button */
.dashboard-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 16px 24px;
    background: var(--seo-gradient);
    color: white;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.dashboard-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 212, 170, 0.4);
}

.dashboard-cta i {
    transition: transform 0.3s ease;
}

.dashboard-cta:hover i {
    transform: translateX(4px);
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--seo-text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge.badge-google {
    animation-delay: 0s;
}

.floating-badge.badge-naver {
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

.floating-badge i {
    font-size: 16px;
}

.badge-google i {
    color: #4285F4;
}

.naver-n {
    width: 20px;
    height: 20px;
    background: #03C75A;
    color: white;
    font-size: 12px;
    font-weight: 800;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   Search Preview Section
======================================== */
.seo-preview {
    padding: 80px 0;
    background: var(--seo-bg-dark);
}

.search-mockup {
    max-width: 700px;
    margin: 0 auto;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 16px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-bar i:first-child {
    font-size: 24px;
    color: #4285f4;
}

.search-bar .search-text {
    flex: 1;
    font-size: 16px;
    color: var(--seo-text-dark);
}

.search-bar i:last-child {
    color: var(--seo-text-light);
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.result-item {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-item.featured {
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    position: relative;
}

.result-rank {
    font-size: 14px;
    font-weight: 700;
    color: var(--seo-primary);
    min-width: 32px;
}

.result-content {
    flex: 1;
}

.result-url {
    font-size: 13px;
    color: var(--seo-text-light);
    margin-bottom: 4px;
}

.result-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.result-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.result-badge {
    position: absolute;
    right: 16px;
    top: 12px;
    background: var(--seo-gradient);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

/* ========================================
   Why SEO Section
======================================== */
.seo-why {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--seo-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--seo-text-dark);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--seo-text-gray);
}

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

.why-card {
    background: var(--seo-bg-light);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    width: 72px;
    height: 72px;
    background: var(--seo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 28px;
    color: white;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--seo-text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.why-stat {
    padding-top: 20px;
    border-top: 1px solid var(--seo-border);
}

.why-stat .stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--seo-primary);
    margin-bottom: 4px;
}

.why-stat .stat-label {
    font-size: 13px;
    color: var(--seo-text-light);
}

/* ========================================
   Comparison Chart Section - Redesigned
======================================== */
.seo-comparison {
    padding: 100px 0;
    background: var(--seo-bg-light);
}

.comparison-wrapper {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.comparison-side {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
}

.comparison-side.seo-side {
    border: 2px solid var(--seo-primary);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.comparison-side.ads-side {
    border: 2px solid var(--seo-border);
}

.comparison-side:hover {
    transform: translateY(-4px);
}

.side-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--seo-border);
}

.side-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-side .side-icon {
    background: var(--seo-gradient);
}

.ads-side .side-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.side-icon i {
    font-size: 20px;
    color: white;
}

.side-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin: 0;
}

.side-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
}

.side-badge.winner {
    background: var(--seo-gradient);
    color: white;
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-stat {
    padding: 16px 20px;
    background: var(--seo-bg-light);
    border-radius: 12px;
}

.ads-side .comp-stat {
    background: #fafafa;
}

.comp-stat-label {
    font-size: 13px;
    color: var(--seo-text-gray);
    margin-bottom: 8px;
}

.comp-stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--seo-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comp-stat-value.highlight {
    color: var(--seo-primary);
}

.comp-stat-value.positive {
    color: var(--seo-success);
}

.comp-stat-value.negative {
    color: var(--seo-danger);
}

.comp-stat-value.neutral {
    color: var(--seo-text-gray);
}

.comp-stat-value i {
    font-size: 16px;
}

.comp-stat-sub {
    font-size: 12px;
    color: var(--seo-text-light);
    margin-top: 4px;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-vs span {
    width: 56px;
    height: 56px;
    background: var(--seo-text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
}

.side-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--seo-border);
}

.bottom-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: var(--seo-text-dark);
}

.seo-side .bottom-tag {
    background: rgba(0, 212, 170, 0.1);
    color: var(--seo-primary-dark);
}

.bottom-tag.negative {
    background: rgba(255, 82, 82, 0.1);
    color: var(--seo-danger);
}

.bottom-tag i {
    font-size: 18px;
}

.comparison-summary {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.summary-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: white;
    border-radius: 50px;
    font-size: 15px;
    color: var(--seo-text-gray);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.summary-item i {
    font-size: 20px;
    color: var(--seo-warning);
}

.summary-item strong {
    color: var(--seo-text-dark);
}

/* ========================================
   Services Section
======================================== */
.seo-services {
    padding: 100px 0;
    background: white;
}

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

.service-card {
    background: var(--seo-bg-light);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
    border-color: var(--seo-primary);
    background: white;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--seo-gradient);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--seo-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 12px;
}

.service-card > p {
    font-size: 15px;
    color: var(--seo-text-gray);
    line-height: 1.5;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--seo-text-dark);
    padding: 8px 0;
    border-top: 1px solid var(--seo-border);
}

.service-features li:first-child {
    border-top: none;
}

.service-features li i {
    color: var(--seo-primary);
    font-size: 12px;
}

/* ========================================
   Process Section
======================================== */
.seo-process {
    padding: 100px 0;
    background: var(--seo-bg-dark);
}

.seo-process .section-badge {
    background: rgba(0, 212, 170, 0.2);
}

.seo-process .section-title,
.seo-process .section-desc {
    color: white;
}

.seo-process .section-desc {
    opacity: 0.7;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--seo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 150px;
    margin-bottom: 12px;
}

.step-duration {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 170, 0.2);
    color: var(--seo-primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
}

/* ========================================
   Pricing Section
======================================== */
.seo-pricing {
    padding: 100px 0;
    background: white;
}

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

.pricing-card {
    background: var(--seo-bg-light);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    background: white;
    border-color: var(--seo-primary);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--seo-gradient);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--seo-text-gray);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--seo-text-dark);
}

.price-period {
    font-size: 14px;
    color: var(--seo-text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--seo-text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--seo-border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 12px;
}

.pricing-features li .fa-check {
    color: var(--seo-primary);
}

.pricing-features li .fa-times {
    color: var(--seo-text-light);
}

.pricing-features li.disabled {
    color: var(--seo-text-light);
}

.pricing-btn {
    display: block;
    padding: 16px 24px;
    background: var(--seo-bg-light);
    color: var(--seo-text-dark);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card.featured .pricing-btn {
    background: var(--seo-bg-light);
}

.pricing-btn:hover {
    background: var(--seo-text-dark);
    color: white;
}

.pricing-btn.primary {
    background: var(--seo-gradient);
    color: white;
}

.pricing-btn.primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

/* ========================================
   Case Studies Section - Marquee Style
======================================== */
.seo-cases {
    padding: 100px 0 60px;
    background: var(--seo-bg-light);
    overflow: hidden;
}

.case-marquee-container {
    margin-top: 40px;
}

.case-marquee-row {
    overflow: hidden;
    margin-bottom: 20px;
}

.case-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.case-marquee-track.row-1 {
    animation: scrollLeft 40s linear infinite;
}

.case-marquee-track.row-2 {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.case-marquee-row:hover .case-marquee-track {
    animation-play-state: paused;
}

.case-item-mini {
    flex-shrink: 0;
    width: 280px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--seo-border);
    transition: all 0.3s ease;
}

.case-item-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.case-mini-industry {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--seo-primary);
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 12px;
}

.case-item-mini h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--seo-text-dark);
    margin-bottom: 6px;
}

.case-item-mini p {
    font-size: 13px;
    color: var(--seo-text-gray);
    margin-bottom: 16px;
    line-height: 1.4;
}

.case-mini-result {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--seo-border);
}

.case-mini-result .result-up {
    font-size: 20px;
    font-weight: 800;
    color: var(--seo-primary);
}

.case-mini-result .result-label {
    font-size: 12px;
    color: var(--seo-text-gray);
}

/* ========================================
   Reviews Section - Marquee Style
======================================== */
.seo-reviews {
    padding: 60px 0 100px;
    background: var(--seo-bg-light);
    overflow: hidden;
}

.review-marquee-container {
    margin-top: 40px;
    overflow: hidden;
}

.seo-reviews .review-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: reviewScrollLeft 50s linear infinite;
}

@keyframes reviewScrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-marquee-container:hover .review-marquee-track {
    animation-play-state: paused;
}

.seo-reviews .review-card {
    flex-shrink: 0;
    width: 380px;
    background: white;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--seo-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.seo-reviews .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.seo-reviews .review-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--seo-text-dark);
    margin-bottom: 20px;
    flex-grow: 1;
}

.seo-reviews .review-author-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seo-reviews .author-avatar-mini {
    width: 40px;
    height: 40px;
    background: var(--seo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.seo-reviews .review-author-mini div {
    display: flex;
    flex-direction: column;
}

.seo-reviews .review-author-mini strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--seo-text-dark);
}

.seo-reviews .review-author-mini span {
    font-size: 12px;
    color: var(--seo-text-gray);
}

/* ========================================
   FAQ Section
======================================== */
.seo-faq {
    padding: 100px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--seo-bg-light);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 170, 0.05);
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: var(--seo-text-dark);
}

.faq-question i {
    color: var(--seo-text-light);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--seo-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer {
    font-size: 15px;
    color: var(--seo-text-gray);
    line-height: 1.7;
}

/* ========================================
   CTA Section
======================================== */
.seo-cta {
    padding: 100px 0;
    background: var(--seo-bg-dark);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 44px;
    font-weight: 800;
    color: white;
    line-height: 1.3;
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--seo-gradient);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    color: var(--seo-primary);
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1200px) {
    .hero-visual {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 60px;
    }

    .hero-visual-v2 {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .dashboard-card {
        width: 100%;
        max-width: 520px;
    }

    .floating-badges {
        display: none;
    }

    .hero-headline {
        font-size: 48px;
    }
}

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .process-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }

    .comparison-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .comparison-vs {
        order: -1;
    }

    .comparison-vs span {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .seo-hero {
        padding: 120px 0 60px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subtext {
        font-size: 17px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
    }

    .hero-visual {
        flex-direction: column;
        align-items: center;
    }

    .visual-card {
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 32px;
    }

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

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

    .comparison-side {
        padding: 28px;
    }

    .comp-stat-value {
        font-size: 20px;
    }

    .search-mockup {
        padding: 0 16px;
    }

    .result-badge {
        position: static;
        transform: none;
        margin-top: 12px;
        display: inline-block;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .eyebrow-partners {
        flex-wrap: wrap;
    }

    .dashboard-card {
        padding: 20px;
    }

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

    .stat-card {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
    }

    .stat-header {
        margin-bottom: 0;
        flex-direction: column;
        gap: 4px;
    }

    .stat-content {
        flex: 1;
    }

    .stat-value-row {
        margin-bottom: 8px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-bar,
    .stat-mini-chart,
    .stat-donut {
        display: none;
    }

    .dashboard-footer {
        flex-direction: column;
        gap: 16px;
    }

    .footer-trust {
        justify-content: center;
    }

    .footer-clients {
        justify-content: center;
    }

    .dashboard-cta {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .price-value {
        font-size: 28px;
    }
}
