:root {
    /* Nostalgic/Vintage-Modern Palette */
    --primary: #C17F59;
    /* Terracotta */
    --primary-dark: #A66B48;
    --secondary: #8B5A3C;
    /* Vintage Brown */
    --accent: #D4A574;
    /* Gold */
    --bg-warm: #FDF8F3;
    /* Cream */
    --bg-sepia: #F5EDE4;
    /* Sepia */
    --text-dark: #3D2B1F;
    /* Dark Brown */
    --text-muted: #7D6B5D;
    /* Muted Brown */
    --white: #ffffff;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: clamp(60px, 8vw, 100px) 0;

    /* Shadows & Radius */
    --shadow-soft: 0 10px 30px -10px rgba(61, 43, 31, 0.1);
    --shadow-hover: 0 20px 40px -10px rgba(61, 43, 31, 0.15);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Typography */
body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-warm);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-top: 0;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(193, 127, 89, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 127, 89, 0.5);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Header */
.header {
    background-color: rgba(253, 248, 243, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(125, 107, 93, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 1.75rem);
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

#language-select {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(125, 107, 93, 0.2);
    background-color: transparent;
    font-family: 'Manrope', sans-serif;
    color: var(--text-dark);
    cursor: pointer;
    max-width: 100px;
}

/* Hero Section */
.hero {
    padding: clamp(80px, 12vw, 120px) 0 80px;
    background: radial-gradient(circle at 50% 50%, var(--bg-sepia) 0%, var(--bg-warm) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    margin-bottom: 24px;
    color: var(--text-dark);
    padding: 0 10px;
}

.subtitle {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 10px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stars {
    color: #F59E0B;
}

/* Hero Comparison */
.hero-comparison {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 8px solid var(--white);
}

/* Comparison Slider */
.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 8/11;
    overflow: hidden;
    cursor: col-resize;
    touch-action: none;
    /* Fix for mobile touch dragging */
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    z-index: 2;
    border-right: 2px solid var(--white);
    overflow: hidden;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.slider-handle::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid var(--primary);
    margin-right: 4px;
}

.slider-handle::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--primary);
    margin-left: 4px;
}

.label {
    position: absolute;
    top: 20px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .label {
        padding: 4px 10px;
        font-size: 0.7rem;
        top: 10px;
    }

    .before-image .label {
        right: 10px;
    }

    .after-image .label {
        left: 10px;
    }
}

.before-image .label {
    right: 20px;
}

.after-image .label {
    left: 20px;
}

/* Stats Bar */
.stats-bar {
    padding: 60px 0;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    flex: 1 1 150px;
    /* Allow wrapping */
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.25rem);
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 5vw, 2.625rem);
    margin-bottom: 60px;
    color: var(--text-dark);
    padding: 0 10px;
}

/* How It Works */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--bg-warm);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: start;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-10px);
}

/* Image styling for steps */
.step-image-container {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 4px solid var(--bg-sepia);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-img-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.step-card:hover .step-img-preview {
    transform: scale(1.05);
}

/* Icons for non-image steps */
.step-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: var(--bg-sepia);
    border-radius: 50%;
    position: relative;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    position: relative;
}

/* Magic Animation */
.magic-effect .step-icon {
    background: linear-gradient(135deg, #fff5eb 0%, #fdf8f3 100%);
    box-shadow: 0 0 30px rgba(193, 127, 89, 0.2);
}

.magic-effect .step-icon img {
    animation: float-magic 3s ease-in-out infinite;
}

.magic-effect .step-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--primary);
    opacity: 0.5;
    animation: spin-slow 10s linear infinite;
}

.magic-effect .step-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(193, 127, 89, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse-glow 2s infinite;
}

@keyframes float-magic {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes spin-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    margin-top: auto;
}

.step-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Features Bento Grid */
.features {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.bento-item {
    background-color: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.bento-item:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.02);
}

.feature-restore {
    grid-column: 1 / 3;
    background: linear-gradient(135deg, #FDF8F3 0%, #fae8e0 100%);
}

.feature-animate {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    background: linear-gradient(to bottom, #FDF8F3, #e8dfd8);
    min-height: 624px;
    /* Align with two rows */
    position: relative;
    padding: 0;
    /* Remove padding to let video cover edge-to-edge */
}

.feature-animate .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    /* Full opacity for video */
}

.feature-animate .bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 30px;
    z-index: 2;
}

.feature-animate .bento-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 10px;
    width: 60px;
    height: 60px;
    backdrop-filter: blur(5px);
}

.bento-content h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    margin-bottom: 16px;
}

.bento-icon {
    width: 80px;
    height: 80px;
    align-self: flex-end;
    opacity: 0.9;
    flex-shrink: 0;
}

