/* ==========================================================================
   LuxeMenu - Premium Landing Page Stylesheet (Standalone & Independent)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- Design System & Variables --- */
:root {
    --bg-dark-1: #fbfbf9;
    --bg-dark-2: #f5f3ec;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: #ffffff;
    
    --primary-gold: #b38e47;
    --primary-gold-rgb: 179, 142, 71;
    --primary-gold-hover: #9c7423;
    --gold-glow: rgba(179, 142, 71, 0.08);
    
    --text-light: #18181b; /* Zinc-900 */
    --text-muted: #52525b; /* Zinc-600 */
    --text-dark: #fcfbf9;  /* Inverted text */
    
    --border-color: rgba(24, 24, 27, 0.06);
    --border-hover: rgba(179, 142, 71, 0.35);
    
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* --- Resets & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark-1);
    color: var(--text-light);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-dark-1);
    overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.25;
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* --- Premium Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), #e6c587);
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
    background: linear-gradient(135deg, #e6c587, var(--primary-gold));
}

.btn-green {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #ffffff !important;
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.05);
    transform: translateY(-2px);
}

/* --- Glassmorphism Elements --- */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
                0 0 40px rgba(197, 160, 89, 0.03);
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(251, 250, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

header:not(.scrolled) {
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    fill: var(--primary-gold);
}

nav {
    display: none; /* Hidden on mobile by default */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition-fast);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-dark-2);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 30px rgba(24, 24, 27, 0.05);
    /* Ekran dışına 'right: -100%' yerine transform ile atılır; aksi halde
       iOS Safari'de kapsayıcının genişliğini artırıp yatay kaymaya neden olur. */
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

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

.mobile-menu-link {
    font-size: 1.15rem;
    font-weight: 600;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    overflow: hidden;
}

.hero-grid {
    grid-template-columns: 1fr;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

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

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* --- Premium Phone Mockup --- */
.phone-mockup-container {
    position: relative;
    width: 480px;
    height: 560px;
    perspective: 1500px;
    margin: 0 auto;
}

.phone-mockup {
    position: absolute;
    width: 250px;
    height: 500px;
    border-radius: 2rem;
    background: #000;
    border: 8px solid #1a1a1a;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.4),
                0 0 25px rgba(197, 160, 89, 0.08);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Specific Positions & Rotations for Overlapping Look */
.phone-left {
    left: 0;
    top: 50px;
    z-index: 1;
    transform: rotateY(20deg) rotateX(6deg) scale(0.9);
    opacity: 0.75;
}

.phone-center {
    left: 50%;
    transform: translateX(-50%) translateY(0) scale(1);
    z-index: 3;
    box-shadow: 0 25px 55px -10px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(197, 160, 89, 0.15);
}

.phone-right {
    right: 0;
    top: 50px;
    z-index: 2;
    transform: rotateY(-20deg) rotateX(6deg) scale(0.9);
    opacity: 0.8;
}

/* Interactive Hover Animations */
.phone-mockup-container:hover .phone-left {
    transform: rotateY(28deg) rotateX(6deg) scale(0.92) translateX(-25px);
    opacity: 0.95;
    z-index: 2;
}

.phone-mockup-container:hover .phone-center {
    transform: translateX(-50%) translateY(-15px) scale(1.04);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.65),
                0 0 50px rgba(197, 160, 89, 0.25);
}

.phone-mockup-container:hover .phone-right {
    transform: rotateY(-28deg) rotateX(6deg) scale(0.92) translateX(25px);
    opacity: 0.98;
    z-index: 2;
}

/* Bring hovered phone to the front and scale it up */
.phone-mockup-container .phone-left:hover {
    z-index: 10 !important;
    opacity: 1 !important;
    transform: rotateY(8deg) rotateX(4deg) scale(1.05) translateY(-25px) translateX(-10px) !important;
    filter: none !important;
    box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(197, 160, 89, 0.35) !important;
}

.phone-mockup-container .phone-center:hover {
    z-index: 10 !important;
    opacity: 1 !important;
    transform: translateX(-50%) translateY(-30px) scale(1.08) !important;
    filter: none !important;
    box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(197, 160, 89, 0.4) !important;
}

.phone-mockup-container .phone-right:hover {
    z-index: 10 !important;
    opacity: 1 !important;
    transform: rotateY(-8deg) rotateX(4deg) scale(1.05) translateY(-25px) translateX(10px) !important;
    filter: none !important;
    box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.6),
                0 0 50px rgba(197, 160, 89, 0.35) !important;
}

