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

:root {
    /* Custom accent colors */
    --accent-yellow: #ffe64e;
    --accent-pink: #e977ac;
    --accent-teal: #79c6bb;
    
    /* Primary colors using the new accents */
    --primary-purple: #6366f1;
    --primary-rose: #e977ac;
    --primary-mint: #79c6bb;
    --primary-yellow: #ffe64e;
    
    /* Text colors */
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    
    /* Background colors */
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-light: #f3f4f6;
    
    /* Utilities */
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

main {
    overflow-x: hidden;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo h1, .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

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

.nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-btn-small {
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-rose));
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 0;
    position: relative;
    overflow: visible;
}

.hero-image {
    background-image: url('images/restaurant.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-text-container {
    background: var(--accent-yellow);
    width: 100%;
    position: relative;
    margin-top: -20vh; /* 20% overlap */
    padding: 4rem 0;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-rose));
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(233, 119, 172, 0.3);
}

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

.cta-btn-primary:hover::before {
    left: 100%;
}

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

/* Animated Speech Bubbles */
.animated-bubble {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease;
    /* Centrerar bubblan kring sin position */
    transform: translate(-50%, -50%);
}

.animated-bubble.fade-in {
    opacity: 1;
}

.animated-bubble.fade-out {
    opacity: 0;
}

.bubble-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: bubbleFloat 3s ease-in-out infinite;
}

.bubble-state.active {
    opacity: 1;
}

@keyframes bubbleFloat {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
    100% { transform: translateY(0px) scale(1); }
}

/* Remove old speech bubble animation */
.speech-bubble-animation {
    display: none;
}

.review-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-purple);
    animation: float 6s ease-in-out infinite;
}

.review-card:nth-child(2) {
    animation-delay: -3s;
    margin-left: 2rem;
}

.review-platform {
    font-weight: 600;
    color: var(--primary-purple);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.ai-response {
    background: var(--bg-light);
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-dark);
    border-left: 3px solid var(--primary-mint);
}

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

