/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    --secondary: #64748b;
    --secondary-dark: #475569;
    --success: #059669;
    --success-dark: #047857;
    --warning: #d97706;
    --warning-dark: #b45309;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    --gradient-hero: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-section: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
    background: #fbf7f1;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(14, 165, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230ea5e9' fill-opacity='0.01'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -10px) scale(1.01); }
    50% { transform: translate(-5px, 10px) scale(0.99); }
    75% { transform: translate(-10px, -5px) scale(1.005); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 1.125rem;
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: var(--gray-50);
    border-color: var(--gray-300);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: #111827;
    color: white;
    border: 1px solid #111827;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #9ca3af;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    color: white;
    border: 1px solid var(--accent);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgb(245 158 11 / 0.3);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn-full {
    width: 100%;
}

/* Top Bar */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1001;
    padding: 8px 0;
}

.top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.integration-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.integration-logo {
    font-size: 0.75rem;
    color: var(--gray-400);
    font-weight: 500;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fbf7f1;
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    position: relative;
    text-decoration: none;
}

.nav-logo:hover {
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    text-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 12px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gray-900);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius);
    transition: all 0.2s ease;
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #fbf7f1;
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-title-line {
    white-space: nowrap;
    display: inline-block;
}

.gradient-text {
    color: #4338ca;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 560px;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-outline {
    border: 1px solid #e5e7eb;
    background: white;
    color: #374151;
}

.badge-muted {
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid #e0e7ff;
}

.hero-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-form input {
    flex: 1;
    min-width: 240px;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
}

.hero-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--gray-600);
}

.rating-stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-weight: 500;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1;
    position: relative;
}

.stat-number::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-left: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image {
    position: relative;
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    display: block;
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-video {
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    }
}

