:root {
    --flame: #E8460A;
    --ember: #FF7A3D;
    --gold: #F5C842;
    --ink: #1A1208;
    --cream: #FAF6EE;
    --warm-gray: #8C7B6B;
    --card-bg: #FFFFFF;
    --section-alt: #F5EFE4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: var(--ink);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(232,70,10,0.45) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(245,200,66,0.12) 0%, transparent 60%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,70,10,0.2);
    border: 1px solid rgba(232,70,10,0.5);
    color: var(--ember);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 32px;
    position: relative;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 7px; 
    height: 7px;
    background: var(--ember);
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 900;
    color: var(--cream);
    line-height: 0.95;
    letter-spacing: -2px;
    position: relative;
    animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 span {
    color: var(--flame);
    display: block;
}

.hero-sub {
    font-size: clamp(16px, 2.5vw, 22px);
    color: rgba(250,246,238,0.65);
    max-width: 560px;
    line-height: 1.6;
    margin: 28px auto 48px;
    font-weight: 300;
    position: relative;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
    background: var(--flame);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
}
.btn-primary:hover { 
    background: var(--ember); 
    transform: translateY(-2px); 
}

.btn-ghost {
    background: transparent;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 36px;
    border-radius: 6px;
    border: 1px solid rgba(250,246,238,0.3);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
    text-decoration: none;
}
.btn-ghost:hover { 
    border-color: var(--cream); 
    transform: translateY(-2px); 
}

/* scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250,246,238,0.3);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1s 0.8s ease both;
}
.scroll-hint::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250,246,238,0.3), transparent);
    animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── PHONE MOCKUP SECTION ── */
.demo-section {
    background: var(--section-alt);
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
}

.demo-layout {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.phone {
    width: 280px;
    height: 560px;
    background: #1A1208;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 40px 80px rgba(0,0,0,0.35),
        0 0 60px rgba(232,70,10,0.15);
    position: relative;
    flex-shrink: 0;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0F0B06;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    width: 80px;
    height: 24px;
    background: #1A1208;
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    z-index: 10;
}

.phone-status {
    display: flex;
    justify-content: space-between;
    padding: 6px 20px 4px;
    font-size: 9px;
    color: rgba(250,246,238,0.5);
    font-weight: 500;
}

.phone-map-area {
    height: 180px;
    background: linear-gradient(160deg, #1e2d1a 0%, #0d1f0d 100%);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* fake map grid */
.phone-map-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* fake roads */
.phone-map-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.07) 40%, rgba(255,255,255,0.07) 42%, transparent 42%),
        linear-gradient(-30deg, transparent 35%, rgba(255,255,255,0.05) 35%, rgba(255,255,255,0.05) 37%, transparent 37%),
        linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.06) 60%, rgba(255,255,255,0.06) 63%, transparent 63%);
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: pinBounce 2s ease infinite;
}
.map-pin-1 { top: 40px; left: 80px; }
.map-pin-2 { top: 65px; left: 160px; animation-delay: 0.4s; }
.map-pin-3 { top: 30px; left: 210px; animation-delay: 0.8s; }

.pin-dot {
    width: 28px;
    height: 28px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}
.pin-dot span { transform: rotate(45deg); }
.pin-active .pin-dot { background: var(--flame); box-shadow: 0 0 12px rgba(232,70,10,0.6); }
.pin-deal .pin-dot { background: var(--gold); box-shadow: 0 0 12px rgba(245,200,66,0.5); }
.pin-closed .pin-dot { background: #444; }

.pin-label {
    margin-top: 4px;
    font-size: 7px;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 2px 5px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 600;
}

@keyframes pinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* user dot */
.user-dot {
    position: absolute;
    bottom: 40px;
    left: 120px;
    width: 14px;
    height: 14px;
    background: #4A9EF5;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 6px rgba(74,158,245,0.2);
}

/* geofence ring */
.geofence-ring {
    position: absolute;
    bottom: 20px;
    left: 80px;
    width: 90px;
    height: 90px;
    border: 1.5px dashed rgba(232,70,10,0.5);
    border-radius: 50%;
    animation: ringPulse 2.5s ease infinite;
}
@keyframes ringPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.05); }
}

/* notification banner on phone */
.phone-notif {
    margin: 10px 10px 0;
    background: rgba(232,70,10,0.15);
    border: 1px solid rgba(232,70,10,0.4);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.5s 1.2s ease both;
    flex-shrink: 0;
}
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.notif-icon {
    width: 32px;
    height: 32px;
    background: var(--flame);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.notif-text { flex: 1; }
.notif-title { font-size: 9px; font-weight: 700; color: var(--cream); }
.notif-body { font-size: 8px; color: rgba(250,246,238,0.6); margin-top: 2px; }

/* deal card on phone */
.phone-deal-card {
    margin: 10px 10px 0;
    background: linear-gradient(135deg, #2A1A0A, #1A0F05);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid rgba(232,70,10,0.2);
    flex: 1;
}
.deal-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}
.deal-restaurant-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--cream);
    font-family: 'Playfair Display', serif;
}
.deal-badge {
    background: var(--flame);
    color: white;
    font-size: 8px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.deal-desc {
    font-size: 9px;
    color: rgba(250,246,238,0.55);
    margin-bottom: 10px;
    line-height: 1.5;
}
.deal-savings {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}
.deal-savings span { 
    font-size: 10px; 
    color: rgba(250,246,238,0.4); 
    font-family: 'DM Sans', sans-serif; 
    font-weight: 400; 
}

.deal-actions {
    display: flex;
    gap: 6px;
}
.deal-btn-reserve {
    flex: 1;
    background: var(--flame);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 6px;
    font-size: 8px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    letter-spacing: 0.3px;
}
.deal-btn-info {
    background: rgba(255,255,255,0.07);
    color: rgba(250,246,238,0.6);
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 8px;
    cursor: pointer;
}

.opentable-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    font-size: 7px;
    color: rgba(250,246,238,0.35);
    justify-content: center;
}
.ot-dot { 
    width: 6px; 
    height: 6px; 
    background: #DA3743; 
    border-radius: 50%; 
}

