/* ==========================================================================
   XCAPE Business Portal - Redesigned Styles
   Matches homepage: DM Serif Display + Outfit, ocean/coral/teal palette
   ========================================================================== */

/* Google Fonts loaded via header */

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

:root {
    --ocean-deep: #0B1D26;
    --ocean-mid: #133642;
    --teal: #1A8A7D;
    --teal-light: #22B8A6;
    --teal-bg: rgba(26,138,125,0.06);
    --coral: #E8734A;
    --coral-hover: #D4612F;
    --coral-bg: rgba(232,115,74,0.06);
    --gold: #D4A853;
    --gold-light: #E8C97A;
    --sand: #F5EDE3;
    --sand-light: #FAF6F0;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --slate: #4A5568;
    --mist: #94A3B8;
    --border: rgba(0,0,0,0.06);
    --border-mid: rgba(0,0,0,0.1);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
}

body {
    font-family: var(--font-body);
    background: var(--sand-light);
    min-height: 100vh;
    color: var(--charcoal);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   Top Bar Layout (Authenticated)
   ========================================================================== */

.biz-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.biz-topbar {
    background: var(--ocean-deep);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 28px;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}

.biz-topbar-left {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 36px;
}

.biz-logo {
    display: block;
}

.biz-logo img {
    height: 32px;
    width: auto;
    filter: invert(1);
    mix-blend-mode: screen;
}

.biz-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-left: 12px;
}

.biz-nav {
    display: flex;
    gap: 4px;
    flex: 1;
}

.biz-nav-link {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.biz-nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
}

.biz-nav-link.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.biz-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.biz-user {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.biz-logout-btn {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    transition: all 0.3s;
    font-weight: 500;
}

.biz-logout-btn:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.biz-main {
    flex: 1;
    padding: 36px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ==========================================================================
   Login / Register Pages
   ========================================================================== */

.biz-login-container {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    width: 100%;
    max-width: 440px;
}

.biz-login-header {
    background: var(--ocean-deep);
    color: white;
    padding: 44px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.biz-login-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(26,138,125,0.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(232,115,74,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.biz-login-header * { position: relative; z-index: 1; }

.biz-login-header h1 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.biz-login-header p {
    font-size: 14px;
    opacity: 0.6;
    font-weight: 300;
}

.biz-login-header .icon {
    display: inline-block;
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    margin-bottom: 16px;
    line-height: 56px;
    font-size: 26px;
}

.biz-login-body {
    padding: 36px;
}

.biz-login-body .form-group {
    margin-bottom: 20px;
}

.biz-login-body label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--slate);
    letter-spacing: 0.2px;
}

.biz-login-body input {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s;
    background: var(--sand-light);
}

.biz-login-body input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,138,125,0.1);
    background: var(--white);
}

.biz-login-btn {
    width: 100%;
    padding: 15px;
    background: var(--coral);
    color: white;
    border: none;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 0.2px;
}

.biz-login-btn:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(232,115,74,0.3);
}

.biz-login-btn:active {
    transform: translateY(0);
}

.biz-login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--slate);
}

.biz-login-footer a {
    color: var(--coral);
    text-decoration: none;
    font-weight: 600;
}

.biz-login-footer a:hover {
    text-decoration: underline;
}

.error-message {
    background: #FEF2F2;
    color: #991B1B;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    border: 1px solid #FECACA;
}

.success-message {
    background: #F0FDF4;
    color: #166534;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
    border: 1px solid #BBF7D0;
}

.biz-forgot-link {
    text-align: right;
    margin-top: 8px;
}

.biz-forgot-link a {
    color: var(--mist);
    font-size: 13px;
    text-decoration: none;
}

.biz-forgot-link a:hover {
    color: var(--teal-light);
}

/* ==========================================================================
   Cards & Common Components
   ========================================================================== */

.biz-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.biz-card h2 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.biz-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.biz-page-header {
    margin-bottom: 28px;
}