/* Trusted Platforms Section */
.trusted-platforms {
    padding: 4rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.platforms-title {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.platform-logo-mono {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

.platform-logo-mono:hover {
    transform: scale(1.1);
    opacity: 1;
}

.logo-svg {
    width: 48px;
    height: 48px;
    color: var(--text-gray);
}

.logo-svg path,
.logo-svg circle,
.logo-svg rect,
.logo-svg text {
    fill: var(--text-gray);
    stroke: var(--text-gray);
}

@media (max-width: 768px) {
    .platforms-logos {
        gap: 1.5rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-items: center;
    }
    /* Adjust logo sizes for mobile */
    .platform-logo-horizontal {
        width: 36px;
        height: 36px;
    }
}

/* Pricing Preview Section */
.pricing-preview {
    padding: 80px 0;
    background: var(--bg-gray);
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

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

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.pricing-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: #1f2937;
    padding: 1rem 1rem 0.5rem; 
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
}

.pricing-card-icon-container {
    width: 100%;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.pricing-card-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20%;
    box-sizing: border-box;
}

.pricing-card.basic .pricing-card-icon-container {
    background: rgba(121, 198, 187, 0.15);
}

.pricing-card.aspiring .pricing-card-icon-container {
    background: rgba(255, 230, 78, 0.15);
}

.pricing-card.pro .pricing-card-icon-container {
    background: rgba(233, 119, 172, 0.15);
}

.pricing-card.addon .pricing-card-icon-container {
    background: rgba(99, 102, 241, 0.15);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding: 0 2rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
    padding: 0 2rem;
    line-height: 0.5;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card .features {
    list-style: none;
    padding: 0 2rem;
    margin: 1.5rem 0;
    text-align: left;
    flex: 1;
}

.pricing-card .features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.pricing-card .features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 600;
}

.pricing-card .ideal-for {
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: 0;
    color: var(--text-gray);
    font-style: italic;
    margin-top: auto;
    margin-bottom: 0;
}

.pricing-card.basic {
    border-left: 4px solid var(--accent-teal);
}

.pricing-card.aspiring {
    border-left: 4px solid var(--accent-yellow);
}

.pricing-card.pro {
    border-left: 4px solid var(--accent-pink);
}

.pricing-card.addon {
    border-left: 4px solid var(--primary-purple);
}

/* Mobile Pricing Scroll Navigation */
.pricing-preview {
    position: relative;
}

.pricing-scroll-nav {
    display: none;
}

@media (max-width: 768px) {
    .pricing-scroll-nav {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        pointer-events: none;
        z-index: 10;
        padding: 0 0.5rem;
    }
    
    .scroll-arrow {
        pointer-events: all;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid var(--border-light);
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .scroll-arrow:hover {
        background: white;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .scroll-arrow svg {
        width: 24px;
        height: 24px;
        stroke: var(--text-dark);
        stroke-width: 3;
    }
    
    .scroll-arrow.prev {
        margin-left: -24px;
    }
    
    .scroll-arrow.next {
        margin-right: -24px;
    }
    
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }
    
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-height: 550px;
    }
    
    
    .pricing-card.popular {
        transform: none;
    }
    .pricing-card .price {
        font-size: 2rem;
    }
}

/* Research Insights Section */
.research-insights {
    padding: 80px 0;
    background: var(--bg-gray);
}

.insights-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.insight-card {
    background: var(--accent-teal);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.insight-card.highlight-card {
    border-color: var(--accent-yellow);
    background: var(--accent-yellow);
}

.insight-card:nth-child(2) {
    border-color: var(--accent-pink);
    background: var(--accent-pink);
}

.insight-card:nth-child(4) {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
}

.insight-card:nth-child(5) {
    border-color: #ef4444;
    background: #ef4444;
}

.insight-stat {
    font-size: 7rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.highlight-card .insight-stat {
    color: var(--text-dark);
}

.highlight-card .insight-text {
    color: var(--text-dark);
}

.insight-text {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-impact {
    font-size: 0.9rem;
    color: white;
    font-style: italic;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

.highlight-card .insight-impact {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

.insight-card:nth-child(5) .insight-impact {
    background: rgba(255, 255, 255, 0.2);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--accent-teal);
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.problem .section-title {
    color: white;
}

.how-it-works .section-title {
    color: white;
}

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

.problem-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
    border: none;
}


.problem-item:hover {
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.problem-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--accent-teal);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.solution-text p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    z-index: 0;
}

.benefit:nth-child(1)::before {
    background: var(--accent-yellow);
}

.benefit:nth-child(2)::before {
    background: var(--accent-pink);
}

.benefit:nth-child(3)::before {
    background: var(--accent-teal);
}

.benefit-icon-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

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

.benefit span:last-child {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .benefit {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .benefit-icon-container {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }
    
    .benefit span:last-child {
        font-size: 1rem;
    }
}

/* Solution Visual */
.automation-slider {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.slider-label {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.slider-track {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    position: relative;
    margin: 1rem 0;
}

.slider-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-rose));
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 70%;
    animation: pulse 2s ease-in-out infinite;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #e977ac;
}

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

.step {
    background: transparent;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.step-illustration {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 2rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
}

/* Step backgrounds with different colors */
.step:nth-child(1) .step-illustration {
    background: rgba(99, 102, 241, 1); 
}

.step:nth-child(2) .step-illustration {
    background: rgba(121, 198, 187, 1);
}

.step:nth-child(3) .step-illustration {
    background: rgba(255, 230, 78, 1);
}

.step-image {
    width: 100%;
    height: auto;
    display: block;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--primary-rose));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.platform-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.platform-icon-symbol {
    width: 2rem;
    height: 2rem;
    max-width: 2rem;
    max-height: 2rem;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.platform-icon-symbol:hover {
    transform: scale(1.1);
}

.icon-svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.platform-logo-horizontal {
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 68px;
    height: 68px;
    object-fit: contain;
    opacity: 0.8;
}

.platform-logo-horizontal:hover {
    opacity: 1;
    transform: scale(1.1);
}

.tone-selector {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tone-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-light);
    background: var(--bg-white);
    color: var(--text-gray);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tone-btn.active,
.tone-btn:hover {
    border-color: var(--primary-purple);
    background: var(--primary-purple);
    color: white;
}

.tone-btn:nth-child(1).active,
.tone-btn:nth-child(1):hover {
    border-color: var(--accent-teal);
    background: var(--accent-teal);
}

.tone-btn:nth-child(2).active,
.tone-btn:nth-child(2):hover {
    border-color: var(--accent-pink);
    background: var(--accent-pink);
}

.tone-btn:nth-child(3).active,
.tone-btn:nth-child(3):hover {
    border-color: var(--accent-yellow);
    background: var(--accent-yellow);
    color: #1f2937;
}

.activation-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-light);
    transition: 0.4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-rose));
}

.toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: #d557d5;
    color: white;
    text-align: center;
}

.final-cta .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.signup-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    max-width: 400px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.signup-form .cta-btn-primary {
    width: 100%;
    margin-bottom: 1rem;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Consent Checkbox Styles */
.consent-group {
    margin-bottom: 1.5rem;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.consent-checkbox input:checked + .checkmark {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.consent-checkbox input:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

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

.consent-text a {
    color: var(--primary-purple);
    text-decoration: underline;
}

.consent-text a:hover {
    text-decoration: none;
}

/* Platform Checkbox Styles */
.platform-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
}

.platform-checkbox:hover {
    background-color: rgba(99, 102, 241, 0.05);
}

.platform-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-purple);
    cursor: pointer;
}

.platform-name {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.platform-checkbox input[type="checkbox"]:checked + .platform-name {
    color: var(--primary-purple);
    font-weight: 600;
}

/* Lead Magnet Styles */
.lead-magnet {
    background: #ffe64e;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 3rem;
    overflow: hidden;
}

.lead-magnet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin: -2rem;
    overflow: hidden;
}

.lead-magnet-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lead-magnet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.lead-magnet-text {
    text-align: left;
    color: var(--text-dark);
    padding: 2rem 3rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-magnet h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.lead-magnet .section-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead-magnet p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .lead-magnet-content {
        grid-template-columns: 1fr;
        text-align: center;
        margin: -2rem;
    }
    
    .lead-magnet-text {
        text-align: center;
        padding: 2rem;
    }
    
    .lead-magnet .section-title {
        text-align: center;
    }
    
    .lead-magnet-image {
        order: -1;
        margin-bottom: 0;
        min-height: 200px;
    }
    
    .lead-magnet-image img {
        min-height: 200px;
    }
}

/* Hotel Hero Section */
.hotel-hero {
    padding: 0;
    background-image: url('images/hotel.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
}

.hotel-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 3rem;
}

.hotel-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    max-width: 800px;
    width: 100%;
}

.hotel-hero .section-title {
    margin-bottom: 2rem;
}

.hotel-hero p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image {
        height: 80vh;
    }
    
    .hero-text-container {
        margin-top: -15vh;
        padding: 3rem 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: 4.5rem;
        padding: 20px;
    }
    
    .hotel-hero {
        padding: 80px 0;
        min-height: 60vh;
    }
    
    .hotel-content-card {
        padding: 2rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border-light);
        padding: 1rem;
        display: none;
        flex-direction: column;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav a {
        padding: 0.75rem;
        border-radius: var(--radius-sm);
        text-align: center;
    }
    
    .nav a:hover {
        background: var(--bg-light);
    }
    
    .language-switcher {
        position: absolute;
        top: 1rem;
        right: 60px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3.75rem;
        padding: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        padding: 0px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
}
/* Error state for checkbox */
.consent-checkbox.error .checkmark {
    border-color: #ef4444;
}

.consent-checkbox.error .consent-text {
    color: #ef4444;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 1rem;
}

.language-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.language-button:hover {
    border-color: var(--primary-purple);
    background: rgba(99, 102, 241, 0.05);
}

.flag-icon {
    font-size: 1.2rem;
    line-height: 1;
}

.language-code {
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.8;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-switcher.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: background-color 0.2s ease;
}

.language-dropdown button:hover {
    background-color: var(--bg-light);
}

.language-dropdown button:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.language-dropdown button:last-child {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.language-dropdown button::before {
    content: attr(data-flag);
    font-size: 1.2rem;
}

/* GDPR Compliance Section */
.gdpr-compliance {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-yellow) 0%, rgba(255, 230, 78, 0.8) 100%);
    position: relative;
}

