/* WarmOffice — Modern marketing design system */

:root {
    --bg: #FFFBF2;
    --bg-soft: #F7F0E4;
    --surface: #FFFFFF;
    --surface-elevated: rgba(255, 255, 255, 0.88);
    --ink: #0C0C0C;
    --ink-secondary: #3D3D3D;
    --ink-muted: #6B6B6B;
    --accent: #E5A82B;
    --accent-bright: #F6C56D;
    --accent-soft: rgba(246, 197, 109, 0.22);
    --accent-glow: rgba(246, 197, 109, 0.35);
    --line: #E8DFD0;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --shadow-sm: 0 2px 8px rgba(12, 12, 12, 0.04);
    --shadow: 0 8px 32px rgba(12, 12, 12, 0.06);
    --shadow-lg: 0 24px 64px rgba(12, 12, 12, 0.08);
    --header-h: 72px;
    --container: 1140px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Poppins', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

body.mobile-nav-open { overflow: hidden; }

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(255, 251, 242, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid rgba(232, 223, 208, 0.7);
    transition: box-shadow 0.3s var(--ease);
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.site-header .container {
    margin-left: 0;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: min(100% - 20px, var(--container));
}

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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu a:hover { color: var(--ink); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 1.6rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--ink);
    color: var(--bg);
    box-shadow: 0 4px 16px rgba(12, 12, 12, 0.15);
}

.btn-primary:hover {
    background: #1a1a1a;
    box-shadow: 0 8px 24px rgba(12, 12, 12, 0.2);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--surface);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-secondary:hover {
    border-color: var(--accent-bright);
    background: var(--accent-soft);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-bright), var(--accent));
    color: var(--ink);
}

.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.8rem; }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--header-h) + 4rem) 0 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 60% at 20% 20%, var(--accent-glow), transparent 55%),
        radial-gradient(ellipse 60% 50% at 85% 30%, rgba(246, 197, 109, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(232, 168, 43, 0.08), transparent 50%),
        var(--bg);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-secondary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-bright);
    box-shadow: 0 0 12px var(--accent-glow);
}

.hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
}

.hero h1 .accent { color: var(--accent); }

.hero-lead {
    font-size: 1.05rem;
    color: var(--ink-secondary);
    max-width: 32rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-sub {
    font-size: 0.9rem;
    color: var(--ink-muted);
    max-width: 30rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero-stat span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-panel-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}

.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 1.5rem;
}

.mini-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 1rem 1.1rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s, transform 0.2s var(--ease);
}

.mini-card:hover {
    border-color: var(--accent-bright);
    transform: translateX(4px);
}

.mini-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 12px;
    color: var(--accent);
}

.mini-card-icon svg { width: 20px; height: 20px; }

.mini-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.mini-card p {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.4;
}

/* ─── State dropdown ─── */
.custom-state-dropdown { position: relative; }

.custom-state-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-state-dropdown-toggle:hover,
.custom-state-dropdown.open .custom-state-dropdown-toggle {
    border-color: var(--accent-bright);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.custom-state-dropdown-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--ink-muted);
    transition: transform 0.2s;
}

.custom-state-dropdown.open .custom-state-dropdown-toggle svg { transform: rotate(180deg); }

.custom-state-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: 260px;
    overflow-y: auto;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 6px;
    z-index: 50;
}

.custom-state-dropdown-menu[hidden] { display: none; }

.custom-state-dropdown-option {
    display: block;
    width: 100%;
    padding: 10px 14px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-secondary);
    text-align: left;
    cursor: pointer;
}

.custom-state-dropdown-option:hover,
.custom-state-dropdown-option.active {
    background: var(--accent-soft);
    color: var(--ink);
}

/* ─── Sections ─── */
.section {
    padding: 6rem 0;
}

.section-alt { background: var(--bg-soft); }

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-head h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-head p {
    font-size: 1rem;
    color: var(--ink-muted);
    font-weight: 500;
}

/* ─── Services ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-bright), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

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

.service-card:hover::after { transform: scaleX(1); }

.service-card.featured {
    border-color: var(--accent-bright);
    background: linear-gradient(180deg, rgba(246, 197, 109, 0.08) 0%, var(--surface) 40%);
}

.service-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-soft);
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.service-icon-wrap svg { width: 26px; height: 26px; }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.service-card > p {
    font-size: 0.9rem;
    color: var(--ink-muted);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.service-list {
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--ink-secondary);
    font-weight: 500;
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-bright);
}

/* ─── E-commerce banner ─── */
.ecom-banner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 3rem;
    background: var(--ink);
    color: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.ecom-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-glow), transparent 70%);
    pointer-events: none;
}

