*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #ffffff; --ink: #0a0a0a; --accent: #16a34a; --accent2: #15803d;
  --muted: #6b7280; --card: #ffffff; --border: #e5e7eb;
  --surface: #f9fafb; --glow: rgba(22, 163, 74, 0.18);
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: 'DM Sans', sans-serif; font-weight: 300; min-height: 100vh; background-image: radial-gradient(ellipse 80% 60% at 50% -10%, var(--glow), transparent 60%), radial-gradient(ellipse 60% 40% at 100% 100%, rgba(22, 163, 74, 0.06), transparent 60%); background-attachment: fixed; }

header.site-header { padding: 1.6rem 4vw 1.2rem; display: flex; align-items: baseline; gap: 1rem; border-bottom: 1.5px solid var(--border); animation: fadeDown 0.5s ease both; background: rgba(255, 255, 255, 0.82); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.9rem, 5vw, 3rem); letter-spacing: 0.04em; line-height: 1; color: var(--ink); text-decoration: none; }
.logo span { color: var(--accent); }
.tagline { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
nav.site-nav { margin-left: auto; display: flex; gap: 1.6rem; align-items: center; }
nav.site-nav a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
nav.site-nav a:hover, nav.site-nav a.active { color: var(--accent); }
@media (max-width: 750px) { nav.site-nav { gap: 1rem; } nav.site-nav a { font-size: 0.72rem; } .tagline { display: none; } }

.btn-primary { display: inline-block; background: var(--accent); color: #ffffff; padding: 0.85rem 2rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em; border-radius: 3px; text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; font-weight: 600; border: none; cursor: pointer; }
.btn-primary:hover:not(:disabled) { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 10px 25px -5px var(--glow); }
.btn-primary:disabled { background: #e5e7eb; color: #9ca3af; cursor: not-allowed; }
.btn-secondary { display: inline-block; background: transparent; color: var(--accent); padding: 0.85rem 1.8rem; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.1em; border-radius: 3px; text-decoration: none; transition: all 0.2s; border: 1.5px solid var(--accent); cursor: pointer; }
.btn-secondary:hover { background: var(--accent); color: #ffffff; }

.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: 0.04em; margin-bottom: 0.35rem; }
.section-title span { color: var(--accent); }
.section-sub { font-size: 0.92rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.6; max-width: 60ch; }

/* Hero */
.hero { padding: 5vw 4vw 3vw; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; animation: fadeUp 0.6s 0.1s ease both; }
@media (max-width: 820px) { .hero { grid-template-columns: 1fr; gap: 1.8rem; } }
.hero-text h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 7.5vw, 5.6rem); line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 1.1rem; }
.hero-text h1 em { font-style: normal; color: var(--accent); display: block; }
.hero-text p { font-size: 1rem; line-height: 1.75; color: var(--muted); max-width: 44ch; margin-bottom: 1.8rem; }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-visual { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ecfccb 100%); border: 1.5px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: clamp(6rem, 15vw, 11rem); box-shadow: 0 25px 60px -25px var(--glow); overflow: hidden; }
.hero-visual::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.6), transparent 50%); pointer-events: none; }

/* Category grid */
.categories { padding: 3vw 4vw; animation: fadeUp 0.6s 0.2s ease both; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
.category-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 5px; padding: 1.8rem 1.6rem; text-decoration: none; color: inherit; transition: all 0.25s; position: relative; box-shadow: 0 1px 2px rgba(0,0,0,0.04); display: flex; flex-direction: column; gap: 0.6rem; }
.category-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 40px -20px var(--glow); }
.category-card.empty { opacity: 0.6; }
.category-card.empty:hover { transform: none; border-color: var(--border); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.category-icon { font-size: 2.2rem; line-height: 1; }
.category-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.05em; color: var(--ink); }
.category-count { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.category-count.soon { color: var(--accent); font-weight: 500; }

/* Trust signals */
.trust { padding: 3vw 4vw 4vw; animation: fadeUp 0.6s 0.3s ease both; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 1.6rem; }
.trust-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 5px; padding: 1.6rem; transition: border-color 0.2s, transform 0.2s; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.trust-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.trust-icon { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }
.trust-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.06em; margin-bottom: 0.35rem; }
.trust-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; }