.biz-page-header h1 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--charcoal);
    margin-bottom: 6px;
    font-weight: 800;
    letter-spacing: -1px;
}

.biz-page-header p {
    color: var(--slate);
    font-size: 15px;
    font-weight: 300;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.biz-btn {
    padding: 7px 18px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.biz-btn-primary {
    background: var(--coral);
    color: white;
}

.biz-btn-primary:hover {
    background: var(--coral-hover);
    box-shadow: 0 6px 20px rgba(232,115,74,0.3);
    transform: translateY(-1px);
}

.biz-btn-secondary {
    background: rgba(0,0,0,0.04);
    color: var(--charcoal);
    border: 1px solid var(--border-mid);
}

.biz-btn-secondary:hover {
    background: rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.15);
}

.biz-btn-danger {
    background: #EF4444;
    color: white;
}

.biz-btn-danger:hover {
    background: #DC2626;
    box-shadow: 0 6px 20px rgba(239,68,68,0.3);
}

.biz-btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}

.biz-btn-lg {
    padding: 15px 36px;
    font-size: 16px;
}

.biz-btn-full {
    width: 100%;
    text-align: center;
}

.biz-btn-outline {
    background: transparent;
    border: 1px solid var(--border-mid);
    color: var(--charcoal);
}

.biz-btn-outline:hover {
    background: rgba(0,0,0,0.03);
}

/* ==========================================================================
   Stats Cards
   ========================================================================== */

.biz-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.biz-stat {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out-expo);
}

.biz-stat:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.biz-stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -1px;
}

.biz-stat-label {
    font-size: 12px;
    color: var(--mist);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.biz-table {
    width: 100%;
    border-collapse: collapse;
}

.biz-table th {
    background: var(--sand-light);
    padding: 12px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 12px;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
}

.biz-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--charcoal);
}

.biz-table tr:hover {
    background: rgba(0,0,0,0.015);
}

.biz-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   Status Badges
   ========================================================================== */

.biz-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.biz-badge-active {
    background: rgba(26,138,125,0.1);
    color: var(--teal);
}

.biz-badge-pending {
    background: rgba(212,168,83,0.15);
    color: #B8860B;
}

.biz-badge-expired {
    background: rgba(239,68,68,0.1);
    color: #DC2626;
}

.biz-badge-queued {
    background: rgba(59,130,246,0.1);
    color: #2563EB;
}

.biz-badge-failed {
    background: rgba(239,68,68,0.1);
    color: #DC2626;
}

.biz-badge-cancelled {
    background: rgba(0,0,0,0.05);
    color: var(--slate);
}

/* ==========================================================================
   Listing Grid (Promote Page)
   ========================================================================== */

.biz-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
}

.biz-listing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.biz-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.biz-listing-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.biz-listing-card-body {
    padding: 18px;
}

.biz-listing-card-body h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.biz-listing-card-body p {
    font-size: 13px;
    color: var(--slate);
    font-weight: 300;
}

.biz-listing-card.is-premium {
    border: 2px solid var(--teal);
}

.biz-listing-card.is-premium::after {
    content: 'PREMIUM';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--teal);
    color: white;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* ==========================================================================
   Promote Details / Pricing Box
   ========================================================================== */

.biz-promote-box {
    background: var(--teal-bg);
    border: 1px solid rgba(26,138,125,0.15);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-top: 18px;
}

.biz-price-tag {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -1px;
}

.biz-price-period {
    font-size: 14px;
    color: var(--slate);
    margin-left: 8px;
    font-weight: 300;
}

.biz-slots-info {
    font-size: 14px;
    color: var(--slate);
    margin: 8px 0;
    font-weight: 400;
}

/* ==========================================================================
   Premium Listing Cards (Dashboard)
   ========================================================================== */

