/* ─── Reset & Base ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --magenta: #b91c63;
  --magenta-d: #8f154c;
  --gray-dk: #4a4a4a;
  --gray-md: #888;
  --gray-lt: #d4d4d4;
  --gray-bg: #f7f7f7;
  --white: #ffffff;
  --black: #1a1a1a;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(1140px, 90%);
  margin-inline: auto;
}
/* ─── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-lt);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nav__logo {
  height: 36px;
}
.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--gray-dk);
  transition: all 0.2s;
}
.nav__links a:hover {
  color: var(--magenta);
}
.nav__cta {
  background: var(--magenta);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 2px;
  font-weight: 500;
  transition: all 0.2s;
}
.nav__cta:hover {
  background: var(--magenta-d) !important;
}
/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
  padding: 110px 0 90px;
  background: var(--white);
  border-bottom: 1px solid #ececec;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 99, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
}
.hero__eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--magenta);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--magenta);
}
.hero__desc {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-dk);
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  background: var(--magenta);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--magenta-d);
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--gray-lt);
  color: var(--gray-dk);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}
.hero__note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-md);
}
/* Hero visual panel */
.hero__visual {
  position: relative;
}
.hero__mockup {
  background: var(--gray-bg);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}
.mockup__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup__dot:nth-child(1) {
  background: #ff5f57;
}
.mockup__dot:nth-child(2) {
  background: #febc2e;
}
.mockup__dot:nth-child(3) {
  background: #28c840;
}
.mockup__url {
  flex: 1;
  background: var(--white);
  border-radius: 3px;
  height: 10px;
  margin-left: 8px;
}
.mockup__screen {
  background: var(--white);
  border-radius: 4px;
  padding: 20px;
  font-size: 13px;
}
.mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ececec;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
.mockup__logo-text {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mockup__logo-text span {
  color: var(--magenta);
}
.mockup__nav-dots {
  display: flex;
  gap: 12px;
}
.mockup__nav-item {
  width: 40px;
  height: 6px;
  border-radius: 2px;
  background: #e8e8e8;
}
.mockup__artwork-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.mockup__artwork {
  aspect-ratio: 3/4;
  border-radius: 3px;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
}
.mockup__artwork:nth-child(2) {
  background: linear-gradient(135deg, #ddd 0%, #ccc 100%);
}
.mockup__artwork:nth-child(3) {
  background: linear-gradient(135deg, #e4e4e4 0%, #d8d8d8 100%);
}
.mockup__footer-bar {
  display: flex;
  gap: 8px;
}
.mockup__tag {
  background: #f0f0f0;
  border-radius: 2px;
  padding: 3px 8px;
  font-size: 10px;
  color: #888;
}
.mockup__tag--pink {
  background: #fce8f2;
  color: var(--magenta);
}
/* badges */
.hero__badge {
  position: absolute;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  font-size: 12px;
}
.hero__badge--top {
  top: -16px;
  right: -20px;
}
.hero__badge--bottom {
  bottom: -16px;
  left: -20px;
}
.hero__badge-label {
  color: var(--gray-md);
  margin-bottom: 2px;
}
.hero__badge-value {
  font-weight: 600;
  font-size: 14px;
  color: var(--magenta);
}
/* ─── Logos / social proof bar ─────────────────────────────────── */
.proof-bar {
  padding: 28px 0;
  background: var(--gray-bg);
  border-bottom: 1px solid #ececec;
}
.proof-bar__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-bar__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-md);
  white-space: nowrap;
}
.proof-bar__pills {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray-dk);
}
.proof-pill__icon {
  width: 18px;
  height: 18px;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 10px;
  flex-shrink: 0;
}
/* ─── Section headers ──────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section--alt {
  background: var(--gray-bg);
}
.section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__label span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--magenta);
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 300;
  line-height: 1.22;
  margin-bottom: 16px;
}
.section__title em {
  font-style: italic;
  color: var(--magenta);
}
.section__subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--gray-dk);
  line-height: 1.7;
  max-width: 620px;
}
.section__header {
  margin-bottom: 64px;
}
.section__header--center {
  text-align: center;
}
.section__header--center .section__label {
  justify-content: center;
}
.section__header--center .section__subtitle {
  margin-inline: auto;
}
/* ─── 3 Pilastri ───────────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-lt);
  border: 1px solid var(--gray-lt);
  border-radius: 4px;
  overflow: hidden;
}
.pillar {
  background: var(--white);
  padding: 44px 36px;
  transition: transform 0.2s;
}
.pillar:hover {
  transform: translateY(-3px);
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}
.pillar__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-lt);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--magenta);
  font-size: 20px;
}
.pillar__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}
.pillar__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-dk);
}
.pillar__benefit {
  margin-top: 20px;
  padding: 12px 16px;
  background: #fce8f2;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--magenta);
}
/* ─── Funzionalità ─────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
}
.feature {
  display: flex;
  gap: 20px;
}
.feature__icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--magenta);
}
.feature__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.feature__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-dk);
}
/* ─── Vasta Art ────────────────────────────────────────────────── */
.vastaart {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vastaart__badge {
  display: inline-block;
  border: 1px solid var(--magenta);
  color: var(--magenta);
  border-radius: 2px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.vastaart__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.22;
  margin-bottom: 20px;
}
.vastaart__title em {
  font-style: italic;
  color: var(--magenta);
}
.vastaart__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-dk);
  margin-bottom: 32px;
}
.vastaart__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vastaart__list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-dk);
}
.vastaart__list li::before {
  content: "→";
  color: var(--magenta);
  font-weight: 400;
  flex-shrink: 0;
}
.vastaart__visual {
  position: relative;
}
.vastaart__card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}
.vastaart__card-header {
  background: var(--black);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vastaart__card-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.vastaart__card-logo span {
  color: var(--magenta);
}
.vastaart__card-body {
  padding: 24px;
}
.vastaart__artgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.vastaart__artitem {
  aspect-ratio: 3/4;
  border-radius: 3px;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}
.vastaart__artitem:nth-child(1) {
  background: linear-gradient(135deg, #ece8e3, #d8d3cd);
}
.vastaart__artitem:nth-child(2) {
  background: linear-gradient(135deg, #e3e8ec, #cdd3d8);
}
.vastaart__artitem:nth-child(3) {
  background: linear-gradient(135deg, #ece3e8, #d8cdd3);
}
.vastaart__artitem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}
.vastaart__stats {
  display: flex;
  gap: 20px;
}
.vastaart__stat {
  text-align: center;
  flex: 1;
}
.vastaart__stat-n {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--magenta);
}
.vastaart__stat-l {
  font-size: 11px;
  color: var(--gray-md);
  font-weight: 300;
}
.vastaart__exclusive {
  position: absolute;
  top: 16px;
  right: -6px;
  background: var(--magenta);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px 0 0 2px;
}
.vastaart__exclusive::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  border-top: 6px solid var(--magenta-d);
  border-right: 6px solid transparent;
}
/* ─── Comparison ───────────────────────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison th,
.comparison td {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid #ececec;
}
.comparison th:first-child,
.comparison td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--gray-dk);
}
.comparison thead th {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-dk);
  border-bottom: 2px solid #ececec;
  background: var(--gray-bg);
}
.comparison td.col-thetis {
  background: #fff6fa;
}
.comparison__col-thetis {
  background: #fef0f6 !important;
  color: var(--magenta) !important;
  font-weight: 600;
}
.icon-check {
  color: var(--magenta);
  font-weight: 600;
}
.icon-no {
  color: var(--gray-lt);
}
.comparison__saving {
  margin-top: 28px;
  background: #fce8f2;
  border-left: 3px solid var(--magenta);
  padding: 16px 22px;
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
}
.comparison__saving strong {
  color: var(--magenta);
}
/* ─── Pricing ──────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-lt);
  border: 1px solid var(--gray-lt);
  border-radius: 4px;
  overflow: hidden;
}
.plan {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s;
}
.plan--featured {
  background: var(--black);
  position: relative;
}
.plan--featured .plan__name {
  color: rgba(255, 255, 255, 0.5);
}
.plan--featured .plan__price {
  color: var(--white);
}
.plan--featured .plan__period {
  color: rgba(255, 255, 255, 0.45);
}
.plan--featured .plan__setup {
  color: rgba(255, 255, 255, 0.4);
}
.plan--featured .plan__divider {
  background: rgba(255, 255, 255, 0.12);
}
.plan--featured .plan__feature {
  color: rgba(255, 255, 255, 0.7);
}
.plan--featured .plan__limits {
  color: rgba(255, 255, 255, 0.4);
}
.plan__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--magenta);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 4px 4px;
}
.plan__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-md);
  margin-bottom: 16px;
}
.plan__price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}
.plan__price sup {
  font-size: 20px;
  vertical-align: super;
  font-weight: 400;
}
.plan__period {
  font-size: 13px;
  color: var(--gray-md);
  margin-bottom: 6px;
}
.plan__setup {
  font-size: 12px;
  color: var(--gray-md);
  margin-bottom: 28px;
}
.plan__divider {
  height: 1px;
  background: #ececec;
  margin-bottom: 24px;
}
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 32px;
}
.plan__feature {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-dk);
  line-height: 1.5;
}
.plan__feature::before {
  content: "✓";
  color: var(--magenta);
  font-weight: 600;
  flex-shrink: 0;
}
.plan__cta {
  display: block;
  text-align: center;
  padding: 12px 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.plan__cta--outline {
  border: 1px solid var(--gray-lt);
  color: var(--gray-dk);
}
.plan__cta--outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}
.plan__cta--solid {
  background: var(--magenta);
  color: var(--white);
}
.plan__cta--solid:hover {
  background: var(--magenta-d);
}
.plan__cta--white {
  background: var(--white);
  color: var(--black);
}
.plan__cta--white:hover {
  background: #f0f0f0;
}
.plan__limits {
  font-size: 12px;
  color: var(--gray-md);
  margin-bottom: 20px;
  line-height: 1.6;
}
/* ─── Testimonials ─────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 4px;
  padding: 32px 28px;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--black);
  margin-bottom: 24px;
}
.testimonial__quote::before {
  content: "\201C";
  color: var(--magenta);
  font-size: 28px;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 2px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), #7a1040);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial__name {
  font-size: 14px;
  font-weight: 500;
}
.testimonial__role {
  font-size: 12px;
  color: var(--gray-md);
  font-weight: 300;
}
/* ─── FAQ ──────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gray-lt);
  border: 1px solid var(--gray-lt);
  border-radius: 4px;
  overflow: hidden;
}
.faq-item {
  background: var(--white);
  padding: 32px 36px;
}
.faq-item__q {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
.faq-item__a {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-dk);
  line-height: 1.75;
}
/* ─── CTA Section ──────────────────────────────────────────────── */
.cta-section {
  background: var(--black);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 28, 99, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 20px;
}
.cta-section__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-section__title em {
  font-style: italic;
  color: var(--magenta);
}
.cta-section__desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}
.btn-white:hover {
  background: #e8e8e8;
}
.btn-ghost-white {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  padding: 14px 28px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-white:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.cta-section__note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--gray-bg);
  border-top: 1px solid #ececec;
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand-logo {
  height: 28px;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-md);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-md);
  font-weight: 300;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dk);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-md);
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--magenta);
}
.footer__bottom {
  border-top: 1px solid #ececec;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-md);
  font-weight: 300;
}
/* ─── SVG icons (inline) ───────────────────────────────────────── */
.ico {
  display: inline-block;
  line-height: 1;
}
/* ─── Utilities ────────────────────────────────────────────────── */
.text-magenta {
  color: var(--magenta);
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
/* ─── Modal ────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.is-open {
  display: flex;
}
.modal {
  background: var(--white);
  border-radius: 6px;
  width: min(540px, 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  animation: modal-in 0.22s ease;
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.modal__header {
  background: var(--black);
  padding: 28px 32px 24px;
  position: relative;
}
.modal__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}
.modal__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}
.modal__title em {
  font-style: italic;
  color: var(--magenta);
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.modal__close:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.modal__body {
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dk);
}
.form-label span {
  color: var(--magenta);
}
.form-input,
.form-textarea,
.form-select {
  border: 1px solid var(--gray-lt);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(185, 28, 99, 0.1);
}
.form-input.is-error,
.form-textarea.is-error {
  border-color: #e03030;
}
.form-textarea {
  resize: vertical;
  min-height: 88px;
}
.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: var(--magenta);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.2s;
}
.modal__submit:hover:not(:disabled) {
  background: var(--magenta-d);
}
.modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.modal__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal__submit.is-loading .modal__spinner {
  display: block;
}
.modal__submit.is-loading .modal__submit-text {
  display: none;
}
.modal__feedback {
  display: none;
  padding: 14px 16px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
  line-height: 1.5;
}
.modal__feedback.is-success {
  display: block;
  background: #edfaf3;
  border: 1px solid #6dd9a4;
  color: #1a6640;
}
.modal__feedback.is-error {
  display: block;
  background: #fdf0f0;
  border: 1px solid #f0a0a0;
  color: #8b1a1a;
}
.modal__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-md);
  text-align: center;
  font-weight: 300;
}
/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav__links {
    display: none;
  }
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    display: none;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .vastaart {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
