:root {
  --ink: #081f42;
  --ink-soft: #203a5e;
  --muted: #52647c;
  --line: rgba(8, 31, 66, 0.12);
  --line-strong: rgba(8, 31, 66, 0.2);
  --paper: #ffffff;
  --soft: #f4f8fc;
  --soft-2: #eef5fc;
  --blue: #2563eb;
  --blue-deep: #1746b5;
  --green: #10b981;
  --gold: #f59e0b;
  --dark: #071a35;
  --dark-2: #0b274f;
  --shadow: 0 28px 80px rgba(8, 31, 66, 0.12);
  --shadow-soft: 0 18px 45px rgba(8, 31, 66, 0.08);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.16), transparent 26rem),
    radial-gradient(circle at 83% 6%, rgba(16, 185, 129, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 34%, #f5f8fc 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
a.button {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.kicker {
  margin: 0 0 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
}

.kicker.light {
  color: #b4f3de;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(8, 31, 66, 0.10);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 1.22rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switcher {
  position: relative;
}

.language-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink-soft);
  padding: 0 16px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(8, 31, 66, 0.06);
}

.language-toggle:hover {
  border-color: var(--line-strong);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 25px 70px rgba(8, 31, 66, 0.18);
}

.language-menu button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0 12px;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 800;
}

.language-menu button:hover,
.language-menu button.active {
  color: var(--blue-deep);
  background: #eef5ff;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 26px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 950;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
}

.button-outline:hover {
  background: #f8fbff;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-dark:hover {
  background: #102e58;
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.16);
}

.button-small {
  min-height: 40px;
  padding-inline: 14px;
  font-size: 0.92rem;
}

.user-icon-button {
  min-width: 40px;
  padding-inline: 0;
  justify-content: center;
  font-size: 1rem;
}

.hero {
  padding-top: 78px;
  padding-bottom: 108px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 58px;
  align-items: center;
}

.eyebrows {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(8, 31, 66, 0.05);
  padding: 0 13px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero h1,
.section-head h2,
.country-copy h2,
.why-grid h2,
.download-box h2,
.faq-grid h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(3.2rem, 6.2vw, 5.3rem);
  font-weight: 1000;
  max-width: 800px;
}

.lead,
.section-head p,
.country-copy p,
.why-grid p,
.download-box p,
.faq-grid p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.lead {
  max-width: 740px;
  margin: 24px 0 0;
}

.cta-row {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-point {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 16px;
  color: var(--ink-soft);
  font-weight: 850;
  box-shadow: 0 12px 35px rgba(8, 31, 66, 0.05);
}

.hero-point::before,
.rule-item::before,
.price-feature::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #dffaf0;
  color: #087953;
  font-size: 0.82rem;
  font-weight: 1000;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.88);
  padding: 22px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 58px;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(16, 185, 129, 0.14), rgba(255, 255, 255, 0));
  filter: blur(18px);
}

.hero-panel-head {
  display: grid;
  gap: 6px;
  border-radius: 30px;
  background: var(--dark);
  padding: 22px;
  color: #fff;
}

.hero-panel-head span {
  color: #b9d4ff;
  font-size: 0.92rem;
  font-weight: 850;
}