@media (max-width: 480px) {
    .hero-video {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
}

.hero-media {
    width: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #f9d7cf 0%, #f3c7ff 50%, #d5e5ff 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.placeholder-hero {
    background: repeating-linear-gradient(
        45deg,
        #e5e7eb,
        #e5e7eb 10px,
        #f3f4f6 10px,
        #f3f4f6 20px
    );
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    color: white;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.overlay-value {
    font-size: 2rem;
    font-weight: 800;
}

.overlay-text {
    font-size: 1rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(-5px) rotate(-1deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

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


.mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-300);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
}

.chart-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(45deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.1;
    border-radius: 6px;
}

.metrics-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.metrics-placeholder div {
    height: 56px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.metrics-placeholder div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.05;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #787774;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Sections (SEOAnt Style) */
.feature-sections {
    padding: 0;
}

.feature-section {
    padding: 60px 0;
    background: transparent;
}

.feature-section.alt {
    background: #f9fafb;
}

.feature-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-section-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-section-content.reverse .feature-section-text {
    order: 2;
}

.feature-section-content.reverse .feature-section-visual {
    order: 1;
}

.feature-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--gray-900);
}

.feature-section-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.feature-section-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i,
.benefit-icon .fas,
.benefit-icon .fa {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1;
    display: block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit-content strong {
    font-size: 1rem;
    color: var(--gray-900);
    font-weight: 600;
    line-height: 1.2;
}

.benefit-tag {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.feature-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.0625rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.feature-list li i {
    color: #2563eb;
    font-size: 1.25rem;
}

.btn-outline {
    background: transparent;
    color: var(--gray-900);
    border: 1px solid var(--gray-300);
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: var(--gray-900);
    color: white;
    border-color: var(--gray-900);
}

/* Feature Visuals */
.feature-visual {
    position: relative;
}

.feature-mockup {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mockup-browser {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius-lg);
}

.browser-header {
    background: var(--gray-100);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--gray-200);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-content {
    padding: 2rem;
    min-height: 300px;
    background: #f9fafb;
}

.feature-visual-placeholder {
    position: relative;
    background: transparent;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    background: transparent;
}

.browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-form label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-field {
    height: 40px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0 12px;
}

.form-field.large {
    height: 80px;
}

.ai-chats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.chat-item {
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-align: center;
}

.automation-dashboard {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-item {
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
}

.image-optimizer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.optimizer-search {
    padding: 0.75rem 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-align: center;
}

.product-images {
    display: flex;
    gap: 0.75rem;
}

.image-placeholder {
    flex: 1;
    height: 120px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #f3f4f6;
    border-radius: 4px;
}

.seo-score {
    text-align: center;
    margin-bottom: 2rem;
}

.score-gauge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444 0%, #f59e0b 50%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
    border: 8px solid var(--gray-100);
}

.score-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.fix-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
}

.seo-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

.checklist-item.success {
    background: #f0fdf4;
    color: #059669;
}

.checklist-item.warning {
    background: #fffbeb;
    color: #d97706;
}

.checklist-item.error {
    background: #fef2f2;
    color: #dc2626;
}

.speed-gauge {
    text-align: center;
    padding: 3rem;
}

.gauge-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #10b981 0%, #10b981 80%, #e5e7eb 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}

.gauge-circle::before {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: white;
}

.gauge-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    z-index: 1;
}

.gauge-label {
    font-size: 1rem;
    color: var(--gray-600);
    z-index: 1;
}

.speed-btn {
    background: #000000;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}

.search-mockup {
    padding: 2rem;
}

.search-result {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.result-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.result-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.result-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
}

.meta-editor {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.meta-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
}

.meta-field input,
.meta-field textarea {
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--gradient-elegant);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.service-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: transparent;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.trust-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 2.5rem;
}

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

.trust-logo {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 500;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Metrics Section */
/* Feature Blocks */
.feature-blocks {
    background: #ffffff;
}

.feature-block {
    padding: 80px 0;
    background: #ffffff;
}

.feature-block.alt {
    background: #f8fafc;
}

.feature-block-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.feature-block-content.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eyebrow {
    font-size: 0.95rem;
    font-weight: 700;
    color: #4338ca;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.feature-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.feature-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: -6px;
}

.feature-description {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
}

.feature-list.compact li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.95rem;
    color: #4338ca;
    font-weight: 600;
}

.feature-visual {
    position: relative;
}

.placeholder-card {
    background: linear-gradient(135deg, #eef2ff 0%, #e0f2fe 100%);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.placeholder-tag {
    background: rgba(0, 0, 0, 0.65);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Feature Breakdown */
.feature-breakdown {
    padding: 80px 0;
    background: transparent;
}

.pricing-cards {
    padding: 64px 0;
    background: #f7f9fc;
}

.pricing-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.pricing-card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e4e8f0;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    min-height: 100%;
}

.pricing-card.featured {
    border-color: #cdd8f3;
    box-shadow: 0 20px 48px rgba(37, 99, 235, 0.16);
    background: linear-gradient(180deg, #f9fbff 0%, #ffffff 70%);
}

.pricing-card.featured::before {
    content: none;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12);
    border-color: #d6deee;
}

.pricing-gradient,
.pricing-gradient.starter,
.pricing-gradient.growth,
.pricing-gradient.pro,
.pricing-gradient.ultimate {
    display: none;
}

.pricing-card-body {
    padding: 22px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.pricing-top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.plan-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    border: 1px solid #e4e8f0;
    background: #f5f7fb;
    color: #0f172a;
}

.chip-growth { background: #f2f8ff; border-color: #dbe8ff; color: #0f172a; }
.chip-pro { background: #f3f6fd; border-color: #d7e0fa; color: #0f172a; }
.chip-ultimate { background: #f2f9f7; border-color: #d5ebe2; color: #0f172a; }

.plan-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 10px;
    background: #0f172a;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.plan-title {
    display: none;
}

.plan-desc {
    color: #4b5563;
    font-size: 0.92rem;
    margin: 0;
}

.pricing-price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 6px 0 2px 0;
}

.price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: -0.01em;
}

.price-period {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
}

.price-credits {
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.plan-subtext {
    display: none;
}

.pricing-cta {
    display: none;
}

.pricing-list {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid #e8ecf3;
}

.pricing-list-title {
    font-weight: 700;
    color: #111827;
    margin: 4px 0 6px 0;
    font-size: 0.94rem;
}

.pricing-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 5px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.92rem;
}

.pricing-list li i {
    color: #2563eb;
}

/* Modern Pricing Cards */
.pricing-modern {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-modern-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
    padding: 22px 22px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, filter 0.22s ease;
    overflow: hidden;
}

.pricing-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
    border-color: #d7e3f9;
    filter: saturate(1.02);
}

.pricing-modern-card.featured {
    border-color: #cfdcf8;
    box-shadow: 0 24px 56px rgba(37, 99, 235, 0.18);
    background: linear-gradient(180deg, #f4f7ff 0%, #ffffff 72%);
}

.pricing-modern-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(14, 165, 233, 0.04) 40%, rgba(255, 255, 255, 0) 90%);
    pointer-events: none;
}