.biz-premium-listing {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.biz-premium-header {
    font-family: var(--font-display);
}

.biz-premium-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.biz-img-slot {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px dashed var(--border-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--mist);
    position: relative;
    background: var(--sand-light);
}

.biz-img-slot img,
.biz-img-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.biz-img-upload-area {
    border: 2px dashed rgba(26,138,125,0.3);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    background: var(--teal-bg);
    transition: all 0.3s;
    cursor: pointer;
}

.biz-img-upload-area:hover {
    border-color: var(--teal);
    background: rgba(26,138,125,0.08);
}

/* ==========================================================================
   Alerts
   ========================================================================== */

.biz-alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.biz-alert-success {
    background: rgba(26,138,125,0.08);
    color: #166554;
    border: 1px solid rgba(26,138,125,0.15);
}

.biz-alert-warning {
    background: rgba(212,168,83,0.12);
    color: #92400E;
    border: 1px solid rgba(212,168,83,0.2);
}

.biz-alert-error {
    background: rgba(239,68,68,0.08);
    color: #991B1B;
    border: 1px solid rgba(239,68,68,0.15);
}

.biz-alert-info {
    background: rgba(59,130,246,0.08);
    color: #1E40AF;
    border: 1px solid rgba(59,130,246,0.15);
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

.biz-form-group {
    margin-bottom: 20px;
}

.biz-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--slate);
    letter-spacing: 0.2px;
}

.biz-form-group input,
.biz-form-group select,
.biz-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    transition: all 0.3s;
    background: var(--sand-light);
    color: var(--charcoal);
}

.biz-form-group input:focus,
.biz-form-group select:focus,
.biz-form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26,138,125,0.1);
    background: var(--white);
}

/* ==========================================================================
   Checkout
   ========================================================================== */

.biz-checkout-summary {
    background: var(--sand-light);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
}

.biz-checkout-details {
    margin-top: 16px;
}

/* ==========================================================================
   Edit Listing Layout
   ========================================================================== */

.biz-edit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .biz-edit-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Account Page Layout
   ========================================================================== */

.biz-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .biz-account-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Responsive (Authenticated)
   ========================================================================== */

@media (max-width: 768px) {
    .biz-topbar {
        flex-wrap: wrap;
        height: auto;
        padding: 14px 18px;
        gap: 10px;
    }

    .biz-topbar-left {
        margin-right: auto;
    }

    .biz-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        gap: 2px;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
    }

    .biz-nav-link {
        font-size: 13px;
        padding: 7px 14px;
        white-space: nowrap;
    }

    .biz-main {
        padding: 20px 16px;
    }

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

    .biz-listing-grid {
        grid-template-columns: 1fr;
    }

    .biz-page-header h1 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Landing Page
   ========================================================================== */

/* Nav */
.landing-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

.landing-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.landing-nav-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    color: inherit;
}

.landing-nav-brand .biz-logo img {
    height: 36px;
    filter: invert(1);
    mix-blend-mode: screen;
}

.landing-nav-brand .biz-title {
    color: rgba(255,255,255,0.7);
    margin-left: 10px;
}

.landing-nav-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.landing-nav-links .biz-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}

.landing-nav-links .biz-btn-secondary:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
}

.landing-nav-links .biz-btn-primary {
    background: var(--coral);
    color: white;
}

/* Hero */
.landing-hero {
    background: var(--ocean-deep);
    color: white;
    padding: 110px 24px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(26,138,125,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(232,115,74,0.08) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(212,168,83,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.landing-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.landing-hero h1 em {
    color: var(--coral);
    font-style: italic;
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: var(--coral);
}

.landing-hero h1 em::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    border-radius: 2px;
    opacity: 0.7;
}

.landing-hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.landing-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.landing-btn-white {
    background: var(--coral);
    color: white;
    font-weight: 600;
    border-radius: 100px;
}

.landing-btn-white:hover {
    background: var(--coral-hover);
    box-shadow: 0 8px 24px rgba(232,115,74,0.3);
    transform: translateY(-2px);
}

.landing-btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
}

.landing-btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.35);
    color: white;
}

/* Sections */
.landing-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 24px;
}

