:root {
  --bg: #f6f8f9;
  --surface: #ffffff;
  --surface-soft: #eef5f7;
  --text: #172a33;
  --muted: #58676f;
  --primary: #176b87;
  --primary-dark: #0f4253;
  --primary-soft: #d8eef3;
  --accent: #b84a2b;
  --accent-soft: #f7dfd6;
  --sand: #f3eadc;
  --sand-deep: #e7d3b7;
  --river: #d5edf0;
  --river-deep: #9bc9d2;
  --meadow: #dfead2;
  --slate-soft: #e8edf0;
  --gold-soft: #f6e9bd;
  --berry-soft: #f1dbe0;
  --line: #d8e2e6;
  --shadow: 0 18px 42px rgba(23, 42, 51, 0.1);
  --shadow-soft: 0 10px 24px rgba(23, 42, 51, 0.07);
  --radius: 22px;
  --max: 1120px;
  --container-gutter: clamp(32px, 8vw, 80px);
  --section-y: clamp(56px, 8vw, 96px);
  --grid-gap: clamp(18px, 3vw, 28px);
  --panel-pad: clamp(22px, 4vw, 42px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 0.35vw + 15.75px, 19px);
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(circle at 9% 12%, rgba(184, 74, 43, 0.08), transparent 230px),
    linear-gradient(180deg, #ffffff 0, var(--bg) 420px),
    var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary-dark); text-underline-offset: 0.2em; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 4px solid rgba(184, 74, 43, 0.42);
  outline-offset: 4px;
}