.pricing-modern-card.featured::before {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10) 0%, rgba(14, 165, 233, 0.08) 40%, rgba(255, 255, 255, 0) 90%);
}

.pricing-modern-card .card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.pricing-chip-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    border: 1px solid #e5e7eb;
    color: #0f172a;
    background: #f5f7fb;
}

.chip-primary {
    background: #e7edff;
    color: #1d4ed8;
    border-color: #d7e3ff;
}

.chip-muted {
    background: #f5f7fb;
    color: #0f172a;
}

.pricing-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
}

.price-period {
    color: #6b7280;
    font-weight: 600;
}

.price-note {
    margin: 0;
    color: #4b5563;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-features li i {
    color: #0ea15f;
    margin-top: 2px;
    background: #e8f7ef;
    border-radius: 50%;
    padding: 4px;
}

.pricing-btn {
    display: none;
}

@media (max-width: 900px) {
    .pricing-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

/* Scoped overrides to keep the pricing cards neutral and compact */
.pricing-cards .pricing-card {
    padding: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.05);
    transform: none;
}

.pricing-cards .pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.12);
    border-color: #d7e3f9;
}

.pricing-cards .pricing-card.featured {
    background: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    transform: none;
}

.pricing-cards .pricing-card.featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.pricing-cards .pricing-card.featured::before {
    content: none;
}

.pricing-cards .pricing-gradient,
.pricing-cards .pricing-gradient.pro {
    background: #f3f4f6;
}

.pricing-cards .pricing-card-body {
    padding: 10px 10px 12px 10px;
}

@media (max-width: 1100px) {
    .pricing-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .pricing-card-grid {
        grid-template-columns: 1fr;
    }
}

.feature-table-wrapper {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
    margin-top: 1.5rem;
}


.feature-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    color: #1f2937;
    table-layout: fixed;
}

.feature-table thead {
    background: #f3f4f6;
    color: #1f1f1f;
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
}

.feature-table th,
.feature-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.feature-table th:first-child,
.feature-table td:first-child {
    width: 30%;
    font-weight: 700;
    text-align: left;
}

.feature-table tbody tr:hover {
    background: #f8fafc;
}

.feature-table tbody tr:nth-child(even) {
    background: #f9fafb;
}

.feature-table td {
    font-weight: 500;
}

.feature-table td:nth-child(n+2) {
    text-align: center;
    font-weight: 700;
    color: #111827;
    min-width: 110px;
}

.plan-badge {
    background: #eef2ff;
    color: #4338ca;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid #e0e7ff;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #e3edff;
    color: #1d4ed8;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid #d7e3f9;
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}

.status.check {
    background: #e8f6ef;
    color: #0f9f6e;
    border: 1px solid #c9ead8;
}