.bento-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Use Cases */
.use-cases {
    padding: var(--section-padding);
    background-color: var(--bg-warm);
}

/* Gallery */
.gallery {
    padding: var(--section-padding);
    background-color: var(--bg-sepia);
}

.gallery-grid {
    column-count: 3;
    column-gap: 20px;
}

@media (max-width: 900px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--white);
    transition: transform 0.3s ease;
    position: relative;
    background-color: var(--bg-warm);
    break-inside: avoid;
    margin-bottom: 20px;
    /* Remove aspect-ratio to let image define height */
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: opacity 1s ease-in-out;
}

/* Image Layering for Masonry */
/* The 'Before' image sets the height naturally (static position) */
.gallery-item .img-before {
    position: relative;
    z-index: 1;
}

/* The 'After' image overlays strictly on top */
.gallery-item .img-after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 2;
    animation: fadeComparison 4s infinite;
}

@keyframes fadeComparison {
    0% {
        opacity: 0;
    }

    /* Show Before */
    45% {
        opacity: 0;
    }

    /* Stay Before */
    55% {
        opacity: 1;
    }

    /* Fade to After */
    100% {
        opacity: 1;
    }

    /* Stay After */
}

/* Badge for Gallery Items */
.gallery-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    animation: badgeText 4s infinite;
}

@keyframes badgeText {
    0% {
        content: "Before";
        opacity: 0.8;
    }

    45% {
        opacity: 0.8;
    }

    50% {
        opacity: 0;
    }

    55% {
        opacity: 0.8;
    }

    100% {
        content: "After";
        opacity: 0.8;
    }
}

/* Use pseudo-element for text switching to avoid JS */
.gallery-badge::after {
    content: "Before";
    animation: badgeContent 4s infinite;
}

@keyframes badgeContent {
    0% {
        content: "Before";
    }

    45% {
        content: "Before";
    }

    55% {
        content: "After";
    }

    100% {
        content: "After";
    }
}

/* Pricing */
.pricing {
    padding: var(--section-padding);
    background-color: var(--bg-warm);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(193, 127, 89, 0.2);
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
        /* Reset scaling on mobile */
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2.625rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
}

.features-list li::before {
    content: '✓';
    color: var(--primary);
    margin-right: 10px;
    font-weight: bold;
}

/* FAQ */
.faq {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.125rem, 4vw, 1.25rem);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding-bottom: 24px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* Final CTA */
.cta-final {
    padding: 120px 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-final h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 20px;
    color: var(--white);
    padding: 0 10px;
}

.cta-final p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.9;
    padding: 0 10px;
}

.cta-final .btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.cta-final .btn-primary:hover {
    background-color: var(--bg-warm);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a:hover {
    color: var(--white);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(193, 127, 89, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
}

.floating-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.floating-cta:hover {
    transform: translateY(-5px);
    background-color: var(--primary-dark);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

/* SEO Content Section */
.seo-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.seo-grid.reverse>.seo-text {
    order: 2;
}

.seo-grid.reverse>.seo-image-wrapper {
    order: 1;
}

.seo-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 24px;
    color: var(--primary);
}

.seo-text p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.seo-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.seo-text ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.seo-text ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-size: 20px;
    line-height: 1;
}

.seo-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--white);
    aspect-ratio: 4/3;
    width: 100%;
}

.seo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.seo-image-wrapper:hover .seo-image {
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.seo-cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-animate {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
    }

    .feature-restore {
        grid-column: 1 / 2;
    }
}

@media (max-width: 900px) {
    .header .nav-links {
        display: none;
        /* Consider implementing a hamburger menu */
    }

    .seo-grid,
    .seo-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .seo-grid.reverse>.seo-text {
        order: 1;
    }

    .seo-grid>.seo-image-wrapper,
    .seo-grid.reverse>.seo-image-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        display: flex;
        flex-direction: column;
    }

    .bento-item {
        min-height: auto;
    }

    .feature-animate {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    .feature-animate .bg-video {
        position: relative;
        width: 100%;
        height: auto;
        aspect-ratio: 9/16;
        object-fit: cover;
    }

    .feature-animate .bento-content {
        position: relative;
        background: #ffffff;
        width: 100%;
        padding: 30px;
    }

    .feature-animate .bento-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        /* Keep icon floating over video on mobile too? Or move it. Keeping it over video looks standard. */
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

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

    .step-card {
        padding: 30px 20px;
    }

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

    .pricing-card.popular {
        transform: none;
        border-width: 1px;
    }

    .hero-comparison {
        border-width: 4px;
    }

    .seo-image-wrapper {
        border-width: 4px;
    }

    .gallery-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
}