.ecom-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(246, 197, 109, 0.15);
    border-radius: 20px;
    color: var(--accent-bright);
    position: relative;
}

.ecom-icon svg { width: 32px; height: 32px; }

.ecom-banner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
}

.ecom-banner p {
    font-size: 0.95rem;
    color: rgba(255, 251, 242, 0.75);
    max-width: 36rem;
    position: relative;
}

/* ─── Steps ─── */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    counter-reset: step;
}

.step-item {
    position: relative;
    padding: 2rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--ink);
    color: var(--accent-bright);
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.step-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.55;
}

/* ─── Contact ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--ink-muted);
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.contact-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-secondary);
}

.contact-perks svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.form-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--ink-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-bright);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

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

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-top: 1rem;
}

/* ─── States ─── */
.states-wrap {
    max-width: 480px;
    margin: 0 auto;
}

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 10px;
    background: var(--surface);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--ink-muted);
    transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-question svg { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

/* ─── Footer ─── */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-inner p {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-secondary);
    text-decoration: none;
}

.footer-links a:hover { color: var(--ink); }

/* ─── State pages ─── */
.back-link-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-secondary);
    text-decoration: none;
}

.back-link-header:hover { color: var(--ink); }
.back-link-header svg { width: 16px; height: 16px; }

.state-hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, var(--accent-glow), transparent 60%),
        var(--bg);
}

.state-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.state-hero .state-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink-secondary);
    margin-bottom: 0.5rem;
}

.state-hero .state-description {
    font-size: 1rem;
    color: var(--ink-muted);
    max-width: 560px;
    margin: 0 auto;
}

.workspaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.workspace-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

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

.workspace-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: linear-gradient(135deg, var(--bg-soft), var(--accent-soft));
}

.workspace-visual svg { width: 40px; height: 40px; color: var(--accent); }

.workspace-body { padding: 1.5rem; }

.workspace-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--accent-soft);
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.workspace-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.workspace-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 0.75rem;
}

.workspace-location svg { width: 14px; height: 14px; color: var(--accent); }

.workspace-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.workspace-price span { font-size: 0.85rem; font-weight: 500; color: var(--ink-muted); }

.workspace-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.workspace-features li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    color: var(--ink-secondary);
}

.workspace-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-bright);
}

.workspace-card .btn { width: 100%; }

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-panel { order: -1; }
    .services-grid,
    .steps-row,
    .contact-grid { grid-template-columns: 1fr; }
    .ecom-banner { grid-template-columns: 1fr; text-align: center; }
    .ecom-icon { margin: 0 auto; }
}

@media (max-width: 768px) {
    :root { --header-h: 64px; }

    .nav-toggle { display: flex; }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        gap: 0;
        padding: 80px 32px 32px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 999;
    }

    .nav-menu.active { right: 0; }

    .nav-menu li { width: 100%; }

    .nav-menu a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .header-auth { display: none; }

    .site-header .container {
        padding-left: 16px;
        width: min(100% - 16px, var(--container));
    }

    .hero { padding-bottom: 3rem; min-height: auto; }
    .section { padding: 4rem 0; }
    .form-row { grid-template-columns: 1fr; }
    .hero-stats { gap: 1.25rem; }
    .footer-inner { flex-direction: column; text-align: center; }
    .logo img {
        height: 24px;
    }
}

/* ─── Checkout ─── */
.checkout-page .checkout-main {
    padding: calc(var(--header-h) + 2.5rem) 0 4rem;
    min-height: 100vh;
}

.checkout-head {
    margin-bottom: 2rem;
}

.checkout-head h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.checkout-head p {
    color: var(--ink-muted);
    font-weight: 500;
}

.checkout-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow-x: auto;
}

.checkout-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: var(--radius-sm);
    cursor: default;
    min-width: 90px;
    transition: background 0.2s;
}

.checkout-step-item.completed { cursor: pointer; }
.checkout-step-item.completed:hover { background: var(--bg-soft); }

.checkout-step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--bg-soft);
    color: var(--ink-muted);
    border: 2px solid var(--line);
    transition: all 0.25s var(--ease);
}

.checkout-step-item.active .checkout-step-num,
.checkout-step-item.completed .checkout-step-num {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}

.checkout-step-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--ink-muted);
    line-height: 1.3;
}

.checkout-step-label em {
    font-style: normal;
    font-weight: 500;
    opacity: 0.8;
}

