/* ============================================
   CAPTIME - COMPLETE STYLESHEET
   Landing Page + Checkout Flow
   Brand Amber: #FBB033 | Deep Amber: #FB8500
   ============================================ */

:root {
    --brand-orange: #fbb033;
    --brand-orange-dark: #FB8500;
    --brand-orange-light: rgba(251, 176, 51, 0.08);
    --brand-orange-10: rgba(251, 176, 51, 0.1);
    --text-dark: #121212;
    --text-body: #333535;
    --text-muted: #5A5B5B;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-lighter: #f5f5f5;
    --border-light: #E5E7EB;
    --border-alt: #dfdcdc;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

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

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { color: var(--text-dark); font-weight: 600; line-height: 1.3; }
a { color: var(--brand-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-orange-dark); }
img { max-width: 100%; height: auto; }

.section-title { font-size: 36px; font-weight: 700; text-align: center; margin-bottom: 16px; }
.section-desc { text-align: center; max-width: 700px; margin: 0 auto 40px; font-size: 18px; color: var(--text-muted); }
.section-lead { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.7; }
.link-orange { color: var(--brand-orange); font-weight: 500; }
.link-orange:hover { color: var(--brand-orange-dark); text-decoration: underline; }

/* ============ BUTTONS ============ */
.btn-captime {
    display: inline-block; background: var(--brand-orange); color: var(--white);
    font-size: 16px; font-weight: 600; text-transform: uppercase;
    padding: 14px 28px; border-radius: var(--radius); border: 2px solid var(--brand-orange);
    cursor: pointer; transition: all var(--transition); letter-spacing: 0.5px; text-align: center;
}
.btn-captime:hover {
    background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); color: var(--white);
    transform: translateY(-1px); box-shadow: 0 4px 12px rgba(251,176,51,0.3);
}
.btn-outline {
    display: inline-block; background: transparent; color: var(--brand-orange);
    font-size: 16px; font-weight: 600; padding: 14px 28px; border-radius: var(--radius);
    border: 2px solid var(--brand-orange); cursor: pointer; transition: all var(--transition); text-align: center;
}
.btn-outline:hover { background: var(--brand-orange); color: var(--white); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-text {
    background: none; border: none; color: var(--brand-orange); font-size: 16px;
    font-weight: 500; cursor: pointer; padding: 8px 16px;
}
.btn-text:hover { color: var(--brand-orange-dark); }

/* ============ PROMO BANNER ============ */
.promo-banner {
    background: linear-gradient(135deg, var(--brand-orange-dark) 0%, var(--brand-orange) 100%);
    color: var(--white); padding: 10px 16px; position: relative; z-index: 100;
}
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.promo-text { font-size: 14px; }
.promo-urgency { margin-left: 8px; opacity: 1; font-weight: 700; }
.promo-timer { display: flex; gap: 8px; }
.timer-block { background: #333535; border-radius: 4px; padding: 4px 8px; text-align: center; min-width: 48px; }
.timer-block span { display: block; font-size: 18px; font-weight: 700; }
.timer-block small { display: block; font-size: 10px; text-transform: uppercase; opacity: 0.8; }
.promo-cta {
    background: var(--white); color: var(--brand-orange-dark); padding: 6px 20px;
    border-radius: var(--radius); font-weight: 700; font-size: 13px; text-transform: uppercase;
}
.promo-cta:hover { color: var(--brand-orange-dark); box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.promo-close {
    position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; opacity: 0.7;
}
.promo-close:hover { opacity: 1; }

/* ============ HEADER ============ */
.site-header { position: sticky; top: 0; background: var(--white); z-index: 99; padding: 12px 0; transition: box-shadow var(--transition); }
.site-header.sticky { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.header-logo img { height: 44px; width: auto; }
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; list-style: none; gap: 4px; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: flex; align-items: center; gap: 6px; padding: 10px 16px; font-size: 15px; font-weight: 500; color: var(--text-dark); transition: color var(--transition); white-space: nowrap; }
.nav-list > li > a:hover { color: var(--brand-orange); }
.nav-list > li > a .fa-chevron-down { font-size: 10px; }
.has-dropdown:hover .dropdown-menu-custom { display: block; }
.dropdown-menu-custom {
    display: none; position: absolute; top: 100%; left: 0; background: var(--white);
    min-width: 240px; border-top: 2px solid var(--brand-orange); border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md); padding: 8px 0; list-style: none; z-index: 100;
}
.dropdown-menu-custom li a { display: block; padding: 10px 20px; font-size: 14px; color: var(--text-body); }
.dropdown-menu-custom li a:hover { background: var(--brand-orange-light); color: var(--brand-orange); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.phone-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-orange); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 16px; }
.phone-info small { display: block; font-size: 12px; color: var(--text-muted); }
.phone-info a { color: var(--text-dark); font-weight: 600; font-size: 15px; }
.phone-info a:hover { color: var(--brand-orange); }
.mobile-toggle { background: none; border: none; font-size: 24px; color: var(--text-dark); cursor: pointer; }
.mobile-menu { position: fixed; top: 0; right: -320px; width: 300px; height: 100vh; background: var(--white); z-index: 200; padding: 24px; box-shadow: var(--shadow-lg); transition: right var(--transition); overflow-y: auto; }
.mobile-menu.open { right: 0; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-dark); }
.mobile-nav { list-style: none; padding: 0; }
.mobile-nav li a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; color: var(--text-dark); border-bottom: 1px solid var(--border-light); }
.mobile-nav li a:hover { color: var(--brand-orange); }

