/* ===== VARIABLES ===== */
:root {
  --brand-red: #b50028;
  --brand-dark: #141414;
  --brand-mid: #1c1c1c;
  --text-primary: #1a1a1a;
  --text-muted: #777;
  --text-hint: #aaa;
  --border: #e8e8e8;
  --surface: #fafafa;
  --font-body: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;
  --radius: 3px;
  --radius-card: 5px;
  --radius-lg: 6px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text-primary); font-size: 14px; line-height: 1.6; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; background: var(--brand-red); color: #fff;
  padding: 9px 20px; border-radius: var(--radius); font-family: var(--font-body);
  font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--brand-red);
  transition: opacity 0.15s; text-decoration: none;
}
.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  display: inline-block; background: transparent; color: var(--brand-red);
  padding: 9px 20px; border-radius: var(--radius); font-family: var(--font-body);
  font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--brand-red);
  transition: background 0.15s, color 0.15s; text-decoration: none;
}
.btn-outline:hover { background: var(--brand-red); color: #fff; }

.btn-white-outline {
  display: inline-block; background: transparent; color: #fff;
  padding: 9px 20px; border-radius: var(--radius); font-family: var(--font-body);
  font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s; text-decoration: none;
}
.btn-white-outline:hover { background: #fff; color: var(--text-primary); }

.btn-green {
  display: inline-block; background: #1a7a3c; color: #fff;
  padding: 11px 28px; border-radius: var(--radius); font-family: var(--font-body);
  font-size: 14px; font-weight: 600; cursor: pointer; border: none;
  transition: opacity 0.15s; text-decoration: none;
}
.btn-green:hover { opacity: 0.88; }

/* ===== UTILITIES ===== */
.section { padding: 56px 32px; }
.container { max-width: 1100px; margin: 0 auto; }

.sec-label {
  display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-red); margin-bottom: 10px;
}

.sec-title { font-family: var(--font-display); font-size: 28px; font-weight: 500; color: var(--text-primary); margin-bottom: 10px; }
.sec-title-white { color: #fff; }
.sec-sub { font-size: 13px; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; line-height: 1.6; }

.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.notice {
  background: #f5f5f5; border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 16px 20px; font-size: 13px; color: var(--text-muted);
}

.notice-warning {
  background: #fff8f8; border: 1px solid #f0c0c8; border-left: 4px solid var(--brand-red);
  border-radius: var(--radius-card); padding: 16px 20px; font-size: 13px; color: var(--text-primary);
}

/* ===== FORMS BASE ===== */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 500; color: var(--text-primary); margin-bottom: 5px; }
.form-label .req { color: var(--brand-red); margin-left: 2px; }
.form-hint { font-size: 11px; color: var(--text-hint); margin-top: 3px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  height: 36px; width: 100%; border: 1px solid #ddd; border-radius: var(--radius);
  padding: 0 10px; font-family: var(--font-body); font-size: 13px; color: var(--text-primary);
  background: #fff; transition: border-color 0.15s; -webkit-appearance: none; appearance: none;
}

textarea { height: auto; padding: 10px; resize: vertical; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; padding-right: 30px;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brand-red); outline-offset: -1px; border-color: var(--brand-red);
}

input::placeholder, textarea::placeholder { color: var(--text-hint); }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); }

.header-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 0 32px; height: 60px; max-width: 1200px; margin: 0 auto;
}

.logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.logo-name { font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--text-primary); letter-spacing: -0.01em; }
.logo-red { color: var(--brand-red); }
.logo-tag { font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 1px; }