.status.cross {
    background: #f3f4f6;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
}

.status.limited {
    background: #fff7ed;
    color: #d97706;
    padding: 6px 10px;
    border-radius: 10px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .feature-table thead {
        display: none;
    }

    .feature-table, .feature-table tbody, .feature-table tr, .feature-table td {
        display: block;
        width: 100%;
    }

    .feature-table tr {
        border-bottom: 1px solid #e5e7eb;
        padding: 12px 0;
    }

    .feature-table td {
        text-align: left;
        padding: 8px 16px;
        border: none;
    }

    .feature-table td:first-child {
        font-weight: 800;
        font-size: 1rem;
        padding-top: 12px;
    }

    .feature-table td:nth-child(n+2) {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-right: 12px;
        font-weight: 700;
        text-align: left;
    }
}

.status.check::before { content: "✓"; }
.status.cross::before { content: "✕"; }

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 1.5fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.metric-card {
    background: #ffffff;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    font-weight: 500;
}

.featured-metric {
    background: #000000;
    color: white;
    border: none;
    grid-row: span 2;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.metric-stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.metric-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.metric-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    transition: none;
    text-align: left;
    box-shadow: none;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
    transition: none;
}

.feature-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
    font-weight: 600;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--gradient-elegant);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary);
}

.pricing-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 32px 64px rgba(14, 165, 233, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.2);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.period {
    font-size: 1rem;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-header p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: var(--success);
    font-size: 0.875rem;
    flex-shrink: 0;
}

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

.pricing-card .btn {
    width: 100%;
    margin-top: 2rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

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

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    font-size: 1.1875rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.about-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    height: 400px;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 16px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.05;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 1.75rem;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--gray-300);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.author-info {
    margin-left: 0;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-position {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Guarantee Section */
.guarantee-section {
    padding: 100px 0;
    background: transparent;
    color: white;
}

.guarantee-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.guarantee-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

.guarantee-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.guarantee-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.guarantee-card:nth-child(1) .guarantee-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.guarantee-card:nth-child(2) .guarantee-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
}

.guarantee-card:nth-child(3) .guarantee-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.guarantee-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.guarantee-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Guides Section */
.guides {
    padding: 96px 0;
    background: transparent;
}

.guide-banner {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 32px 32px 30px 32px;
    background: linear-gradient(135deg, #0b162c 0%, #0e1f3f 40%, #0a2c5c 100%);
    color: #ffffff;
    box-shadow: 0 26px 52px rgba(8, 19, 45, 0.35);
}

.guide-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 18%, rgba(59, 130, 246, 0.24), transparent 36%),
                radial-gradient(circle at 78% 6%, rgba(14, 165, 233, 0.16), transparent 32%),
                linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 50%);
    pointer-events: none;
}

.guide-banner-header {
    max-width: 700px;
    margin-bottom: 16px;
}

.guide-banner-header h2 {
    color: #ffffff;
    margin: 0 0 8px 0;
    font-size: 2rem;
}

.guide-banner-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.6;
}

.guide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #e0ecff;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.guide-timeline {
    position: relative;
    margin: 16px 0 14px 0;
}

.timeline-line {
    position: absolute;
    top: 36px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.12));
    border-radius: 999px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 12px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    backdrop-filter: blur(8px);
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.timeline-step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
}

.guide-timeline .timeline-dot,
.timeline-step .timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: transparent !important;
    border: none !important;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}

.guide-step-title {
    margin: 0;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
}

.guide-step-text {
    margin: 3px 0 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Feature Cards (Home) */
.feature-cards {
    padding: 72px 0;
    background: transparent;
}

.feature-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 0 10px 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: none;
}

.feature-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eef2ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: none;
}

.feature-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
}

.feature-card-text {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-weight: 500;
}

.feature-points {
    list-style: none;
    padding: 0;
    margin: 6px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #374151;
    font-weight: 500;
}