/* Products grid (browse) */
.products-section { padding: 2vw 4vw 5vw; animation: fadeUp 0.6s 0.2s ease both; }
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.8rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.filter-group { display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap; }
.filter-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 0.3rem; }
.filter-btn { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 0.4rem 0.95rem; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: var(--ink); cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: white; }
.filter-divider { width: 1px; background: var(--border); margin: 0 0.4rem; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.6rem; }
.product-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 5px; overflow: hidden; position: relative; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; box-shadow: 0 1px 2px rgba(0,0,0,0.04); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 20px 40px -20px var(--glow); }
.product-badge { position: absolute; top: 1rem; right: 1rem; background: var(--accent); color: #ffffff; font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 0.1em; padding: 0.28rem 0.75rem; border-radius: 2px; font-weight: 600; }
.product-img { width: 100%; height: 190px; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%); display: flex; align-items: center; justify-content: center; font-size: 5rem; border-bottom: 1px solid var(--border); }
.product-body { padding: 1.3rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.product-body .model { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.7rem; }
.product-body .desc { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.product-category-tag { display: inline-block; background: var(--surface); color: var(--accent); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 2px; margin-bottom: 0.6rem; font-weight: 500; width: fit-content; }
.product-footer { display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; padding-top: 0.8rem; border-top: 1px solid var(--border); }
.price { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--accent); line-height: 1; }
.price-unit { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-left: 0.35rem; }
.view-link { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 500; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); grid-column: 1 / -1; }
.empty-state h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; color: var(--ink); letter-spacing: 0.05em; margin-bottom: 0.4rem; }

