:root {
    --color-cream: #E8E4DE;
    --color-warm-white: #0A0A0A;
    --color-charcoal: #000000;
    --color-soft-black: #111111;
    --color-gold: #E6E6E6;
    --color-gold-light: #dddddd;
    --color-gold-dark: #646464;
    --color-sage: #757773;
    --color-text-muted: #999999;
    --color-focus: #E6E6E6;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* WhatsApp floating button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s var(--ease-smooth);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-focus);
    outline-offset: 3px;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, var(--color-charcoal), transparent);
    transition: all 0.4s var(--ease-smooth);
}

.navigation.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
}

img.logo {
    object-fit: cover;
    width: 100%;
    height: 46px;
}

.logo-footer {
    object-fit: cover;
    width: 100%;
    height: 60px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-cream);
}

.logo span {
    color: var(--color-gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-cream);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease-smooth);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(193, 127, 89, 0.08), transparent),
        radial-gradient(ellipse 50% 30% at 10% 60%, rgba(139, 154, 125, 0.06), transparent);
    z-index: -1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    color: var(--color-charcoal);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.2s forwards;
}

.hero-tag::before {
    content: '✦';
    font-size: 0.6rem;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.4s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.6s forwards;
}

/* Countdown Section */
.countdown-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease-smooth) 0.8s forwards;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 16px;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-top: 0.5rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s var(--ease-smooth) 1.2s forwards;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Problem Section */
.problem {
    padding: 8rem 4rem;
    background: var(--color-soft-black);
    color: var(--color-cream);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--color-charcoal), transparent);
}

.section-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--color-gold);
}

.problem h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.problem h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.problem-text {
    color: rgba(245, 241, 235, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 2px solid var(--color-gold);
    transition: all 0.3s var(--ease-smooth);
}

.problem-list li:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(8px);
}

.problem-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-list h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.problem-list p {
    font-size: 0.9rem;
    color: rgba(245, 241, 235, 0.6);
}

/* Solution Section */
.solution {
    padding: 8rem 4rem;
    background: var(--color-charcoal);
}

.solution .section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.solution-content {
    display: flex;
    flex-direction: column;
}

.solution h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-cream);
}

.solution h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.solution-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.philosophy-box {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.philosophy-box blockquote {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--color-cream);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.philosophy-box blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.3rem;
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-charcoal);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 12px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--color-cream);
}

.step-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Benefits Section */
.benefits {
    padding: 8rem 4rem;
    background: var(--color-soft-black);
}

.benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.benefits h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--color-cream);
}

.benefits h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.benefits-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

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

.benefit-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 16px;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--color-cream);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* For Restaurants Section */
.restaurants {
    padding: 8rem 4rem;
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.restaurants .section-grid {
    grid-template-columns: 1fr 1.2fr;
}

.restaurants h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.restaurants h2 em {
    font-style: italic;
    color: var(--color-gold);
}

.restaurants-text {
    font-size: 1.1rem;
    color: rgba(245, 241, 235, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.restaurant-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.restaurant-benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
}

.restaurant-benefit:hover {
    background: rgba(255, 255, 255, 0.06);
}

.restaurant-benefit .check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-charcoal);
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Registration Form */
.register-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(201, 169, 98, 0.2);
}

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

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-header p {
    font-size: 0.9rem;
    color: rgba(245, 241, 235, 0.6);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--color-gold-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-cream);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 241, 235, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9A962' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.form-group select option {
    background: var(--color-charcoal);
    color: var(--color-cream);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border: none;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal);
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(245, 241, 235, 0.5);
    margin-top: 1rem;
}