.feature-points li i {
    color: #16a34a;
}

/* About page enhancements */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.about-stat-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 0;
    box-shadow: none;
}

.about-stat-label {
    color: #6b7280;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.about-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.about-stat-note {
    margin: 6px 0 0 0;
    color: #4b5563;
    font-weight: 500;
}

.story-heading {
    margin: 0 0 10px 0;
    color: #0f172a;
    font-size: 1.25rem;
    font-weight: 800;
}

.story-text {
    margin: 0 0 10px 0;
    color: #4b5563;
    line-height: 1.65;
}

.story-list {
    margin: 6px 0 0 18px;
    color: #374151;
    line-height: 1.6;
}

.about-timeline {
    background: transparent;
    color: #0f172a;
    border-radius: 0;
    padding: 8px 0;
    border: none;
    box-shadow: none;
}

.timeline-header h2 {
    color: #0f172a;
    margin: 0 0 6px 0;
}

.timeline-header p {
    color: #4b5563;
    margin: 0 0 12px 0;
}

.timeline-rows {
    display: grid;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.timeline-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: start;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: none;
    margin-top: 6px;
}

.timeline-dot.filled {
    background: transparent;
    border: none;
}

.timeline-title {
    margin: 0;
    color: #0f172a;
    font-weight: 800;
    font-size: 1rem;
}