.checkout-step-item.active .checkout-step-label {
    color: var(--ink);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

.checkout-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.checkout-step-panel { display: none; }
.checkout-step-panel.active { display: block; }

.checkout-step-panel h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.checkout-step-desc {
    color: var(--ink-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.label-optional {
    font-weight: 500;
    color: var(--ink-muted);
    font-size: 0.85em;
}

.checkout-workspace-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.checkout-workspace-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.checkout-workspace-icon svg { width: 24px; height: 24px; }

.checkout-workspace-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 8px;
    background: var(--accent-soft);
    color: var(--ink);
    border-radius: var(--radius-pill);
    margin-bottom: 0.35rem;
}

.checkout-workspace-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.checkout-workspace-meta {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.checkout-plan-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.checkout-plan-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.checkout-plan-option:has(input:checked) {
    border-color: var(--accent-bright);
    background: var(--accent-soft);
}

.checkout-plan-option input { margin-top: 4px; accent-color: var(--accent); }

.checkout-plan-option strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.checkout-plan-option small {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.checkout-addons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkout-addon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.checkout-addon:has(input:checked) {
    border-color: var(--accent-bright);
    background: var(--accent-soft);
}

.checkout-addon input { accent-color: var(--accent); flex-shrink: 0; }

.checkout-addon-body { flex: 1; min-width: 0; }

.checkout-addon-body strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.checkout-addon-body small {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.checkout-addon-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink-secondary);
    white-space: nowrap;
}

.checkout-order-lines {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-order-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-discount-banner {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.1rem;
    background: var(--accent-soft);
    border: 1px solid rgba(246, 197, 109, 0.4);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.checkout-discount-banner.visible { display: flex; }

.checkout-discount-banner svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.checkout-discount-banner strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.checkout-discount-banner p {
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.checkout-coupons-available {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.checkout-coupon-chip {
    padding: 0.65rem 1rem;
    background: var(--bg);
    border: 1px dashed var(--line);
    border-radius: var(--radius-sm);
}

.checkout-coupon-chip span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.checkout-coupon-chip small {
    font-size: 0.72rem;
    color: var(--ink-muted);
}

.checkout-coupon-form {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
    margin-bottom: 0.75rem;
}

.checkout-coupon-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.checkout-coupon-msg {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.checkout-coupon-msg.success { color: #15803d; }
.checkout-coupon-msg.error { color: #b91c1c; }

.checkout-total-box {
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-total-row.discount { color: #15803d; }

.checkout-total-row.grand {
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    font-size: 1rem;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

.checkout-actions .btn-primary { margin-left: auto; }

.checkout-sidebar { position: sticky; top: calc(var(--header-h) + 1.5rem); }

.checkout-summary-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.checkout-summary-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.checkout-summary-card hr {
    border: none;
    border-top: 1px solid var(--line);
    margin: 1rem 0;
}

.checkout-summary-workspace p {
    font-weight: 600;
    font-size: 0.95rem;
}

.checkout-summary-state {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-top: 0.15rem;
}

.checkout-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.checkout-summary-lines .checkout-order-line {
    font-size: 0.85rem;
}

.checkout-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.checkout-summary-total strong {
    font-size: 1.15rem;
}

.checkout-success {
    text-align: center;
    padding: 2rem 1rem;
}

.checkout-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 128, 61, 0.1);
    border-radius: 50%;
    color: #15803d;
}

.checkout-success-icon svg { width: 40px; height: 40px; }

.checkout-success h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.checkout-success > p {
    color: var(--ink-muted);
    max-width: 28rem;
    margin: 0 auto 1.5rem;
}

.checkout-success-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.checkout-success-meta span {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-bottom: 2px;
}

.checkout-success-meta strong { font-size: 0.95rem; }

.checkout-success .btn {
    margin: 0.35rem;
}

/* ─── Customer dashboard ─── */
.dashboard-page .dashboard-main {
    padding: calc(var(--header-h) + 2.5rem) 0 4rem;
    min-height: 100vh;
}

.dashboard-welcome {
    margin-bottom: 2rem;
}

.dashboard-welcome h1 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.dashboard-welcome p { color: var(--ink-muted); }

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.dashboard-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.dashboard-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.dashboard-card-icon svg { width: 22px; height: 22px; }

.dashboard-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.dashboard-card p {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 1rem;
}

.dashboard-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.dashboard-booking-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
}

.dashboard-booking-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.dashboard-booking-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.dashboard-booking-details span {
    display: block;
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-bottom: 4px;
}

.dashboard-booking-details strong { font-size: 0.95rem; }

.dashboard-booking-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.dashboard-booking-bar-item span {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-muted);
    margin-bottom: 4px;
}

.dashboard-booking-bar-item strong {
    font-size: 0.92rem;
    font-weight: 600;
}

.kyc-status-pill {
    display: inline-block;
    font-size: 0.72rem !important;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.kyc-status-pill.pending {
    background: rgba(234, 179, 8, 0.15);
    color: #a16207;
}

.kyc-status-pill.submitted {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.kyc-status-pill.verified {
    background: rgba(21, 128, 61, 0.1);
    color: #15803d;
}

.kyc-alert {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(246, 197, 109, 0.22), rgba(246, 197, 109, 0.08));
    border: 1px solid rgba(229, 168, 43, 0.35);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.kyc-alert-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 12px;
    color: var(--accent);
    flex-shrink: 0;
}

.kyc-alert-icon svg { width: 24px; height: 24px; }

.kyc-alert-body { flex: 1; min-width: 0; }

.kyc-alert-body strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.kyc-alert-body p {
    font-size: 0.85rem;
    color: var(--ink-secondary);
    line-height: 1.5;
}

.dashboard-section-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.section-subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.settings-note {
    font-size: 0.88rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

.field-hint {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-top: 6px;
    line-height: 1.45;
}

.kyc-docs-heading {
    font-size: 0.92rem;
    font-weight: 700;
    margin: 1.25rem 0 0.75rem;
}

.input-disabled {
    background: var(--bg-soft) !important;
    color: var(--ink-muted);
    cursor: not-allowed;
}

.director-type-gate {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.25rem;
    background: var(--bg);
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--ink-secondary);
    font-size: 0.88rem;
    line-height: 1.55;
}

.director-type-gate svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

#directorsList {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.director-kyc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.director-kyc-title strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.director-kyc-role {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.director-kyc-card {
    padding: 1.25rem;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

#addDirectorBtn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#addDirectorBtn svg {
    width: 16px;
    height: 16px;
}

.kyc-sub-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.kyc-sub-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--bg);
    color: var(--ink-secondary);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s var(--ease);
}

.kyc-sub-tab svg { width: 16px; height: 16px; }

.kyc-sub-tab:hover {
    background: var(--bg-soft);
    color: var(--ink);
}

.kyc-sub-tab.active {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
}

.kyc-sub-panel { display: none; }
.kyc-sub-panel.active { display: block; }

.document-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 1.25rem;
}

.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.document-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
    flex-wrap: wrap;
}

.document-info strong {
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.document-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.document-status svg { width: 14px; height: 14px; }

.document-status.uploaded { color: #15803d; }
.document-status.pending { color: #a16207; }

.document-upload-btn {
    cursor: pointer;
    position: relative;
}

.document-upload-btn input { display: none; }

.kyc-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 0.5rem;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-secondary);
    cursor: pointer;
}

.checkbox-label input {
    width: 16px;
    height: 16px;
    accent-color: var(--accent);
}

.kyc-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.kyc-progress-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-muted);
}

.kyc-success-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1.25rem 1.5rem;
    background: rgba(21, 128, 61, 0.08);
    border: 1px solid rgba(21, 128, 61, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.kyc-success-banner svg {
    width: 24px;
    height: 24px;
    color: #15803d;
    flex-shrink: 0;
    margin-top: 2px;
}

.kyc-success-banner strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.kyc-success-banner p {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

.dashboard-badge.review {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

@media (max-width: 960px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-sidebar { position: static; order: -1; }
    .checkout-steps { grid-template-columns: repeat(3, 1fr); }
    .dashboard-grid { grid-template-columns: 1fr; }
    .dashboard-booking-details { grid-template-columns: 1fr; }
    .dashboard-booking-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .checkout-steps { grid-template-columns: repeat(2, 1fr); }
    .checkout-panel { padding: 1.25rem; }
    .checkout-coupon-form { flex-direction: column; align-items: stretch; }
    .checkout-success-meta { flex-direction: column; align-items: center; gap: 1rem; }
    .checkout-actions { flex-direction: column-reverse; }
    .checkout-actions .btn-primary { margin-left: 0; width: 100%; }
    .checkout-actions .btn-secondary { width: 100%; }
    .kyc-alert { flex-direction: column; align-items: flex-start; }
    .kyc-alert .btn { width: 100%; }
    .dashboard-section-card { padding: 1.25rem; }
    .kyc-form-actions { flex-direction: column; align-items: stretch; }
    .kyc-form-actions .btn { width: 100%; }
    .dashboard-booking-bar { grid-template-columns: 1fr; }
    .document-item { flex-direction: column; align-items: flex-start; }
    .document-item .btn { width: 100%; }
}