/* Form validation styles */
.form-group.error input,
.form-group.error select {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.form-group .error-message {
    display: none;
    font-size: 0.75rem;
    color: #e74c3c;
    margin-top: 0.4rem;
}

.form-group.error .error-message {
    display: block;
}

.form-group.success input,
.form-group.success select {
    border-color: #27ae60;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn .spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--color-charcoal);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

.submit-btn.loading .spinner {
    display: inline-block;
}

.submit-btn.loading .btn-text {
    opacity: 0.7;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer */
footer {
    padding: 4rem;
    background: var(--color-soft-black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-cream);
}

.footer-logo span {
    color: var(--color-gold);
}

.footer-text {
    font-size: 0.9rem;
    color: rgba(245, 241, 235, 0.5);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    color: var(--color-cream);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem;
}

.success-message.show {
    display: block;
}

.success-message .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: rgba(245, 241, 235, 0.7);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .restaurant-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .restaurants .section-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .navigation {
        justify-content: center;
    }

    .hero {
        padding: 5rem 1.25rem 3rem;
    }

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

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

    .hero-tag {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.8rem 1rem;
        min-width: 65px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .countdown-unit {
        font-size: 0.6rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }

    .problem,
    .solution,
    .benefits,
    .restaurants {
        padding: 3.5rem 1.25rem;
    }

    .section-label {
        font-size: 0.7rem;
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .section-label::before {
        width: 1rem;
    }

    .problem h2,
    .solution h2,
    .benefits h2,
    .restaurants h2 {
        font-size: 1.75rem;
    }

    .problem-text,
    .solution-text,
    .restaurants-text {
        font-size: 1rem;
    }

    .problem-list {
        gap: 1rem;
    }

    .problem-list li {
        padding: 1.25rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .problem-icon {
        font-size: 1.3rem;
    }

    .problem-list h3 {
        font-size: 1rem;
    }

    .problem-list p {
        font-size: 0.85rem;
    }

    /* Solution section mobile */
    .solution {
        padding: 3.5rem 1.25rem;
    }

    .solution .section-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .solution h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .solution-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .philosophy-box {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .philosophy-box blockquote {
        font-size: 1rem;
        line-height: 1.5;
        padding-left: 1rem;
    }

    .philosophy-box blockquote::before {
        font-size: 2rem;
        top: -0.2rem;
    }

    /* Benefits mobile */
    .benefits-header {
        margin-bottom: 2.5rem;
    }

    .benefits-subtitle {
        font-size: 0.95rem;
    }

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

    .benefit-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .benefit-card:hover {
        transform: none;
    }

    .benefit-card::before {
        transform: scaleX(1);
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Solution steps mobile */
    .steps {
        gap: 0.75rem;
    }

    .step {
        padding: 1.25rem;
        gap: 1rem;
    }

    .step:hover {
        transform: none;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .philosophy-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .philosophy-box blockquote {
        font-size: 1.1rem;
        padding-left: 1.25rem;
    }

    .philosophy-box blockquote::before {
        font-size: 2.5rem;
    }

    /* Restaurants mobile */
    .restaurant-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .restaurant-benefit {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .restaurant-benefit .check {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    /* Form mobile */
    .register-form {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
        margin-top: 2rem;
    }

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

    .form-header h3 {
        font-size: 1.25rem;
    }

    .form-header p {
        font-size: 0.85rem;
    }

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

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .submit-btn {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .form-note {
        font-size: 0.75rem;
    }

    /* Footer mobile */
    footer {
        padding: 2.5rem 1.25rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-text {
        font-size: 0.8rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }

    /* Success message mobile */
    .success-message {
        padding: 2rem 1rem;
    }

    .success-message .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .success-message h3 {
        font-size: 1.25rem;
    }

    .success-message p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4.5rem 1rem 2.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .countdown-item {
        padding: 0.7rem 0.8rem;
        min-width: 58px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .problem,
    .solution,
    .benefits,
    .restaurants {
        padding: 3rem 1rem;
    }

    .problem h2,
    .benefits h2,
    .restaurants h2 {
        font-size: 1.5rem;
    }

    .solution h2 {
        font-size: 1.4rem;
    }

    .solution-text {
        font-size: 0.9rem;
    }

    .philosophy-box {
        padding: 1rem;
    }

    .philosophy-box blockquote {
        font-size: 0.95rem;
    }

    .step {
        padding: 1rem;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.8rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .register-form {
        padding: 1.5rem 1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) {

    .benefit-card:hover,
    .step:hover,
    .problem-list li:hover,
    .restaurant-benefit:hover {
        transform: none;
    }

    .benefit-card::before {
        transform: scaleX(1);
    }
}

/* User Waitlist Section */
.user-waitlist {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--color-black) 0%, #0a0a0a 100%);
    text-align: center;
}

.waitlist-content {
    max-width: 550px;
    margin: 0 auto;
}

.waitlist-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 2rem;
}

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

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

.form-step.hidden {
    display: none;
}

.step2-text {
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.waitlist-form textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1.1rem;
    font-family: inherit;
    resize: none;
    transition: all 0.3s ease;
}

.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.waitlist-form textarea::placeholder {
    color: var(--color-gray);
}

.waitlist-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
}

.waitlist-form input::placeholder {
    color: var(--color-gray);
}

.waitlist-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-gold);
    color: #000000;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.waitlist-btn:hover {
    background: var(--color-gold-light);
    transform: translateY(-2px);
}

.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.waitlist-btn.loading .btn-text {
    opacity: 0;
}

.waitlist-btn .spinner {
    display: none;
}

.waitlist-btn.loading .spinner {
    display: block;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--color-black);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.waitlist-note {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-top: 1rem;
}

.waitlist-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem;
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: 12px;
    color: #27ae60;
    margin-top: 1rem;
}

.waitlist-success.show {
    display: flex;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group .error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.8rem;
    text-align: left;
    margin-top: 0.5rem;
}

.form-group.error .error-message {
    display: block;
}