.timeline-text {
    margin: 3px 0 0 0;
    color: #4b5563;
    line-height: 1.55;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.value-card p {
    margin: 6px 0 0 0;
    color: #4b5563;
    line-height: 1.6;
}

/* Content pages (About/Terms) */
.content-page {
    background: #f8f5ef;
}

.content-hero {
    padding: 120px 0 64px 0;
    text-align: center;
}

.content-hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.content-hero .section-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content-hero .section-subtitle {
    max-width: 760px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 auto;
}

.terms-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.terms-date {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.content-section {
    padding: 20px 0;
}

.content-section .container {
    max-width: 900px;
}

.content-grid.two {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.content-grid.three {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.content-stack {
    display: grid;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.content-block {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.content-block:not(:first-child) {
    padding-top: 0;
    margin-top: 0;
}

.content-block p {
    margin: 0 0 16px 0;
    line-height: 1.75;
    color: #374151;
    font-size: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block:first-child p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0;
}

.content-heading {
    margin: 0 0 16px 0;
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.content-subheading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

.content-list {
    margin: 16px 0 20px 0;
    padding-left: 24px;
    color: #374151;
    line-height: 1.75;
    font-size: 1rem;
}

.content-list li {
    margin-bottom: 12px;
}

.content-list li:last-child {
    margin-bottom: 0;
}

.content-list strong {
    color: #0f172a;
    font-weight: 600;
}

.content-cta {
    background: transparent;
    color: #0f172a;
    border-radius: 0;
    padding: 8px 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.content-cta h2 {
    margin: 0 0 6px 0;
    color: #0f172a;
}

.content-cta p {
    margin: 0;
    color: #4b5563;
}

.guide-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #e0ecff;
    color: #0f172a;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.guide-banner-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.25);
}

@media (max-width: 700px) {
    .guide-banner {
        padding: 22px 20px;
    }
    .guide-banner-header h2 {
        font-size: 1.6rem;
    }
}

/* Footer */
.footer {
    background: #ffffff;
    color: var(--gray-600);
    padding: 80px 0 40px;
    border-top: 1px solid var(--gray-200);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .nav-logo {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    font-size: 24px;
}

.footer-brand .nav-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.1);
}

.footer-description {
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-column a {
    color: var(--gray-600);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 2.5rem;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-video {
        max-width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Ensure text appears before image on mobile for all sections */
    .feature-section-text {
        order: 1;
    }

    .feature-section-visual {
        order: 2;
    }

    /* Override reverse order on mobile - text should always come first */
    .feature-section-content.reverse .feature-section-text {
        order: 1;
    }

    .feature-section-content.reverse .feature-section-visual {
        order: 2;
    }

    .feature-section-title {
        font-size: 2.25rem;
    }

    .pricing-modern-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .feature-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .feature-table {
        min-width: 700px;
    }

    .guides {
        padding: 60px 0;
    }

    .guide-banner {
        padding: 24px 20px;
    }

    .pricing-modern {
        padding: 60px 0;
    }

    .feature-breakdown {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-logo-text {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title-line {
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-section {
        padding: 60px 0;
    }

    .feature-section-content {
        padding: 0 20px;
        gap: 2rem;
    }

    /* Ensure text appears before image on mobile */
    .feature-section-text {
        order: 1;
    }

    .feature-section-visual {
        order: 2;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .feature-section-title {
        font-size: 1.875rem;
    }

    .feature-section-subtitle {
        font-size: 1.125rem;
    }

    .feature-section-description {
        font-size: 0.9375rem;
    }

    .feature-image {
        width: 100%;
        max-width: 100%;
    }

    .feature-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }

    .metric-value {
        font-size: 1.75rem;
    }

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

    .about-stats {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-modern-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-modern-card {
        padding: 20px;
    }

    .feature-breakdown {
        display: none;
    }

    .feature-table {
        min-width: 600px;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .guide-timeline {
        margin: 12px 0;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-step {
        padding: 16px;
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .pricing-features li {
        font-size: 0.9375rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
        height: 65px;
    }

    .nav-logo-text {
        font-size: 18px;
    }

    .hero-container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .hero-title-line {
        white-space: normal;
        display: block;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-section {
        padding: 40px 0;
    }

    .feature-section-content {
        padding: 0 15px;
        gap: 1.5rem;
    }

    /* Ensure text appears before image on mobile */
    .feature-section-text {
        order: 1;
    }

    .feature-section-visual {
        order: 2;
    }

    .feature-section-title {
        font-size: 1.5rem;
    }

    .feature-section-subtitle {
        font-size: 1rem;
    }

    .feature-section-description {
        font-size: 0.875rem;
    }

    .benefit-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }

    .benefit-icon i {
        font-size: 0.875rem;
    }

    .benefit-content strong {
        font-size: 0.9375rem;
    }

    .pricing-modern-card {
        padding: 18px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .feature-breakdown {
        display: none;
    }

    .guide-banner-header h2 {
        font-size: 1.5rem;
    }

    .guide-banner-header p {
        font-size: 0.9375rem;
    }

    .guides {
        padding: 40px 0;
    }

    .guide-banner {
        padding: 20px 16px;
    }

    .timeline-step {
        padding: 12px;
        gap: 10px;
    }

    .pricing-modern {
        padding: 40px 0;
    }

    .feature-breakdown {
        display: none;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }

    .timeline-dot {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .guide-step-title {
        font-size: 0.9375rem;
    }

    .guide-step-text {
        font-size: 0.875rem;
    }

    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pricing-modern {
        padding: 40px 0;
    }

    .guides {
        padding: 40px 0;
    }

    .guide-banner {
        padding: 20px 16px;
    }

    .feature-breakdown {
        display: none;
    }

    .feature-table {
        min-width: 500px;
        font-size: 0.875rem;
    }

    .contact-details {
        align-items: center;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .section-header {
        padding: 0 15px;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatParticle 8s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    background: rgba(14, 165, 233, 0.3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    background: rgba(245, 158, 11, 0.2);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    background: rgba(14, 165, 233, 0.4);
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    background: rgba(245, 158, 11, 0.25);
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    background: rgba(14, 165, 233, 0.2);
    top: 30%;
    right: 5%;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-25px) translateX(-10px) scale(1.05);
        opacity: 0.9;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scroll effects */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--gray-300);
    box-shadow: var(--shadow-sm);
}
