:root {
  --navy-950: #071d2f;
  --navy-900: #0b2f4f;
  --navy-800: #10466f;
  --blue-700: #1b6598;
  --blue-600: #2370a2;
  --blue-500: #2b86c1;
  --blue-100: #dff2ff;
  --blue-050: #f2f9fd;
  --gold-500: #b89a3d;
  --ink: #17202a;
  --text: #354451;
  --muted: #667684;
  --line: #dbe5ec;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --success: #257755;
  --shadow-sm: 0 10px 30px rgba(7, 29, 47, 0.08);
  --shadow-lg: 0 24px 70px rgba(7, 29, 47, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }
button, a { -webkit-tap-highlight-color: transparent; }
address { font-style: normal; }

h1, h2, h3 {
  margin: 0 0 0.65em;
  color: var(--ink);
  line-height: 1.13;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.7rem, 6vw, 5.2rem); max-width: 850px; }
h2 { font-size: clamp(2rem, 3.6vw, 3.35rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
ul, ol { margin-top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 125px) 0; }
.section-soft { background: var(--surface-soft); }
.section-kicker, .eyebrow {
  margin: 0 0 14px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section-kicker.light { color: #a9dcff; }
.section-heading { max-width: 800px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.narrow { max-width: 720px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.prose p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy-950);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(7, 29, 47, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { display: block; width: 200px; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a:focus-visible { color: #fff; }
.main-nav .nav-cta {
  padding: 10px 17px;
  color: #fff;
  background: var(--blue-600);
  border-radius: 999px;
}
.nav-toggle { display: none; }
.back-link { color: #fff; font-weight: 700; text-decoration: none; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(82px, 10vw, 145px) 0 clamp(90px, 11vw, 155px);
  color: #fff;
  background:
    linear-gradient(125deg, rgba(7, 29, 47, 0.98), rgba(11, 47, 79, 0.96)),
    radial-gradient(circle at 80% 10%, rgba(43, 134, 193, 0.25), transparent 50%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -5% -115px auto;
  width: 56%;
  height: 230px;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.035);
  transform: rotate(-6deg);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(4px); }
.hero-glow-one { top: -180px; right: -140px; width: 500px; height: 500px; background: rgba(43, 134, 193, 0.18); }
.hero-glow-two { bottom: -220px; left: 18%; width: 430px; height: 430px; background: rgba(184, 154, 61, 0.1); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.72fr); gap: clamp(45px, 7vw, 90px); align-items: center; }
.hero h1 { color: #fff; }
.hero-lead { max-width: 770px; margin: 22px 0 32px; color: rgba(255, 255, 255, 0.82); font-size: clamp(1.1rem, 1.6vw, 1.34rem); line-height: 1.6; }
.eyebrow { color: #9ed8ff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 31px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue-500); box-shadow: 0 13px 28px rgba(43, 134, 193, 0.25); }
.button-primary:hover { color: #fff; background: #3493cf; }
.button-secondary, .button-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.06); }
.button-secondary:hover, .button-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.13); }
.button-light { color: var(--navy-950); background: #fff; }
.button-light:hover { color: var(--navy-950); background: #eaf6ff; }
.button-outline { color: var(--navy-900); border-color: #b6c8d5; background: transparent; }
.button-outline:hover { color: var(--navy-900); border-color: var(--blue-500); background: var(--blue-050); }
.hero-checks { display: flex; flex-wrap: wrap; gap: 11px 22px; margin: 0; padding: 0; list-style: none; color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; }
.hero-checks li::before { content: "✓"; margin-right: 7px; color: #7ed3ae; font-weight: 900; }

.hero-card {
  position: relative;
  padding: clamp(27px, 4vw, 39px);
  color: var(--text);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-card h2 { font-size: clamp(1.55rem, 2.2vw, 2.05rem); }
.hero-card-badge {
  display: inline-block;
  margin-bottom: 17px;
  padding: 6px 10px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-steps { display: grid; gap: 18px; margin: 27px 0 30px; padding: 0; list-style: none; }
.mini-steps li { display: flex; align-items: center; gap: 14px; }
.mini-steps li > span { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--blue-600); border-radius: 50%; font-weight: 900; }
.mini-steps strong, .mini-steps small { display: block; }
.mini-steps strong { color: var(--ink); line-height: 1.3; }
.mini-steps small { margin-top: 2px; color: var(--muted); }
.hero-card-price { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid var(--line); }
.hero-card-price span { color: var(--muted); font-size: 0.9rem; }
.hero-card-price strong { color: var(--navy-900); font-size: 1.55rem; }

.trust-strip { position: relative; z-index: 2; margin-top: -38px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 25px 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.trust-grid > div { padding: 5px 24px; text-align: center; border-right: 1px solid var(--line); }
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong { display: block; color: var(--navy-900); font-size: 1.55rem; line-height: 1.2; }
.trust-grid span { display: block; margin-top: 5px; color: var(--muted); font-size: 0.83rem; }

.intro-section { padding-top: clamp(100px, 11vw, 150px); }
.split-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(40px, 8vw, 110px); align-items: start; }

.process-visual { max-width: 760px; margin: 0 auto 45px; padding: 18px 30px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.cards { display: grid; gap: 22px; }
.three-cards { grid-template-columns: repeat(3, 1fr); }
.card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: 0 6px 22px rgba(7, 29, 47, 0.04); }
.step-card { position: relative; overflow: hidden; }
.step-card::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: var(--blue-500); }
.step-number { display: block; margin-bottom: 24px; color: var(--blue-500); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.1em; }
.step-card p { color: var(--muted); }
.text-link { font-weight: 800; text-decoration: none; }

.feature-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; }
.feature-panel { padding: clamp(34px, 5vw, 57px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.feature-panel-dark { color: rgba(255, 255, 255, 0.8); background: linear-gradient(145deg, var(--navy-950), var(--navy-800)); border-color: transparent; }
.feature-panel-dark h2 { color: #fff; }
.check-list { display: grid; gap: 10px; margin: 25px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--success); font-weight: 900; }
.check-list-light li::before { color: #7ed3ae; }
.address-box { margin: 31px 0 19px; padding: 24px; background: var(--blue-050); border-left: 4px solid var(--blue-500); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.address-box span, .address-box strong { display: block; }
.address-box span { margin-bottom: 6px; color: var(--muted); font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.address-box strong { color: var(--ink); }
.small-note { color: var(--muted); font-size: 0.9rem; }

.price-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(35px, 7vw, 90px); align-items: center; }
.price-copy p { max-width: 520px; }
.price-card { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.price-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 30px 34px; color: #fff; background: linear-gradient(120deg, var(--navy-900), var(--blue-700)); }
.price-card-head span, .price-card-head strong { display: block; }
.price-card-head > div > span { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }
.price-card-head strong { margin-top: 3px; font-size: clamp(2rem, 4vw, 3rem); }
.price-pill { padding: 7px 10px; color: var(--navy-950) !important; background: #fff; border-radius: 999px; font-size: 0.72rem !important; font-weight: 850; white-space: nowrap; }
.price-includes { padding: 29px 34px 12px; }
.price-includes h3 { margin-bottom: 13px; }
.price-includes .check-list { margin: 0; }
.surcharges { margin: 17px 34px 0; border-top: 1px solid var(--line); }
.surcharges div { display: flex; justify-content: space-between; gap: 20px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.surcharges strong { color: var(--navy-900); white-space: nowrap; }
.price-footnote { margin: 0; padding: 18px 34px 28px; color: var(--muted); font-size: 0.83rem; }

.benefit-grid { grid-template-columns: repeat(3, 1fr); }
.benefit-card { min-height: 250px; }
.benefit-card p { color: var(--muted); }
.icon-badge { display: grid; width: 49px; height: 49px; margin-bottom: 24px; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 14px; font-size: 0.86rem; font-weight: 900; }

.person-section { padding-top: 15px; }
.person-card { display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center; padding: clamp(30px, 5vw, 55px); background: var(--surface-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.person-image img { display: block; width: 88px; height: 88px; object-fit: cover; border: 4px solid #fff; border-radius: 50%; box-shadow: var(--shadow-sm); image-rendering: auto; }
.person-copy h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.person-copy p { margin-bottom: 12px; }
.person-copy blockquote { margin: 15px 0 0; color: var(--navy-900); font-weight: 750; }
.person-contact { display: grid; gap: 8px; min-width: 190px; }
.person-contact a { font-weight: 800; text-decoration: none; }

.faq-layout { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(35px, 7vw, 85px); align-items: start; }
.faq-intro { position: sticky; top: 115px; }
.faq-intro .button { margin-top: 15px; }
.faq-list { display: grid; gap: 13px; }
details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
summary { position: relative; padding: 20px 55px 20px 22px; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; top: 50%; right: 21px; display: grid; width: 26px; height: 26px; place-items: center; color: var(--blue-700); background: var(--blue-100); border-radius: 50%; transform: translateY(-50%); }
details[open] summary::after { content: "–"; }
details > div { padding: 0 22px 20px; color: var(--muted); }
details > div p { margin: 0; }

.cta-section { padding: 35px 0 clamp(78px, 9vw, 120px); background: var(--surface-soft); }
.cta-card { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: clamp(35px, 6vw, 65px); color: rgba(255, 255, 255, 0.8); background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.cta-card h2 { max-width: 700px; color: #fff; }
.cta-card p:last-child { margin-bottom: 0; }
.cta-actions { display: grid; gap: 12px; min-width: 230px; }

.site-footer { padding: 70px 0 20px; color: rgba(255, 255, 255, 0.7); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr; gap: 40px; }
.footer-grid h2 { color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-grid a { color: rgba(255, 255, 255, 0.76); text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-grid ul { margin: 0; padding: 0; list-style: none; }
.footer-grid li { margin-bottom: 7px; }
.footer-brand img { width: 200px; }
.footer-brand p { max-width: 300px; margin-top: 15px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255, 255, 255, 0.76); }
.mobile-cta { display: none; }

.legal-main { min-height: 70vh; padding: 80px 0 110px; background: var(--surface-soft); }
.legal-container { max-width: 880px; padding: clamp(28px, 5vw, 65px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.legal-container h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.legal-container section { padding: 30px 0 8px; border-top: 1px solid var(--line); }
.legal-container section:first-of-type { margin-top: 35px; }
.legal-container h2 { font-size: 1.45rem; }
.legal-lead { font-size: 1.12rem; }
.legal-footer { padding-top: 10px; }
.legal-footer .footer-bottom { margin-top: 0; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: #fff; background: var(--navy-950); }
.error-card { max-width: 680px; padding: 50px; text-align: center; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: var(--radius-lg); }
.error-card h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); }
.error-code { margin: 30px 0 5px; color: #9ed8ff; font-size: 1.2rem; font-weight: 900; letter-spacing: 0.15em; }

@media (max-width: 980px) {
  body { font-size: 16px; }
  .main-nav { gap: 17px; }
  .main-nav a { font-size: 0.86rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 620px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
  .trust-grid > div:nth-child(n+3) { padding-top: 18px; }
  .three-cards, .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid, .price-layout, .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .person-card { grid-template-columns: auto 1fr; }
  .person-contact { grid-column: 2; }
  .cta-card { align-items: flex-start; flex-direction: column; }
  .cta-actions { display: flex; flex-wrap: wrap; min-width: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 75px; }
  body { padding-bottom: 62px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 176px; }
  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    place-content: center;
    gap: 5px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9px;
    cursor: pointer;
  }
  .nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 5px; transition: transform 160ms ease, opacity 160ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 20px;
    background: var(--navy-950);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 6px; font-size: 1rem; }
  .main-nav .nav-cta { margin-top: 8px; padding: 12px 16px; text-align: center; }
  .hero { padding-top: 68px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-checks { display: grid; gap: 9px; }
  .hero-card { border-radius: var(--radius-md); }
  .trust-strip { margin-top: -28px; }
  .trust-grid { padding: 18px 12px; }
  .trust-grid > div { padding-inline: 10px; }
  .trust-grid strong { font-size: 1.25rem; }
  .trust-grid span { font-size: 0.72rem; }
  .split-grid, .three-cards, .benefit-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .intro-section { padding-top: 100px; }
  .process-visual { display: none; }
  .feature-panel, .price-card-head, .price-includes, .legal-container { padding-left: 24px; padding-right: 24px; }
  .price-card-head { align-items: flex-start; flex-direction: column; }
  .price-pill { align-self: flex-start; }
  .surcharges { margin-inline: 24px; }
  .price-footnote { padding-inline: 24px; }
  .person-card { grid-template-columns: 1fr; text-align: center; }
  .person-image { justify-self: center; }
  .person-contact { grid-column: auto; }
  .cta-actions { width: 100%; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-cta {
    position: fixed;
    z-index: 150;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1px;
    padding: 7px;
    background: rgba(7, 29, 47, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a { padding: 10px; color: #fff; background: rgba(255, 255, 255, 0.08); border-radius: 8px; font-size: 0.86rem; font-weight: 850; text-align: center; text-decoration: none; }
  .mobile-cta a:last-child { background: var(--blue-600); }
  .back-link { font-size: 0.9rem; }
  .legal-main { padding: 35px 0 65px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}


/* Ergänzungen für onlinesteuererklärung.ch */
.brand-text {
  display: grid;
  gap: 1px;
  color: #fff;
  text-decoration: none;
  line-height: 1.05;
}
.brand-text:hover { color: #fff; }
.brand-title {
  color: #fff;
  font-size: clamp(1.02rem, 2vw, 1.35rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}
.brand-subtitle {
  color: rgba(255,255,255,.63);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.digital-process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin: 0 0 44px;
}
.digital-process article {
  min-height: 165px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 23px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.digital-process article span {
  color: var(--blue-600);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
}
.digital-process article strong { color: var(--ink); font-size: 1.05rem; }
.digital-process article small { color: var(--muted); line-height: 1.45; }
.digital-process > div { color: var(--blue-500); font-size: 1.5rem; font-weight: 900; }
.paper-panel {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.paper-panel .button { margin-top: auto; }
.paper-panel .small-note { margin: 16px 0 0; }
.footer-site-name {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -.02em;
}
.footer-brand img { display: block; }

@media (max-width: 980px) {
  .digital-process { grid-template-columns: repeat(2, 1fr); }
  .digital-process > div { display: none; }
}
@media (max-width: 760px) {
  .brand-title { font-size: .98rem; }
  .brand-subtitle { font-size: .56rem; }
  .digital-process { grid-template-columns: 1fr; }
}