/* Dim & blur sibling phones when one is hovered */
.phone-mockup-container:hover .phone-mockup:not(:hover) {
    opacity: 0.4 !important;
    filter: blur(2px) grayscale(15%) !important;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark-1);
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-speaker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 999px;
    z-index: 10;
}

.phone-glow {
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(var(--primary-gold-rgb), 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

/* --- Floating Animation --- */
@keyframes float {
    0%, 100% {
        transform: rotateY(-10deg) rotateX(10deg) translateY(0);
    }
    50% {
        transform: rotateY(-10deg) rotateX(10deg) translateY(-15px);
    }
}

/* Mobile Responsiveness for Three Mockups */
@media (max-width: 991px) {
    .phone-mockup-container {
        width: 320px;
        height: 500px;
        scale: 0.9;
    }
    .phone-left {
        left: -15px;
        transform: rotateY(15deg) scale(0.85);
        opacity: 0.6;
    }
    .phone-right {
        right: -15px;
        transform: rotateY(-15deg) scale(0.85);
        opacity: 0.6;
    }
    .phone-mockup-container:hover .phone-left {
        transform: rotateY(20deg) scale(0.88) translateX(-10px);
    }
    .phone-mockup-container:hover .phone-right {
        transform: rotateY(-20deg) scale(0.88) translateX(10px);
    }
}

@media (max-width: 480px) {
    .phone-mockup-container {
        width: 250px;
        height: 500px;
        scale: 1;
    }
    .phone-left, .phone-right {
        display: none; /* Hide side phones on small mobile for clean layout */
    }
    .phone-center {
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
    }
    .phone-mockup-container:hover .phone-center {
        transform: translateY(-10px);
    }
}

/* --- Live Demo / Guest Preview Showcase --- */
/* 1) Üç görsel yan yana galeri */
.demo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    max-width: 1040px;
    margin: 0 auto 3.5rem;
}

.demo-gallery-item {
    position: relative;
    margin: 0;
    border-radius: 1.25rem;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.28);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    aspect-ratio: 9 / 19.5;
}

.demo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-gallery-item:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 5;
    box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.45),
                0 0 40px rgba(var(--primary-gold-rgb), 0.18);
    border-color: var(--primary-gold);
}

.demo-gallery-item:hover img {
    transform: scale(1.04);
}

.demo-gallery-hint {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem 1rem 0.9rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(to top, rgba(11, 25, 45, 0.85), transparent);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.demo-gallery-item:hover .demo-gallery-hint {
    opacity: 1;
    transform: translateY(0);
}

/* 2) Canlı demo CTA + QR — lacivert/parlement zeminli, ortalanmış */
.demo-cta-panel {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 3.25rem;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #002147 0%, #0a3a6b 48%, #05203f 100%);
    border: 1px solid rgba(120, 170, 235, 0.16);
    box-shadow: 0 30px 70px -25px rgba(0, 33, 71, 0.8),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.demo-cta-panel::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(var(--primary-gold-rgb), 0.22) 0%, transparent 70%);
    pointer-events: none;
}

.demo-cta-body {
    text-align: center;
    position: relative;
    z-index: 1;
}

.demo-cta-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.demo-cta-title span {
    color: var(--primary-gold);
}

.demo-cta-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 auto 1.75rem;
    max-width: 440px;
}

.demo-cta-btn {
    margin: 0 auto;
}

.demo-qr-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
}

.demo-qr-frame {
    width: 150px;
    height: 150px;
    padding: 10px;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.demo-qr-frame img {
    width: 100%;
    height: 100%;
    display: block;
    image-rendering: pixelated;
}

.demo-qr-label {
    display: block;
    margin-top: 1.1rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: #ffffff;
}

.demo-qr-desc {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    max-width: 220px;
}

/* 3) Görsel büyütme modalı */
.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(6, 14, 27, 0.9);
    backdrop-filter: blur(8px);
}

.demo-modal.is-open {
    display: flex;
    animation: demoModalFade 0.25s ease;
}

@keyframes demoModalFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.demo-modal-img {
    max-width: min(92vw, 460px);
    max-height: 90vh;
    border-radius: 1.25rem;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
    animation: demoModalZoom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes demoModalZoom {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.demo-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.demo-modal-close:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 860px) {
    .demo-cta-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 1.75rem;
    }
    .demo-qr-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 620px) {
    .demo-gallery {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 1.25rem;
    }
    .demo-cta-title {
        font-size: 1.75rem;
    }
}

