
:root {
  --bg: #f5f7fb;
  --paper: #ffffff;
  --paper-2: #f9fbff;
  --line: #d8e0ef;
  --line-soft: rgba(17, 24, 39, 0.08);
  --text: #0f172a;
  --muted: #5b6474;
  --accent: #3563ff;
  --accent-2: #7c3aed;
  --accent-soft: rgba(53, 99, 255, 0.1);
  --good: #0f9f6e;
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 35%),
    radial-gradient(circle at top right, rgba(53, 99, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #f8faff 0%, #f5f7fb 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin: 0 auto; }
.site-shell { min-height: 100vh; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(245, 247, 251, 0.78);
  border-bottom: 1px solid rgba(216, 224, 239, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand { display: inline-flex; flex-direction: column; gap: 2px; }
.brand__logo { font-size: 1.12rem; font-weight: 900; letter-spacing: -0.03em; }
.brand__meta { font-size: 0.8rem; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.nav a { font-size: 0.94rem; color: var(--muted); }
.nav a:hover { color: var(--text); }

.hero {
  padding: 72px 0 32px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}
.hero__content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 12ch;
}
.hero__lead {
  margin: 22px 0 0;
  max-width: 62ch;
  font-size: 1.08rem;
  color: #304055;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow--dark {
  background: rgba(15, 23, 42, 0.06);
  color: #263143;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}
.hero__chips span,
.b2b-box__items span,
.pill,
.deal-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(53, 99, 255, 0.14);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: #24324a;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero__micro {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 60ch;
}
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.floating-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(216, 224, 239, 0.9);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(27, 44, 94, 0.16);
  padding: 26px;
}
.quote-card {
  max-width: 460px;
  margin-left: auto;
}
.quote-card::before,
.quote-card::after {
  content: '';
  position: absolute;
  inset: auto auto 24px -24px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(124,58,237,0.16), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.quote-card::after {
  inset: -28px -10px auto auto;
  background: radial-gradient(circle, rgba(53,99,255,0.18), transparent 70%);
}
.quote-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.quote-card__label { font-size: 0.82rem; color: var(--muted); }
.quote-card__title { margin-top: 4px; font-weight: 800; font-size: 1.16rem; }
.quote-lines { display: grid; gap: 14px; margin-top: 22px; }
.quote-lines div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245,247,251,1), rgba(255,255,255,1));
  border: 1px solid rgba(216,224,239,0.85);
}
.quote-lines span { color: var(--muted); font-size: 0.92rem; }
.quote-lines strong { font-size: 0.96rem; text-align: right; }
.quote-card__footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 224, 239, 0.85);
  color: #334155;
  font-weight: 600;
}
.deal-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 460px;
  justify-content: flex-end;
  margin-left: auto;
}
.deal-badge {
  background: rgba(255,255,255,0.86);
  border-color: rgba(124, 58, 237, 0.14);
}
.pill--soft {
  background: rgba(53, 99, 255, 0.12);
  color: var(--accent);
}

.section { padding: 78px 0; }
.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.56));
  border-top: 1px solid rgba(216, 224, 239, 0.8);
  border-bottom: 1px solid rgba(216, 224, 239, 0.8);
}
.section--b2b { padding-top: 56px; padding-bottom: 56px; }
.section--quote { padding-top: 66px; }
.section__head { margin-bottom: 28px; }
.section__head--center { text-align: center; }
.section__head h2,
.subpage h1,
.prose h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section__head p,
.page-lead,
.trust-copy,
.prose p,
.prose li { color: var(--muted); }
.section__footer-link { margin-top: 18px; text-align: center; font-weight: 700; color: var(--accent); }