.hero-panel-head strong {
  font-size: 1.65rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mini-map {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.map-head,
.map-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.map-head {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-row + .map-row {
  margin-top: 9px;
}

.map-value {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 15px;
  border: 1px solid;
  padding: 9px 11px;
  font-size: 0.84rem;
  font-weight: 900;
}

.map-value.left {
  color: #087953;
  border-color: #c9f2e4;
  background: #effbf7;
}

.map-value.right {
  color: #1e4fb8;
  border-color: #d6e5ff;
  background: #f2f7ff;
}

.map-arrow {
  color: #8392a8;
  font-weight: 1000;
}

.hero-middle {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.file-pill {
  width: 100%;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfe0ff;
  border-radius: 22px;
  background: #eef5ff;
  color: #15409a;
  padding: 14px 18px;
  text-align: center;
  font-weight: 950;
}

.llm-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.llm-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 36px 0;
}

.llm-strip h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.pill-cloud {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.section-head {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.wide {
  max-width: 920px;
}

.section-head h2,
.country-copy h2,
.why-grid h2,
.download-box h2,
.faq-grid h2 {
  font-size: clamp(2.45rem, 4.2vw, 4rem);
  font-weight: 1000;
}

.section-head p {
  margin: 18px 0 0;
}

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

.flow-card,
.audience-card,
.price-card,
.benefit-card,
.faq-item,
.text-card,
.mapping-panel {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.flow-card {
  position: relative;
  min-height: 455px;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  padding: 38px 20px 20px;
}

.flow-number {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 1000;
  box-shadow: 0 14px 35px rgba(8, 31, 66, 0.22);
}

.flow-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eef4fb;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 1000;
}

.flow-card h3 {
  margin: 18px 0 8px;
  font-size: 1.65rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.flow-card p {
  margin: 0;
  min-height: 74px;
  color: var(--muted);
  line-height: 1.7;
}

.flow-art {
  margin-top: auto;
  border-radius: 24px;
  padding: 16px;
}

.upload-art {
  border: 1px dashed #8bb5ff;
  background: #eef5ff;
  text-align: center;
}

.upload-art strong {
  display: block;
  font-size: 1rem;
  color: #14449f;
}

.document-art {
  border: 1px solid #d9c8ff;
  background: #f6f1ff;
}

.document-art .doc-mini {
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(86, 37, 235, 0.08);
}

.document-art .doc-mini strong {
  display: block;
  margin-bottom: 12px;
}

.doc-line {
  height: 8px;
  border-radius: 999px;
  background: #e3d8ff;
}

.doc-line + .doc-line {
  margin-top: 8px;
}

.doc-line.small {
  width: 70%;
}

.llm-mini {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.llm-mini span {
  border-radius: 999px;
  background: #fff;
  padding: 6px 10px;
  color: #5924b8;
  font-size: 0.72rem;
  font-weight: 1000;
}

.flow-card .mini-map {
  margin-top: auto;
  padding: 13px;
  border-radius: 22px;
}

.flow-card .map-head {
  display: none;
}

.flow-card .map-row {
  gap: 7px;
}

.flow-card .map-row + .map-row {
  margin-top: 7px;
}

.flow-card .map-value {
  padding: 7px 8px;
  font-size: 0.72rem;
}

.dark-section {
  color: #fff;
  background: linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 100%);
}

.country-grid,
.why-grid,
.download-box,
.faq-grid {
  display: grid;
  gap: 52px;
  align-items: center;
}

.country-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
}

.country-copy p,
.why-grid p {
  color: rgba(228, 238, 252, 0.84);
  margin: 18px 0 0;
}

.country-card {
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.22);
}

.country-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.country-card-head span#countryName {
  display: block;
  color: #bad4ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 1000;
}

.country-card-head strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.country-badge {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.8rem;
}

.country-rules {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rule-item {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 15px;
  color: #fff;
  font-weight: 900;
}

.country-example {
  margin-top: 20px;
  border-radius: 20px;
  border: 1px solid rgba(167, 199, 255, 0.18);
  background: rgba(79, 134, 255, 0.13);
  color: #e5efff;
  padding: 18px 20px;
  font-size: 0.96rem;
  line-height: 1.75;
}

.example-section {
  background: rgba(255, 255, 255, 0.80);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.example-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.text-card {
  border-radius: 34px;
  padding: 28px;
}

.text-card-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
}

.text-card-head h3 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.text-card-head span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #eefbf7;
  color: #087953;
  font-weight: 1000;
  font-size: 1.25rem;
}

.anonymized-card .text-card-head span {
  background: #eef5ff;
  color: #194db8;
}

.example-paragraph {
  margin: 24px 0 0;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #f8fbff;
  padding: 22px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 2;
}

.anonymized-card .example-paragraph {
  border-color: #d3e3ff;
  background: #f4f8ff;
}

.highlight {
  display: inline;
  border: 1px solid;
  border-radius: 9px;
  padding: 3px 7px;
  font-weight: 1000;
  transition: all 420ms ease;
}

.highlight.original {
  color: #087953;
  border-color: #bfeedd;
  background: #ecfbf5;
}

.highlight.anonymized {
  color: #174db8;
  border-color: #cfe0ff;
  background: #edf5ff;
}

.highlight.active.original {
  border-color: #50d1a5;
  background: #d8f7eb;
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.highlight.active.anonymized {
  border-color: #6ea1ff;
  background: #dfeaff;
  box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.12);
}

.example-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.example-arrow span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 2rem;
  font-weight: 1000;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.24);
  animation: drift 1.6s ease-in-out infinite;
}

.example-arrow small {
  color: #8795a9;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  font-weight: 1000;
  text-align: center;
}

.mapping-panel {
  margin-top: 22px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.mapping-panel h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.mapping-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.mapping-chip {
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbff;
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 900;
  transition: all 420ms ease;
}

.mapping-chip span:first-child {
  color: #65778f;
}

.mapping-chip.active {
  border-color: #c8dcff;
  background: #eef5ff;
  color: #143f99;
  transform: scale(1.01);
}

.soft-section {
  background: rgba(242, 247, 252, 0.92);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  min-height: 236px;
  border-radius: 34px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 85px rgba(8, 31, 66, 0.11);
}

.card-symbol,
.benefit-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #eef5ff;
  color: #174db8;
  font-size: 1.45rem;
  font-weight: 1000;
}

.audience-card h3,
.benefit-card h3,
.price-card h3 {
  margin: 20px 0 10px;
  font-size: 1.7rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.audience-card p,
.benefit-card p,
.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.why-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(520px, 1.15fr);
}

.why-grid .button {
  margin-top: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card {
  min-height: 280px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 32px;
  padding: 24px;
}

.benefit-symbol {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.benefit-card h3 {
  color: #fff;
}

.benefit-card p {
  color: rgba(228, 238, 252, 0.82);
}

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

.price-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  border-radius: 34px;
  padding: 28px;
}

.price-card.highlighted {
  color: #fff;
  border-color: rgba(37, 99, 235, 0.3);
  background: var(--blue);
  box-shadow: 0 28px 80px rgba(37, 99, 235, 0.22);
}

.price-badge {
  position: absolute;
  top: -16px;
  left: 28px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #36d39a;
  color: #06352a;
  padding: 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  font-weight: 1000;
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.18);
}

.price-name {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 1000;
}

.price-card.highlighted .price-name {
  color: #cde0ff;
}

.price-value {
  margin-top: 18px;
  font-size: 2.8rem;
  line-height: 1.06;
  letter-spacing: -0.05em;
  font-weight: 1000;
}

.price-note {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 900;
}

.price-card.highlighted .price-note,
.price-card.highlighted p {
  color: rgba(255, 255, 255, 0.88);
}

.price-description {
  margin-top: 18px !important;
  min-height: 120px;
}

.price-features {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.price-feature {
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 850;
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.price-card.highlighted .button {
  color: #1547af;
  background: #fff;
}

.download-section {
  padding-top: 0;
}

.download-box {
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  border: 1px solid var(--line);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  padding: 48px;
}

.download-box p {
  margin: 18px 0 0;
}

.download-card {
  border-radius: 38px;
  background: var(--blue);
  color: #fff;
  padding: 32px;
  box-shadow: 0 26px 60px rgba(37, 99, 235, 0.24);
}

.download-card h3 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.download-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.download-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.download-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #fff;
  color: #1646ac;
  padding: 0 20px;
  font-weight: 1000;
}

.download-link.secondary {
  color: #fff;
  background: transparent;
}

.download-card small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  line-height: 1.6;
}

.faq-grid {
  grid-template-columns: minmax(0, 0.85fr) minmax(500px, 1.15fr);
  align-items: start;
}

.faq-grid p {
  margin: 18px 0 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  width: 100%;
  border-radius: 26px;
  padding: 0;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 78px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.08rem;
  font-weight: 1000;
}

.faq-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #eef5ff;
  color: #174db8;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  min-height: 94px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.footer-inner strong {
  color: var(--ink-soft);
}

