

.seo-services-main {
    background: #0a0e27;
    color: #e2e8f0;
    overflow-x: hidden;
}


/* ===================================
   SEO HERO SECTION - MINIMAL VERSION
   =================================== */

.seo-hero {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Hero Content */
.seo-hero-content {
    padding: 40px 0;
}

/* Ranking Badge */
.ranking-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 2px solid rgba(16, 185, 129, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #10b981;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

/* Hero Title */
.seo-hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #f8fafc;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.seo-hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.btn-outline {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid rgba(226, 232, 240, 0.2);
}

.btn-outline:hover {
    border-color: #10b981;
    color: #10b981;
}

/* ===================================
   HERO VISUAL - MINIMAL
   =================================== */

.seo-hero-visual {
    position: relative;
}

/* Search Mockup */
.search-mockup {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fafb;
    padding: 12px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.search-bar .fa-google {
    color: #4285f4;
    font-size: 24px;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: #0a0e27;
}

.search-bar .fa-search {
    color: #4285f4;
}

/* Search Results */
.search-result {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background: #f9fafb;
}

.rank {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 14px;
    flex-shrink: 0;
}

.rank.gray {
    background: #e5e7eb;
    color: #6b7280;
}

.result-info {
    flex: 1;
}

.url {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.url .fa-check-circle {
    color: #10b981;
}

.result-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a56db;
    margin: 0 0 6px 0;
}

.result-info p {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
}

/* Featured Result */
.search-result.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(5, 150, 105, 0.05));
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
}

/* Floating Stats */
.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-stat i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.floating-stat div {
    display: flex;
    flex-direction: column;
}

.floating-stat strong {
    font-size: 20px;
    font-weight: 900;
    color: #f8fafc;
}

.floating-stat span {
    font-size: 11px;
    color: #94a3b8;
}

.stat-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}


/* ===================================
   SEO SERVICES GRID SECTION
   =================================== */

.seo-services-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

/* Section Header */
.section-header-seo {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title-seo {
    font-size: 48px;
    font-weight: 900;
    color: #f8fafc;
    margin-bottom: 16px;
}

.section-desc-seo {
    font-size: 18px;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.seo-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

/* Service Card */
.seo-service-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.seo-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.seo-service-card:hover::before {
    transform: translateX(100%);
}

.seo-service-card:hover {
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

/* Featured Card */
.card-featured {
    border: 2px solid rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Service Icon */
.service-icon-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
    position: relative;
    z-index: 1;
}

.icon-technical {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.icon-onpage {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.icon-content {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.icon-linkbuilding {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.icon-local {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.icon-analytics {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: inherit;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(20px);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Service Title & Description */
.service-title {
    font-size: 24px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 24px;
}

/* Service Features */
.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.service-features i {
    color: #10b981;
    font-size: 16px;
}

/* Service Footer */
.service-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(71, 85, 105, 0.3);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(-4px);
}

.service-link-featured {
    color: #10b981;
}


/* ===================================
   SEO PROCESS SECTION
   =================================== */

.seo-process-section {
    padding: 120px 0;
    background: #0a0e27;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 80px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    opacity: 0.3;
}

/* Process Step */
.process-step {
    position: relative;
    margin-bottom: 48px;
    display: flex;
    gap: 32px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(-8px);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 24px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 22px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

.step-tasks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.step-tasks li {
    font-size: 14px;
    color: #cbd5e1;
    padding: 8px 12px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border-right: 3px solid #10b981;
}

.step-connector {
    position: absolute;
    top: 80px;
    right: 0;
    width: 80px;
    height: 2px;
    background: rgba(16, 185, 129, 0.3);
}


/* ===================================
   SEO AUDIT CTA SECTION
   =================================== */

.seo-audit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
}

.audit-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 32px;
    padding: 64px 48px;
    display: flex;
    align-items: center;
    gap: 64px;
    position: relative;
    overflow: hidden;
}

.audit-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

/* Audit Visual */
.audit-visual {
    position: relative;
    flex-shrink: 0;
}

.audit-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.4);
    animation: iconRotate 20s linear infinite;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.audit-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 50px;
    color: #10b981;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: elementOrbit 15s linear infinite;
}

.element-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 3.75s;
}

.element-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 7.5s;
}

.element-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 11.25s;
}

@keyframes elementOrbit {
    0% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 1; }
}

/* Audit Content */
.audit-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.audit-title {
    font-size: 40px;
    font-weight: 900;
    color: #f8fafc;
    margin-bottom: 16px;
}

.audit-description {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 32px;
}

/* Audit Form */
.audit-form {
    margin-bottom: 24px;
}

.form-group-inline {
    display: flex;
    gap: 16px;
}

.audit-input {
    flex: 1;
    padding: 18px 24px;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid rgba(71, 85, 105, 0.3);
    border-radius: 12px;
    color: #f8fafc;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.audit-input:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.audit-input::placeholder {
    color: #64748b;
}

.audit-submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.audit-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
}

/* Audit Features */
.audit-features {
    display: flex;
    gap: 24px;
}

.audit-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
    font-weight: 600;
}

.audit-feature i {
    color: #10b981;
    font-size: 16px;
}


/* ===================================
   PRICING SECTION
   =================================== */

.seo-pricing-section {
    padding: 120px 0;
    background: #0a0e27;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.toggle-label {
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(71, 85, 105, 0.3);
    border-radius: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    right: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

input:checked + .toggle-slider::before {
    transform: translateX(-28px);
}

.discount-badge {
    padding: 4px 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(71, 85, 105, 0.3);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}

.pricing-card.card-featured {
    border: 2px solid rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* Plan Header */
.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 8px;
}

.plan-subtitle {
    font-size: 14px;
    color: #94a3b8;
}

/* Plan Price */
.plan-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}

.currency {
    font-size: 14px;
    color: #94a3b8;
}

.amount {
    font-size: 40px;
    font-weight: 900;
    color: #10b981;
}

.period {
    font-size: 14px;
    color: #64748b;
}

/* Plan Features */
.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.plan-features i {
    color: #10b981;
}

.plan-features li.disabled {
    opacity: 0.4;
}

.plan-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16,185,129,0.3);
}

.plan-btn:hover {
    box-shadow: 0 15px 40px rgba(16,185,129,0.5);
    transform: translateY(-3px);
}

/* ===================================
   FAQ SECTION
   =================================== */

.seo-faq-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

/* FAQ Visual */
.faq-visual {
    text-align: center;
    position: relative;
}

.faq-icon-main {
    font-size: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.faq-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #10b981;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 30px;
    background: rgba(30,41,59,0.4);
    border-radius: 16px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid rgba(71,85,105,0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(10,14,39,0.3);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-hero-title {
        font-size: 40px;
    }
    
    .quick-stats {
        gap: 20px;
    }
    
    .floating-stat {
        display: none;
    }
    
    .seo-service-card {
        padding: 32px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .audit-box {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-stats {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .seo-hero-title {
        font-size: 32px;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth transitions */
button, a {
    transition: all 0.3s ease;
}