/* --- Stats Section --- */
.stats {
    background: linear-gradient(to bottom, var(--bg-dark-1), var(--bg-dark-2));
    border-y: 1px solid var(--border-color);
}

.stats-grid {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- Features Section --- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.section-title span {
    color: var(--primary-gold);
}

.feature-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    fill: var(--primary-gold);
}

.feature-card-title {
    font-size: 1.35rem;
    font-family: var(--font-serif);
}

/* --- Interactive Showcase --- */
.showcase-grid {
    grid-template-columns: 1fr;
    align-items: center;
}

.showcase-navigation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-btn {
    text-align: left;
    background: none;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.showcase-btn:hover {
    border-color: rgba(197, 160, 89, 0.2);
    background: rgba(255, 255, 255, 0.02);
}

.showcase-btn.active {
    border-color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.05);
    color: var(--text-light);
}

.showcase-btn-num {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.showcase-btn.active .showcase-btn-num {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
}

.showcase-btn-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

.showcase-btn-desc {
    font-size: 0.85rem;
}

.showcase-phone-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.showcase-instruction-bubble {
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--primary-gold);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 390px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulseBubble 3s infinite alternate;
}

@keyframes pulseBubble {
    0% { border-color: rgba(197, 160, 89, 0.3); }
    100% { border-color: var(--primary-gold); }
}

.showcase-screen-container {
    width: 390px;
    height: 780px;
    border-radius: 2.25rem;
    border: 10px solid #222;
    background: #000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.showcase-screen {
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase-screen.active {
    display: block;
    opacity: 1;
}

/* --- Menu Preview Components (Inside Phone Screen) --- */
.screen-mockup {
    width: 100%;
    height: 100%;
    background: #0d0d0f;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    overflow-y: auto;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 0.75rem;
}

.screen-restaurant-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--primary-gold);
}

.screen-cat-pill-container {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.screen-cat-pill {
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.7rem;
    white-space: nowrap;
}

.screen-cat-pill.active {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    font-weight: 600;
}

.screen-food-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 0.75rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.screen-food-img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    background-size: cover;
    background-position: center;
}

.screen-food-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.screen-food-name {
    font-weight: 600;
    color: var(--text-light);
}

.screen-food-desc {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.screen-food-price {
    font-weight: 700;
    color: var(--primary-gold);
}

.screen-btn {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary-gold), #e6c587);
    color: #000;
    font-weight: 700;
    text-align: center;
    border-radius: 0.5rem;
    margin-top: auto;
}

/* Specific styling for feedback/review screen */
.feedback-screen {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}
.stars-container {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin: 0.25rem 0;
}
.star-icon {
    width: 1.25rem;
    height: 1.25rem;
    fill: var(--primary-gold);
}
.screen-textarea {
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    padding: 0.5rem;
    color: var(--text-light);
    font-size: 0.7rem;
    resize: none;
    outline: none;
    font-family: var(--font-sans);
}
.screen-comment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
    line-height: 1.4;
}

/* --- Admin Dashboard Laptop Mockup --- */
.laptop-mockup-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    perspective: 1000px;
}
.laptop-screen-frame {
    background: #111;
    border: 10px solid #e4e4e7;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 25px 50px -12px rgba(24, 24, 27, 0.15),
                0 0 30px rgba(var(--primary-gold-rgb), 0.05);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
}
.laptop-screen-content {
    width: 100%;
    height: 100%;
    background: #fbfbf9;
    display: flex;
    font-family: var(--font-sans);
    font-size: 0.7rem;
}
.laptop-keyboard-base {
    height: 12px;
    background: #3c3c43;
    border-radius: 0 0 1rem 1rem;
    position: relative;
    box-shadow: 0 12px 20px rgba(0,0,0,0.5);
}
.laptop-keyboard-indent {
    width: 80px;
    height: 4px;
    background: #1a1a1a;
    margin: 0 auto;
    border-radius: 0 0 4px 4px;
}