.landing-section-alt {
    background: var(--sand);
    max-width: 100%;
    padding: 90px 24px;
}

.landing-section-alt > h2,
.landing-section-alt > p,
.landing-section-alt > .landing-steps,
.landing-section-alt > .landing-pricing,
.landing-section-alt > .landing-categories {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.landing-section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.landing-section-sub {
    text-align: center;
    color: var(--slate);
    font-size: 16px;
    margin-bottom: 44px;
    font-weight: 300;
}

/* Features */
.landing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}

.landing-feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.landing-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
}

.landing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.landing-feature-card:hover::before {
    opacity: 1;
}

.landing-feature-icon {
    font-size: 36px;
    margin-bottom: 20px;
    display: block;
}

.landing-feature-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.landing-feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--slate);
    font-weight: 300;
}

/* Steps */
.landing-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
}

.landing-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 24px 20px;
}

.landing-step-num {
    width: 52px;
    height: 52px;
    background: var(--ocean-deep);
    color: white;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.landing-step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.landing-step p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
}

.landing-step-arrow {
    font-size: 24px;
    color: var(--mist);
    padding-top: 36px;
    flex-shrink: 0;
    opacity: 0.4;
}

/* Categories */
.landing-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.landing-category-card {
    display: block;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out-expo);
}

.landing-category-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26,138,125,0.1);
}

.landing-category-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.landing-category-slots {
    font-size: 13px;
    color: var(--slate);
    margin-bottom: 6px;
}

.landing-slots-open {
    color: var(--teal);
    font-weight: 700;
}

.landing-slots-full {
    color: var(--coral);
    font-weight: 700;
}

.landing-category-price {
    font-size: 13px;
    color: var(--mist);
}

/* Pricing */
.landing-pricing {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.landing-pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 52px 44px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 440px;
    width: 100%;
    border: 2px solid var(--teal);
    position: relative;
    overflow: hidden;
}

.landing-pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.landing-pricing-from {
    font-size: 12px;
    color: var(--mist);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 600;
}

.landing-pricing-amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1.1;
    letter-spacing: -2px;
}

.landing-pricing-period {
    font-size: 14px;
    color: var(--mist);
    margin-bottom: 32px;
    font-weight: 300;
}

.landing-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    text-align: left;
}

.landing-pricing-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--slate);
    padding-left: 28px;
    position: relative;
    font-weight: 400;
}

.landing-pricing-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

.landing-pricing-list li:last-child {
    border-bottom: none;
}