.gdpr-compliance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.gdpr-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 0;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.gdpr-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.gdpr-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.gdpr-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gdpr-text h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gdpr-text p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gdpr-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

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

.gdpr-feature svg {
    color: var(--accent-teal);
    flex-shrink: 0;
}

.gdpr-feature span {
    color: var(--text-dark);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .gdpr-content {
        grid-template-columns: 1fr;
    }
    
    .gdpr-image {
        height: 200px;
        order: -1;
    }
    
    .gdpr-image img {
        min-height: 200px;
    }
    
    .gdpr-text {
        padding: 2rem;
    }
    
    .gdpr-text h3 {
        font-size: 1.5rem;
    }
}

/* Two-Step Form Styles */
.two-step-form {
    position: relative;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step.step-2 {
    animation: slideIn 0.3s ease;
}

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

.back-button {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-gray);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.back-button:hover {
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

/* Enhanced CTA Button */
.cta-enhanced {
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
}

.cta-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.cta-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-enhanced:active::after {
    width: 300px;
    height: 300px;
}

/* Trust Indicators */
.trust-indicators {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Platform Checkboxes Grid */
.platforms-group {
    margin-bottom: 1.5rem;
}

.platforms-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.platform-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
    border: 1px solid transparent;
}

.platform-checkbox:hover {
    background-color: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.platform-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-purple);
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.platform-checkbox input[type="checkbox"]:checked + .checkbox-label {
    color: var(--primary-purple);
    font-weight: 600;
}

/* B Variant Specific Styles */
.trust-indicators {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    opacity: 0.9;
}

.cta-enhanced {
    box-shadow: 0 4px 15px rgba(227, 119, 172, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227, 119, 172, 0.4);
}

.cta-enhanced:active {
    transform: translateY(0);
}

/* Solution Section - Updated Layout */
.solution .section-title {
    color: white;
}

.solution-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: white;
    margin: 2rem auto 3rem;
    max-width: 800px;
    text-align: center;
}

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

.benefit-tile {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.benefit-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    z-index: 0;
}

.benefit-tile:nth-child(1)::before {
    background: var(--accent-yellow);
}

.benefit-tile:nth-child(2)::before {
    background: var(--accent-pink);
}

.benefit-tile:nth-child(3)::before {
    background: var(--accent-teal);
}

.benefit-tile .benefit-icon-container {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

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

.benefit-tile h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-tile p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Remove old automation slider styles */
.automation-slider,
.slider-label,
.slider-track,
.slider-thumb,
.slider-values {
    display: none;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-tile {
        padding: 2rem 1.5rem;
    }
    
    .benefit-tile .benefit-icon-container {
        width: 150px;
        height: 150px;
    }
}