/* --- Admin Panel Mini Mockup Styles --- */
.admin-sidebar {
    width: 25%;
    border-right: 1px solid rgba(24,24,27,0.06);
    background: #f5f3ec;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.admin-sidebar-logo {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.admin-sidebar-item {
    padding: 0.35rem 0.5rem;
    border-radius: 0.35rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.admin-sidebar-item.active {
    background: rgba(179, 142, 71, 0.08);
    color: var(--primary-gold);
}
.admin-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    background: #fbfbf9;
}
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(24,24,27,0.06);
    padding-bottom: 0.5rem;
}
.admin-title {
    font-size: 0.9rem;
    font-family: var(--font-serif);
}
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}
.admin-stat-card {
    background: #ffffff;
    border: 1px solid rgba(24,24,27,0.05);
    padding: 0.5rem;
    border-radius: 0.4rem;
}
.admin-stat-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-gold);
}
.admin-stat-lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
}
.admin-chart-box {
    background: #ffffff;
    border: 1px solid rgba(24,24,27,0.05);
    padding: 0.5rem;
    border-radius: 0.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.admin-chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    padding: 0 0.5rem;
}
.admin-chart-bar {
    width: 12%;
    background: linear-gradient(to top, var(--primary-gold), #e6c587);
    border-radius: 2px 2px 0 0;
    transition: var(--transition-smooth);
}

/* --- Pricing / Plan Presentation --- */
.pricing-cards {
    margin-top: 1rem;
}

.pricing-card {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #f3e8ff);
}

.price-title {
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

.price-value {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-light);
    font-family: var(--font-serif);
}

.price-value span {
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--text-muted);
}

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

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.check-icon {
    width: 1.15rem;
    height: 1.15rem;
    fill: var(--primary-gold);
    flex-shrink: 0;
}

/* --- Contact & Demo Request --- */
.contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid var(--border-color);
    padding: 0.75rem 0;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-label {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -1.25rem;
    font-size: 0.8rem;
    color: var(--primary-gold);
}

.form-input:focus {
    border-bottom-color: var(--primary-gold);
    box-shadow: 0 1px 0 var(--primary-gold);
}

.form-message-panel {
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
}

.form-message-panel.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

/* --- Footer --- */
footer {
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.35rem;
    font-family: var(--font-serif);
    font-weight: 700;
}

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

.footer-desc {
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-link-item:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Media Queries / Responsive Breakpoints --- */

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 17px;
    }
    
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 6rem;
    }

    .simulator-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
    
    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 6rem;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr repeat(3, 1fr);
    }
}

/* --- Legal Alert Section --- */
.legal-banner-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(197, 160, 89, 0.04));
    border-top: 1px solid rgba(239, 68, 68, 0.15);
    border-bottom: 1px solid rgba(239, 68, 68, 0.15);
    padding: 4rem 0;
}
.legal-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.badge-warning-legal {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    font-size: 0.8rem;
    font-weight: 700;
    color: #ef4444;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.legal-title {
    font-size: 2.2rem;
    font-family: var(--font-serif);
}
.legal-title span {
    color: #ef4444;
}
.legal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1rem;
}
.legal-card {
    padding: 2rem;
    background: #ffffff !important;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
}
.legal-card:hover {
    background: #ffffff !important;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.legal-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}
.legal-card-header svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: #ef4444;
}

/* --- AI Feature Section --- */
.ai-assistant-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.ai-demo-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ai-sample-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ai-sample-item {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.ai-sample-item:hover, .ai-sample-item.active {
    border-color: var(--primary-gold);
    background: rgba(197, 160, 89, 0.05);
    color: var(--primary-gold);
}
.ai-console-screen {
    background: #fbfbf9;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(24, 24, 27, 0.02);
}
.ai-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(251, 250, 245, 0.96);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}
.ai-loading-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.ai-progress-bar {
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}
.ai-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary-gold);
    transition: width 0.1s linear;
}
.ai-console-title {
    font-size: 0.9rem;
    color: var(--primary-gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.ai-console-output {
    font-size: 0.85rem;
    line-height: 1.6;
}
.ai-output-badge {
    display: inline-flex;
    padding: 0.25rem 0.6rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ai-assistant-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

/* --- AI Nutrition Chart --- */
.ai-nutri-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 1rem;
}
.ai-nutri-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 1rem;
    border-radius: 1rem;
    flex-direction: column;
}
@media (min-width: 480px) {
    .ai-nutri-chart-wrapper {
        flex-direction: row;
        gap: 2rem;
    }
}
.ai-donut {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    flex-shrink: 0;
    animation: popDonut 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.ai-donut-inner {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fbfbf9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 5px rgba(24, 24, 27, 0.03);
}
.ai-donut-inner .val {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    font-family: var(--font-serif);
}
.ai-donut-inner .lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ai-nutri-labels {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}
.ai-nutri-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255,255,255,0.03);
    background: rgba(255,255,255,0.01);
    opacity: 0;
    animation: slideInCard 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ai-nutri-card-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}
