:root {
  color-scheme: light;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #f0f4fb;
  --ink: #0e172a;
  --text: #1b2942;
  --muted: #64748b;
  --line: #dfe6f0;
  --line-strong: #c9d4e4;
  --primary: #2457e6;
  --primary-dark: #1742bd;
  --cyan: #08a8c9;
  --green: #12b981;
  --purple: #7457f7;
  --danger: #d74755;
  --success: #0c8d62;
  --radius: 22px;
  --shadow: 0 18px 50px rgba(25, 54, 100, 0.1);
  --shadow-soft: 0 8px 24px rgba(25, 54, 100, 0.07);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, select { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); letter-spacing: -0.035em; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 200; transform: translateY(-160%);
  border-radius: 999px; background: var(--ink); color: #fff; padding: 10px 16px;
}
.skip-link:focus { transform: translateY(0); }
.announcement {
  min-height: 32px; display: grid; place-items: center; padding: 5px 20px;
  background: #11214a; color: #dfe8ff; font-size: 11px; letter-spacing: .06em;
}

.site-header {
  position: sticky; top: 0; z-index: 40; border-bottom: 1px solid rgba(218, 226, 239, .9);
  background: rgba(255, 255, 255, .92); backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  display: grid; width: 38px; height: 38px; place-items: center; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--cyan)); color: #fff;
  box-shadow: 0 8px 18px rgba(36, 87, 230, .24); font-size: 16px; font-weight: 850;
}
.brand-copy { display: grid; line-height: 1.08; }
.brand-copy strong { color: var(--ink); font-size: 16px; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; color: #465572; font-size: 13px; font-weight: 600; }
.nav-links > a:not(.button):hover, .footer-columns a:hover, .text-link:hover { color: var(--primary); }
.nav-toggle {
  display: none; width: 42px; height: 42px; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface); color: var(--ink);
}
.nav-toggle span { width: 17px; height: 2px; border-radius: 99px; background: currentColor; }