/* Right column content */
.demo-copy {
    max-width: 460px;
    flex: 1;
    min-width: 300px;
}

.demo-copy h2 {
    margin-bottom: 24px;
}

.demo-copy p {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 32px;
}

.demo-copy ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.demo-copy ul li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    color: var(--ink);
}

.demo-copy ul li .ico {
    width: 38px;
    height: 38px;
    background: rgba(232,70,10,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive for demo section */
@media (max-width: 900px) {
    .demo-layout {
        gap: 50px;
        justify-content: center;
    }
    .phone {
        margin: 0 auto;
    }
    .demo-copy {
        text-align: center;
        max-width: 100%;
    }
    .demo-copy ul li {
        text-align: left;
    }
}

/* ── HOW IT WORKS ── */
.steps-section {
    background: var(--ink);
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    max-width: 960px;
    width: 100%;
    margin-top: 60px;
    border: 1px solid rgba(255,255,255,0.06);
}

.step-card {
    background: rgba(255,255,255,0.03);
    padding: 40px 32px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}
.step-card:hover { 
    background: rgba(232,70,10,0.07); 
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(232,70,10,0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: rgba(250,246,238,0.45);
    line-height: 1.65;
    font-weight: 300;
}

/* ── OPENTABLE INTEGRATION ── */
.ot-section {
    background: var(--cream);
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ot-card {
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.ot-left {
    flex: 1;
    min-width: 280px;
    padding: 52px 48px;
}

.ot-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.ot-logo-pill {
    background: #DA3743;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}
.plus-sign { 
    font-size: 22px; 
    color: #CCC; 
    font-weight: 300; 
}
.whatsclose-pill {
    background: var(--flame);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
}

.ot-left h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 20px;
}

.ot-left p {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 28px;
}

.ot-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ot-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}
.ot-features li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: rgba(232,70,10,0.12);
    color: var(--flame);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.ot-right {
    width: 300px;
    background: linear-gradient(160deg, #1A0F05, #2A1A0A);
    padding: 52px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.ot-stat {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 20px;
}
.ot-stat:last-child { 
    border-bottom: none; 
    padding-bottom: 0; 
}

.ot-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.ot-stat-label {
    font-size: 12px;
    color: rgba(250,246,238,0.45);
    margin-top: 6px;
    line-height: 1.5;
    font-weight: 300;
}

/* ── PRICING ── */
.pricing-section {
    background: var(--section-alt);
    padding: 100px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 860px;
    width: 100%;
    margin-top: 60px;
}

.price-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.price-card.featured {
    background: var(--ink);
    border-color: var(--flame);
    transform: scale(1.06);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.06) translateY(-8px);
}

.price-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.price-card:not(.featured) .price-tag { 
    background: #F0EBE0; 
    color: var(--warm-gray); 
}

.price-card.featured .price-tag { 
    background: var(--flame); 
    color: white; 
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 4px;
}

.price-card.featured .price-amount { 
    color: var(--cream); 
}

.price-per { 
    font-size: 13px; 
    color: var(--warm-gray); 
    margin-bottom: 28px; 
}

.price-card.featured .price-per { 
    color: rgba(250,246,238,0.6); 
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    font-size: 14px;
    color: var(--warm-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-card.featured .price-features li { 
    color: rgba(250,246,238,0.75); 
}

.price-features li::before {
    content: '—';
    color: var(--flame);
    font-weight: 700;
    flex-shrink: 0;
}

.price-cta {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    margin-top: auto;
    transition: all 0.2s ease;
}

.price-card:not(.featured) .price-cta { 
    background: var(--section-alt); 
    color: var(--ink); 
}

.price-card.featured .price-cta { 
    background: var(--flame); 
    color: white; 
}

.price-cta:hover { 
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
    background: var(--ink);
    padding: 80px 24px 60px;
    text-align: center;
    color: var(--cream);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--cream);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.footer-logo span { 
    color: var(--flame); 
}

.footer-tagline {
    font-size: 15px;
    color: rgba(250,246,238,0.45);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.footer-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-links a {
    font-size: 13.5px;
    color: rgba(250,246,238,0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover { 
    color: var(--cream); 
}

.footer-copy {
    font-size: 12px;
    color: rgba(250,246,238,0.25);
    margin-top: 20px;
}

/* Text helpers */
.text-center { text-align: center; }
.text-cream { 
    color: var(--cream) !important; 
}