/* Final CTA */
.landing-cta {
    background: var(--ocean-deep);
    color: white;
    text-align: center;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.landing-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(232,115,74,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 0%, rgba(26,138,125,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.landing-cta * { position: relative; z-index: 1; }

.landing-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.landing-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 36px;
    font-weight: 300;
}

/* ==========================================================================
   Landing Page - Responsive
   ========================================================================== */

@media (max-width: 900px) {
    .landing-features {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .landing-steps {
        flex-direction: column;
        align-items: center;
    }

    .landing-step-arrow {
        transform: rotate(90deg);
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .landing-hero {
        padding: 70px 20px 80px;
    }

    .landing-hero h1 {
        letter-spacing: -1px;
    }

    .landing-hero-sub {
        font-size: 16px;
    }

    .landing-section,
    .landing-section-alt {
        padding: 60px 16px;
    }

    .landing-section-title {
        font-size: 26px;
    }

    .landing-categories {
        grid-template-columns: 1fr;
    }

    .landing-pricing-card {
        padding: 36px 28px;
    }

    .landing-pricing-amount {
        font-size: 44px;
    }

    .landing-cta {
        padding: 60px 20px;
    }

    .landing-cta h2 {
        font-size: 26px;
    }

    .landing-nav-inner {
        padding: 12px 16px;
    }

    .landing-nav-brand .biz-logo img {
        height: 28px;
    }
}

/* ==========================================================================
   NEW LANDING PAGE — Complete Redesign
   Mobile-first, conversion-focused
   ========================================================================== */

.lp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- BUTTONS ---------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.lp-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.lp-btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.lp-btn-coral {
    background: var(--coral);
    color: white;
}

.lp-btn-coral:hover {
    background: var(--coral-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(232,115,74,0.35);
}

.lp-btn-teal {
    background: var(--teal);
    color: white;
}

.lp-btn-teal:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26,138,125,0.3);
}

.lp-btn-ghost {
    background: none;
    color: rgba(255,255,255,0.6);
    padding-left: 0;
    padding-right: 0;
}

.lp-btn-ghost:hover {
    color: white;
}

/* ---------- SECTION UTILITIES ---------- */
.lp-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--coral);
    margin-bottom: 12px;
}

.lp-section {
    padding: 90px 0;
}

.lp-section-sand {
    background: var(--sand);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.lp-section-header p {
    font-size: 17px;
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* ---------- HERO ---------- */
.lp-hero {
    background: var(--ocean-deep);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 10% 90%, rgba(26,138,125,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(232,115,74,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 7px 16px;
    border-radius: 100px;
    font-size: 12px;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.lp-hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.lp-hero-text h1 em {
    color: var(--coral);
    font-style: italic;
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: var(--coral);
}

.lp-hero-text h1 em::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    border-radius: 2px;
    opacity: 0.7;
}

.lp-hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 460px;
    font-weight: 300;
}

.lp-hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.lp-hero-note {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    margin-top: 16px;
    font-weight: 400;
}

/* Hero phone mockup */
.lp-hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.lp-phone {
    width: 240px;
    height: 490px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
    position: relative;
}

.lp-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 24px;
    background: #111;
    border-radius: 16px;
    z-index: 3;
}

.lp-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: white;
}

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

/* Floating badges around phone */
.lp-hero-float {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
    animation: lp-float 5s ease-in-out infinite;
    z-index: 4;
}

.lp-hero-float strong {
    font-size: 13px;
    color: var(--charcoal);
    display: block;
    line-height: 1.2;
}

.lp-hero-float small {
    font-size: 11px;
    color: var(--mist);
    display: block;
}

.lp-hero-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-icon-teal {
    background: rgba(26,138,125,0.08);
    color: var(--teal);
}

.lp-icon-coral {
    background: rgba(232,115,74,0.08);
    color: var(--coral);
}

.lp-hero-float-1 {
    top: 50px;
    right: -10px;
    animation-delay: 0s;
}

.lp-hero-float-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: -2.5s;
}

@keyframes lp-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ---------- STATS STRIP ---------- */
.lp-stats-strip {
    background: var(--ocean-mid);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lp-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.lp-stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    font-weight: 400;
}

.lp-stat-item strong {
    color: rgba(255,255,255,0.8);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: -0.5px;
}

.lp-stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.1);
}

/* ---------- COMPARE SECTION ---------- */
.lp-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.lp-compare-card {
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
}

.lp-compare-before {
    background: var(--white);
    border: 1px solid var(--border);
}

.lp-compare-after {
    background: var(--white);
    border: 2px solid var(--teal);
    box-shadow: var(--shadow-md);
}

.lp-compare-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lp-compare-before .lp-compare-tag {
    background: rgba(0,0,0,0.04);
    color: var(--mist);
}

.lp-compare-after .lp-compare-tag {
    background: rgba(26,138,125,0.1);
    color: var(--teal);
}

.lp-compare-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.lp-compare-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.5;
}

.lp-compare-x {
    color: var(--mist);
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
    opacity: 0.5;
}

.lp-compare-check {
    color: var(--teal);
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
    flex-shrink: 0;
}

.lp-compare-before .lp-compare-item span {
    color: var(--mist);
}

.lp-compare-price {
    font-size: 14px;
    color: var(--mist);
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-weight: 400;
}

.lp-compare-after .lp-compare-price {
    color: var(--teal);
}