.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 9px;
  border: 1px solid transparent; border-radius: 12px; padding: 0 23px; font-size: 14px; font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(110deg, var(--primary), #3679ee 62%, var(--cyan)); color: #fff; box-shadow: 0 12px 25px rgba(36, 87, 230, .22); }
.button-primary:hover { box-shadow: 0 16px 30px rgba(36, 87, 230, .3); }
.button-secondary { border-color: var(--line); background: var(--surface); color: var(--ink); box-shadow: 0 5px 14px rgba(25, 54, 100, .04); }
.button-secondary:hover { border-color: #b7c5db; background: #f9fbff; }
.button-small { min-height: 40px; border-radius: 10px; padding-inline: 18px; font-size: 12px; }
.button-inverse { background: #fff; color: var(--primary-dark); }
.button-ghost { border-color: rgba(255,255,255,.34); color: #fff; }
.button[disabled] { cursor: not-allowed; opacity: .55; transform: none; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero {
  position: relative; overflow: hidden; padding: 92px 0 86px;
  background:
    radial-gradient(circle at 82% 18%, rgba(52, 119, 237, .16), transparent 28%),
    radial-gradient(circle at 70% 82%, rgba(8, 168, 201, .1), transparent 25%),
    linear-gradient(180deg, #fff 0%, #f5f8ff 100%);
}
.hero::before {
  content: ""; position: absolute; width: 510px; height: 510px; top: -280px; left: 48%;
  border: 1px solid rgba(36, 87, 230, .1); border-radius: 50%; box-shadow: 0 0 0 86px rgba(36,87,230,.025), 0 0 0 172px rgba(36,87,230,.018);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .78fr; align-items: center; gap: 74px; }
.hero-content { position: relative; z-index: 1; }
.availability, .live-badge {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid #cddbf5; border-radius: 999px;
  background: rgba(255,255,255,.86); color: #315487; padding: 7px 12px; font-size: 11px; font-weight: 700;
  box-shadow: 0 6px 16px rgba(25,54,100,.06);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(18,185,129,.11); }
.hero h1 { max-width: 780px; margin: 22px 0 25px; font-size: clamp(3.4rem, 6.3vw, 5.9rem); font-weight: 790; line-height: .99; }
.hero h1 span { display: block; background: linear-gradient(100deg, var(--primary), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { max-width: 650px; margin-bottom: 30px; color: #5b6c87; font-size: clamp(1rem, 1.6vw, 1.14rem); }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 25px; color: #52627b; font-size: 12px; }
.hero-points span { display: inline-flex; align-items: center; gap: 7px; }
.hero-points i { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: #ddf8ef; color: var(--success); font-style: normal; font-weight: 800; }
.hero-contact { display: flex; align-items: center; gap: 11px; margin-top: 18px; color: #7a889d; font-size: 11px; }
.hero-contact button { display: inline-flex; align-items: center; gap: 6px; border: 0; background: transparent; color: var(--primary); padding: 0; font-size: 11px; }
.hero-contact button strong { font-size: 12px; }
.hero-contact button em { border-radius: 999px; background: #eaf1ff; padding: 3px 7px; font-style: normal; font-size: 8px; font-weight: 750; }

.hero-panel { position: relative; z-index: 1; border: 1px solid rgba(207,218,235,.95); border-radius: 28px; background: rgba(255,255,255,.93); box-shadow: 0 30px 80px rgba(35,65,116,.15); padding: 30px; }
.hero-panel::after { content: ""; position: absolute; inset: auto 26px -14px; height: 28px; border-radius: 50%; background: rgba(23,66,189,.13); filter: blur(20px); z-index: -1; }
.hero-panel-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.panel-label { display: block; margin-bottom: 7px; color: var(--primary); font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.hero-panel h2 { max-width: 280px; margin: 0; font-size: 22px; line-height: 1.25; }
.live-badge { flex: 0 0 auto; border-color: #cdeee2; background: #f0fcf8; color: var(--success); box-shadow: none; }
.live-badge .status-dot { width: 6px; height: 6px; }
.order-preview { position: relative; display: grid; gap: 0; margin: 4px 0; padding: 12px 0; list-style: none; }
.order-preview::before { content: ""; position: absolute; top: 46px; bottom: 46px; left: 18px; width: 1px; background: #d9e3f3; }
.order-preview li { position: relative; display: flex; align-items: center; gap: 15px; min-height: 72px; }
.order-preview li > span { position: relative; z-index: 1; display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; border: 1px solid #d5dfed; border-radius: 50%; background: #fff; color: #75849b; font-size: 12px; font-weight: 800; }
.order-preview li.is-current > span { border-color: transparent; background: linear-gradient(135deg, var(--primary), var(--purple)); color: #fff; box-shadow: 0 8px 18px rgba(36,87,230,.24); }
.order-preview strong, .order-preview small { display: block; }
.order-preview strong { color: var(--ink); font-size: 14px; }
.order-preview small { margin-top: 3px; color: var(--muted); font-size: 11px; }
.panel-security { display: flex; gap: 13px; border: 1px solid #cfece2; border-radius: 16px; background: #f2fbf8; padding: 15px; }
.security-icon { display: grid; flex: 0 0 30px; width: 30px; height: 30px; place-items: center; border-radius: 10px; background: #d9f5ea; color: var(--success); font-weight: 850; }
.panel-security strong, .panel-security small { display: block; }
.panel-security strong { color: #185c48; font-size: 12px; }
.panel-security small { margin-top: 3px; color: #5f8176; font-size: 10px; line-height: 1.5; }
.panel-link { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; color: var(--primary); font-size: 13px; font-weight: 800; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; min-height: 112px; align-items: center; gap: 14px; padding: 22px; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-number { color: #aab8cb; font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { color: var(--ink); font-size: 14px; }
.trust-item small { margin-top: 3px; color: var(--muted); font-size: 10px; line-height: 1.45; }

.section { padding: 106px 0; }
.section-compact { padding: 70px 0; }
.section-kicker, .eyebrow { margin: 0 0 15px; color: var(--primary); font-size: 10px; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.section-header { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-header > div { max-width: 760px; }
.section-header h2, .page-title { margin-bottom: 13px; font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 780; line-height: 1.05; }
.section-header p { max-width: 680px; margin: 0; color: var(--muted); font-size: 14px; }
.compact-header { margin-bottom: 45px; }
.text-link { color: var(--primary); font-size: 13px; font-weight: 750; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-soft); }

.product-section { background: #fff; }
.plans-grid { align-items: stretch; }
.product-card { position: relative; display: flex; min-height: 390px; flex-direction: column; overflow: hidden; padding: 32px; }
.product-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--primary), var(--cyan)); opacity: .3; }
.product-card.featured { border-color: #a9c0f5; background: linear-gradient(145deg, #fff, #f2f6ff); box-shadow: 0 20px 46px rgba(36,87,230,.13); }
.product-card.featured::before { opacity: 1; }
.product-topline { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-bottom: 22px; }
.product-kicker { color: var(--primary); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-badge { border-radius: 999px; background: #e9f0ff; color: var(--primary); padding: 5px 9px; font-size: 9px; font-weight: 800; }
.product-card h3 { margin-bottom: 10px; font-size: 29px; font-weight: 780; }
.product-card > p { min-height: 48px; color: var(--muted); font-size: 13px; }
.product-features { display: grid; gap: 11px; margin: 20px 0 28px; padding: 0; list-style: none; color: #495a76; font-size: 12px; }
.product-features li { display: flex; align-items: center; gap: 9px; }
.product-features li::before { content: "✓"; display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: #e1f7ef; color: var(--success); font-size: 10px; font-weight: 850; }
.price-row { display: flex; align-items: flex-end; gap: 8px; margin-top: auto; margin-bottom: 23px; }
.price { color: var(--ink); font-size: 35px; font-weight: 820; letter-spacing: -.045em; line-height: 1; }
.price small { color: var(--muted); font-size: 12px; font-weight: 550; letter-spacing: 0; }
.product-card .button { width: 100%; }
.product-loading { min-height: 220px; }
.product-disclaimer { max-width: 850px; margin: 22px auto 0; color: #8290a5; text-align: center; font-size: 10px; }

.process-section { background: #f3f6fc; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-card { position: relative; min-height: 320px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 29px; box-shadow: var(--shadow-soft); }
.process-index { position: absolute; top: 25px; right: 27px; color: #b0bed1; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.process-icon { display: grid; width: 48px; height: 48px; margin-bottom: 46px; place-items: center; border-radius: 15px; background: #edf3ff; color: var(--primary); font-weight: 850; }
.process-card:nth-child(2) .process-icon { background: #eefbf8; color: var(--success); }
.process-card:nth-child(3) .process-icon { background: #f3efff; color: var(--purple); }
.process-card h3 { margin-bottom: 10px; font-size: 22px; }
.process-card p { color: var(--muted); font-size: 12px; }
.process-card a { position: absolute; left: 29px; bottom: 27px; color: var(--primary); font-size: 11px; font-weight: 750; }

.safety-section { background: #0d1b36; color: #fff; }
.safety-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 86px; }
.safety-copy h2 { margin-bottom: 20px; color: #fff; font-size: clamp(2.5rem, 4.8vw, 4.5rem); font-weight: 780; line-height: 1.02; }
.safety-copy p { margin-bottom: 28px; color: #aebbd1; }
.safety-copy .button-secondary { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; box-shadow: none; }
.safety-card { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: rgba(255,255,255,.06); box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.safety-card-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.11); padding: 22px 26px; }
.safety-card-head span { color: #91a1bb; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.safety-card-head strong { color: #fff; font-size: 13px; }
.safety-list { margin: 0; padding: 0; list-style: none; }
.safety-list li { display: flex; align-items: center; gap: 18px; padding: 21px 26px; }
.safety-list li + li { border-top: 1px solid rgba(255,255,255,.09); }
.safety-list li > span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 11px; color: #8db0ff; font-size: 9px; font-weight: 850; }
.safety-list strong, .safety-list small { display: block; }
.safety-list strong { color: #fff; font-size: 13px; }
.safety-list small { margin-top: 3px; color: #9facbf; font-size: 10px; }

.guide-section { background: #fff; }
.article-card { display: flex; min-height: 300px; flex-direction: column; padding: 28px; box-shadow: none; }
.article-featured { background: linear-gradient(145deg, #eef4ff, #f7f9ff); border-color: #bcd0f7; }
.article-meta { margin-bottom: 34px; color: #8795aa; font-size: 10px; }
.article-card h3 { margin-bottom: 13px; font-size: 22px; font-weight: 740; line-height: 1.25; }
.article-card p { color: var(--muted); font-size: 12px; }
.article-card .text-link { margin-top: auto; font-size: 11px; }

.faq-section { background: #f3f6fc; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 72px; }
.faq-intro h2 { margin-bottom: 15px; font-size: clamp(2.5rem, 4.5vw, 4.3rem); }
.faq-intro p { margin-bottom: 25px; color: var(--muted); font-size: 13px; }
.faq { overflow: hidden; box-shadow: none; }
.faq details + details { border-top: 1px solid var(--line); }
.faq summary { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; padding: 0 26px; cursor: pointer; color: var(--ink); font-size: 14px; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--primary); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 720px; margin: -3px 26px 26px; color: var(--muted); font-size: 12px; }

.cta { display: flex; align-items: center; justify-content: space-between; gap: 38px; border-radius: 26px; background: linear-gradient(110deg, #1742bd, var(--primary) 55%, #078eaf); color: #fff; padding: 48px 52px; box-shadow: 0 22px 55px rgba(24,67,183,.25); }
.cta-kicker { display: block; margin-bottom: 9px; color: #bcd0ff; font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.cta h2 { margin-bottom: 5px; color: #fff; font-size: clamp(2rem, 4vw, 3.5rem); }
.cta p { margin-bottom: 0; color: #d9e3ff; font-size: 13px; }

.site-footer { border-top: 1px solid var(--line); background: #fff; }
.footer-top { display: flex; justify-content: space-between; gap: 70px; padding-top: 55px; padding-bottom: 48px; }
.footer-brand { align-self: flex-start; }
.footer-columns { display: grid; grid-template-columns: repeat(3, minmax(130px, 1fr)); gap: 65px; }
.footer-columns > div { display: grid; align-content: start; gap: 9px; }
.footer-columns strong { margin-bottom: 5px; color: var(--ink); font-size: 12px; }
.footer-columns a { color: var(--muted); font-size: 11px; }
.footer-qq { width: max-content; border: 0; background: transparent; color: var(--muted); padding: 0; text-align: left; font-size: 11px; }
.footer-qq:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); padding-top: 19px; padding-bottom: 25px; color: #8795aa; font-size: 9px; }
.footer-bottom p { max-width: 760px; margin: 0; }
.mobile-cta { display: none; }

/* Internal pages and forms */
.page-hero { padding: 78px 0 52px; background: linear-gradient(180deg, #fff, var(--bg)); }
.page-hero .page-title { max-width: 820px; margin-bottom: 17px; }
.page-lead { max-width: 720px; color: var(--muted); font-size: 15px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-qq { border: 0; background: transparent; color: var(--primary); padding: 8px; font-size: 11px; font-weight: 720; }
.conversion-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.conversion-chips span { border: 1px solid #cfdcf3; border-radius: 999px; background: rgba(255,255,255,.75); color: #526682; padding: 6px 10px; font-size: 9px; font-weight: 700; }
.order-progress { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; margin-bottom: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-soft); }
.order-progress > div { position: relative; display: grid; grid-template-columns: 35px 1fr; grid-template-rows: auto auto; column-gap: 12px; padding: 19px 22px; }
.order-progress > div + div { border-left: 1px solid var(--line); }
.order-progress span { grid-row: 1 / 3; display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid #d5deec; border-radius: 50%; color: #8795a9; font-size: 10px; font-weight: 800; }
.order-progress strong { color: var(--ink); font-size: 11px; }
.order-progress small { color: var(--muted); font-size: 9px; }
.order-progress .active { background: #f3f7ff; }
.order-progress .active span { border-color: transparent; background: var(--primary); color: #fff; }
.form-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr); align-items: start; gap: 26px; padding-bottom: 105px; }
.order-form-layout { padding-top: 0; }
.tracking-layout { padding-top: 3px; }
.form-card-accent { position: relative; overflow: hidden; border-color: #cad8f2; box-shadow: 0 18px 45px rgba(31,68,130,.1); }
.form-card-accent::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg,var(--primary),var(--cyan)); }
.form-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 27px; }
.form-title-row > div > span { color: var(--primary); font-size: 8px; font-weight: 850; letter-spacing: .15em; }
.form-title-row h2 { margin: 5px 0 0; }
.form-safe { display: inline-flex; align-items: center; gap: 6px; border-radius: 999px; background: #edfaf5; color: var(--success); padding: 6px 9px; font-size: 9px; font-weight: 750; }
.form-safe i { font-style: normal; }
.order-aside { display: grid; gap: 18px; }
.purchase-summary { box-shadow: none; }
.aside-label { display: block; margin-bottom: 8px; color: var(--primary); font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.purchase-summary > p { color: var(--muted); font-size: 11px; }
.qq-card { padding: 24px; background: linear-gradient(145deg,#eef4ff,#fff); border-color: #c5d6f5; }
.qq-card > span { display: block; color: var(--primary); font-size: 9px; font-weight: 750; }
.qq-card > strong { display: block; margin: 4px 0 8px; color: var(--ink); font-size: 18px; }
.qq-card > p { color: var(--muted); font-size: 10px; }
.qq-card .button { width: 100%; min-height: 43px; font-size: 11px; }
.status-guide { display: grid; gap: 0; }
.status-guide > div { position: relative; display: grid; grid-template-columns: 17px 1fr; grid-template-rows: auto auto; column-gap: 10px; padding: 12px 0; }
.status-guide > div + div { border-top: 1px solid var(--line); }
.status-guide i { grid-row: 1 / 3; width: 9px; height: 9px; margin-top: 5px; border: 2px solid #fff; border-radius: 50%; background: #f0ad36; box-shadow: 0 0 0 2px #f4d8a5; }
.status-guide > div:nth-child(2) i { background: var(--primary); box-shadow: 0 0 0 2px #cbd9f7; }
.status-guide > div:nth-child(3) i { background: var(--green); box-shadow: 0 0 0 2px #c6ebdf; }
.status-guide strong { color: var(--ink); font-size: 11px; }
.status-guide small { color: var(--muted); font-size: 9px; }
.simple-footer { border-top: 1px solid var(--line); background: #fff; padding: 21px 0; }
.simple-footer .container { display: flex; justify-content: space-between; gap: 25px; color: #8895a8; font-size: 9px; }
.simple-footer a { color: var(--primary); }
.form-card, .info-card, .result-card { padding: 31px; }
.form-card h2, .info-card h2, .result-card h2 { margin-bottom: 23px; font-size: 22px; font-weight: 760; }
.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { color: var(--ink); font-size: 12px; font-weight: 730; }
.field small, .form-help { color: var(--muted); font-size: 10px; }
.input, .select { width: 100%; min-height: 54px; border: 1px solid var(--line); border-radius: 12px; outline: none; background: #f9fbff; color: var(--text); padding: 0 15px; }
.input:focus, .select:focus { border-color: rgba(36,87,230,.75); background: #fff; box-shadow: 0 0 0 4px rgba(36,87,230,.09); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 23px 0; color: var(--muted); font-size: 10px; }
.consent input { flex: 0 0 auto; margin-top: 4px; }
.consent a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.form-card form > .button { width: 100%; }
.notice { border-left: 3px solid var(--primary); border-radius: 0 12px 12px 0; background: #f2f6ff; padding: 13px 15px; color: #566985; font-size: 11px; }
.check-list { display: grid; align-content: center; gap: 15px; margin: 22px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; }
.check-list li::before { content: "✓"; display: grid; flex: 0 0 19px; width: 19px; height: 19px; place-items: center; margin-top: 1px; border-radius: 50%; background: #e2f7ef; color: var(--success); font-size: 9px; font-weight: 850; }
.error-box, .success-box { margin-top: 17px; border-radius: 12px; padding: 13px 15px; font-size: 11px; }
.error-box { border: 1px solid #f0bfc4; background: #fff3f4; color: var(--danger); }
.success-box { border: 1px solid #afe0cf; background: #effaf6; color: var(--success); }
.hidden { display: none !important; }
.status-list { display: grid; gap: 12px; margin: 22px 0; }
.status-row { display: flex; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); padding-bottom: 12px; color: var(--muted); font-size: 11px; }
.status-row strong { color: var(--ink); text-align: right; }

/* Guides, legal and long-form content */
.prose-wrap { display: grid; grid-template-columns: minmax(0, 780px) minmax(220px, 1fr); align-items: start; gap: 68px; padding-bottom: 115px; }
.prose { color: #40506a; font-size: 15px; }
.prose h2 { margin: 59px 0 18px; color: var(--ink); font-size: 29px; font-weight: 760; line-height: 1.2; }
.prose h3 { margin: 34px 0 13px; color: var(--ink); font-size: 20px; font-weight: 730; }
.prose p, .prose ul, .prose ol { margin-bottom: 20px; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 4px; }
.prose strong { color: var(--ink); }
.prose table { width: 100%; margin: 26px 0; border-collapse: collapse; font-size: 12px; }
.prose th, .prose td { border-bottom: 1px solid var(--line); padding: 14px 11px; text-align: left; vertical-align: top; }
.prose th { color: var(--ink); }
.callout { margin: 28px 0; border: 1px solid #cbd9f2; border-radius: 18px; background: #f3f7ff; padding: 22px; }
.callout p:last-child { margin-bottom: 0; }
.toc { position: sticky; top: 96px; padding: 21px; box-shadow: none; }
.toc strong { display: block; margin-bottom: 12px; color: var(--ink); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.toc a { display: block; padding: 6px 0; color: var(--muted); font-size: 10px; }
.toc a:hover { color: var(--primary); }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 72px; right: 20px; left: 20px; display: none; align-items: stretch; flex-direction: column; gap: 3px; border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 11px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { border-radius: 11px; padding: 10px 12px; }
  .nav-links a:hover { background: var(--surface-soft); }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-content { max-width: 760px; }
  .hero-panel { max-width: 660px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .safety-grid, .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .safety-copy { max-width: 720px; }
  .footer-top { flex-direction: column; }
}

@media (max-width: 760px) {
  .grid-3, .process-grid, .form-layout, .prose-wrap { grid-template-columns: 1fr; }
  .prose-wrap { gap: 28px; }
  .toc { position: static; order: -1; }
  .section-header { align-items: flex-start; flex-direction: column; }
  .footer-columns { width: 100%; gap: 30px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .announcement { font-size: 9px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 11px; }
  .hero { padding: 64px 0 62px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.2rem); }
  .hero-copy { font-size: 14px; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 11px 15px; }
  .hero-contact { align-items: flex-start; flex-direction: column; }
  .hero-panel { padding: 21px; border-radius: 21px; }
  .hero-panel-top { flex-direction: column; }
  .trust-grid, .grid-2 { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .section { padding: 78px 0; }
  .section-compact { padding: 54px 0 84px; }
  .section-header h2, .page-title { font-size: clamp(2.1rem, 10vw, 3rem); }
  .product-card, .process-card, .article-card, .form-card, .info-card, .result-card { padding: 23px; }
  .process-card { min-height: 290px; }
  .safety-list li { align-items: flex-start; padding: 18px; }
  .cta { align-items: flex-start; flex-direction: column; padding: 30px; }
  .cta .actions, .cta .button { width: 100%; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 57px 0 38px; }
  .header-qq { display: none; }
  .order-progress { grid-template-columns: 1fr; }
  .order-progress > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .simple-footer .container { flex-direction: column; gap: 8px; }
  .prose { font-size: 14px; }
  .prose table { display: block; overflow-x: auto; }
  .mobile-cta { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 50; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.94); padding: 8px; box-shadow: 0 12px 35px rgba(20,45,90,.2); backdrop-filter: blur(14px); }
  .mobile-cta a, .mobile-cta button { display: grid; min-height: 44px; place-items: center; border: 0; border-radius: 10px; background: transparent; color: var(--ink); font-size: 12px; font-weight: 750; }
  .mobile-cta a:last-child { background: linear-gradient(110deg, var(--primary), var(--cyan)); color: #fff; }
  body:has(.form-layout) .mobile-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