/* Detail page */
.detail { padding: 3vw 4vw; display: grid; grid-template-columns: 0.8fr 1.25fr; gap: 2.6rem; animation: fadeUp 0.5s ease both; align-items: start; }
@media (max-width: 900px) { .detail { grid-template-columns: 1fr; } }
.detail-visual { position: relative; background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #ecfccb 100%); border: 1.5px solid var(--border); border-radius: 8px; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; font-size: clamp(3.5rem, 10vw, 7.5rem); box-shadow: 0 20px 50px -25px var(--glow); max-width: 440px; width: 100%; position: sticky; top: 6rem; }
.detail-visual .thumbs { position: absolute; bottom: 0.8rem; left: 0.8rem; right: 0.8rem; display: flex; gap: 0.45rem; }
.detail-visual .thumb { flex: 1; height: 42px; background: white; border: 1.5px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; cursor: pointer; transition: all 0.2s; }
.detail-visual .thumb:hover { border-color: var(--accent); transform: translateY(-2px); }
@media (max-width: 900px) { .detail-visual { position: static; max-width: 100%; } }
.detail-info .crumb { font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.8rem; }
.detail-info .crumb a { color: var(--accent); text-decoration: none; }
.detail-info h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.4rem; }
.detail-info .model { font-size: 0.86rem; color: var(--muted); margin-bottom: 1.2rem; }
.detail-info .desc { font-size: 0.98rem; color: #374151; line-height: 1.75; margin-bottom: 1.4rem; }
.detail-price-row { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.detail-price-row .price { font-size: 2.6rem; }
.detail-avail { color: var(--accent); font-size: 0.86rem; letter-spacing: 0.06em; font-weight: 500; }
.detail-avail::before { content: '●'; margin-right: 0.4rem; font-size: 0.8rem; }
.detail-section { margin-bottom: 1.4rem; }
.detail-section h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.1em; color: var(--ink); margin-bottom: 0.6rem; }
.detail-list { list-style: none; padding: 0; }
.detail-list li { font-size: 0.9rem; color: #374151; line-height: 1.65; padding-left: 1.2rem; position: relative; margin-bottom: 0.35rem; }
.detail-list li::before { content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: 700; }
.detail-specs { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.spec-tag { background: var(--surface); border: 1px solid var(--border); border-radius: 2px; padding: 0.25rem 0.65rem; font-size: 0.76rem; color: var(--muted); letter-spacing: 0.06em; }
.detail-cta { margin-top: 1.4rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* Step indicator */
.steps { display: flex; gap: 0; align-items: center; padding: 1.2rem 4vw; border-bottom: 1px solid var(--border); overflow-x: auto; background: var(--surface); }
.step { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.step .num { width: 26px; height: 26px; border-radius: 50%; background: var(--border); color: var(--muted); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 0.88rem; }
.step.done .num { background: var(--accent); color: white; }
.step.done { color: var(--ink); }
.step.active .num { background: var(--ink); color: white; }
.step.active { color: var(--ink); font-weight: 500; }
.step-arrow { margin: 0 0.9rem; color: var(--muted); font-size: 0.8rem; }

/* Dates + Checkout layouts */
.split { padding: 3vw 4vw 5vw; display: grid; grid-template-columns: 1fr 360px; gap: 2rem; align-items: start; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

.panel { background: var(--card); border: 1.5px solid var(--border); border-radius: 5px; padding: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.panel h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.panel .sub { font-size: 0.86rem; color: var(--muted); margin-bottom: 1.4rem; line-height: 1.6; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.addr-row { display: grid; grid-template-columns: 1.5fr 0.6fr 0.9fr; gap: 0.9rem; }
@media (max-width: 520px) { .addr-row { grid-template-columns: 1fr 0.6fr 0.9fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.95rem; }
.form-group label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { background: var(--surface); border: 1.5px solid var(--border); border-radius: 3px; padding: 0.68rem 0.85rem; font-family: 'DM Sans', sans-serif; font-size: 0.93rem; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #9ca3af; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--glow); }
.form-group textarea { resize: vertical; min-height: 75px; }

.form-section-label { font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.14em; color: var(--ink); margin: 0.4rem 0 0.9rem; padding-bottom: 0.4rem; border-bottom: 1px solid var(--border); }
.form-section-label:first-child { margin-top: 0; }
.card-field { background: var(--surface); border: 1.5px solid var(--border); border-radius: 5px; padding: 1.1rem 1.1rem 0.4rem; margin-bottom: 0.5rem; }
.card-field .form-group input { background: #ffffff; }
.card-secure-note { display: flex; align-items: center; gap: 0.5rem; font-size: 0.76rem; color: var(--muted); padding: 0.5rem 0 0.3rem; line-height: 1.5; }
.card-secure-note span { color: var(--accent); font-size: 0.9rem; }

.agreement-row { display: flex; align-items: flex-start; gap: 0.75rem; margin: 1.2rem 0 1.4rem; }
.agreement-row input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.agreement-row label { font-size: 0.82rem; color: var(--muted); line-height: 1.55; cursor: pointer; }
.agreement-row a { color: var(--accent); cursor: pointer; text-decoration: underline; }

.btn-block { width: 100%; background: var(--accent); color: #ffffff; border: none; cursor: pointer; padding: 1rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.12em; border-radius: 3px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; font-weight: 600; }
.btn-block:hover:not(:disabled) { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 10px 25px -5px var(--glow); }
.btn-block:disabled { background: #e5e7eb; color: #9ca3af; cursor: not-allowed; }

/* Summary panel */
.summary { background: #0a0a0a; color: #ffffff; border-radius: 5px; padding: 1.7rem; position: sticky; top: 1.5rem; box-shadow: 0 10px 30px -15px rgba(0,0,0,0.3); }
.summary h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.08em; margin-bottom: 1.1rem; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 0.8rem; color: var(--accent2); }
.s-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.75rem; gap: 0.8rem; }
.s-item .sl { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.s-item .sv { font-size: 0.86rem; font-weight: 400; text-align: right; }
.s-divider { height: 1px; background: rgba(255,255,255,0.12); margin: 0.9rem 0; }
.s-total { display: flex; justify-content: space-between; align-items: center; }
.s-total .sl { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.08em; }
.s-total .sv { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--accent2); }
.s-note { font-size: 0.7rem; color: rgba(255,255,255,0.42); margin-top: 0.9rem; line-height: 1.55; }
.s-deposit-note { background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.3); border-radius: 3px; padding: 0.6rem 0.75rem; font-size: 0.76rem; color: rgba(255,255,255,0.78); margin-top: 0.9rem; line-height: 1.5; }

/* Calendar / dates */
.calendar { background: var(--surface); border: 1.5px solid var(--border); border-radius: 4px; padding: 1.2rem; margin-bottom: 1.2rem; }
.date-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .date-pair { grid-template-columns: 1fr; } }

.rate-info { display: flex; gap: 1.2rem; flex-wrap: wrap; padding: 1rem 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 4px; margin-bottom: 1.4rem; }
.rate-info > div { flex: 1; min-width: 130px; }
.rate-info .rl { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; }
.rate-info .rv { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; color: var(--ink); letter-spacing: 0.04em; }
.rate-info .rv span { font-size: 0.75rem; color: var(--muted); font-family: 'DM Sans', sans-serif; letter-spacing: 0; margin-left: 0.2rem; }

/* Confirmation */
.confirm-wrap { padding: 4vw 4vw 5vw; max-width: 780px; margin: 0 auto; animation: fadeUp 0.5s ease both; }
.confirm-hero { text-align: center; padding: 2.2rem 1.5rem 2rem; background: var(--card); border: 1.5px solid var(--border); border-radius: 6px; margin-bottom: 1.6rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.confirm-hero .check { font-size: 3rem; margin-bottom: 0.6rem; }
.confirm-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 5vw, 2.8rem); letter-spacing: 0.03em; margin-bottom: 0.5rem; }
.confirm-hero p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 48ch; margin: 0 auto; }

/* Delivery schedule box (confirmation page) */
.sched-box { background: linear-gradient(135deg, #0a0a0a 0%, #1f2937 100%); color: #ffffff; padding: 1.8rem; border-radius: 6px; margin-bottom: 1.6rem; box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4); }
.sched-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.8rem; margin-bottom: 1.3rem; }
@media (max-width: 520px) { .sched-row { grid-template-columns: 1fr; } .sched-arrow { transform: rotate(90deg); margin: 0.2rem 0; } }
.sched-card { text-align: center; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 5px; padding: 1rem 0.8rem; }
.sched-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; font-weight: 500; }
.sched-date { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 0.04em; color: #ffffff; line-height: 1.1; margin-bottom: 0.3rem; }
.sched-time { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.02em; }
.sched-arrow { font-size: 1.6rem; color: var(--accent); text-align: center; }
.sched-addr { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.12); }
.sched-addr-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; font-weight: 500; }
.sched-addr-line { font-size: 0.95rem; line-height: 1.5; color: #ffffff; }
.sched-note { margin-top: 1rem; padding-top: 0.9rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; color: rgba(255,255,255,0.58); line-height: 1.5; }
.confirm-details { background: var(--card); border: 1.5px solid var(--border); border-radius: 6px; padding: 1.8rem; margin-bottom: 1.2rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.confirm-details h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.08em; margin-bottom: 1rem; color: var(--ink); border-bottom: 1px solid var(--border); padding-bottom: 0.7rem; }
.detail-row { display: flex; justify-content: space-between; padding: 0.55rem 0; font-size: 0.9rem; gap: 1rem; }
.detail-row .dl { color: var(--muted); flex-shrink: 0; }
.detail-row .dv { color: var(--ink); text-align: right; font-weight: 400; }

/* Contact / FAQ */
.contact-wrap { padding: 3vw 4vw 4vw; display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: start; animation: fadeUp 0.5s ease both; }
@media (max-width: 880px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.contact-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 4px; padding: 1.3rem 1.4rem; transition: all 0.2s; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.contact-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.contact-card .icon { font-size: 1.3rem; margin-bottom: 0.5rem; display: block; }
.contact-card .cl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 0.25rem; }
.contact-card .cv { font-size: 0.9rem; }
.contact-card a { color: var(--accent); text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }

.faq-item { border-top: 1px solid var(--border); padding: 1rem 0; cursor: pointer; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; font-weight: 400; color: var(--ink); gap: 1rem; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s, padding 0.2s; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 500px; padding-top: 0.7rem; }

/* About */
.about-wrap { padding: 3vw 4vw 5vw; animation: fadeUp 0.5s ease both; }
.about-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
@media (max-width: 880px) { .about-intro { grid-template-columns: 1fr; } }
.about-intro h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: 0.02em; line-height: 0.95; margin-bottom: 1.2rem; }
.about-intro h1 span { color: var(--accent); }
.about-intro p { font-size: 1rem; color: #374151; line-height: 1.8; margin-bottom: 1rem; }
.about-visual { aspect-ratio: 1/1; background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%); border: 1.5px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: clamp(5rem, 12vw, 9rem); box-shadow: 0 20px 50px -25px var(--glow); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.value-card { background: var(--card); border: 1.5px solid var(--border); border-radius: 5px; padding: 1.6rem; box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.value-card .icon { font-size: 1.8rem; margin-bottom: 0.7rem; display: block; }
.value-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.value-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Footer */
footer.site-footer { border-top: 1.5px solid var(--border); padding: 1.4rem 4vw; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
footer.site-footer p { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.05em; }
footer.site-footer nav { display: flex; gap: 1.2rem; }
footer.site-footer nav a { font-size: 0.76rem; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; }
footer.site-footer nav a:hover { color: var(--accent); }

.divider { height: 1.5px; background: var(--border); margin: 0 4vw; }

/* Notice banner */
.notice { background: #fef3c7; border: 1.5px solid #fcd34d; border-radius: 4px; padding: 0.85rem 1.1rem; margin: 0 0 1.4rem; color: #78350f; font-size: 0.85rem; line-height: 1.55; }
.notice strong { color: #451a03; }

/* Loading / error states */
.loading { text-align: center; padding: 4rem 1rem; color: var(--muted); font-size: 0.95rem; }
.error-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.error-state h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: var(--ink); letter-spacing: 0.05em; margin-bottom: 0.6rem; }

@keyframes fadeDown { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Modal (agreement) */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); z-index: 1000; align-items: center; justify-content: center; padding: 1.5rem; }
.modal-overlay.open { display: flex; }
.modal { background: var(--card); border: 1.5px solid var(--border); border-radius: 6px; max-width: 660px; width: 100%; max-height: 88vh; overflow-y: auto; animation: modalIn 0.22s ease both; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25); }
.modal-header { background: #0a0a0a; color: white; padding: 1.3rem 2rem; display: flex; justify-content: space-between; align-items: center; border-radius: 6px 6px 0 0; position: sticky; top: 0; z-index: 1; }
.modal-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.08em; color: var(--accent2); }
.modal-close { background: none; border: none; color: rgba(255,255,255,0.65); font-size: 1.6rem; cursor: pointer; line-height: 1; padding: 0; transition: color 0.15s; }
.modal-close:hover { color: var(--accent2); }
.modal-body { padding: 1.6rem 2rem; }
.ag-sec { margin-bottom: 1.3rem; }
.ag-sec h3 { font-family: 'Bebas Neue', sans-serif; font-size: 0.92rem; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.4rem; border-bottom: 1px solid var(--border); padding-bottom: 0.2rem; }
.ag-sec p { font-size: 0.83rem; color: #374151; line-height: 1.7; margin-bottom: 0.5rem; }
.ag-sec ul { padding-left: 1.1rem; }
.ag-sec ul li { font-size: 0.83rem; color: #374151; line-height: 1.7; margin-bottom: 0.25rem; }
.ag-caps { font-size: 0.78rem; font-weight: 500; line-height: 1.65; color: var(--ink) !important; }

@keyframes modalIn { from { opacity: 0; transform: scale(0.96) translateY(10px); } to { opacity: 1; transform: none; } }

/* Deposit timeline (confirmation + return pages) */
.ts-list { list-style: none; padding: 0; margin: 0.4rem 0 0; }
.ts-step { position: relative; padding: 0 0 1rem 1.8rem; display: flex; gap: 0.9rem; align-items: flex-start; }
.ts-step:last-child { padding-bottom: 0; }
.ts-step::before { content: ''; position: absolute; left: 7px; top: 18px; bottom: -4px; width: 2px; background: var(--border); }
.ts-step:last-child::before { display: none; }
.ts-dot { position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--card); border: 2px solid var(--border); box-sizing: border-box; flex-shrink: 0; }
.ts-step.ts-done .ts-dot { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12); }
.ts-step.ts-done::before { background: var(--accent); }
.ts-step.ts-active .ts-dot { background: #ffffff; border-color: var(--accent); animation: tsPulse 1.8s ease-in-out infinite; }
.ts-body { display: flex; flex-direction: column; gap: 0.15rem; padding-left: 0.4rem; }
.ts-body strong { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.ts-body span { font-size: 0.82rem; color: var(--muted); line-height: 1.55; }
.ts-step.ts-done .ts-body strong { color: var(--accent2); }
.ts-step.ts-active .ts-body strong { color: var(--ink); }
.ts-step.ts-pending .ts-body strong { color: var(--muted); font-weight: 400; }
@keyframes tsPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); } 50% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); } }