h1, h2, h3 { line-height: 1.12; margin: 0 0 0.7rem; }
h1 { font-size: clamp(2.25rem, 1.45rem + 4vw, 4.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(1.75rem, 1.35rem + 2vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1rem; }

.container { width: min(calc(100% - var(--container-gutter)), var(--max)); margin: 0 auto; }
.narrow { max-width: 820px; }
.section { padding: var(--section-y) 0; }
.soft { background: linear-gradient(180deg, #f7fafb 0%, #eef5f7 45%, #f7fafb 100%); }
.section-intro { max-width: 780px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--primary-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.site-header.compact { position: static; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 168px; }

.nav-toggle, .language-toggle {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  color: var(--text);
  padding: 9px 15px;
  font: inherit;
}

.main-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 76px;
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.main-nav.is-open { display: flex; }
.main-nav a, .language-toggle, .text-button {
  font: inherit;
  color: var(--text);
  background: transparent;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 8px;
}
.main-nav a:hover { color: var(--primary); text-decoration: underline; }
.language-toggle { border: 1px solid var(--line); padding: 8px 14px; background: var(--surface); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 9vw, 110px);
  background:
    radial-gradient(ellipse at 84% 22%, rgba(23, 107, 135, 0.14), transparent 34rem),
    radial-gradient(ellipse at 18% 84%, rgba(184, 74, 43, 0.1), transparent 30rem),
    radial-gradient(ellipse at 52% 12%, rgba(213, 237, 240, 0.6), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 62%, #f4f8f9 100%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(244, 248, 249, 0), #f7fafb);
  pointer-events: none;
}
.hero-grid { display: grid; gap: clamp(28px, 5vw, 52px); align-items: center; position: relative; z-index: 1; }
.eyebrow { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.9rem; }
.lead { font-size: clamp(1.08rem, 1rem + 0.7vw, 1.35rem); color: var(--muted); }

.region-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.98rem;
}
.region-points > span {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: default;
}

.local-note {
  width: fit-content;
  max-width: 720px;
  margin: 20px 0 0;
  padding: 12px 16px;
  border-left: 5px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(90deg, var(--sand), rgba(243, 234, 220, 0.34));
  color: var(--primary-dark);
  font-weight: 700;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  font: inherit;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.button.primary { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(23, 107, 135, 0.2); }
.button.primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.button.secondary { background: var(--sand); color: #6e321f; border-color: rgba(184, 74, 43, 0.2); box-shadow: 0 10px 20px rgba(184, 74, 43, 0.12); }
.button.secondary:hover { background: var(--accent-soft); border-color: var(--accent); color: #6e321f; transform: translateY(-1px); }
.button.download { background: var(--primary-soft); color: var(--primary-dark); border-color: rgba(23, 107, 135, 0.22); box-shadow: 0 10px 20px rgba(23, 107, 135, 0.1); }
.button.download:hover { background: var(--river); border-color: var(--primary); color: var(--primary-dark); transform: translateY(-1px); }

.trust-card, .highlight-box, .price-panel, .contact-card, .text-panel, .trust-panel, .limit-panel, .faq-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust-card {
  padding: 18px;
  border-top: 5px solid var(--primary);
  background:
    linear-gradient(135deg, rgba(23, 107, 135, 0.08), rgba(255, 255, 255, 0) 44%),
    var(--surface);
}
.trust-card picture img { border-radius: 16px; aspect-ratio: 1; object-fit: cover; background: var(--surface-soft); }
.trust-card div { padding: 18px 4px 4px; }
.trust-card strong { font-size: 1.35rem; }

.feature-grid, .cards, .story-grid { display: grid; gap: var(--grid-gap); }
.feature, .card, .story {
  padding: clamp(20px, 3vw, 26px);
  position: relative;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.feature h3, .card h3, .story h3 { color: var(--primary-dark); }
.card p, .feature p, .story p { color: var(--muted); }
.feature, .card, .story, .trust-card, .highlight-box, .price-panel, .text-panel, .trust-panel, .limit-panel, .faq-panel { cursor: default; }

.feature {
  min-height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f9fcfd);
}
.feature-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.feature:nth-child(2) {
  background: linear-gradient(180deg, var(--river), #ffffff 78%);
  border-color: rgba(23, 107, 135, 0.25);
}
.feature:nth-child(2) .feature-kicker { background: var(--accent); }
.feature:nth-child(4) {
  background: linear-gradient(180deg, var(--sand), #ffffff 78%);
  border-color: rgba(184, 74, 43, 0.24);
}

.card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--primary);
}

.card {
  overflow: hidden;
  border-radius: 10px 28px 28px 28px;
  background: var(--surface);
}
.card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(23, 107, 135, 0.08);
}
.card > * { position: relative; z-index: 1; }
.card-river {
  background: linear-gradient(145deg, #ffffff 0 48%, var(--river) 100%);
}
.card-lined {
  background:
    linear-gradient(90deg, rgba(23, 107, 135, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff, #fbfdfe);
  background-size: 28px 100%, auto;
}
.card-warm {
  border-color: rgba(184, 74, 43, 0.22);
  background: linear-gradient(145deg, #ffffff 0 50%, var(--accent-soft) 100%);
}
.card-warm::before { background: var(--accent); }
.card-warm::after { background: rgba(184, 74, 43, 0.09); }

.everyday-section {
  background:
    linear-gradient(90deg, rgba(23, 107, 135, 0.045) 1px, transparent 1px),
    radial-gradient(ellipse at 78% 46%, rgba(213, 237, 240, 0.55), transparent 34rem),
    linear-gradient(180deg, #f7fafb 0%, #ffffff 45%, #f7fafb 100%);
  background-size: 32px 100%, auto, auto;
}
.everyday-section .text-panel {
  border-top: 0;
  border-left: 6px solid var(--river-deep);
  background:
    radial-gradient(circle at 96% 12%, rgba(23, 107, 135, 0.11), transparent 220px),
    linear-gradient(135deg, #ffffff 0%, #fbfdfe 56%, var(--river) 100%);
}

.audience-section {
  background:
    radial-gradient(ellipse at 15% 42%, rgba(184, 74, 43, 0.11), transparent 30rem),
    radial-gradient(ellipse at 92% 78%, rgba(23, 107, 135, 0.06), transparent 28rem),
    linear-gradient(180deg, #f7fafb 0%, #fff8ee 48%, #f7fafb 100%);
}
.audience-panel {
  position: relative;
  overflow: hidden;
  padding: var(--panel-pad);
  border: 1px solid rgba(184, 74, 43, 0.16);
  border-radius: 34px 18px 34px 18px;
  background:
    linear-gradient(90deg, rgba(184, 74, 43, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 248, 0.94));
  background-size: 42px 100%, auto;
  box-shadow: var(--shadow-soft);
}
.audience-panel::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 28px solid rgba(23, 107, 135, 0.08);
}
.audience-panel > * { position: relative; z-index: 1; }
.audience-cards { margin-top: 28px; }
.audience-card {
  display: grid;
  gap: 8px;
  padding-left: clamp(24px, 3vw, 32px);
  border-radius: 28px 28px 28px 8px;
  border-color: rgba(184, 74, 43, 0.18);
  background: rgba(255, 255, 255, 0.84);
}
.audience-card::before {
  width: 58px;
  height: 58px;
  margin-bottom: 4px;
  border-radius: 50% 50% 50% 10px;
  background: var(--audience-mark, var(--sand-deep));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.56);
}
.audience-card::after {
  right: auto;
  left: -34px;
  bottom: -34px;
  background: rgba(184, 74, 43, 0.07);
}
.audience-card-calm { --audience-mark: var(--river-deep); }
.audience-card-family { --audience-mark: var(--meadow); }
.audience-card-safety { --audience-mark: var(--accent-soft); }

.services-section {
  background:
    radial-gradient(ellipse at 88% 30%, rgba(23, 107, 135, 0.12), transparent 32rem),
    radial-gradient(ellipse at 14% 16%, rgba(184, 74, 43, 0.045), transparent 24rem),
    linear-gradient(180deg, #f7fafb 0%, #edf6f8 48%, #f7fafb 100%);
}
.services-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.service-cards { align-items: stretch; }
.service-card {
  --service-color: var(--primary);
  --service-soft: var(--primary-soft);
  min-height: 100%;
  padding-top: clamp(22px, 3vw, 30px);
  border-radius: 18px;
  border-color: rgba(23, 107, 135, 0.18);
  border-color: color-mix(in srgb, var(--service-color) 24%, var(--line));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, var(--service-soft), transparent 70%);
}
.service-card::before {
  width: 100%;
  height: 7px;
  margin: -8px 0 18px;
  border-radius: 999px;
  background: var(--service-color);
  background: linear-gradient(90deg, var(--service-color), color-mix(in srgb, var(--service-color) 35%, #ffffff));
}
.service-card::after {
  right: 14px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--service-soft);
  transform: rotate(8deg);
}
.service-card .emoji-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 0.42em;
  border-radius: 12px;
  background: var(--service-soft);
  color: var(--primary-dark);
  vertical-align: -0.2em;
}
.service-card-device { --service-color: #176b87; --service-soft: var(--river); }
.service-card-online { --service-color: #2f7661; --service-soft: var(--meadow); }
.service-card-safety { --service-color: #b84a2b; --service-soft: var(--accent-soft); }
.service-card-data { --service-color: #4b6681; --service-soft: var(--slate-soft); }
.service-card-advice { --service-color: #987128; --service-soft: var(--gold-soft); }
.service-card-network { --service-color: #176b87; --service-soft: #dcecf4; }
.service-card-cost { --service-color: #9a4d63; --service-soft: var(--berry-soft); }
.service-card-media { --service-color: #4d6f43; --service-soft: #e4edd8; }
.service-card-home { --service-color: #7d6040; --service-soft: #efe2d2; }

.story {
  border-radius: 28px 28px 12px 28px;
  background: #fffdf8;
}
.story::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--accent);
}

.text-panel {
  width: 100%;
  padding: var(--panel-pad);
}
.text-panel > * { max-width: 880px; }
.emoji-mark {
  display: inline-block;
  margin-right: 0.22em;
  font-size: 0.95em;
  line-height: 1;
  vertical-align: -0.05em;
}

.trust-panel, .limit-panel {
  position: relative;
  display: grid;
  gap: var(--grid-gap);
  padding: var(--panel-pad);
  overflow: hidden;
}
.trust-panel {
  background:
    radial-gradient(circle at 92% 10%, rgba(23, 107, 135, 0.12), transparent 220px),
    linear-gradient(135deg, #ffffff 0%, #fbfdfe 58%, var(--river) 100%);
  border-left: 6px solid var(--primary);
}
.limit-panel {
  background:
    radial-gradient(circle at 10% 100%, rgba(184, 74, 43, 0.12), transparent 230px),
    linear-gradient(135deg, #ffffff 0%, #fffdf8 62%, var(--sand) 100%);
  border-left: 6px solid var(--accent);
}
.trust-panel::after, .limit-panel::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(23, 107, 135, 0.07);
}
.limit-panel::after { background: rgba(184, 74, 43, 0.08); }
.panel-copy, .certificate-panel, .trust-points, .limit-list { position: relative; z-index: 1; }
.panel-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1;
}
.panel-mark-warm { background: var(--accent); }
.trust-points, .limit-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.trust-points > div, .limit-list article {
  position: relative;
  min-height: 100%;
  padding: 18px 18px 18px 68px;
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(23, 42, 51, 0.05);
}
.limit-list article {
  min-width: 0;
  border-color: rgba(184, 74, 43, 0.16);
}
.trust-points strong, .limit-list h3 {
  display: block;
  margin: 0 0 4px;
  color: var(--primary-dark);
}
.limit-list h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}
.trust-points p, .limit-list p { margin: 0; color: var(--muted); }
.mini-symbol {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.95rem;
  font-weight: 900;
}
.mini-symbol-warm {
  background: var(--accent-soft);
  color: #7b2f1c;
}
.certificate-panel {
  align-self: start;
  min-width: 0;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}
.certificate-intro {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

.faq-panel {
  position: relative;
  display: grid;
  gap: var(--grid-gap);
  padding: var(--panel-pad);
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 12%, rgba(184, 74, 43, 0.11), transparent 220px),
    linear-gradient(135deg, #ffffff 0%, #f8fcfd 62%, var(--river) 100%);
  border-left: 6px solid var(--accent);
}
.faq-panel::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(23, 107, 135, 0.08);
}
.faq-intro, .faq-list { position: relative; z-index: 1; }
.faq-intro p:last-child {
  color: var(--muted);
  font-weight: 700;
}
.faq-list {
  display: grid;
  gap: 12px;
}

.steps {
  list-style: none;
  counter-reset: steps;
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 24px 0 0;
}
.steps li {
  counter-increment: steps;
  position: relative;
  padding: 22px 22px 22px 78px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.steps li::before {
  content: counter(steps);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
}

.split { display: grid; gap: var(--grid-gap); align-items: start; }
.highlight-box { padding: clamp(22px, 3vw, 32px); border-top: 5px solid var(--primary); }
.highlight-box ul, .certificates ul { padding-left: 1.2rem; }
.highlight-box li, .certificates li { margin-bottom: 0.5rem; }
.certificate-groups {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}
.certificate-groups h3 { font-size: 1.05rem; color: var(--primary-dark); }
.certificate-groups a { font-weight: 700; text-decoration: underline; }

.certificates {
  min-width: 0;
  background: #fbfdfe;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 12px 0;
}
.certificate-panel .certificate-groups { grid-template-columns: 1fr; }
.certificate-groups, .certificate-groups > div { min-width: 0; }
.certificates li, .certificates a {
  max-width: 100%;
  overflow-wrap: anywhere;
}
.certificates summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--primary-dark);
  overflow-wrap: anywhere;
}
.certificates summary:hover { text-decoration: underline; }
.certificates p { margin-top: 12px; color: var(--muted); }

.faq-panel details {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 107, 135, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(23, 42, 51, 0.06);
  overflow: hidden;
}
.faq-panel details[open] {
  background: #ffffff;
  border-color: rgba(184, 74, 43, 0.3);
  box-shadow: 0 16px 34px rgba(23, 42, 51, 0.09);
}
.faq-panel summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  padding: 18px 58px 18px 22px;
  color: var(--primary-dark);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq-panel summary::-webkit-details-marker { display: none; }
.faq-panel summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}
.faq-panel details[open] summary::after {
  content: "-";
  background: var(--accent);
  color: #fff;
}
.faq-panel summary:hover { color: var(--accent); }
.faq-panel details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.price-panel, .contact-card { padding: var(--panel-pad); }
.price-panel { border-top: 5px solid var(--accent); }
.contact-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: #fff; }
.contact-card { color: var(--text); border-top: 5px solid var(--accent); box-shadow: var(--shadow); }
.contact-layout { display: grid; gap: var(--grid-gap); align-items: start; }
.contact-layout > * { min-width: 0; }
address { font-style: normal; }
.contact-link { display: block; width: fit-content; max-width: 100%; font-size: 1.35rem; font-weight: 800; margin: 8px 0; text-decoration: underline; overflow-wrap: anywhere; }
.contact-link:hover { color: var(--primary); }

.contact-form {
  display: grid;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 22px;
  border-radius: 18px;
  background: #fbfdfe;
  border: 1px solid var(--line);
}
.contact-form h3 { margin-bottom: 0; }
.form-note { color: var(--muted); font-size: 0.95rem; }
.contact-form label { font-weight: 800; color: var(--primary-dark); }
.contact-form input, .contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  min-width: 0;
}
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); outline: 3px solid rgba(23, 107, 135, 0.18); }
.honeypot-field {
  display: none !important;
}
.contact-submit-frame {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  border: 0;
  overflow: hidden;
}
.form-error, .form-success {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}
.form-error { background: var(--accent-soft); color: #7b2f1c; }
.form-success { background: var(--primary-soft); color: var(--primary-dark); }
.contact-form button:disabled { opacity: 0.68; cursor: wait; transform: none; }

.site-footer { background: #12252d; color: #fff; padding: 28px 0; }
.footer-inner { display: flex; flex-direction: column; gap: 14px; }
.footer-meta { display: grid; gap: 4px; }
.footer-meta p { margin: 0; }
.site-footer a, .site-footer .text-button { color: #fff; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.text-button { text-decoration: underline; text-underline-offset: 0.2em; padding: 0; }

.legal-page { padding: 56px 0 80px; }
.legal-page h1 { font-size: clamp(2.1rem, 7vw, 3.5rem); }
.legal-page h2 { font-size: 1.55rem; margin-top: 2rem; }
.legal-note { padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-soft); }

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  gap: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.cookie-banner h2 { font-size: 1.25rem; }
.cookie-banner p { font-size: 0.95rem; color: var(--muted); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(18, 37, 45, 0.58);
}
.cookie-modal-panel {
  width: min(100%, 560px);
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.check-row { display: flex; gap: 10px; align-items: center; margin: 14px 0; }
.check-row input { width: 22px; height: 22px; }

[hidden] { display: none !important; }

@media (min-width: 680px) {
  .feature-grid, .cards, .story-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-points, .limit-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .certificate-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 860px) {
  .split { grid-template-columns: 1.25fr 0.75fr; }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps li { padding: 76px 22px 22px; }
  .steps li::before { left: 22px; top: 22px; }
  .contact-layout { grid-template-columns: 0.85fr 1.15fr; }
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); }
  .story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-panel { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr); }
  .trust-panel .trust-points { grid-template-columns: 1fr; }
  .faq-panel {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 40px;
  }
  .faq-intro { padding-top: 8px; }
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .main-nav a { padding: 8px; }
}

@media (min-width: 1040px) {
  .feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .certificate-groups { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .contact-card { padding: 16px; }
  .contact-form { padding: 14px; }
  .contact-link { font-size: 1.12rem; }
}

@media (max-width: 360px) {
  .contact-card { padding: 14px; }
  .contact-form { padding: 12px; }
}

@media (min-width: 760px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: min(620px, calc(100% - 48px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