.site-nav { display: flex; align-items: center; gap: 28px; margin: 0 auto; }
.site-nav a { font-size: 13px; font-weight: 500; color: var(--text-primary); text-decoration: none; padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s; }
.site-nav a:hover, .site-nav a.active { color: var(--brand-red); border-bottom-color: var(--brand-red); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { display: none; flex-direction: column; border-top: 1px solid var(--border); background: #fff; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 32px; font-size: 14px; font-weight: 500; color: var(--text-primary); border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--brand-red); background: var(--surface); }
.mobile-menu a.active { color: var(--brand-red); }

/* ===== FOOTER ===== */
.site-footer { background: var(--brand-dark); color: #fff; }
.footer-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 40px 32px; max-width: 1100px; margin: 0 auto; }
.footer-col .logo-name { color: #fff; }
.footer-col .logo-tag { color: #555; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.footer-nav a { font-size: 13px; color: #888; transition: color 0.15s; }
.footer-nav a:hover { color: #fff; }
.footer-col > p { font-size: 12px; color: #555; margin-bottom: 8px; }
.footer-col a[href^="mailto"] { font-size: 13px; color: #888; transition: color 0.15s; }
.footer-col a[href^="mailto"]:hover { color: #fff; }
.footer-strip { height: 4px; background: var(--brand-red); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--brand-red); padding: 10px 32px;
  display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap;
}
.trust-strip span { font-size: 11px; color: #fff; font-weight: 500; }
.trust-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.5); border-radius: 50%; flex-shrink: 0; }

/* ===== HOMEPAGE HERO ===== */
.hero { display: grid; grid-template-columns: 1fr 290px 270px; border-bottom: 1px solid var(--border); }

.hero-main { padding: 40px 32px; display: flex; flex-direction: column; }

.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-red); margin-bottom: 14px; }

.hero-main h1 { font-family: var(--font-display); font-size: 32px; font-weight: 500; line-height: 1.2; margin-bottom: 14px; }
.hero-main h1 em { color: var(--brand-red); font-style: italic; }

.hero-sub { font-size: 13px; color: var(--text-muted); max-width: 380px; margin-bottom: 24px; line-height: 1.6; }

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }

.hero-stats {
  margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border); background: var(--surface);
  margin-left: -32px; margin-right: -32px; margin-bottom: -40px;
}
.stat-item { text-align: center; padding: 18px 12px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--brand-red); }
.stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* How it works panel */
.how-panel { background: var(--surface); border-left: 1px solid var(--border); border-right: 1px solid var(--border); padding: 28px 20px; }
.panel-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.how-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 14px; display: flex; align-items: flex-start; gap: 12px; }
.step-num { width: 24px; height: 24px; background: var(--brand-red); color: #fff; border-radius: 50%; font-size: 11px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-text strong { display: block; font-size: 13px; font-weight: 500; }
.step-text span { font-size: 11px; color: var(--text-muted); }
.how-arrow { text-align: center; font-size: 18px; color: #ccc; padding: 5px 0; }
.how-footer { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.how-dot { width: 8px; height: 8px; background: var(--brand-red); border-radius: 50%; flex-shrink: 0; }
.how-footer span { font-size: 11px; color: var(--text-muted); }

/* Sidebar panel */
.sidebar-panel { border-left: 1px solid var(--border); padding: 28px 20px; display: flex; flex-direction: column; gap: 22px; }
.sidebar-title { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.asic-search { display: flex; gap: 8px; }
.asic-search input { flex: 1; min-width: 0; }
.asic-note { font-size: 11px; color: var(--text-hint); margin-top: 6px; }
.sidebar-divider { border: none; border-top: 1px solid var(--border); }
.quick-order-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-card); text-decoration: none; transition: border-color 0.15s; margin-bottom: 8px; }
.quick-order-item:last-child { margin-bottom: 0; }
.quick-order-item:hover { border-color: var(--brand-red); }
.qo-name { font-size: 13px; font-weight: 500; color: var(--text-primary); }
.qo-price { font-size: 12px; color: var(--brand-red); font-weight: 500; }

/* ===== SERVICE CARDS ===== */
.service-card { border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; display: flex; flex-direction: column; }
.service-icon { width: 36px; height: 36px; margin-bottom: 14px; color: var(--brand-red); }
.service-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; font-family: var(--font-body); }
.service-price { font-size: 12px; color: var(--brand-red); font-weight: 500; margin-bottom: 10px; }
.service-desc { font-size: 13px; color: var(--text-muted); flex: 1; margin-bottom: 16px; line-height: 1.5; }
.service-link { font-size: 13px; font-weight: 500; color: var(--brand-red); }
.service-link:hover { text-decoration: underline; }

/* ===== WHO WE HELP ===== */
.who-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px; }
.who-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; font-family: var(--font-body); }
.who-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ===== WHY SECTION ===== */
.why-section { background: var(--brand-dark); padding: 56px 32px; }
.why-card { background: var(--brand-mid); border: 1px solid #242424; border-radius: var(--radius-card); padding: 24px; }
.why-title { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 8px; font-family: var(--font-body); }
.why-desc { font-size: 13px; color: #888; line-height: 1.5; }

/* ===== TESTIMONIALS ===== */
.testi-card { background: #f8f8f6; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; }
.testi-quote { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--text-primary); line-height: 1.7; margin-bottom: 16px; }
.testi-author { font-size: 12px; font-weight: 600; color: var(--text-primary); font-family: var(--font-body); }
.testi-firm { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ===== DARK HERO (inner pages) ===== */
.dark-hero { background: var(--brand-dark); padding: 60px 32px; text-align: center; }
.dark-hero h1 { font-family: var(--font-display); font-size: 34px; font-weight: 500; color: #fff; margin-bottom: 14px; }
.dark-hero p { font-size: 14px; color: #999; max-width: 500px; margin: 0 auto 28px; }
.dark-hero .btn-group { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== INCLUSION LIST ===== */
.inclusion-list { list-style: none; }
.inclusion-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: 13px; border-bottom: 1px solid var(--border); line-height: 1.4; }
.inclusion-list li:last-child { border-bottom: none; }
.tick-svg { width: 18px; height: 18px; color: var(--brand-red); flex-shrink: 0; margin-top: 1px; }

/* ===== PRICING CARD ===== */
.pricing-card { border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; }
.pricing-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.pricing-row:last-child { border-bottom: none; }
.pricing-row-label { color: var(--text-muted); }
.pricing-row-value { font-weight: 600; }
.pricing-surcharge { font-size: 11px; color: var(--text-hint); margin-top: 12px; }

/* ===== PRICING TABLE ===== */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pricing-table th, .pricing-table td { padding: 12px 16px; text-align: left; border: 1px solid var(--border); }
.pricing-table th { background: var(--surface); font-weight: 600; font-size: 12px; font-family: var(--font-body); }
.pricing-table td:first-child { font-weight: 500; }

/* ===== CTA ===== */
.cta-section { background: var(--brand-red); padding: 56px 32px; text-align: center; }
.cta-section h2 { font-family: var(--font-display); font-size: 26px; color: #fff; margin-bottom: 24px; }

/* ===== ORDER FORMS PAGE ===== */
.order-card { border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; transition: border-color 0.15s; display: flex; flex-direction: column; }
.order-card:hover { border-color: var(--brand-red); }
.order-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; font-family: var(--font-body); }
.order-price { font-size: 12px; color: var(--brand-red); font-weight: 500; margin-bottom: 12px; }
.order-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; flex: 1; margin-bottom: 20px; }
.order-link { font-size: 13px; font-weight: 600; color: var(--brand-red); }
.order-link:hover { text-decoration: underline; }

/* ===== CONTACT PAGE ===== */
.contact-email-big { font-size: 22px; font-weight: 600; color: var(--brand-red); display: block; margin-bottom: 14px; }
.contact-email-big:hover { text-decoration: underline; }
.contact-note { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.online-notice { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 16px 20px; font-size: 13px; color: var(--text-muted); margin: 16px 0; }

/* ===== THANK YOU / ERROR ===== */
.result-page { padding: 80px 32px; text-align: center; max-width: 560px; margin: 0 auto; }
.result-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.result-icon.success { background: #1a7a3c; }
.result-icon.error { background: var(--brand-red); }
.result-icon svg { width: 36px; height: 36px; color: #fff; }
.result-page h1 { font-family: var(--font-display); font-size: 28px; margin-bottom: 14px; }
.result-page > p { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.result-email { display: inline-block; font-size: 15px; font-weight: 600; color: var(--brand-red); text-decoration: none; margin: 16px 0; }
.result-email:hover { text-decoration: underline; }
.result-btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ===== MULTI-STEP FORM ===== */
.form-page { max-width: 820px; margin: 0 auto; padding: 40px 32px 80px; }
.form-page > h1 { font-family: var(--font-display); font-size: 26px; margin-bottom: 6px; }
.form-subtitle { font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }

/* Progress bar */
.progress-bar { display: flex; margin-bottom: 36px; border-bottom: 2px solid var(--border); overflow-x: auto; }
.progress-step { flex: 1; min-width: 80px; text-align: center; padding: 0 4px 12px; font-size: 11px; font-weight: 500; color: var(--text-hint); border-bottom: 2px solid transparent; margin-bottom: -2px; }
.progress-step.active { color: var(--brand-red); border-bottom-color: var(--brand-red); font-weight: 600; }
.progress-step.done { color: var(--text-muted); }

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-title { font-size: 16px; font-weight: 600; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); font-family: var(--font-body); }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

/* Step nav */
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); }

.btn-prev { background: transparent; border: 1px solid var(--border); color: var(--text-muted); padding: 9px 20px; border-radius: var(--radius); font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: border-color 0.15s, color 0.15s; }
.btn-prev:hover { border-color: var(--text-muted); color: var(--text-primary); }

.btn-next { background: var(--brand-red); border: none; color: #fff; padding: 9px 24px; border-radius: var(--radius); font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.15s; }
.btn-next:hover { opacity: 0.88; }

/* Count selector */
.count-selector { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.count-btn { padding: 7px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 12px; font-weight: 500; color: var(--text-muted); background: #fff; cursor: pointer; transition: all 0.15s; }
.count-btn.active { border-color: var(--brand-red); color: var(--brand-red); background: #fff8f8; }

/* Officer cards */
.officer-card { border: 1px solid var(--border); border-radius: var(--radius-card); margin-bottom: 12px; overflow: hidden; }
.officer-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; background: var(--surface); user-select: none; transition: background 0.15s; }
.officer-header:hover { background: #efefef; }
.officer-num { width: 26px; height: 26px; background: var(--brand-red); color: #fff; border-radius: 50%; font-size: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.officer-header-text { flex: 1; min-width: 0; }
.officer-name-text { font-size: 13px; font-weight: 600; }
.officer-roles-text { font-size: 11px; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.officer-toggle { font-size: 12px; color: var(--text-hint); flex-shrink: 0; }
.officer-body { padding: 20px 16px; border-top: 1px solid var(--border); }
.officer-body.collapsed { display: none; }

/* Role chips */
.roles-label { font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; display: block; }
.role-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.role-chip { padding: 5px 12px; border: 1px solid var(--border); border-radius: 20px; font-size: 11px; font-weight: 500; color: var(--text-muted); background: #fff; cursor: pointer; transition: all 0.15s; user-select: none; font-family: var(--font-body); }
.role-chip.selected { border-color: var(--brand-red); color: var(--brand-red); background: #fff8f8; }

/* Shareholding */
.shareholding-section { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 16px; margin-top: 16px; }
.shareholding-section > h4 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 14px; font-family: var(--font-body); }

/* Package cards */
.package-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.package-card { border: 2px solid var(--border); border-radius: var(--radius-card); padding: 20px; cursor: pointer; transition: border-color 0.15s, background 0.15s; position: relative; }
.package-card.selected { border-color: var(--brand-red); background: #fff8f8; }
.package-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.package-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; font-family: var(--font-body); }
.package-price { font-size: 20px; font-weight: 600; color: var(--brand-red); margin-bottom: 2px; font-family: var(--font-display); }
.package-price-sub { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.package-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* Radio cards */
.radio-cards { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.radio-card { border: 2px solid var(--border); border-radius: var(--radius-card); padding: 16px 20px; cursor: pointer; transition: border-color 0.15s, background 0.15s; display: flex; align-items: flex-start; gap: 12px; }
.radio-card.selected { border-color: var(--brand-red); background: #fff8f8; }
.radio-card input[type="radio"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--brand-red); }
.radio-label strong { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; font-family: var(--font-body); }
.radio-label span { font-size: 12px; color: var(--text-muted); }

/* Payment tabs */
.payment-tabs { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 20px; }
.payment-tab { flex: 1; padding: 10px 8px; text-align: center; font-size: 12px; font-weight: 500; color: var(--text-muted); background: var(--surface); cursor: pointer; border-right: 1px solid var(--border); transition: background 0.15s, color 0.15s; user-select: none; font-family: var(--font-body); }
.payment-tab:last-child { border-right: none; }
.payment-tab.active { background: #fff; color: var(--brand-red); }
.payment-panel { display: none; }
.payment-panel.active { display: block; }

.bank-details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 16px 20px; }
.bank-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; gap: 16px; }
.bank-row:last-child { border-bottom: none; }
.bank-label { color: var(--text-muted); font-size: 12px; flex-shrink: 0; }
.bank-value { font-weight: 500; text-align: right; }

/* Review summary */
.review-summary { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px; margin-bottom: 24px; }
.review-row { display: flex; justify-content: space-between; gap: 16px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.review-row:last-child { border-bottom: none; }
.review-label { color: var(--text-muted); font-size: 12px; flex-shrink: 0; }
.review-value { font-weight: 500; text-align: right; }

/* Declaration */
.declaration-box { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 20px; margin-bottom: 24px; }
.declaration-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }

/* Trustee type toggle */
.trustee-type-btns { display: flex; gap: 10px; margin-bottom: 20px; }
.trustee-type-btn { flex: 1; padding: 14px; border: 2px solid var(--border); border-radius: var(--radius-card); background: #fff; cursor: pointer; text-align: center; font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--text-muted); transition: all 0.15s; }
.trustee-type-btn.active { border-color: var(--brand-red); color: var(--brand-red); background: #fff8f8; }

/* Checkboxes */
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 13px; cursor: pointer; }
.check-item input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--brand-red); cursor: pointer; }

/* SMSF trustee radio inline */
.radio-inline { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.radio-inline label { display: flex; align-items: center; gap: 6px; font-size: 13px; cursor: pointer; }
.radio-inline input[type="radio"] { accent-color: var(--brand-red); }

/* ===== PROCESS STEPS (reusable) ===== */
.process-steps { display: flex; flex-direction: column; gap: 0; max-width: 480px; margin: 0 auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-main { padding: 28px 20px; }
  .hero-stats { margin-left: -20px; margin-right: -20px; margin-bottom: -28px; }
  .how-panel { border-left: none; border-right: none; border-top: 1px solid var(--border); padding: 24px 20px; }
  .sidebar-panel { border-left: none; border-top: 1px solid var(--border); padding: 24px 20px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .section { padding: 36px 20px; }
  .dark-hero { padding: 40px 20px; }
  .dark-hero h1 { font-size: 26px; }
  .why-section { padding: 36px 20px; }
  .cta-section { padding: 40px 20px; }

  .form-page { padding: 24px 16px 60px; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .package-cards { grid-template-columns: 1fr; }
  .trustee-type-btns { flex-direction: column; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .progress-step { font-size: 9px; min-width: 56px; }
  .trust-strip { gap: 8px; }
  .trust-dot { display: none; }
  .hero-main h1 { font-size: 26px; }
  .asic-search { flex-direction: column; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .mobile-menu a { padding: 13px 20px; }
}

/* ===== OTHER SHAREHOLDERS ===== */
.other-sh-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.subsection-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; font-family: var(--font-body); }
.sh-block { border: 1px solid var(--border); border-radius: var(--radius-card); margin-bottom: 12px; overflow: hidden; }
.sh-block-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--surface); border-bottom: 1px solid var(--border); }
.sh-block-num { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.sh-remove-btn { font-size: 12px; color: var(--brand-red); background: none; border: none; cursor: pointer; font-family: var(--font-body); padding: 0; font-weight: 500; }
.sh-remove-btn:hover { text-decoration: underline; }
.sh-block-body { padding: 20px 16px; }
.btn-add-sh { display: inline-block; background: transparent; color: var(--brand-red); padding: 8px 18px; border-radius: var(--radius); font-family: var(--font-body); font-size: 13px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--brand-red); transition: background 0.15s, color 0.15s; margin-top: 4px; }
.btn-add-sh:hover { background: var(--brand-red); color: #fff; }
.sh-field-error { color: var(--brand-red) !important; }