.grid {
  display: grid;
  gap: 18px;
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card,
.info-card,
.trust-card,
.step-card,
.limit-card,
.quote-form-card,
.b2b-box__items,
.info-card--plain {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(216,224,239,0.9);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
.feature-card,
.info-card,
.trust-card,
.step-card,
.info-card--plain { padding: 24px; }
.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(53,99,255,0.14), rgba(124,58,237,0.16));
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.feature-card h3,
.info-card h3,
.trust-card h3,
.step-card h3,
.info-card--plain h2,
.quote-section__intro h2,
.b2b-banner h2 {
  margin: 0 0 10px;
  font-size: 1.24rem;
  line-height: 1.15;
}
.feature-card p,
.info-card p,
.trust-card p,
.step-card p,
.info-card--plain p,
.info-card--plain li,
.quote-section__intro p,
.b2b-banner p,
.limit-card p { color: #465468; }
.disclaimer-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(53,99,255,0.10), rgba(124,58,237,0.08));
  border: 1px solid rgba(53,99,255,0.16);
  color: #273246;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step-card__num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 18px;
}
.trust-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.b2b-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(240,245,255,0.84));
  border: 1px solid rgba(216,224,239,0.9);
  box-shadow: var(--shadow-lg);
}
.check-list,
.text-list {
  margin: 0;
  padding-left: 20px;
}
.check-list li,
.text-list li { margin: 8px 0; }
.b2b-box__items {
  padding: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  box-shadow: none;
}
.b2b-banner__box {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,248,252,0.96));
  border: 1px solid rgba(216,224,239,0.92);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow-md);
}
.b2b-box__title { font-weight: 700; margin-bottom: 16px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { min-height: 42px; padding-inline: 16px; font-size: 0.94rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 30px rgba(53, 99, 255, 0.22);
}
.btn--ghost {
  background: rgba(255,255,255,0.72);
  border-color: rgba(216,224,239,0.95);
  color: #24324a;
}
.btn--full { width: 100%; }
.limit-card {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(216,224,239,0.9);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { margin: 12px 0 0; color: var(--muted); }
.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.quote-form-card { padding: 24px; }
.quote-form {
  display: grid;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field span {
  color: #425066;
  font-size: 0.88rem;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(216,224,239,0.95);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(249,251,255,0.9);
  transition: 180ms ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(53,99,255,0.55);
  box-shadow: 0 0 0 4px rgba(53,99,255,0.10);
}
.form-grid { gap: 14px; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.form__result { display: none; }
.result-box {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed rgba(216,224,239,0.95);
}
.contact-box {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(245,247,251,0.92);
  border: 1px solid rgba(216,224,239,0.92);
  color: #314055;
}
.quote-footnote { margin: 14px 0 0; color: var(--muted); font-size: 0.92rem; }
.footer {
  padding: 30px 0 20px;
  border-top: 1px solid rgba(216,224,239,0.9);
  background: rgba(255,255,255,0.72);
  margin-top: 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 18px;
}
.footer__brand { font-weight: 900; font-size: 1.06rem; margin-bottom: 8px; }
.footer__text { color: var(--muted); margin: 0; }
.footer__title { font-weight: 700; margin-bottom: 10px; }
.footer__links { display: grid; gap: 8px; color: #334155; }
.footer__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(216,224,239,0.7);
  color: var(--muted);
  font-size: 0.92rem;
}
.subpage .section { padding-top: 64px; }
.prose ul { padding-left: 20px; }
.stack-cards { display: grid; gap: 16px; }

@media (max-width: 1080px) {
  .hero__grid,
  .trust-layout,
  .quote-section,
  .b2b-banner,
  .footer__grid,
  .grid--4,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__content h1 { max-width: 14ch; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .hero__grid,
  .trust-layout,
  .quote-section,
  .b2b-banner,
  .footer__grid,
  .grid--4,
  .grid--3,
  .grid--2,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .hero__visual { align-items: stretch; }
  .quote-card { margin: 0; }
  .deal-cloud { justify-content: flex-start; max-width: none; margin-left: 0; }
  .limit-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 24px, var(--max)); }
  .hero { padding-top: 48px; }
  .section { padding: 56px 0; }
  .hero__actions,
  .form-actions { flex-direction: column; }
  .btn, .btn--small { width: 100%; }
  .hero__chips span,
  .deal-badge,
  .b2b-box__items span,
  .pill { padding: 9px 12px; font-size: 0.84rem; }
  .floating-card, .quote-form-card, .b2b-banner__box, .feature-card, .info-card, .trust-card, .step-card, .faq-item { padding: 20px; }
}

/* v09 simplification */
.hero--clean .hero__content h1 { max-width: 11ch; }
.hero__visual--poster { align-items: stretch; }
.hero-poster {
  max-width: 440px;
  margin-left: auto;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(216,224,239,0.95);
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(27, 44, 94, 0.14);
  padding: 24px;
}
.hero-poster__flag {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 180px;
  background: #fff;
  border: 1px solid rgba(216,224,239,0.9);
  margin-bottom: 18px;
}
.hero-poster__flag span {
  display: block;
  height: calc(100% / 7);
  background: linear-gradient(90deg, #d62839 0%, #e14959 100%);
}
.hero-poster__flag span:nth-child(even) {
  background: linear-gradient(90deg, #ffffff 0%, #f4f7fb 100%);
}
.hero-poster__canton {
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 58%;
  background: linear-gradient(135deg, #2048b8 0%, #14348e 100%);
  border-bottom-right-radius: 14px;
}
.hero-poster__canton::before {
  content: '★ ★ ★\A★ ★ ★\A★ ★ ★';
  white-space: pre;
  position: absolute;
  inset: 18px 0 0 18px;
  color: rgba(255,255,255,0.95);
  font-size: 0.92rem;
  line-height: 1.6;
  letter-spacing: 4px;
}
.hero-poster__route {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(53,99,255,0.10);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
}
.hero-poster h3 {
  margin: 16px 0 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}
.hero-poster__list {
  margin: 0;
  padding-left: 20px;
  color: #344255;
}
.hero-poster__list li { margin: 8px 0; }
.b2b-banner--simple p { max-width: 56ch; }
@media (max-width: 860px) {
  .hero-poster { margin-left: 0; max-width: none; }
}