.lp-compare-after .lp-compare-price strong {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: -0.5px;
}

/* ---------- STEPS ---------- */
.lp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.lp-step-card {
    flex: 1;
    max-width: 300px;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s var(--ease-out-expo);
}

.lp-step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.lp-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--ocean-deep);
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-step-icon {
    font-size: 36px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.lp-step-icon-svg {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--sand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 18px;
}

.lp-step-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.lp-step-card p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
}

.lp-step-arrow {
    padding-top: 60px;
    color: var(--mist);
    opacity: 0.3;
    flex-shrink: 0;
}

.lp-steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* ---------- PRICING GRID ---------- */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
}

.lp-pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out-expo);
}

.lp-pricing-card:hover {
    border-color: var(--teal);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(26,138,125,0.1);
}

.lp-pricing-card-top {
    padding: 28px 24px 20px;
    text-align: center;
}

.lp-pricing-card-top h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.lp-pricing-amount {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -1.5px;
    line-height: 1;
}

.lp-pricing-period {
    font-size: 13px;
    color: var(--mist);
    margin-top: 4px;
    font-weight: 400;
}

.lp-pricing-card-bottom {
    padding: 18px 24px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.lp-pricing-slots {
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-slots-open {
    color: var(--teal);
}

.lp-slots-full {
    color: var(--coral);
}

.lp-slots-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.lp-slots-dot-open {
    background: var(--teal);
    animation: lp-pulse 2s ease infinite;
}

.lp-slots-dot-full {
    background: var(--coral);
    opacity: 0.6;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* ---------- FAQ ---------- */
.lp-faq {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.lp-faq-item[open] {
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(26,138,125,0.08);
}

.lp-faq-item summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--mist);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.lp-faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--teal);
}

.lp-faq-item p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7;
    font-weight: 300;
}

/* ---------- FINAL CTA ---------- */
.lp-final-cta {
    background: var(--ocean-deep);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(232,115,74,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.lp-final-cta * {
    position: relative;
    z-index: 1;
}

.lp-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
}

.lp-final-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 36px;
    font-weight: 300;
}

.lp-final-cta .lp-hero-ctas {
    justify-content: center;
}

/* ---------- FOOTER ---------- */
.lp-footer {
    background: #060F14;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.lp-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer p {
    font-size: 13px;
    color: rgba(255,255,255,0.2);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .lp-hero-visual { order: -1; }
    .lp-hero-sub { margin-left: auto; margin-right: auto; }
    .lp-hero-ctas { justify-content: center; }
    .lp-hero-note { text-align: center; }

    .lp-phone { width: 200px; height: 410px; }
    .lp-hero-float-1 { top: 20px; right: 0; }
    .lp-hero-float-2 { bottom: 50px; left: 0; }

    .lp-compare { grid-template-columns: 1fr; max-width: 400px; }
    .lp-steps { flex-direction: column; align-items: center; }
    .lp-step-arrow { transform: rotate(90deg); padding-top: 0; }
    .lp-step-card { max-width: 400px; width: 100%; }
}

@media (max-width: 600px) {
    .lp-hero { padding: 80px 0 60px; }
    .lp-hero-text h1 { letter-spacing: -1px; }
    .lp-hero-float { display: none; }
    .lp-phone { width: 180px; height: 370px; }

    .lp-section { padding: 64px 0; }
    .lp-section-header { margin-bottom: 36px; }

    .lp-stats-row { gap: 16px; }
    .lp-stat-divider { display: none; }
    .lp-stat-item { font-size: 13px; }
    .lp-stat-item strong { font-size: 16px; }

    .lp-compare-card { padding: 24px 20px; }

    .lp-pricing-grid { grid-template-columns: 1fr; }

    .lp-hero-ctas { flex-direction: column; width: 100%; }
    .lp-btn-lg { width: 100%; justify-content: center; }

    .lp-final-cta { padding: 70px 0; }

    .lp-footer-inner { justify-content: center; text-align: center; }
}