@keyframes drift {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.72;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .country-grid,
  .why-grid,
  .download-box,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .flow-grid,
  .pricing-grid,
  .benefit-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-grid {
    grid-template-columns: 1fr;
  }

  .example-arrow {
    min-height: 72px;
    flex-direction: row;
  }

  .mapping-panel {
    grid-template-columns: 1fr;
  }

  .llm-strip-inner {
    align-items: start;
    flex-direction: column;
  }

  .pill-cloud {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: start;
    flex-direction: column;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .language-menu {
    left: 0;
    right: auto;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .header-actions .button-small {
    width: auto;
    flex: 1;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .hero-points,
  .flow-grid,
  .country-rules,
  .audience-grid,
  .benefit-grid,
  .pricing-grid,
  .mapping-list {
    grid-template-columns: 1fr;
  }

  .cta-row,
  .download-links {
    flex-direction: column;
  }

  .hero-panel,
  .country-card,
  .download-box,
  .download-card,
  .text-card,
  .mapping-panel {
    padding: 20px;
    border-radius: 28px;
  }

  .hero-panel-head {
    padding: 18px;
  }

  .hero-panel-head strong {
    font-size: 1.35rem;
  }

  .map-value {
    font-size: 0.72rem;
    padding: 8px;
  }

  .flow-card {
    min-height: auto;
  }

  .country-card-head {
    align-items: start;
    flex-direction: column;
  }

  .country-card-head strong {
    font-size: 1.65rem;
  }

  .section-head h2,
  .country-copy h2,
  .why-grid h2,
  .download-box h2,
  .faq-grid h2 {
    font-size: 2.35rem;
  }

  .llm-strip h2 {
    font-size: 1.68rem;
  }

  .text-card-head {
    flex-direction: column;
  }

  .example-paragraph {
    padding: 18px;
    font-size: 0.96rem;
    line-height: 1.9;
  }

  .price-card {
    min-height: auto;
  }

  .contact-form {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    min-height: auto;
    padding: 28px 0;
    align-items: start;
    flex-direction: column;
  }
}

#contatto-commerciale {
  background: rgba(242, 247, 252, 0.92);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 40px;
  padding: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--soft);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: var(--paper);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-group.checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.form-group.checkbox .checkbox-label {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 10px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.28);
}

.contact-form button[type="submit"]:hover {
  background: var(--blue-deep);
}