.ai-nutri-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.ai-nutri-val {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
}

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

/* ==========================================================================
   LuxeMenu - Premium Redesign Enhancements (Glows, Tables, Accordion)
   ========================================================================== */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), #fff);
    width: 0%;
    z-index: 2000;
    transition: width 0.1s ease;
}

/* --- Moving Ambient Glows --- */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -2;
    opacity: 0.4;
    pointer-events: none;
    animation: floatGlow 15s infinite alternate ease-in-out;
}
.glow-gold-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-gold-rgb), 0.15) 0%, transparent 80%);
    top: 10%;
    left: -100px;
}
.glow-gold-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 80%);
    bottom: 20%;
    right: -150px;
    animation-delay: -5s;
}
.glow-gold-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(var(--primary-gold-rgb), 0.1) 0%, transparent 80%);
    top: 50%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 40px) scale(1.15);
    }
}

/* --- Gradient Text --- */
.gradient-text {
    background: linear-gradient(135deg, var(--text-light) 30%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Problem & Solution Contrast Section --- */
.contrast-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}
@media (min-width: 992px) {
    .contrast-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contrast-card {
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
}
.contrast-card.problem {
    background: rgba(239, 68, 68, 0.02);
    border: 1px solid rgba(239, 68, 68, 0.1);
}
.contrast-card.solution {
    background: rgba(var(--primary-gold-rgb), 0.03);
    border: 1px solid rgba(var(--primary-gold-rgb), 0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.contrast-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 99px;
}
.contrast-card.problem .contrast-tag {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}
.contrast-card.solution .contrast-tag {
    background: rgba(var(--primary-gold-rgb), 0.1);
    color: var(--primary-gold);
}
.contrast-list {
    list-style: none;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.contrast-item {
    display: flex;
    gap: 1rem;
    font-size: 0.95rem;
}
.contrast-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.2rem;
}
.contrast-card.problem .contrast-icon {
    fill: #ef4444;
}
.contrast-card.solution .contrast-icon {
    fill: var(--primary-gold);
}

/* --- How It Works Timeline --- */
.timeline-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}
@media (min-width: 576px) {
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .timeline-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.timeline-card {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 2;
}
.timeline-number {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: rgba(var(--primary-gold-rgb), 0.08);
    border: 1px solid rgba(var(--primary-gold-rgb), 0.25);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}
.timeline-card:hover .timeline-number {
    background: var(--primary-gold);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(var(--primary-gold-rgb), 0.3);
}

/* --- Comparison Matrix --- */
.comparison-container {
    margin-top: 4rem;
    overflow-x: auto;
    border-radius: 1.25rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 850px;
}
.comparison-table th, .comparison-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.comparison-table th {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    background: rgba(24, 24, 27, 0.02);
}
.comparison-table th.highlight {
    background: rgba(var(--primary-gold-rgb), 0.08);
    border-bottom: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 700;
}
.comparison-table td.highlight {
    background: rgba(var(--primary-gold-rgb), 0.03);
    border-left: 1px solid rgba(var(--primary-gold-rgb), 0.08);
    border-right: 1px solid rgba(var(--primary-gold-rgb), 0.08);
}
.comparison-table tr {
    transition: var(--transition-fast);
}
.comparison-table tbody tr:hover {
    background: rgba(24, 24, 27, 0.015);
}
.comparison-table tbody tr:hover td.highlight {
    background: rgba(var(--primary-gold-rgb), 0.05);
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-feature-name {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}
.comparison-feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.25rem;
}
.comp-status-yes {
    color: #15803d; /* Elegant Green */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}
.comp-status-no {
    color: #b91c1c; /* Elegant Red */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.comp-status-partial {
    color: #d97706; /* Elegant Amber */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.comp-status-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 800px;
    margin: 4rem auto 0;
}
.faq-item {
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item.active {
    border-color: rgba(var(--primary-gold-rgb), 0.25);
    background: var(--bg-card-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.faq-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-light);
    font-size: 1.05rem;
    font-family: var(--font-sans);
    font-weight: 600;
    cursor: pointer;
    outline: none;
}
.faq-trigger:hover {
    color: var(--primary-gold);
}
.faq-icon-shape {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-fast);
}
.faq-icon-shape::before, .faq-icon-shape::after {
    content: '';
    position: absolute;
    background: var(--text-light);
    transition: var(--transition-fast);
}
.faq-icon-shape::before {
    width: 10px;
    height: 2px;
}
.faq-icon-shape::after {
    width: 2px;
    height: 10px;
}
.faq-item.active .faq-icon-shape {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}
.faq-item.active .faq-icon-shape::before, .faq-item.active .faq-icon-shape::after {
    background: #000;
}
.faq-item.active .faq-icon-shape::after {
    transform: rotate(90deg);
    opacity: 0;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-content-inner {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Testimonials Section --- */
.testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testi-stars {
    display: flex;
    gap: 2px;
}
.testi-stars svg {
    width: 1rem;
    height: 1rem;
    fill: var(--primary-gold);
}
.testi-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}
.testi-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}
.testi-name {
    font-weight: 700;
    color: var(--primary-gold);
    font-size: 0.9rem;
}
.testi-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- AI Search Input Redesign --- */
.ai-input-group {
    display: flex;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 999px;
    padding: 0.35rem;
    margin-top: 1rem;
    width: 100%;
    align-items: center;
    transition: var(--transition-fast);
}
.ai-input-group:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(var(--primary-gold-rgb), 0.15);
}
.ai-dish-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    width: 100%;
}
.ai-dish-search-input::placeholder {
    color: rgba(255,255,255,0.25);
}
.btn-ai-search {
    background: linear-gradient(135deg, var(--primary-gold), #fff);
    border: none;
    color: #000;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    flex-shrink: 0;
}
.btn-ai-search:hover {
    transform: scale(1.05);
}
.btn-ai-search svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}

/* ==========================================================================
   Mobil Sağlamlaştırma & Responsive Cila
   Amaç: küçük ekranlarda sağa/sola kaymayı (yatay taşmayı) tamamen önlemek
   ve tipografi/boşlukları profesyonel şekilde ölçeklemek.
   ========================================================================== */

/* Yatay taşmayı kesin engelle. 'clip', 'hidden'e göre daha katıdır ve
   iOS Safari'de konumlanmış (absolute/fixed) taşan öğeleri de doğru keser. */
html,
body {
    overflow-x: clip;
    max-width: 100%;
}

/* Hiçbir medya/tablo öğesi kapsayıcısını aşmasın. */
img,
svg,
video,
iframe,
table {
    max-width: 100%;
}

/* Uzun kelime, e-posta ve URL'ler taşmayı tetiklemesin. */
.hero-subtitle,
.section-header p,
.testi-quote,
.faq-content-inner,
.demo-cta-text,
.contact-card p,
.contact-card a {
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ---- Tablet ve altı (≤767px) ---- */
@media (max-width: 767px) {
    .container {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .section {
        padding: 4rem 0;
    }

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

    .hero {
        min-height: auto;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero-title {
        font-size: 2.15rem;
        line-height: 1.2;
    }

    /* Zorunlu satır kırılımları dar ekranda gereksiz boşluk/taşma yaratmasın. */
    .hero-title br,
    .section-title br {
        display: none;
    }

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

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

    .legal-title,
    .demo-cta-title {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .price-value {
        font-size: 2.1rem;
    }

    /* Kart iç boşluklarını küçült — dar ekranda içerik taşmasını önler. */
    .contact-form,
    .contrast-card,
    .feature-card,
    .pricing-card,
    .ai-demo-card,
    .testimonial-card,
    .legal-card,
    .contact-card {
        padding: 1.75rem 1.35rem;
    }

    .ai-console-screen {
        padding: 1.35rem;
    }

    /* Köşeye mutlak konumlu etiket dar ekranda başlığın üstüne binmesin. */
    .contrast-tag {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .pricing-card .badge {
        position: static !important;
        align-self: flex-start;
        margin-bottom: 0.5rem !important;
    }

    /* Ambient ışık lekeleri görünür alanı zorlamasın (ekstra güvence). */
    .ambient-glow {
        filter: blur(90px);
    }
    .glow-gold-1 {
        width: 260px;
        height: 260px;
        left: -50px;
    }
    .glow-gold-2 {
        width: 300px;
        height: 300px;
        right: -70px;
    }
    .glow-gold-3 {
        width: 260px;
        height: 260px;
        left: 30%;
    }
}

/* ---- Küçük telefonlar (≤400px) ---- */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.85rem;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .legal-title,
    .demo-cta-title {
        font-size: 1.5rem;
    }
    .stats-grid {
        gap: 0.5rem;
    }
    .stat-item {
        padding: 1rem 0.5rem;
    }
    /* Aksiyon butonları tam genişlik + tek sütun; taşma/hizasızlık olmaz. */
    .hero-actions {
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

