/* ===================================================
   TerminNow — style.css
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --primary:        #6C63FF;
    --primary-dark:   #5A52E0;
    --primary-light:  rgba(108, 99, 255, 0.1);
    --bg:             #FFFFFF;
    --surface:        #F8F7FF;
    --text-dark:      #1A1A2E;
    --text-muted:     #6B7280;
    --accent:         #10B981;
    --border:         #E5E7EB;
    --shadow:         0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg:      0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 10px -2px rgba(0,0,0,0.06);
    --radius:         12px;
    --radius-sm:      8px;
    --transition:     all 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.15; color: var(--text-dark); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; line-height: 1.2; color: var(--text-dark); }
h3 { font-size: 1.125rem; font-weight: 600; line-height: 1.3; color: var(--text-dark); }
h4 { font-size: 0.875rem; font-weight: 700; color: var(--text-dark); }
p  { color: var(--text-muted); line-height: 1.7; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    min-height: 44px;
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(108, 99, 255, 0.38);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-ghost:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-accent:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.38);
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}
.logo-termin { color: var(--text-dark); }
.logo-now    { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}
.nav-links a {
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--text-dark);
    background: var(--surface);
}

.nav-cta { padding: 0.6rem 1.25rem; font-size: 0.9rem; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #f0efff 0%, #f8f7ff 40%, #ffffff 100%);
    padding: 5rem 0 4rem;
    overflow: hidden;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -8%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(108,99,255,0.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16,185,129,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(108,99,255,0.2);
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--primary); }

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* ===== BOOKING WIDGET MOCKUP ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-visual::before {
    content: '';
    position: absolute;
    inset: -24px;
    background: radial-gradient(ellipse, rgba(108,99,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.booking-widget {
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 24px 64px rgba(108,99,255,0.14),
        0 6px 24px rgba(0,0,0,0.08),
        0 0 0 1px rgba(108,99,255,0.12);
    padding: 1.5rem;
    width: 100%;
    max-width: 360px;
    position: relative;
    z-index: 1;
}

.widget-title-bar {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.widget-title-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.widget-title-text { font-weight: 700; font-size: 0.9375rem; color: var(--text-dark); }
.widget-title-sub { font-size: 0.7rem; color: var(--text-muted); }

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.625rem;
}
.cal-month { font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.cal-nav {
    display: flex;
    gap: 0.25rem;
}
.cal-nav button {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: white;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cal-nav button:hover { border-color: var(--primary); color: var(--primary); }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
    margin-bottom: 1.125rem;
}
.cal-day-hdr {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-align: center;
    padding: 3px 0;
    font-weight: 600;
    text-transform: uppercase;
}
.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border-radius: 5px;
    color: var(--text-muted);
}
.cal-day.avail   { color: var(--text-dark); font-weight: 500; cursor: pointer; }
.cal-day.avail:hover { background: var(--primary-light); color: var(--primary); }
.cal-day.today   { background: var(--primary-light); color: var(--primary); font-weight: 700; }
.cal-day.active  { background: var(--primary); color: #fff; font-weight: 700; }
.cal-day.faded   { opacity: 0.35; }

.widget-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 0.5rem;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-bottom: 1.125rem;
}
.time-slot {
    padding: 0.4rem 0.25rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.75rem;
    text-align: center;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}
.time-slot.selected  { background: var(--primary); color: #fff; border-color: var(--primary); }
.time-slot.taken     { background: var(--surface); color: var(--text-muted); cursor: not-allowed; opacity: 0.7; }

.widget-submit {
    width: 100%;
    padding: 0.7rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.2px;
}
.widget-submit:hover { background: var(--primary-dark); }

.widget-badge-row {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.75rem;
    justify-content: center;
}
.widget-badge {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.widget-badge::before { content: '🔒'; font-size: 0.65rem; }

/* Floating accent cards */
.float-card {
    position: absolute;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 0.6rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid var(--border);
    z-index: 2;
    white-space: nowrap;
}
.float-card-1 { top: -12px; right: -20px; }
.float-card-2 { bottom: 20px; left: -24px; }
.float-card .fc-dot { width: 8px; height: 8px; border-radius: 50%; }
.fc-green { background: var(--accent); }
.fc-blue  { background: var(--primary); }

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.375rem 0;
}
.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
}
.proof-stars {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.stars { color: #F59E0B; font-size: 1rem; letter-spacing: 3px; }
.proof-text { font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.proof-divider { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }
.proof-stats { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }

.stat-pill {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: white;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.stat-pill span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); display: inline-block; }

/* ===== SECTIONS ===== */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--surface); }

/* ===== FEATURE CARDS ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.375rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(108,99,255,0.2); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.9rem; }

/* ===== FOR WHOM SECTION ===== */
.forwho-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.forwho-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    transition: var(--transition);
}
.forwho-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.forwho-card-restaurant {
    border-color: rgba(16,185,129,0.3);
    background: linear-gradient(135deg, #ffffff, rgba(16,185,129,0.03));
}
.forwho-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; line-height: 1; }
.forwho-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.forwho-subtitle { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.forwho-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.forwho-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.5;
}
.forwho-list li .pf-check { flex-shrink: 0; margin-top: 1px; }