/* ============ HERO ============ */
.hero-section { padding: 80px 0 60px; background: var(--brand-orange-light); }
.hero-section h1 { font-size: 44px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--text-dark); }
.hero-subtitle { font-size: 17px; line-height: 1.6; color: var(--text-muted); margin-bottom: 24px; }
.hero-price-highlight { font-size: 20px; font-weight: 700; color: var(--text-dark); }
.hero-price-usd { color: var(--brand-orange-dark); }
.hero-checklist { list-style: none; padding: 0; margin-bottom: 32px; }
.hero-checklist li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 16px; font-weight: 500; color: var(--text-dark); }
.hero-checklist li i { color: var(--brand-orange); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-social-proof { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.google-rating-inline { display: flex; align-items: center; gap: 8px; font-size: 16px; }
.google-logo-text { font-size: 22px; font-weight: 500; letter-spacing: -0.5px; }
.stars-inline { color: #fbbc05; font-size: 18px; letter-spacing: 1px; }
.rating-number { font-size: 16px; color: var(--text-dark); }
.trust-text { font-size: 14px; color: var(--text-muted); }
.hero-image-col { position: relative; text-align: center; }
.hero-image-wrapper { position: relative; display: inline-block; }
.hero-image { border-radius: var(--radius-lg); max-height: 480px; max-width: 360px; object-fit: cover; box-shadow: var(--shadow-md); }
.money-back-badge { position: absolute; bottom: -10px; left: -50px; z-index: 2; }
.money-back-badge img { width: 168px; height: auto; filter: sepia(1) saturate(2) hue-rotate(-5deg) brightness(0.85) contrast(1.1) drop-shadow(0 4px 10px rgba(0,0,0,0.2)); }
.badge-fallback { width: 100px; height: 100px; border-radius: 50%; background: var(--brand-orange); color: var(--white); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; font-size: 12px; line-height: 1.2; box-shadow: var(--shadow-md); }

/* ============ TRUST BAR ============ */
.trust-bar { background: var(--bg-light); padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.trust-badge { font-size: 14px; color: var(--text-muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.trust-badge i { color: var(--brand-orange); font-size: 16px; }

/* ============ DIFFERENCE ============ */
.difference-section { padding: 80px 0; background: var(--white); }
.diff-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); transition: all var(--transition); height: 100%; }
.diff-card:hover { background: var(--bg-light); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.diff-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--brand-orange-10); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; color: var(--brand-orange); }
.diff-card h3 { font-size: 20px; margin-bottom: 10px; }
.diff-card p { font-size: 15px; color: var(--text-muted); }

/* ============ PRICING ============ */
/* ── LP-Price Section ─────────────────────────────────── */
.pricing-section { padding: 80px 0; background: var(--bg-light); }
.lp-eyebrow { text-align: center; text-transform: uppercase; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; color: var(--brand-orange-dark); margin-bottom: 12px; }
.lp-headline { text-align: center; font-size: 38px; font-weight: 800; margin-bottom: 16px; letter-spacing: -.3px; }
.lp-subhead { text-align: center; max-width: 680px; margin: 0 auto 48px; font-size: 17px; color: var(--text-muted); line-height: 1.7; }
.lp-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: stretch; margin-bottom: 56px; }

/* Price Card */
.lp-price-card { background: var(--white); border: 1px solid var(--border-light); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); }

/* Zone A — Always Included */
.lp-zone-a { padding: 36px 32px 28px; }
.lp-zone-a-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: #065F46; background: rgba(16,185,129,.10); padding: 5px 12px; border-radius: 100px; margin-bottom: 20px; }
.lp-zone-a-label i { font-size: 11px; }
.lp-price-block { margin-bottom: 24px; }
.lp-price-from { font-size: 14px; font-weight: 500; color: #7B7D7D; display: block; margin-bottom: 2px; }
.lp-price-amount { font-size: 48px; font-weight: 800; color: var(--text-dark); letter-spacing: -1px; line-height: 1.1; }
.lp-price-breakdown { font-size: 13px; color: #7B7D7D; margin-top: 4px; }
.lp-price-breakdown strong { color: var(--text-muted); font-weight: 600; }
.lp-price-was { text-decoration: line-through; color: #C4C6C6; font-weight: 500; }
.lp-chip-discount { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .5px; color: #fff; background: #10B981; padding: 2px 7px; border-radius: 100px; margin-left: 2px; vertical-align: middle; position: relative; top: -1px; }
.lp-zone-a-items { list-style: none; margin: 0 0 20px; padding: 0; }
.lp-zone-a-items li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 15px; color: var(--text-body); border-bottom: 1px solid rgba(0,0,0,.04); }
.lp-zone-a-items li:last-child { border-bottom: none; }
.lp-zone-a-items li i { color: #10B981; font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }
.lp-chip-free { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: #065F46; background: rgba(16,185,129,.10); padding: 2px 8px; border-radius: 100px; margin-left: auto; flex-shrink: 0; }
.lp-chip-govt { display: inline-block; font-size: 11px; font-weight: 600; color: #7B7D7D; background: rgba(0,0,0,.04); padding: 2px 8px; border-radius: 100px; margin-left: auto; flex-shrink: 0; }
.lp-zone-a-cta { display: block; width: 100%; background: var(--brand-orange); color: #fff; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; text-align: center; padding: 16px; border-radius: var(--radius); border: none; cursor: pointer; transition: all var(--transition); }
.lp-zone-a-cta:hover { background: var(--brand-orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(251,176,51,.35); }
.lp-zone-a-cta-hint { display: block; text-align: center; font-size: 13px; color: #7B7D7D; margin-top: 10px; }

/* Zone B — Optional Add-ons */
.lp-zone-b { background: var(--bg-light); border-top: 2px dashed var(--border-light); padding: 28px 32px 32px; }
.lp-zone-b-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--brand-orange-dark); background: var(--brand-orange-10); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.lp-zone-b-label i { font-size: 11px; }
.lp-addon-row { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.05); }
.lp-addon-row:last-child { border-bottom: none; }
.lp-addon-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(251,176,51,.06); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--brand-orange-dark); font-size: 16px; }
.lp-addon-info { flex: 1; }
.lp-addon-name { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; }
.lp-addon-desc { font-size: 13px; color: #7B7D7D; line-height: 1.45; }
.lp-addon-price { font-size: 14px; font-weight: 700; color: var(--text-dark); white-space: nowrap; flex-shrink: 0; align-self: center; }
.lp-addon-price small { font-size: 12px; font-weight: 500; color: #7B7D7D; }

/* Donut Panel (right column) */
.lp-donut-panel { background: var(--white); border: 1px solid var(--border-light); border-radius: 20px; padding: 36px 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.lp-donut-panel-title { font-size: 18px; font-weight: 700; text-align: center; margin-bottom: 28px; }
.lp-donut-wrapper { display: flex; justify-content: center; margin-bottom: 28px; }
.lp-donut-chart { position: relative; width: 200px; height: 200px; }
.lp-donut-chart svg { width: 200px; height: 200px; }
.lp-donut-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.lp-donut-center-amount { display: block; font-size: 22px; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.lp-donut-center-label { display: block; font-size: 12px; color: #7B7D7D; margin-top: 2px; }
.lp-donut-legend { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.lp-legend-row { display: flex; align-items: center; gap: 12px; }
.lp-legend-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.lp-legend-dot.govt { background: var(--brand-orange); }
.lp-legend-dot.captime { background: #10B981; }
.lp-legend-info { flex: 1; }
.lp-legend-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.lp-legend-detail { font-size: 12px; color: #7B7D7D; }
.lp-legend-amount { font-size: 15px; font-weight: 700; color: var(--text-dark); white-space: nowrap; }
.lp-donut-divider { height: 1px; background: var(--border-light); margin-bottom: 24px; }

/* Trust Points */
.lp-trust-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.lp-trust-points li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text-body); line-height: 1.55; }
.lp-trust-points li strong { font-weight: 600; color: var(--text-dark); }
.lp-trust-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-orange-10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-trust-icon i { color: var(--brand-orange-dark); font-size: 16px; }

/* Modularity Strip */
.lp-mod-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.lp-mod-tile { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 20px; text-align: center; transition: all var(--transition); }
.lp-mod-tile:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.lp-mod-tile.included { border-color: #10B981; background: linear-gradient(to bottom, rgba(16,185,129,.04), var(--white)); }
.lp-mod-tile.optional { border-style: dashed; }
.lp-mod-icon { width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.lp-mod-tile.included .lp-mod-icon { background: rgba(16,185,129,.10); color: #10B981; }
.lp-mod-tile.optional .lp-mod-icon { background: var(--brand-orange-10); color: var(--brand-orange-dark); }
.lp-mod-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.lp-mod-chip { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.lp-mod-chip.chip-inc { color: #065F46; background: rgba(16,185,129,.10); }
.lp-mod-chip.chip-opt { color: var(--brand-orange-dark); background: var(--brand-orange-10); }
.lp-mod-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Bottom Note */
.lp-note { text-align: center; font-size: 14px; color: var(--text-muted); max-width: 640px; margin: 0 auto; padding: 16px 0; border-top: 1px solid var(--border-light); }
.lp-note i { color: var(--brand-orange); margin-right: 6px; }

/* Currency Toggle */
.lp-currency-bar { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 32px; }
.lp-currency-toggle { display: inline-flex; background: var(--white); border: 1.5px solid var(--border-light); border-radius: 100px; overflow: hidden; }
.lp-currency-toggle button { border: none; background: transparent; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; padding: 8px 20px; cursor: pointer; color: var(--text-muted); transition: all 0.2s ease; }
.lp-currency-toggle button.active { background: var(--brand-orange); color: var(--white); border-radius: 100px; box-shadow: 0 2px 6px rgba(251,176,51,0.35); }
.lp-currency-toggle button:not(.active):hover { color: var(--text-dark); background: rgba(0,0,0,0.03); }
.lp-currency-info { position: relative; display: inline-flex; align-items: center; }
.lp-currency-info-icon { width: 22px; height: 22px; border-radius: 50%; border: 1.5px solid #ccc; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #999; cursor: pointer; transition: all 0.2s; }
.lp-currency-info-icon:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.lp-currency-tooltip { position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #1f2937; color: #fff; font-size: 13px; line-height: 1.5; padding: 12px 16px; border-radius: 8px; width: 280px; text-align: left; opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0.2s; pointer-events: none; z-index: 100; box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.lp-currency-tooltip::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #1f2937; }
.lp-currency-info:hover .lp-currency-tooltip { opacity: 1; visibility: visible; }

/* LP-Price Responsive */
@media (max-width: 900px) {
    .lp-grid { grid-template-columns: 1fr; }
    .lp-headline { font-size: 30px; }
    .lp-price-amount { font-size: 40px; }
}
@media (max-width: 640px) {
    .lp-zone-a, .lp-zone-b { padding-left: 20px; padding-right: 20px; }
    .lp-mod-strip { grid-template-columns: 1fr; }
    .lp-price-amount { font-size: 36px; }
    .lp-donut-panel { padding: 28px 20px; }
    .lp-currency-tooltip { width: 240px; left: auto; right: -20px; transform: none; }
    .lp-currency-tooltip::after { left: auto; right: 28px; transform: none; }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section { padding: 80px 0; background: var(--white); overflow: hidden; }
.testimonials-carousel { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 8px 0 16px; scrollbar-width: none; }
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 360px; background: var(--bg-light); border-radius: var(--radius-lg); padding: 28px; scroll-snap-align: start; border: 1px solid var(--border-light); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; object-position: center top; }
.testimonial-header strong { display: block; font-size: 15px; color: var(--text-dark); }
.testimonial-header span { display: block; font-size: 13px; color: var(--text-muted); }
.testimonial-stars { color: #fbbc05; font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 14px; line-height: 1.6; color: var(--text-body); font-style: italic; }
.carousel-nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.carousel-nav button { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--border-light); background: var(--white); cursor: pointer; font-size: 16px; color: var(--text-dark); transition: all var(--transition); }
.carousel-nav button:hover { border-color: var(--brand-orange); color: var(--brand-orange); }

/* ============ REQUIREMENTS ============ */
.requirements-section { padding: 80px 0; background: var(--brand-orange-light); }
.req-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); height: 100%; }
.req-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-orange-10); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: var(--brand-orange); }
.req-card h4 { font-size: 18px; margin-bottom: 8px; }
.req-card p { font-size: 14px; color: var(--text-muted); }

/* ============ PROCESS ============ */
.process-section { padding: 80px 0; background: var(--white); }
.step-card { text-align: center; padding: 32px 20px; border: 1px solid var(--border-light); border-radius: var(--radius-lg); height: 100%; transition: all var(--transition); }
.step-card:hover { border-color: var(--brand-orange); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.step-number { font-size: 40px; font-weight: 800; color: var(--brand-orange); margin-bottom: 12px; line-height: 1; }
.step-card h4 { font-size: 18px; margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text-muted); }

/* Name Checker */
.name-checker { max-width: 700px; margin: 48px auto 0; text-align: center; background: #1a1a2e; padding: 40px 36px; border-radius: var(--radius-lg); }
.name-checker h3 { font-size: 20px; margin-bottom: 16px; color: var(--white); }
.name-checker-form { display: flex; gap: 8px; }
.name-checker-form input { flex: 1; padding: 14px 16px; border: 2px solid rgba(255,255,255,0.15); border-radius: var(--radius); font-size: 15px; font-family: inherit; outline: none; transition: border-color var(--transition); background: rgba(255,255,255,0.08); color: var(--white); }
.name-checker-form input::placeholder { color: rgba(255,255,255,0.5); }
.name-checker-form input:focus { border-color: var(--brand-orange); }
.name-checker small { display: block; margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.5); }

/* Inline Quote */
.inline-quote { max-width: 700px; margin: 48px auto 0; text-align: center; padding: 32px; background: var(--bg-light); border-radius: var(--radius-lg); border-left: 4px solid var(--brand-orange); }
.inline-quote blockquote { font-size: 18px; font-style: italic; color: var(--text-body); margin-bottom: 12px; line-height: 1.6; }
.quote-author { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.quote-author-photo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid var(--brand-orange); }
.quote-author cite { text-align: left; font-size: 14px; color: var(--text-muted); font-style: normal; }
.quote-author cite span { display: block; font-size: 13px; color: var(--text-muted); }

/* ============ E-COMMERCE SECTION ============ */
.ecommerce-section { padding: 80px 0; background: var(--bg-light); }
.ecommerce-section h2 { font-size: 32px; margin-bottom: 16px; }
.ecom-benefits { margin-top: 24px; }
.ecom-benefit { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.ecom-benefit > i { font-size: 24px; color: var(--brand-orange); margin-top: 4px; flex-shrink: 0; width: 32px; text-align: center; }
.ecom-benefit strong { display: block; font-size: 16px; color: var(--text-dark); margin-bottom: 4px; }
.ecom-benefit p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.ecom-visual { padding: 40px 20px; }
.ecom-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 400px; margin: 0 auto; }
.ecom-card-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px 12px; text-align: center; font-size: 13px; font-weight: 600; color: var(--text-dark); transition: all var(--transition); }
.ecom-card-item:hover { border-color: var(--brand-orange); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ecom-card-item i { display: block; font-size: 28px; color: var(--brand-orange); margin-bottom: 8px; }

/* ============ GUIDE / ACCORDION ============ */
.guide-section { padding: 80px 0; background: var(--bg-light); }
.accordion-list { max-width: 800px; margin: 0 auto; }
.accordion-item-custom { background: var(--white); border-radius: var(--radius); margin-bottom: 8px; border: 1px solid var(--border-light); overflow: hidden; }
.accordion-trigger { width: 100%; display: flex; align-items: center; gap: 12px; padding: 18px 20px; background: none; border: none; font-size: 16px; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; transition: background var(--transition); font-family: inherit; }
.accordion-trigger:hover { background: var(--brand-orange-light); }
.accordion-trigger.active { background: var(--brand-orange-light); }
.accordion-trigger .fa-chevron-down { margin-left: auto; font-size: 12px; transition: transform var(--transition); flex-shrink: 0; }
.accordion-trigger.active .fa-chevron-down { transform: rotate(180deg); }
.accordion-step { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: var(--brand-orange); color: var(--white); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; padding: 0 20px; }
.accordion-content.open { max-height: 500px; padding: 0 20px 20px; }
.accordion-content p { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.accordion-content ul { margin: 10px 0 0 20px; }
.accordion-content ul li { margin-bottom: 6px; font-size: 15px; }

/* ============ ACCOUNTING ============ */
.accounting-section { padding: 80px 0; background: var(--white); }
.accounting-section h2 { font-size: 32px; margin-bottom: 16px; }
.accounting-section p { font-size: 17px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.section-image { border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); max-height: 400px; object-fit: cover; width: 100%; }

/* ============ FAQ ============ */
.faq-section { padding: 80px 0; background: var(--white); }

/* ============ LEAD MAGNET ============ */
.lead-magnet-section { padding: 60px 0; background: var(--brand-orange-light); }
.lead-magnet-form { display: flex; gap: 8px; max-width: 500px; margin: 0 auto 12px; }
.lead-magnet-form input { flex: 1; padding: 14px 16px; border: 2px solid var(--border-light); border-radius: var(--radius); font-size: 15px; font-family: inherit; outline: none; }
.lead-magnet-form input:focus { border-color: var(--brand-orange); }
.lead-magnet-privacy { font-size: 12px; color: var(--text-muted); display: block; text-align: center; }

/* ============ KB CTA ============ */
.kb-section { padding: 60px 0; background: var(--bg-light); }

/* ============ NEED HELP ============ */
.need-help-section { background: #e8e8e8; overflow: hidden; }
.need-help-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: flex-end; position: relative; min-height: 400px; }
.need-help-person { flex: 0 0 400px; position: relative; align-self: flex-end; }
.need-help-portrait { display: block; width: 100%; max-width: 360px; height: auto; object-fit: cover; object-position: center top; margin: 0 auto; }
.need-help-content { flex: 1; padding: 60px 40px 60px 20px; }
.need-help-content h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.need-help-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.need-help-google { margin-top: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.google-logo-text-lg { font-size: 28px; font-weight: 500; letter-spacing: -0.5px; }
.stars-lg { color: #fbbc05; font-size: 22px; letter-spacing: 1px; }
.need-help-google strong { font-size: 16px; color: var(--text-dark); }

/* ============ FLOATING BAR ============ */
.floating-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.1); z-index: 98; padding: 12px 0; transform: translateY(100%); transition: transform 0.4s ease; }
.floating-bar.visible { transform: translateY(0); }
.floating-bar-inner { display: flex; justify-content: center; align-items: center; gap: 16px; max-width: 500px; margin: 0 auto; padding: 0 20px; }
.floating-btn { display: inline-block; padding: 12px 28px; border-radius: 24px; font-size: 15px; font-weight: 600; text-align: center; cursor: pointer; transition: all var(--transition); white-space: nowrap; flex: 1; text-decoration: none; }
.floating-btn-primary { background: var(--brand-orange); color: var(--white); border: 2px solid var(--brand-orange); }
.floating-btn-primary:hover { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); color: var(--white); }
.floating-btn-outline { background: var(--white); color: var(--text-dark); border: 2px solid var(--border-light); }
.floating-btn-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); }

/* ============ FOOTER ============ */
.site-footer { background: var(--brand-orange-light); padding: 80px 0 0; }
.site-footer h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; }
.footer-brand { margin-bottom: 16px; }
.footer-brand img { margin-bottom: 12px; }
.footer-brand p { font-size: 15px; color: var(--text-muted); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer ul li a { font-size: 15px; color: var(--text-body); }
.site-footer ul li a:hover { color: var(--brand-orange); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.contact-list li i { color: var(--brand-orange); margin-top: 4px; width: 16px; text-align: center; flex-shrink: 0; }
.footer-bottom { margin-top: 40px; padding: 20px 0 80px; border-top: 1px solid var(--border-alt); text-align: center; }
.footer-bottom p { font-size: 14px; color: var(--text-body); max-width: 900px; margin: 0 auto; padding: 0 16px; }

/* ============================================================
   CHECKOUT FLOW STYLES
   ============================================================ */

.checkout-body { background: var(--bg-light); }

.checkout-header { background: var(--white); padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.checkout-header-inner { display: flex; align-items: center; justify-content: space-between; }
.checkout-logo img { height: 36px; }
.checkout-secure { font-size: 14px; color: var(--text-muted); font-weight: 500; }
.checkout-secure i { color: #22c55e; margin-right: 4px; }
.checkout-back { font-size: 14px; color: var(--text-muted); }
.checkout-back:hover { color: var(--brand-orange); }

/* Progress Bar */
.checkout-progress { background: var(--white); padding: 20px 0; border-bottom: 1px solid var(--border-light); }
.progress-steps { display: flex; align-items: center; justify-content: center; gap: 0; max-width: 600px; margin: 0 auto; }
.progress-step { display: flex; align-items: center; gap: 8px; cursor: default; }
.progress-dot { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--text-muted); transition: all var(--transition); }
.progress-step span { font-size: 13px; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.progress-step.active .progress-dot { background: var(--brand-orange); border-color: var(--brand-orange); color: var(--white); }
.progress-step.active span { color: var(--text-dark); font-weight: 600; }
.progress-step.completed .progress-dot { background: #22c55e; border-color: #22c55e; color: var(--white); }
.progress-step.completed span { color: var(--text-dark); }
.progress-line { flex: 1; height: 2px; background: var(--border-light); margin: 0 12px; min-width: 20px; }
.progress-line.completed { background: #22c55e; }
.progress-line.filled { background: #22c55e; }

/* Checkout Content */
.checkout-step { padding: 40px 0 80px; }
.checkout-step-inner { max-width: 700px; margin: 0 auto; }
.checkout-title { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.checkout-subtitle { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }

/* Path Selection */
/* Legacy path styles (kept for reference) */
.checkout-login { text-align: center; font-size: 14px; color: var(--text-muted); margin-top: 24px; }

/* ============ CHOOSE NAME STEP ============ */
.choose-name-step { max-width: 720px; margin: 0 auto; }
.name-step-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px 28px 24px; margin-bottom: 20px; }
.name-step-heading { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.name-step-num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: var(--brand-orange); color: var(--white); font-size: 14px; font-weight: 700; flex-shrink: 0; }
.name-step-card .form-label { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.name-step-card .form-text { font-size: 12px; }
.name-step-card .form-control, .name-step-card .form-select { font-size: 15px; padding: 10px 14px; border-radius: var(--radius); border-color: var(--border-light); }
.name-step-card .form-control::placeholder { color: #d5d5d5; opacity: 1; }
.name-step-card .form-control:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(251,176,51,0.15); }

/* Confirm name options button */
.confirm-names-bar { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding: 16px 20px; background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius-lg); animation: fadeInUp 0.3s ease; }
.confirm-names-bar i { font-size: 22px; color: #3b82f6; flex-shrink: 0; }
.confirm-names-bar p { flex: 1; font-size: 14px; color: #1e3a5f; margin: 0; }
.confirm-names-bar .btn-confirm-names { background: #3b82f6; color: #fff; border: none; padding: 10px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: background 0.2s; white-space: nowrap; }
.confirm-names-bar .btn-confirm-names:hover { background: #2563eb; }
.confirm-names-confirmed { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius-lg); padding: 14px 20px; display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 15px; font-weight: 600; color: #1e3a5f; }
.confirm-names-confirmed i { font-size: 20px; color: #3b82f6; }

/* Account prompt */
.account-prompt-card { border-color: var(--brand-orange); background: linear-gradient(135deg, #fffaf0 0%, #fff8ec 100%); }
.account-prompt-inner { display: flex; gap: 20px; align-items: flex-start; }
.account-prompt-icon { font-size: 28px; color: var(--brand-orange); flex-shrink: 0; margin-top: 2px; }
.account-prompt-content h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.account-prompt-content p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.account-prompt-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.account-prompt-actions .btn-captime { font-size: 14px; padding: 10px 20px; }
.account-prompt-actions .btn-outline { font-size: 14px; padding: 10px 20px; }
.account-prompt-trust { font-size: 12px; color: var(--text-muted); }
.account-prompt-trust i { color: var(--brand-orange); margin-right: 4px; }

/* Account success */
.account-success-card { border-color: #22c55e; background: #f0fdf4; }
.account-success-inner { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: #166534; }
.account-success-inner i { font-size: 24px; color: #22c55e; flex-shrink: 0; }

/* Company names section */
.names-section { transition: opacity 0.3s ease; }
.names-section.unlocked { opacity: 1 !important; pointer-events: auto !important; }
.names-subheading { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.name-input-group { margin-bottom: 16px; }
.name-input-group .form-control-lg { font-size: 17px; padding: 12px 16px; }
.name-rules-note { display: flex; gap: 12px; background: #f8f9fa; border-radius: var(--radius); padding: 14px 16px; margin-top: 8px; font-size: 13px; color: var(--text-muted); }
.name-rules-note i { color: var(--brand-orange); flex-shrink: 0; margin-top: 2px; }
.name-rules-note p { margin: 0 0 2px; }

/* Availability results */
.availability-results { margin-top: 20px; }
.avail-result { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 10px; }
.avail-result.available { background: #f0fdf4; border: 1px solid #bbf7d0; }
.avail-result.similar { background: #fffbeb; border: 1px solid #fde68a; }
.avail-result.taken { background: #fef2f2; border: 1px solid #fecaca; }
.avail-result i { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.avail-result.available i { color: #22c55e; }
.avail-result.similar i { color: #f59e0b; }
.avail-result.taken i { color: #ef4444; }
.avail-result-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.avail-result-text span { font-size: 13px; color: var(--text-muted); }

/* Continue button trust line */
.choose-name-trust-line { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.choose-name-trust-line i { color: var(--brand-orange); margin-right: 4px; }

/* Navigation buttons override for choose-name */
.choose-name-step .checkout-nav-buttons { margin-top: 24px; }

/* Availability disclaimer */
.avail-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 12px; padding: 10px 14px; background: #f8f9fa; border-radius: var(--radius); }
.avail-disclaimer i { color: var(--brand-orange); margin-right: 6px; }

/* Landing page name checker results */
.name-checker-result { margin-top: 16px; animation: fadeInUp 0.3s ease; }
/* API-driven availability (matches www.captime.hk promo1) */
.name-checker-result:not(.visible) { display: none; }
.name-checker-result.visible {
    display: block;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}
.name-checker-result.visible p { margin: 0 0 8px; }
.name-checker-result.visible p:last-child { margin-bottom: 0; }
.name-checker-result.visible ul { margin: 8px 0 0; padding-left: 1.25rem; }
.name-checker-result.visible.success {
    background: rgba(34, 197, 94, 0.18);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.35);
}
.name-checker-result.visible.warning {
    background: rgba(245, 158, 11, 0.18);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.35);
}
.name-checker-result.visible.error {
    background: rgba(239, 68, 68, 0.18);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.35);
}
.ncr-available, .ncr-similar, .ncr-taken { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; padding: 14px 18px; border-radius: 8px; font-size: 15px; }
.ncr-available { background: rgba(34,197,94,0.15); color: #166534; }
.ncr-available i { color: #22c55e; font-size: 20px; }
.ncr-similar { background: rgba(245,158,11,0.15); color: #92400e; }
.ncr-similar i { color: #f59e0b; font-size: 20px; }
.ncr-taken { background: rgba(239,68,68,0.15); color: #991b1b; }
.ncr-taken i { color: #ef4444; font-size: 20px; }
.ncr-available .btn-sm, .ncr-similar .btn-sm { font-size: 13px; padding: 6px 14px; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Plan Selector */
.plan-selector { margin-bottom: 24px; }
.plan-option { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; cursor: pointer; transition: all var(--transition); position: relative; }
.plan-option:hover { border-color: var(--brand-orange); }
.plan-option.selected { border-color: var(--brand-orange); background: rgba(251,176,51,0.04); }
.plan-option.featured { border-color: var(--brand-orange); }
.plan-badge-inline { display: inline-block; background: var(--brand-orange); color: var(--white); padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.plan-option-header { display: flex; align-items: flex-start; gap: 16px; }
.plan-radio { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.plan-radio-dot { width: 12px; height: 12px; border-radius: 50%; background: transparent; transition: all var(--transition); }
.plan-option.selected .plan-radio { border-color: var(--brand-orange); }
.plan-option.selected .plan-radio-dot { background: var(--brand-orange); }
.plan-option-info h3 { font-size: 20px; margin-bottom: 6px; }
.plan-price-tag { color: var(--brand-orange); font-weight: 800; }
.plan-was { font-size: 14px; color: var(--text-muted); text-decoration: line-through; font-weight: 400; }
.plan-option-info p { font-size: 14px; color: var(--text-muted); margin: 0; }
.plan-option-features { list-style: none; padding: 12px 0 0 40px; margin: 0; display: none; }
.plan-option.selected .plan-option-features { display: block; }
.plan-option-features li { font-size: 14px; padding: 4px 0; color: var(--text-body); display: flex; align-items: center; gap: 8px; }
.plan-option-features li i { color: var(--brand-orange); font-size: 12px; }

/* Add-ons */
.checkout-addons { margin-bottom: 32px; }
.checkout-addons h4 { font-size: 18px; margin-bottom: 12px; }
.addon-note { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.addon-item { display: flex; gap: 12px; align-items: flex-start; padding: 16px; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); cursor: pointer; transition: all var(--transition); }
.addon-item:hover { border-color: var(--brand-orange); }
.addon-item input[type="checkbox"] { margin-top: 4px; accent-color: var(--brand-orange); width: 18px; height: 18px; }
.addon-info strong { font-size: 15px; }
.addon-info p { font-size: 13px; color: var(--text-muted); margin: 4px 0 0; }

/* Sidebar */
.checkout-sidebar { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 100px; }
.checkout-sidebar h4 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); }
.sidebar-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.sidebar-addons { border-top: 1px solid var(--border-light); margin-top: 8px; padding-top: 8px; }
.sidebar-promo { display: flex; gap: 8px; margin-top: 16px; }
.sidebar-promo input { flex: 1; padding: 8px 12px; border: 1px solid var(--border-light); border-radius: var(--radius); font-size: 14px; font-family: inherit; }
.sidebar-total { display: flex; justify-content: space-between; padding: 16px 0 0; margin-top: 16px; border-top: 2px solid var(--text-dark); font-size: 18px; }
.sidebar-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* Navigation Buttons */
.checkout-nav-buttons { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 16px; }

/* Review */
.review-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.review-card h3 { font-size: 20px; margin-bottom: 16px; }
.review-table { width: 100%; border-collapse: collapse; }
.review-table td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid var(--border-light); }
.review-table td:last-child { text-align: right; font-weight: 500; }
.review-total-row td { border-bottom: none; border-top: 2px solid var(--text-dark); padding-top: 16px; font-size: 18px; }
.review-fee-note { background: var(--brand-orange-light); padding: 16px; border-radius: var(--radius); font-size: 13px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
.review-fee-note i { color: var(--brand-orange); margin-right: 6px; }
.review-whats-next { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 24px; }
.review-whats-next h4 { font-size: 18px; margin-bottom: 16px; }
.review-whats-next ol { padding-left: 20px; }
.review-whats-next li { padding: 6px 0; font-size: 14px; color: var(--text-body); }
.review-guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.guarantee-item { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; display: flex; gap: 12px; align-items: flex-start; }
.guarantee-item i { font-size: 24px; color: var(--brand-orange); flex-shrink: 0; }
.guarantee-item p { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.guarantee-item strong { color: var(--text-dark); }

/* Payment */
.payment-section { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 20px; }
.payment-section h3 { font-size: 20px; margin-bottom: 20px; }
.form-label { font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.req { color: #ef4444; }
.optional { font-weight: 400; color: var(--text-muted); font-size: 13px; }
.form-control { border: 1px solid var(--border-light); border-radius: var(--radius); padding: 12px 14px; font-size: 15px; font-family: inherit; }
.form-control:focus { border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(251,176,51,0.1); }
.form-select { border: 1px solid var(--border-light); border-radius: var(--radius); padding: 12px 14px; font-size: 15px; font-family: inherit; }

/* Social Signup */
.social-signup { display: flex; gap: 12px; margin-bottom: 20px; }
.social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border: 1px solid var(--border-light); border-radius: var(--radius); background: var(--white); font-size: 14px; font-weight: 500; cursor: pointer; transition: all var(--transition); font-family: inherit; }
.social-btn:hover { border-color: var(--text-dark); background: var(--bg-light); }
.google-btn i { color: #4285f4; }
.apple-btn i { color: var(--text-dark); font-size: 18px; }
.divider-or { text-align: center; margin-bottom: 20px; position: relative; }
.divider-or::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border-light); }
.divider-or span { background: var(--white); padding: 0 16px; position: relative; font-size: 13px; color: var(--text-muted); }

/* Payment Tabs */
.payment-tabs { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.payment-tab { padding: 10px 20px; border: 2px solid var(--border-light); border-radius: var(--radius); background: var(--white); font-size: 14px; font-weight: 500; cursor: pointer; transition: all var(--transition); font-family: inherit; display: flex; align-items: center; gap: 6px; }
.payment-tab:hover { border-color: var(--brand-orange); }
.payment-tab.active { border-color: var(--brand-orange); background: rgba(251,176,51,0.04); color: var(--brand-orange); font-weight: 600; }
.payment-content { margin-top: 16px; }
.payment-logos { display: flex; gap: 12px; align-items: center; margin-top: 16px; font-size: 28px; color: var(--text-muted); }
.unionpay-text { font-size: 12px; font-weight: 700; color: var(--text-muted); background: var(--bg-light); padding: 4px 8px; border-radius: 4px; }
.stripe-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.stripe-note i { color: #22c55e; margin-right: 4px; }

/* Alt Payment */
.alt-payment-box { text-align: center; padding: 24px; }
.alt-payment-box p { font-size: 15px; color: var(--text-muted); margin: 16px 0; }
.wechat-qr-placeholder { margin-top: 16px; }
.qr-placeholder-box { width: 200px; height: 200px; background: var(--bg-light); border: 2px dashed var(--border-light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; font-size: 14px; color: var(--text-muted); }
.bank-details { text-align: left; background: var(--bg-light); padding: 16px 20px; border-radius: var(--radius); margin: 16px 0; }
.bank-row { padding: 6px 0; font-size: 14px; }
.bank-row span { color: var(--text-muted); }
.bank-note { font-size: 13px; color: var(--text-muted); }
.upload-receipt { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 2px dashed var(--brand-orange); border-radius: var(--radius); color: var(--brand-orange); font-weight: 600; cursor: pointer; transition: all var(--transition); margin-top: 12px; }
.upload-receipt:hover { background: var(--brand-orange-light); }

.proforma-download { margin-bottom: 16px; }
.proforma-download a { font-size: 14px; color: var(--brand-orange); font-weight: 500; }
.proforma-download a:hover { text-decoration: underline; }
.pay-btn { min-width: 240px; }
.checkout-help-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* Confirmation */
.checkout-confirmation { max-width: 700px; margin: 0 auto; text-align: center; }
.confirm-icon { font-size: 64px; color: #22c55e; margin-bottom: 24px; }
.checkout-confirmation h1 { font-size: 32px; margin-bottom: 12px; }
.confirm-subtitle { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }
.confirm-steps { text-align: left; margin-bottom: 32px; }
.confirm-step { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.confirm-step:last-child { border-bottom: none; }
.confirm-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--brand-orange); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.confirm-step strong { display: block; font-size: 16px; color: var(--text-dark); margin-bottom: 4px; }
.confirm-step p { font-size: 14px; color: var(--text-muted); margin: 0; }
.confirm-ctas { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.confirm-support { font-size: 14px; color: var(--text-muted); }

/* ============ YOUR ORDER SUB-PAGES ============ */
.order-step-container { max-width: 820px; margin: 36px auto; padding: 0 16px; }
.order-step-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-orange-light); border: 1px solid rgba(251, 176, 51, 0.2); border-radius: 20px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--brand-orange-dark); margin-bottom: 18px; }
.order-step-pill i { font-size: 14px; }
.order-page-subtitle { font-size: 15px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }
.order-page-subtitle a { color: var(--brand-orange); text-decoration: underline; text-decoration-style: dotted; cursor: help; }

/* Infographic */
.order-infographic {
    margin-bottom: 28px;
    text-align: center;
    height: 220px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}
.order-infographic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
    .order-infographic { height: 170px; }
}
@media (max-width: 480px) {
    .order-infographic { height: 140px; }
}

/* Benefits Row */
.benefits-row { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.benefit-chip { display: inline-flex; align-items: center; gap: 12px; background: rgba(251, 176, 51, 0.08); border: 1px solid rgba(251, 176, 51, 0.25); border-radius: var(--radius-lg); padding: 16px 20px; font-size: 16px; font-weight: 600; color: var(--text-dark); flex: 1; min-width: 220px; }
.benefit-chip i { color: #22c55e; font-size: 20px; flex-shrink: 0; }

/* Decision Card */
.decision-card { background: #fff; border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.decision-card-title { font-size: 18px; font-weight: 700; margin-bottom: 24px; color: var(--text-dark); }
.decision-option { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 2px solid var(--border-light); border-radius: var(--radius-lg); margin-bottom: 14px; cursor: pointer; transition: all 0.2s ease; background: #fff; }
.decision-option:hover { border-color: var(--brand-orange); background: rgba(251, 176, 51, 0.03); }
.decision-option.selected { border-color: var(--brand-orange); background: rgba(251, 176, 51, 0.06); box-shadow: 0 0 0 3px rgba(251, 176, 51, 0.12); }
.decision-radio { width: 22px; height: 22px; border: 2px solid #ccc; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.decision-option.selected .decision-radio { border-color: var(--brand-orange); }
.decision-radio-dot { width: 12px; height: 12px; border-radius: 50%; background: transparent; transition: all 0.2s; }
.decision-option.selected .decision-radio-dot { background: var(--brand-orange); }
.decision-option-body { flex: 1; }
.decision-option-body h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.decision-option-body .decision-price { font-size: 15px; font-weight: 700; color: var(--brand-orange-dark); }

/* Package Includes */
.package-includes { background: #fafafa; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 28px; margin-top: 20px; display: none; animation: fadeSlideIn 0.3s ease; }
.package-includes.visible { display: block; }
.package-includes h5 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
.package-includes ul { list-style: none; padding: 0; margin: 0; }
.package-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-body); padding: 6px 0; line-height: 1.5; }
.package-includes li i { color: #22c55e; font-size: 14px; margin-top: 3px; flex-shrink: 0; }

/* Info Note (expandable) */
.info-note { background: #eff6ff; border: 1px solid #bfdbfe; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 12px; }
.info-note > i { color: #3b82f6; font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.info-note-content { flex: 1; }
.info-note-toggle { font-size: 14px; font-weight: 600; color: #1e40af; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; background: none; border: none; padding: 0; font-family: inherit; }
.info-note-toggle:hover { text-decoration: underline; }
.info-note-detail { font-size: 13px; color: #334155; line-height: 1.7; margin-top: 10px; display: none; }
.info-note-detail.visible { display: block; }

/* Trust Line */
.order-trust-line { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 20px; }
.order-trust-line i { color: #22c55e; margin-right: 4px; }

/* Decision Description */
.decision-desc { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Shareholder Card */
.shareholder-card { background: #fff; border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.shareholder-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); display: flex; align-items: center; }
.shareholder-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.shareholder-select { width: 100%; padding: 12px 16px; border: 2px solid var(--border-light); border-radius: var(--radius); font-size: 15px; font-family: inherit; color: var(--text-body); background: #fff; cursor: pointer; transition: border-color 0.2s; appearance: auto; }
.shareholder-select:focus { outline: none; border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(251, 176, 51, 0.12); }

/* Secretary Plan Cards */
.plan-cards-row { display: flex; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.sec-plan-card { flex: 1; min-width: 260px; background: #fff; border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; cursor: pointer; transition: all 0.2s ease; position: relative; }
.sec-plan-card:hover { border-color: var(--brand-orange); background: rgba(251, 176, 51, 0.02); }
.sec-plan-card.selected { border-color: var(--brand-orange); background: rgba(251, 176, 51, 0.06); box-shadow: 0 0 0 3px rgba(251, 176, 51, 0.12); }
.sec-plan-card.disabled { opacity: 0.45; cursor: not-allowed; pointer-events: none; }
.sec-plan-card.recommended::before { content: 'Recommended'; position: absolute; top: -11px; left: 20px; background: var(--brand-orange); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 12px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.sec-plan-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.sec-plan-radio { width: 22px; height: 22px; border: 2px solid #ccc; border-radius: 50%; flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.sec-plan-card.selected .sec-plan-radio { border-color: var(--brand-orange); }
.sec-plan-radio-dot { width: 12px; height: 12px; border-radius: 50%; background: transparent; transition: all 0.2s; }
.sec-plan-card.selected .sec-plan-radio-dot { background: var(--brand-orange); }
.sec-plan-info h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.sec-plan-desc { font-size: 13px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.sec-plan-price { font-size: 22px; font-weight: 800; color: var(--brand-orange-dark); border-top: 1px solid var(--border-light); padding-top: 14px; }
.sec-plan-price-note { font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* Plan Differences */
.plan-diff { background: #f9f9f9; border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 28px; }
.plan-diff h5 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
.plan-diff-item { display: flex; gap: 12px; padding: 10px 0; font-size: 14px; color: var(--text-body); line-height: 1.6; border-bottom: 1px solid var(--border-light); }
.plan-diff-item:last-child { border-bottom: none; }
.plan-diff-label { display: inline-block; background: var(--brand-orange-light); color: var(--brand-orange-dark); font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 10px; white-space: nowrap; flex-shrink: 0; height: fit-content; margin-top: 2px; }

/* Highlighted Subtitle (Bank Account) */
.subtitle-highlight { margin-bottom: 28px; }
.subtitle-highlight-inner { display: flex; align-items: flex-start; gap: 16px; background: linear-gradient(135deg, #fff8ec 0%, #fff3dc 100%); border: 2px solid rgba(251,176,51,0.35); border-radius: var(--radius-lg); padding: 20px 24px; }
.subtitle-highlight-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-orange); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.subtitle-highlight-icon i { color: #fff; font-size: 18px; }
.subtitle-highlight-text { font-size: 16px; color: var(--text-dark); line-height: 1.7; margin: 0; }
.subtitle-highlight-text strong { color: var(--brand-orange-dark); font-weight: 800; }

/* Challenge Card */
.challenge-card { background: #fff8f0; border: 1px solid rgba(251,176,51,0.2); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 32px; display: flex; align-items: flex-start; gap: 16px; }
.challenge-card > i { color: var(--brand-orange); font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.challenge-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--text-dark); }
.challenge-card p { font-size: 14px; color: var(--text-body); margin: 0; line-height: 1.6; }

/* Partner Section (Airwallex) */
.partner-section { background: #fff; border: 2px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.partner-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.partner-header img { height: 36px; width: auto; }
.partner-badge { display: inline-flex; align-items: center; gap: 6px; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600; color: #166534; }
.partner-badge i { font-size: 10px; }

.platform-preview { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); }
.platform-preview img { width: 100%; display: block; }

.airwallex-features { list-style: none; padding: 0; margin: 0 0 24px; }
.airwallex-features li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; font-size: 15px; color: var(--text-body); border-bottom: 1px solid var(--border-light); }
.airwallex-features li:last-child { border-bottom: none; }
.airwallex-features li i { color: #22c55e; font-size: 16px; flex-shrink: 0; margin-top: 3px; }
.airwallex-features li strong { color: var(--text-dark); }

.cards-preview { display: flex; align-items: center; gap: 24px; padding: 20px; background: var(--bg-light); border-radius: var(--radius-lg); }
.cards-preview img { width: 180px; flex-shrink: 0; }
.cards-preview-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cards-preview-text p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Important Note (grey) */
.important-note { background: #f8f9fa; border: 1px solid var(--border-light); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 28px; display: flex; align-items: flex-start; gap: 12px; }
.important-note > i { color: #94a3b8; font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.important-note p { font-size: 12px; color: #94a3b8; margin: 0; line-height: 1.6; }

/* Bank CTA Buttons */
.bank-cta-group { margin-bottom: 28px; }
.btn-bank-primary { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 18px 28px; background: var(--brand-orange); color: var(--white); border: 2px solid var(--brand-orange); border-radius: var(--radius); font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.2s; font-family: inherit; margin-bottom: 12px; }
.btn-bank-primary:hover { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); }
.btn-bank-primary.selected { background: var(--brand-orange-dark); border-color: var(--brand-orange-dark); box-shadow: 0 0 0 3px rgba(251,176,51,0.15); }
.btn-bank-primary .free-tag { display: inline-block; background: #fff; color: var(--brand-orange-dark); font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.5px; }
.btn-bank-secondary { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px 28px; background: transparent; color: var(--text-body); border: 2px solid var(--border-light); border-radius: var(--radius); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; margin-bottom: 8px; }
.btn-bank-secondary:hover { border-color: var(--brand-orange); color: var(--brand-orange); }
.btn-bank-secondary.selected { border-color: var(--brand-orange); color: var(--brand-orange-dark); box-shadow: 0 0 0 3px rgba(251,176,51,0.12); }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .nav-list > li > a { padding: 10px 10px; font-size: 14px; }
}
@media (max-width: 991px) {
    .hero-section { padding: 60px 0 40px; }
    .hero-section h1 { font-size: 34px; }
    .hero-image-col { margin-top: 40px; }
    .section-title { font-size: 28px; }
    .need-help-inner { flex-direction: column; align-items: center; min-height: auto; }
    .need-help-person { flex: none; width: 100%; max-width: 300px; }
    .need-help-content { text-align: center; padding: 40px 20px; }
    .need-help-google { justify-content: center; }
    .promo-inner { font-size: 12px; }
    .promo-timer { gap: 4px; }
    .timer-block { padding: 3px 6px; min-width: 40px; }
    .timer-block span { font-size: 14px; }
    .account-prompt-inner { flex-direction: column; }
    .account-prompt-actions { flex-direction: column; }
    .review-guarantees { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .hero-section h1 { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }
    .hero-price-highlight { font-size: 18px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn-captime, .hero-ctas .btn-outline { width: 100%; text-align: center; }
    .section-title { font-size: 24px; }
    /* old pricing card rules removed — now in LP-Price section */
    .name-checker-form { flex-direction: column; }
    .testimonial-card { flex: 0 0 300px; padding: 20px; }
    .promo-banner { padding: 8px 12px; }
    .promo-cta { display: none; }
    .promo-urgency { display: block; margin-left: 0; margin-top: 4px; }
    /* old comparison table rules removed */
    .lead-magnet-form { flex-direction: column; }
    .social-signup { flex-direction: column; }
    .payment-tabs { flex-direction: column; }
    .checkout-title { font-size: 24px; }
    .checkout-nav-buttons { flex-direction: column-reverse; }
    .checkout-nav-buttons .btn-captime { width: 100%; }
    .checkout-nav-buttons .btn-outline { width: 100%; }
    .trust-bar-inner { gap: 16px; }
    .trust-badge { font-size: 12px; }
    .order-step-container { margin: 24px auto; }
    .decision-card { padding: 20px; }
    .decision-option { padding: 16px; }
    .benefits-row { flex-direction: column; }
    .benefit-chip { min-width: 100%; }
    .plan-cards-row { flex-direction: column; }
    .sec-plan-card { min-width: 100%; }
    .shareholder-card { padding: 20px; }
    .plan-diff { padding: 18px 20px; }
    .cards-preview { flex-direction: column; text-align: center; }
    .cards-preview img { width: 140px; }
    .partner-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .challenge-card { flex-direction: column; gap: 12px; }
}
@media (max-width: 480px) {
    .promo-timer { display: none; }
    .hero-section { padding: 40px 0 30px; }
    .hero-section h1 { font-size: 24px; }
    body { font-size: 15px; }
    .progress-step span { display: none; }
    .progress-dot { width: 28px; height: 28px; font-size: 12px; }
}

/* ══════════════════════════════════════════════════════════════════════
   REVIEW PAGE (Step 3)
   ══════════════════════════════════════════════════════════════════════ */
:root {
    --govt-blue: #1e40af;
    --govt-bg: #eff6ff;
    --govt-border: #bfdbfe;
}

.review-page { max-width: 820px; margin: 36px auto; padding: 0 16px; }

/* Order Summary Box */
.review-summary-box {
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.review-summary-header {
    padding: 20px 28px;
    background: linear-gradient(135deg, #fffaf0 0%, #fff3dc 100%);
    border-bottom: 2px solid rgba(251, 176, 51, 0.25);
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-summary-header i { color: var(--brand-orange); font-size: 22px; }
.review-summary-header h2 { font-size: 22px; font-weight: 700; margin: 0; color: var(--text-dark); }

/* Order Items */
.review-items { padding: 8px 0; }
.review-item {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.review-item:last-child { border-bottom: none; }

.review-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 10px;
}

.review-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.review-item-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.review-item-price {
    text-align: right;
    flex-shrink: 0;
    min-width: 140px;
}
.review-item-price .amount {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    white-space: nowrap;
}
.review-item-price .was {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}
.review-item-price .period {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

/* Badges */
.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #22c55e;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.govt-fee-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--govt-bg);
    color: var(--govt-blue);
    border: 1px solid var(--govt-border);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 4px;
    letter-spacing: 0.3px;
}
.govt-fee-badge i { font-size: 10px; }

/* Deliverable list (Captime Incorporation Service) */
.review-deliverables {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
}
.review-deliverables li {
    padding: 5px 0;
    font-size: 13.5px;
    color: var(--text-body);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.review-deliverables li i {
    color: #22c55e;
    font-size: 13px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Government Fees Section (visually distinct) */
.review-item.govt-item {
    background: #fafbfd;
}
.review-item.govt-item .review-item-title {
    color: var(--govt-blue);
}

/* Govt Fee Notice */
.govt-fee-note {
    background: var(--govt-bg);
    border: 1px solid var(--govt-border);
    color: var(--govt-blue);
    font-size: 12px;
    padding: 12px 18px;
    margin: 0 28px 16px;
    border-radius: var(--radius);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}
.govt-fee-note i { flex-shrink: 0; margin-top: 2px; }

/* Promo */
.review-promo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}
.review-promo input {
    flex: 1;
    min-width: 200px;
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
}
.review-promo input:focus { outline: none; border-color: var(--brand-orange); }
.review-promo button {
    padding: 10px 20px;
    background: transparent;
    color: var(--brand-orange);
    border: 1.5px solid var(--brand-orange);
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Total Row */
.review-total {
    padding: 20px 28px;
    background: var(--text-dark);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-total-label { font-size: 16px; font-weight: 600; }
.review-total-sub { font-size: 12px; font-weight: 400; opacity: 0.7; display: block; margin-top: 2px; }
.review-total-amount { font-size: 28px; font-weight: 800; color: var(--brand-orange); }

/* Proceed Button */
.review-proceed-wrap {
    margin-bottom: 24px;
}
.btn-proceed-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 20px 28px;
    background: var(--brand-orange);
    color: #fff;
    border: 2px solid var(--brand-orange);
    border-radius: var(--radius-lg);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(251,176,51,0.35);
}
.btn-proceed-payment:hover {
    background: var(--brand-orange-dark);
    border-color: var(--brand-orange-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(251,133,0,0.45);
}
.btn-proceed-payment i { font-size: 16px; }

.proceed-security {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}
.proceed-security i { color: #22c55e; margin-right: 4px; }

/* Refund Policy Card */
.refund-card {
    background: #f0fdf4;
    border: 1.5px solid #bbf7d0;
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.refund-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.refund-icon i { color: #fff; font-size: 20px; }
.refund-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #166534;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.refund-content p {
    font-size: 13px;
    color: #166534;
    line-height: 1.6;
    margin: 0;
}

/* What Happens Next */
.whats-next-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    margin-bottom: 20px;
}
.whats-next-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.whats-next-card h4 i { color: var(--brand-orange); }
.whats-next-card ol {
    padding-left: 20px;
    margin: 0;
}
.whats-next-card li {
    padding: 5px 0;
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Modify Order */
.modify-order-link {
    text-align: center;
    margin-top: 8px;
    font-size: 14px;
}
.modify-order-link a {
    color: var(--text-muted);
    text-decoration: underline;
    text-decoration-style: dotted;
}
.modify-order-link a:hover { color: var(--brand-orange); }

@media (max-width: 767px) {
    .review-item-top { flex-direction: column; }
    .review-item-price { text-align: left; min-width: 0; }
    .review-total-amount { font-size: 22px; }
    .btn-proceed-payment { font-size: 15px; padding: 16px 20px; }
}

/* ═════════════════════════════════════════════════════════════════
   REVIEW v3 — Sleek two-column layout with sticky trust sidebar
   ═════════════════════════════════════════════════════════════════ */
:root {
    --ink-900: #0F1419;
    --ink-700: #2B2F33;
    --ink-500: #5A5F66;
    --ink-400: #8B9096;
    --ink-300: #B8BCC1;
    --ink-200: #E4E6E9;
    --ink-100: #F1F2F4;
    --ink-50:  #F9FAFB;
    --rv3-accent: #FBB033;
    --rv3-accent-dark: #FB8500;
    --rv3-accent-soft: rgba(251, 176, 51, 0.12);
    --rv3-accent-softer: rgba(251, 176, 51, 0.06);
    --rv3-accent-border: rgba(251, 176, 51, 0.35);
    --rv3-blue: #2563EB;
    --rv3-blue-border: rgba(37, 99, 235, 0.3);
}

.rv3-shell { max-width: 1120px; margin: 40px auto 60px; padding: 0 24px; font-family: 'Inter', sans-serif; color: var(--ink-700); }

.rv3-header { margin-bottom: 28px; max-width: 720px; }
.rv3-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--rv3-accent-dark);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.rv3-eyebrow::before { content:''; width:18px; height:2px; background:var(--rv3-accent); border-radius:2px; }
.rv3-title { font-size: 32px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.5px; margin: 0 0 6px; line-height: 1.15; }
.rv3-subtitle { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.5; }

.rv3-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.rv3-main { min-width: 0; }

.rv3-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}

.rv3-card-head {
    padding: 18px 26px;
    border-bottom: 1px solid var(--ink-200);
    background: linear-gradient(135deg, var(--rv3-accent-softer) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.rv3-card-head h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.rv3-card-head h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: var(--rv3-accent);
    border-radius: 2px;
}
.rv3-item-count { font-size: 12px; color: var(--ink-400); }

.rv3-section-label {
    padding: 16px 26px 6px;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--rv3-accent-dark);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.rv3-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 26px;
    border-top: 1px solid var(--ink-100);
}
.rv3-row.rv3-row-first { border-top: none; }

.rv3-row-main { flex: 1; min-width: 0; }
.rv3-row-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0 0 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    line-height: 1.35;
}
.rv3-row-subtitle { font-size: 12.5px; color: var(--ink-500); margin: 0; line-height: 1.45; }
.rv3-row-price {
    text-align: right;
    flex-shrink: 0;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink-900);
    white-space: nowrap;
}
.rv3-row-price .rv3-was {
    display: block;
    font-size: 12px;
    color: var(--ink-400);
    text-decoration: line-through;
    font-weight: 400;
    margin-bottom: 1px;
}
.rv3-row-price .rv3-period {
    display: block;
    font-size: 11px;
    color: var(--ink-400);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.2px;
}
.rv3-row-price.rv3-free { color: var(--rv3-blue); }

/* Tags */
.rv3-tag {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.4px;
    border-radius: 4px;
    border: 1px solid transparent;
}
.rv3-tag-sale { color: var(--rv3-accent-dark); border-color: var(--rv3-accent); background: var(--rv3-accent-soft); }
.rv3-tag-free { color: var(--rv3-blue); border-color: var(--rv3-blue-border); }

/* Deliverables */
.rv3-deliverables {
    list-style: none;
    padding: 10px 0 2px;
    margin: 8px 0 0;
    border-top: 1px dashed var(--ink-200);
}
.rv3-deliverables li {
    font-size: 12.5px;
    color: var(--ink-500);
    padding: 3px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.rv3-deliverables li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-300);
    margin-top: 8px;
    flex-shrink: 0;
}

.rv3-row-govt .rv3-row-title { color: var(--ink-700); font-weight: 500; }
.rv3-row-govt .rv3-row-price { font-weight: 500; color: var(--ink-700); }

/* Govt note */
.rv3-govt-note {
    margin: 16px 26px 0;
    font-size: 12px;
    color: var(--ink-500);
    line-height: 1.55;
    padding: 12px 14px;
    background: var(--ink-50);
    border: 1px solid var(--ink-200);
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.rv3-govt-note i { color: var(--ink-400); margin-top: 3px; flex-shrink: 0; }
.rv3-govt-note strong { color: var(--ink-900); font-weight: 600; }

/* Promo */
.rv3-promo {
    padding: 16px 26px;
    background: #fff;
    border-top: 1px solid var(--ink-200);
    margin-top: 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}
.rv3-promo input {
    flex: 1;
    min-width: 180px;
    padding: 10px 14px;
    border: 1px solid var(--ink-200);
    border-radius: 8px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--ink-900);
    background: #fff;
}
.rv3-promo input::placeholder { color: var(--ink-400); }
.rv3-promo input:focus { outline: none; border-color: var(--ink-500); }
.rv3-promo button {
    padding: 10px 18px;
    background: transparent;
    color: var(--ink-700);
    border: 1px solid var(--ink-300);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.rv3-promo button:hover { border-color: var(--ink-500); color: var(--ink-900); }

/* Summary footer */
.rv3-summary {
    padding: 18px 26px 22px;
    background: var(--ink-50);
    border-top: 1px solid var(--ink-200);
}
.rv3-sum-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: var(--ink-500);
    padding: 4px 0;
}
.rv3-sum-row span:last-child { color: var(--ink-700); font-weight: 500; }
.rv3-sum-discount span:last-child { color: var(--rv3-accent-dark); font-weight: 600; }
.rv3-sum-divider { height: 1px; background: var(--ink-200); margin: 10px 0; }
.rv3-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4px 0 0;
}
.rv3-sum-total-label { font-size: 15px; font-weight: 600; color: var(--ink-900); }
.rv3-sum-total-value { font-size: 30px; font-weight: 800; color: var(--rv3-accent-dark); letter-spacing: -0.5px; }
.rv3-sum-total-sub {
    display: block;
    font-size: 11px;
    color: var(--ink-400);
    font-weight: 400;
    margin-top: 2px;
    letter-spacing: 0.2px;
}

/* CTA — Orange */
.rv3-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--rv3-accent) 0%, var(--rv3-accent-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(251, 133, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.rv3-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(251, 133, 0, 0.38), inset 0 1px 0 rgba(255,255,255,0.22);
}
.rv3-cta i { font-size: 13px; opacity: 0.95; }
.rv3-cta-amount { font-weight: 800; margin-left: auto; font-size: 15.5px; }

.rv3-security {
    text-align: center;
    font-size: 11.5px;
    color: var(--ink-500);
    margin-top: 14px;
    letter-spacing: 0.2px;
}
.rv3-security i { margin-right: 4px; color: var(--rv3-accent-dark); }

.rv3-modify { text-align: center; margin-top: 20px; font-size: 13px; }
.rv3-modify a {
    color: var(--ink-500);
    text-decoration: none;
    border-bottom: 1px dotted var(--ink-300);
    padding-bottom: 1px;
}
.rv3-modify a:hover { color: var(--rv3-accent-dark); border-bottom-color: var(--rv3-accent-dark); }

/* Right sticky sidebar */
.rv3-aside {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.rv3-side-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 12px;
    padding: 18px 20px;
    position: relative;
}
.rv3-side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--rv3-accent) 0%, var(--rv3-accent-dark) 100%);
    border-radius: 0 0 2px 2px;
}
.rv3-side-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.rv3-side-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--rv3-accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rv3-accent-dark);
    font-size: 13px;
    flex-shrink: 0;
}
.rv3-side-title { font-size: 13px; font-weight: 600; color: var(--ink-900); margin: 0; line-height: 1.3; }
.rv3-side-body { font-size: 12.5px; color: var(--ink-500); line-height: 1.55; margin: 0; }
.rv3-side-body + .rv3-side-body { margin-top: 8px; }
.rv3-side-body a {
    color: var(--ink-700);
    text-decoration: underline;
    text-decoration-color: var(--ink-300);
    text-underline-offset: 2px;
}
.rv3-side-body a:hover { color: var(--ink-900); text-decoration-color: var(--ink-700); }

/* What happens next — numbered list */
.rv3-next-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: nextc;
}
.rv3-next-list li {
    display: flex;
    gap: 10px;
    padding: 4px 0;
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.55;
    counter-increment: nextc;
}
.rv3-next-list li > span { flex: 1; min-width: 0; word-wrap: break-word; overflow-wrap: break-word; }
.rv3-next-list li strong { color: var(--ink-900); font-weight: 700; }
.rv3-next-list li::before {
    content: counter(nextc);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--rv3-accent-soft);
    color: var(--rv3-accent-dark);
    font-size: 10.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* Responsive */
@media (max-width: 960px) {
    .rv3-grid { grid-template-columns: 1fr; }
    .rv3-aside { position: static; top: auto; }
}
@media (max-width: 680px) {
    .rv3-shell { padding: 0 16px; margin: 24px auto 40px; }
    .rv3-title { font-size: 26px; }
    .rv3-card-head { padding: 16px 20px; }
    .rv3-row { padding: 14px 20px; gap: 12px; }
    .rv3-section-label { padding: 14px 20px 6px; }
    .rv3-summary { padding: 16px 20px 20px; }
    .rv3-govt-note { margin: 14px 20px 0; }
    .rv3-promo { padding: 14px 20px; }
    .rv3-sum-total-value { font-size: 24px; }
}

/* ═════════════════════════════════════════════════════════════════
   PAYMENT v1 — Step 4 checkout with locked-in summary + trust strip
   ═════════════════════════════════════════════════════════════════ */
:root {
    --accent:  #FBB033;
    --accent-dark: #FB8500;
    --accent-soft: rgba(251, 176, 51, 0.12);
    --accent-softer: rgba(251, 176, 51, 0.06);
    --accent-border: rgba(251, 176, 51, 0.35);
    --blue: #2563EB;
}

/* ── SHELL ── */
.pay-shell { max-width: 1120px; margin: 40px auto 60px; padding: 0 24px 80px; font-family: 'Inter', sans-serif; color: var(--ink-700); }

.pay-header { margin-bottom: 28px; max-width: 720px; }
.pay-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-dark);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.pay-eyebrow::before { content:''; width:18px; height:2px; background:var(--accent); border-radius:2px; }
.pay-title { font-size: 32px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.5px; margin: 0 0 6px; line-height: 1.15; }
.pay-subtitle { font-size: 14px; color: var(--ink-500); margin: 0; line-height: 1.5; }

/* ── GRID ── */
.pay-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}
.pay-main { min-width: 0; }

/* ── CARDS ── */
.pay-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
}
.pay-card-head {
    padding: 16px 26px;
    border-bottom: 1px solid var(--ink-200);
    background: linear-gradient(135deg, var(--accent-softer) 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.pay-card-head h2 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pay-card-head h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
}
.pay-card-head .pay-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 800;
    margin-right: 4px;
}
.pay-card-sub {
    font-size: 11.5px;
    color: var(--ink-500);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pay-card-sub i { color: var(--ink-400); }
.pay-card-body { padding: 22px 26px 24px; }

/* ── SOCIAL SIGN-IN ── */
.pay-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.pay-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    border: 1px solid var(--ink-200);
    background: #fff;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-700);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.pay-social-btn:hover { border-color: var(--ink-400); background: var(--ink-50); }
.pay-social-btn i { font-size: 15px; }

.pay-or {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 18px;
    color: var(--ink-400);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.pay-or::before, .pay-or::after { content:''; flex: 1; height: 1px; background: var(--ink-200); }

/* ── FORM FIELDS ── */
.pay-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.pay-field { min-width: 0; }
.pay-field.pay-field-full { grid-column: 1 / -1; }
.pay-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-700);
    margin-bottom: 6px;
    letter-spacing: 0.1px;
}
.pay-field label .optional {
    color: var(--ink-400);
    font-weight: 400;
    font-size: 11.5px;
}
.pay-field label .prefilled {
    margin-left: auto;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--ink-400);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.pay-field label .prefilled i { font-size: 9px; }
.pay-field-hint {
    margin-top: 6px;
    font-size: 11.5px;
    color: var(--ink-500);
    letter-spacing: 0.1px;
}
.pay-field input, .pay-field select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--ink-200);
    border-radius: 9px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ink-900);
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pay-field input::placeholder { color: var(--ink-400); }
.pay-field input:focus, .pay-field select:focus {
    outline: none;
    border-color: var(--accent-dark);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.pay-field input.is-prefilled { background: var(--ink-50); border-color: var(--ink-200); color: var(--ink-700); }
.pay-phone-group { display: flex; gap: 8px; }
.pay-phone-group select { max-width: 92px; }

/* ── PAYMENT METHOD PILLS ── */
.pay-method-pills {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 4px;
    background: var(--ink-50);
    border: 1px solid var(--ink-200);
    border-radius: 11px;
    margin-bottom: 22px;
}
.pay-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 10px;
    background: transparent;
    color: var(--ink-500);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
}
.pay-pill i { font-size: 14px; }
.pay-pill:hover { color: var(--ink-900); }
.pay-pill.active {
    background: #fff;
    color: var(--ink-900);
    box-shadow: 0 1px 3px rgba(15, 20, 25, 0.06), 0 0 0 1px var(--accent-border);
}

.pay-method-pane { animation: payFadeIn 0.2s ease; }
@keyframes payFadeIn { from { opacity: 0; transform: translateY(2px); } to { opacity: 1; transform: translateY(0); } }

/* Card input with logos inline */
.pay-card-input { position: relative; }
.pay-card-input input { padding-right: 110px; }
.pay-card-logos {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ink-400);
    font-size: 18px;
}
.pay-card-logos .up-text {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.3px;
    background: var(--ink-100);
    padding: 2px 5px;
    border-radius: 3px;
    color: var(--ink-700);
}

.pay-stripe-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--ink-500);
    margin: 14px 0 0;
    padding: 10px 12px;
    background: var(--ink-50);
    border-radius: 8px;
}
.pay-stripe-note i { color: var(--accent-dark); }

/* Alt payment methods */
.pay-alt-pane {
    padding: 30px 24px;
    background: var(--ink-50);
    border-radius: 10px;
    text-align: center;
}
.pay-alt-pane .pay-alt-icon { font-size: 40px; margin-bottom: 12px; }
.pay-alt-pane p { color: var(--ink-500); font-size: 13px; margin-bottom: 16px; }
.pay-alt-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--ink-900);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.pay-alt-cta:hover { background: var(--ink-700); }

/* Bank transfer */
.pay-bank-details {
    text-align: left;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 9px;
    padding: 14px 18px;
    margin: 14px 0 16px;
}
.pay-bank-details .bank-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--ink-500);
}
.pay-bank-details .bank-row + .bank-row { border-top: 1px solid var(--ink-100); }
.pay-bank-details .bank-row > span { flex-shrink: 0; }
.pay-bank-details .bank-row strong {
    color: var(--ink-900);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
    min-width: 0;
}
.pay-bank-urgent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--ink-700);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    border-radius: 9px;
    padding: 11px 13px;
    margin: 0 0 14px;
    text-align: left;
}
.pay-bank-urgent i { color: var(--accent-dark); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.pay-bank-urgent strong { color: var(--ink-900); font-weight: 600; }
.pay-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    border: 1px dashed var(--accent);
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.pay-upload-btn:hover { background: var(--accent); color: #fff; }

/* ── TERMS CARD ── */
.pay-card-terms .pay-card-body { padding: 18px 26px; }
.pay-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--ink-700);
    line-height: 1.5;
}
.pay-check input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-dark);
    flex-shrink: 0;
}
.pay-check a { color: var(--ink-900); text-decoration: underline; text-decoration-color: var(--ink-300); text-underline-offset: 2px; }
.pay-check a:hover { text-decoration-color: var(--accent-dark); color: var(--accent-dark); }

/* ── TRUST STRIP ── */
.pay-trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 14px 20px;
    margin: 8px 0 14px;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 10px;
}
.pay-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--ink-700);
    font-weight: 500;
}
.pay-trust-item i { color: var(--accent-dark); font-size: 13px; }

/* ── PAY CTA (matches rv3-cta) ── */
.pay-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(251, 133, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}
.pay-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(251, 133, 0, 0.38), inset 0 1px 0 rgba(255,255,255,0.22); }
.pay-cta:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.pay-cta i { font-size: 13px; opacity: 0.95; }
.pay-cta-amount { font-weight: 800; margin-left: auto; font-size: 15.5px; }

.pay-back {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
}
.pay-back a {
    color: var(--ink-500);
    text-decoration: none;
    border-bottom: 1px dotted var(--ink-300);
    padding-bottom: 1px;
}
.pay-back a:hover { color: var(--accent-dark); border-bottom-color: var(--accent-dark); }

/* ── SIDEBAR ── */
.pay-aside {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pay-side-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 12px;
    padding: 20px 20px;
    position: relative;
}
.pay-side-card.pay-side-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 0 0 2px 2px;
}

.pay-side-total-label {
    font-size: 11.5px;
    color: var(--ink-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.pay-side-total-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.pay-side-recap {
    border-top: 1px dashed var(--ink-200);
    padding-top: 12px;
    margin-bottom: 12px;
}
.pay-recap-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--ink-500);
    padding: 3px 0;
    line-height: 1.4;
    gap: 12px;
}
.pay-recap-row span:last-child { color: var(--ink-700); font-weight: 500; white-space: nowrap; }
.pay-recap-row .free { color: var(--blue); font-weight: 600; }
.pay-recap-row.pay-recap-gov {
    margin-top: 6px;
    padding-top: 9px;
    border-top: 1px dashed var(--ink-200);
}
.pay-recap-row.pay-recap-promo span:last-child { color: var(--accent-dark); font-weight: 600; }
.pay-side-edit {
    padding-top: 10px;
    border-top: 1px solid var(--ink-100);
    font-size: 12.5px;
}
.pay-side-edit a {
    color: var(--ink-500);
    text-decoration: none;
    font-weight: 500;
}
.pay-side-edit a:hover { color: var(--accent-dark); }

.pay-side-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.pay-side-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-dark);
    font-size: 13px;
    flex-shrink: 0;
}
.pay-side-card h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-900);
    margin: 0;
    line-height: 1.3;
}
.pay-side-card p {
    font-size: 12.5px;
    color: var(--ink-500);
    line-height: 1.55;
    margin: 0 0 8px;
}
.pay-side-help-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pay-side-help-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--ink-900);
    text-decoration: none;
    font-weight: 500;
}
.pay-side-help-contact a i { color: var(--accent-dark); width: 14px; }
.pay-side-help-contact a:hover { color: var(--accent-dark); }

/* ── MOBILE STICKY PAY BAR ── */
.pay-sticky-bar {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid var(--ink-200);
    padding: 10px 14px;
    box-shadow: 0 -4px 20px rgba(15, 20, 25, 0.08);
    align-items: center;
    gap: 12px;
}
.pay-sticky-total {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}
.pay-sticky-label {
    font-size: 10.5px;
    color: var(--ink-500);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}
.pay-sticky-amount {
    font-size: 17px;
    font-weight: 800;
    color: var(--accent-dark);
    line-height: 1;
}
.pay-sticky-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(251, 133, 0, 0.28);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .pay-grid { grid-template-columns: 1fr; }
    .pay-aside { position: static; top: auto; order: -1; }
}
@media (max-width: 680px) {
    .pay-shell { padding: 0 16px 100px; margin: 24px auto 40px; }
    .pay-title { font-size: 26px; }
    .pay-card-body { padding: 18px 20px 20px; }
    .pay-card-head { padding: 14px 20px; }
    .pay-form-grid { grid-template-columns: 1fr; }
    .pay-social { grid-template-columns: 1fr; }
    .pay-method-pills { grid-template-columns: 1fr 1fr; }
    .pay-trust-strip { gap: 12px; padding: 12px; }
    .pay-trust-item { font-size: 11.5px; }
    .pay-cta { padding: 16px 20px; font-size: 14.5px; }
    .pay-cta-amount { font-size: 14.5px; }
    #step4 .pay-sticky-bar { display: flex; }
}

/* ═══════════════════════════════════════════════════════════════════
   STEP 1: CHOOSE NAME — two-column + gated (mockup-checkname-v1)
   ═══════════════════════════════════════════════════════════════════ */
:root {
    --blue-soft: rgba(37,99,235,.08);
    --blue-border: rgba(37,99,235,.25);
    --green: #10B981;
    --green-soft: rgba(16,185,129,.10);
    --green-ink: #065F46;
    --red: #EF4444;
    --red-soft: rgba(239,68,68,.10);
}

/* Grid (two-column on desktop, stacks on mobile) */
.choose-name-step .cn-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 20px;
}
@media (max-width: 900px) {
    .choose-name-step .cn-grid { grid-template-columns: 1fr; }
}

/* Cards */
.choose-name-step .cn-card {
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 16px;
    padding: 22px 24px;
    height: 100%;
    transition: opacity .3s ease;
}
.choose-name-step .cn-card-title {
    font-size: 16px; font-weight: 700; margin: 0 0 16px;
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.choose-name-step .cn-card-num {
    background: var(--accent); color: #fff;
    width: 24px; height: 24px; border-radius: 50%;
    display: grid; place-items: center;
    font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.choose-name-step .cn-card.is-locked { opacity: .55; pointer-events: none; position: relative; }
.choose-name-step .cn-card.is-locked .cn-card-num { background: var(--ink-200); color: var(--ink-500); }
.choose-name-step .cn-lock-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ink-100); color: var(--ink-500);
    padding: 4px 10px; border-radius: 999px;
    font-size: 11.5px; font-weight: 600; margin-left: auto;
}
.choose-name-step .cn-lock-pill i { font-size: 10px; }

/* Fields */
.choose-name-step .cn-field { margin-bottom: 14px; }
.choose-name-step .cn-field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink-700); margin-bottom: 6px;
}
.choose-name-step .cn-field label .opt,
.choose-name-step .cn-name-row label .opt {
    color: var(--ink-400); font-weight: 500; margin-left: 4px;
}
.choose-name-step .cn-field input,
.choose-name-step .cn-field select {
    width: 100%; padding: 11px 14px; font-size: 14px;
    border: 1px solid var(--ink-200); border-radius: 8px; background: #fff;
    color: var(--ink-900); font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.choose-name-step .cn-field input:focus,
.choose-name-step .cn-field select:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.choose-name-step .cn-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choose-name-step .cn-phone { display: grid; grid-template-columns: 100px 1fr; gap: 8px; }
@media (max-width: 420px) {
    .choose-name-step .cn-row2 { grid-template-columns: 1fr; }
}

/* Account prompt (magic link) - full-width below the grid */
.choose-name-step .cn-prompt {
    background: var(--blue-soft);
    border: 1px solid var(--blue-border);
    border-radius: 14px;
    padding: 18px 22px;
    margin-top: 20px;
    display: none;
}
.choose-name-step .cn-prompt.is-visible {
    display: block;
    animation: cnFadeIn .3s ease;
}
@keyframes cnFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: none; }
}
.choose-name-step .cn-prompt-top {
    display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px;
}
.choose-name-step .cn-prompt-icon {
    background: var(--blue); color: #fff;
    width: 38px; height: 38px; border-radius: 10px;
    display: grid; place-items: center;
    flex-shrink: 0; font-size: 15px;
}
.choose-name-step .cn-prompt-body h4 {
    font-size: 15px; font-weight: 700; margin: 0 0 4px; color: var(--ink-900);
}
.choose-name-step .cn-prompt-body p {
    font-size: 13px; color: var(--ink-700); margin: 0; line-height: 1.5;
}
.choose-name-step .cn-prompt-body p strong { color: var(--ink-900); }
.choose-name-step .cn-prompt-actions {
    display: flex; gap: 10px; flex-wrap: wrap; padding-left: 52px;
}
@media (max-width: 600px) {
    .choose-name-step .cn-prompt-actions { padding-left: 0; }
}
.choose-name-step .cn-btn-primary {
    background: var(--accent); color: #fff; border: none;
    padding: 11px 20px; border-radius: 9px;
    font-size: 13.5px; font-weight: 700; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .15s; font-family: inherit;
}
.choose-name-step .cn-btn-primary:hover:not(:disabled) {
    background: var(--accent-dark); transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(251,176,51,.3);
}
.choose-name-step .cn-btn-primary:disabled {
    opacity: .7; cursor: wait; transform: none; box-shadow: none;
}
.choose-name-step .cn-btn-ghost {
    background: #fff; color: var(--ink-700);
    border: 1.5px solid var(--ink-200);
    padding: 11px 18px; border-radius: 9px;
    font-size: 13.5px; font-weight: 600; cursor: pointer;
    transition: all .15s; font-family: inherit;
}
.choose-name-step .cn-btn-ghost:hover { border-color: var(--ink-400); color: var(--ink-900); }
.choose-name-step .cn-prompt-trust {
    margin: 12px 0 0 52px; font-size: 11.5px; color: var(--ink-500);
}
@media (max-width: 600px) {
    .choose-name-step .cn-prompt-trust { margin-left: 0; }
}
.choose-name-step .cn-prompt-trust i { color: var(--accent); margin-right: 4px; }

/* Account success strip */
.choose-name-step .cn-success-acct {
    display: none; align-items: flex-start; gap: 10px;
    background: var(--green-soft);
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 12px; padding: 12px 14px;
    margin-top: 20px; color: var(--green-ink);
    font-size: 13px; line-height: 1.5;
}
.choose-name-step .cn-success-acct.is-visible { display: flex; animation: cnFadeIn .3s ease; }
.choose-name-step .cn-success-acct i { font-size: 18px; margin-top: 1px; }
.choose-name-step .cn-success-acct strong { color: var(--green-ink); }

/* Name rows (with inline status chip) */
.choose-name-step .cn-name-row { margin-bottom: 10px; }
.choose-name-step .cn-name-row label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink-700); margin-bottom: 6px;
}
.choose-name-step .cn-name-wrap { position: relative; }
.choose-name-step .cn-name-wrap input {
    width: 100%; padding: 11px 130px 11px 14px; font-size: 14px;
    border: 1px solid var(--ink-200); border-radius: 8px; background: #fff;
    color: var(--ink-900); font-family: inherit;
    transition: border-color .15s, box-shadow .15s;
}
.choose-name-step .cn-name-wrap input:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.choose-name-step .cn-name-wrap input.is-available {
    border-color: rgba(16,185,129,.4); background: rgba(16,185,129,.03);
}
.choose-name-step .cn-name-wrap input.is-taken {
    border-color: rgba(239,68,68,.4); background: rgba(239,68,68,.03);
}
.choose-name-step .cn-chip {
    position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
    display: none; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600;
    padding: 4px 10px; border-radius: 999px; pointer-events: none;
}
.choose-name-step .cn-chip.is-available { display: flex; color: var(--green-ink); background: var(--green-soft); }
.choose-name-step .cn-chip.is-taken     { display: flex; color: #991B1B; background: var(--red-soft); }
.choose-name-step .cn-chip.is-similar   { display: flex; color: #92400E; background: rgba(245,158,11,.15); }

/* Add-more buttons */
.choose-name-step .cn-add {
    background: transparent; border: 1px dashed var(--ink-200);
    color: var(--ink-500); padding: 10px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 500; cursor: pointer; width: 100%;
    text-align: left; transition: all .15s;
    font-family: inherit; margin-bottom: 10px;
}
.choose-name-step .cn-add:hover {
    border-color: var(--accent); color: var(--accent-dark); background: var(--accent-softer);
}
.choose-name-step .cn-add i { margin-right: 6px; }
.choose-name-step .cn-add .hint { color: var(--ink-400); margin-left: 4px; }

/* Rules note */
.choose-name-step .cn-rules {
    font-size: 12px; color: var(--ink-500);
    margin: 10px 0 16px; line-height: 1.55;
}
.choose-name-step .cn-rules i { color: var(--accent); margin-right: 4px; }

/* Check button */
.choose-name-step .cn-check {
    width: 100%; padding: 14px;
    background: var(--ink-900); color: #fff; border: none; border-radius: 10px;
    font-size: 14px; font-weight: 700; letter-spacing: .02em; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .15s; font-family: inherit;
}
.choose-name-step .cn-check:hover { background: var(--ink-700); }
.choose-name-step .cn-check.is-checking { background: var(--ink-500); cursor: wait; }

/* Per-name results (same visual language as promo1 .name-checker-result) */
.choose-name-step .cn-name-check-results {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.choose-name-step .cn-name-check-results:empty { display: none; }
.choose-name-step .cn-name-check-results .ncr-available,
.choose-name-step .cn-name-check-results .ncr-similar,
.choose-name-step .cn-name-check-results .ncr-taken {
    text-align: left;
}
.choose-name-step .cn-name-check-results .cn-ncr-note {
    display: block;
    width: 100%;
    font-size: 12px;
    opacity: 0.85;
    margin-top: 4px;
    font-weight: 500;
}

/* Success strip after availability check */
.choose-name-step .cn-success {
    display: none; align-items: flex-start; gap: 10px;
    background: var(--green-soft);
    border: 1px solid rgba(16,185,129,.25);
    border-radius: 10px; padding: 12px 14px;
    margin-top: 14px; color: var(--green-ink);
    font-size: 13px; line-height: 1.5;
}
.choose-name-step .cn-success.is-visible { display: flex; }
.choose-name-step .cn-success i { font-size: 18px; margin-top: 1px; }
.choose-name-step .cn-success small {
    display: block; color: rgba(6,95,70,.75); font-size: 11.5px; margin-top: 2px;
}

/* Footer */
.choose-name-step .cn-footer {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; margin-top: 24px;
}
.choose-name-step .cn-back-btn {
    background: #fff; border: 1.5px solid var(--ink-200);
    color: var(--ink-700); padding: 12px 22px; border-radius: 10px;
    font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all .15s; font-family: inherit;
}
.choose-name-step .cn-back-btn:hover { border-color: var(--ink-400); color: var(--ink-900); }
.choose-name-step .cn-continue-wrap { text-align: right; }
.choose-name-step .cn-continue {
    background: var(--accent); color: #fff; border: none;
    padding: 14px 28px; border-radius: 10px;
    font-size: 14px; font-weight: 700; letter-spacing: .02em; cursor: pointer;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .15s; font-family: inherit;
}
.choose-name-step .cn-continue:hover:not(:disabled) {
    background: var(--accent-dark); transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(251,176,51,.3);
}
.choose-name-step .cn-continue:disabled {
    background: var(--ink-200); color: var(--ink-400);
    cursor: not-allowed; transform: none; box-shadow: none;
}
.choose-name-step .cn-continue-hint {
    font-size: 12px; color: var(--ink-400); margin-top: 6px;
}
.choose-name-step .cn-continue-hint.is-ready {
    color: var(--green-ink); font-weight: 600;
}

/* Mobile tuning for step 1 */
@media (max-width: 600px) {
    .choose-name-step .cn-card { padding: 18px; }
    .choose-name-step .cn-footer { flex-direction: column; align-items: stretch; }
    .choose-name-step .cn-back-btn,
    .choose-name-step .cn-continue { width: 100%; justify-content: center; }
    .choose-name-step .cn-continue-wrap { text-align: center; }
    .choose-name-step .cn-name-wrap input { padding-right: 14px; }
    .choose-name-step .cn-chip {
        position: static; transform: none; margin-top: 8px; width: max-content;
    }
    .choose-name-step .cn-prompt-actions .cn-btn-primary,
    .choose-name-step .cn-prompt-actions .cn-btn-ghost {
        width: 100%; justify-content: center;
    }
}