/* ===== HOW IT WORKS ===== */
.steps-wrapper {
    position: relative;
    display: flex;
    gap: 0;
}
.steps-line {
    position: absolute;
    top: 27px;
    left: calc(16.666% + 28px);
    right: calc(16.666% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 0;
}
.step {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}
.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary), var(--shadow);
    position: relative;
}
.step:nth-child(3) .step-num { background: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow); }
.step h3 { margin-bottom: 0.5rem; }
.step p  { font-size: 0.9rem; }

/* ===== PRICING TABS ===== */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.375rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.pricing-tab {
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.pricing-tab:hover { color: var(--text-dark); }
.pricing-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pricing-panel { display: block; }
.pricing-panel.hidden { display: none; }

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}
.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108,99,255,0.1), var(--shadow-lg);
}

.pricing-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.5px;
}
.pricing-tier {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 0.625rem;
}
.pricing-price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
}
.pricing-price-unit { font-size: 1rem; font-weight: 500; color: var(--text-muted); padding-bottom: 0.375rem; }
.pricing-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.pricing-features {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.5;
}
.pricing-features li .pf-check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}
.pricing-card .btn { width: 100%; }
.pricing-note {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}
.faq-item.open { box-shadow: var(--shadow); border-color: rgba(108,99,255,0.25); }

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: background 0.2s;
    min-height: 44px;
}
.faq-btn:hover { background: var(--surface); }

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.25s, color 0.25s;
    line-height: 1;
    user-select: none;
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-item.open .faq-body { max-height: 600px; }
.faq-body-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--surface); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}
.contact-pitch h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-pitch p { margin-bottom: 1.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
    font-weight: 500;
}
.contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
    letter-spacing: 0.1px;
}
.form-group label .req { color: #EF4444; }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 44px;
    line-height: 1.5;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,99,255,0.14);
}
.form-control::placeholder { color: #A1A8B5; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-check { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
}
.form-check label { font-size: 0.8125rem; color: var(--text-muted); cursor: pointer; line-height: 1.55; }
.form-check label a { color: var(--primary); text-decoration: underline; }

.form-submit { width: 100%; padding: 0.875rem; font-size: 1rem; }

.success-msg {
    display: none;
    background: rgba(16,185,129,0.1);
    border: 1.5px solid rgba(16,185,129,0.3);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    color: #065F46;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}
.success-msg.show { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.75); }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: 3.5rem 0 2.5rem;
}
.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.65; max-width: 280px; }
.footer h4 {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul li a {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer ul li a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.45); font-size: 0.8125rem; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
    background: var(--surface);
    padding: 3.5rem 0 2.5rem;
    border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 0.5rem; }
.legal-hero .legal-sub { font-size: 0.875rem; color: var(--text-muted); }

.legal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    transition: gap 0.2s;
}
.legal-back-btn:hover { gap: 0.75rem; }

.legal-body { padding: 4rem 0; }
.legal-content { max-width: 800px; }
.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 2.5rem 0 0.875rem;
    color: var(--text-dark);
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; color: var(--text-dark); }
.legal-content p  { margin-bottom: 0.875rem; color: #374151; line-height: 1.8; font-size: 0.9375rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: #374151; line-height: 1.8; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.legal-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ol li { color: #374151; line-height: 1.8; margin-bottom: 0.5rem; font-size: 0.9375rem; }

.info-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}
.info-box p { color: var(--text-dark); margin: 0; font-weight: 500; }
.warning-box {
    background: rgba(16,185,129,0.08);
    border-left: 4px solid var(--accent);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0;
}
.warning-box p { color: #065F46; margin: 0; font-weight: 500; }
.placeholder { background: rgba(245,158,11,0.15); padding: 0 0.25rem; border-radius: 3px; color: #92400E; font-style: italic; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.55s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid  { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid   { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .contact-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .forwho-grid { grid-template-columns: 1fr; }

    .hamburger  { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 0.75rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        gap: 0.125rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.75rem 1rem; display: block; }
    .nav-cta { display: none; }

    .hero-container   { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .hero-visual      { order: -1; }
    .booking-widget   { max-width: 300px; }
    .hero-trust       { justify-content: center; }
    .hero-actions     { justify-content: center; }
    .hero-subtitle    { margin-left: auto; margin-right: auto; }

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

    .steps-wrapper   { flex-direction: column; gap: 2rem; align-items: center; }
    .steps-line      { display: none; }
    .step            { padding: 0; max-width: 360px; }

    .social-proof-inner { flex-direction: column; gap: 1rem; }
    .proof-divider      { width: 80%; height: 1px; }

    .footer-grid    { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0 1.5rem; }
    .footer-brand   { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .float-card { display: none; }
}

@media (max-width: 480px) {
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .hero-actions      { flex-direction: column; align-items: center; }
    .contact-form-card { padding: 1.25rem; }
    .section           { padding: 4rem 0; }
}
