:root {
  --navy: #334b8e;
  --navy-deep: #273970;
  --blue: #5d8bc8;
  --blue-soft: #b8d0e8;
  --blue-pale: #eef5fb;
  --ink: #24365f;
  --text: #203054;
  --muted: #657596;
  --white: #ffffff;
  --bg: #f6f9fd;
  --border: rgba(51, 75, 142, 0.14);
  --shadow: 0 18px 60px rgba(39, 57, 112, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(184, 208, 232, 0.42), transparent 26%),
    radial-gradient(circle at left top, rgba(93, 139, 200, 0.12), transparent 18%),
    var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-soft { background: linear-gradient(180deg, rgba(184, 208, 232, 0.14), rgba(255,255,255,0)); }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.07em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
  margin-bottom: 18px;
}
h3 { letter-spacing: -.03em; }
.hero-text,
.section-heading p,
.choice-card small,
.service-choice small,
.result-card p,
.service-card p,
.feature-grid span,
.bullet-list div,
.contact-item span,
.form-note,
.media-card.small span,
.mini-cards span,
.stats-grid span,
.logo small,
.footer-logo small,
.contact-layout > div > p,
.premium-banner p,
.copyright {
  color: var(--muted);
}
.narrow { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 249, 253, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(51,75,142,.08);
}
.navbar {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 1 340px;
}
.logo img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 4px;
  border: 3px solid rgba(51, 75, 142, 0.12);
  box-shadow: 0 18px 42px rgba(39, 57, 112, 0.18);
  flex-shrink: 0;
}
.logo strong {
  display: block;
  font-size: .98rem;
  line-height: 1.2;
  white-space: nowrap;
}
.logo small {
  display: block;
  font-size: .82rem;
  line-height: 1.35;
  max-width: 240px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: .9rem;
  flex: 0 1 auto;
}
.nav-links a { white-space: nowrap; }

.nav-links a:not(.btn) {
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--navy); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px;
  background: var(--navy);
  border-radius: 999px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(51,75,142,.18);
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 10px 16px; font-size: .9rem; white-space: nowrap; }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(51,75,142,.14);
  box-shadow: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 84px);
}
.short-hero { min-height: auto; }
.hero-actions, .hero-tags, .result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions { margin: 30px 0; }
.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(184,208,232,.32);
  border: 1px solid rgba(51,75,142,.08);
  font-weight: 700;
}
.hero-media { display: grid; gap: 16px; }
.media-card,
.selector-card,
.result-card,
.service-card,
.visual-panel,
.contact-card,
.contact-form,
.feature-grid div,
.mini-cards div,
.stats-grid div,
.premium-banner,
.map-frame {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-card.large { padding: 26px; }
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.media-card.small {
  padding: 18px;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 14px;
}
.media-card.small img { width: 72px; height: 72px; }
.media-card.small strong { display: block; }
.section-heading { margin-bottom: 34px; max-width: 800px; }
.selector-card {
  padding: 28px;
  display: grid;
  gap: 24px;
}
.selector-step h3 { margin-bottom: 14px; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.service-choice-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.choice-card, .service-choice {
  padding: 18px;
  border: 1px solid var(--border);
  background: rgba(184,208,232,.14);
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}
.choice-card span, .service-choice span {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
.choice-card.selected, .service-choice.selected {
  background: rgba(93,139,200,.16);
  border-color: rgba(51,75,142,.42);
}
.result-card { padding: 24px; }
.split {
  display: grid;
  grid-template-columns: .98fr 1.02fr;
  gap: 42px;
  align-items: center;
}
.about-split { grid-template-columns: 1.02fr .98fr; }
.cards { display: grid; gap: 18px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  padding: 24px;
  overflow: hidden;
}
.card-art {
  width: 100%;
  height: 180px;
  object-fit: contain;
  border-radius: 18px;
  margin-bottom: 18px;
  background: var(--blue-pale);
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}
.text-link { color: var(--navy); font-weight: 800; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.feature-grid div, .mini-cards div, .stats-grid div { padding: 18px; }
.feature-grid strong, .mini-cards strong, .stats-grid strong, .contact-item strong { display: block; margin-bottom: 6px; }
.visual-panel { padding: 24px; }
.bullet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0 28px;
}
.bullet-list.compact { margin-bottom: 0; }
.bullet-list div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(184,208,232,.18);
  border: 1px solid rgba(51,75,142,.08);
}
.mini-cards {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}
.premium-banner {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.banner-actions { display: flex; justify-content: flex-end; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats-grid strong {
  font-size: 2rem;
  color: var(--navy);
}
.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 36px;
  align-items: start;
}
.contact-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-item {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(51,75,142,.1);
}
.contact-item:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-form {
  padding: 24px;
  display: grid;
  gap: 14px;
}
label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(51,75,142,.16);
  border-radius: 16px;
  padding: 14px 16px;
  background: var(--white);
  color: var(--text);
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(93,139,200,.14);
}
.map-frame {
  overflow: hidden;
  padding: 0;
}
.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
.site-footer {
  background: #eef4fb;
  border-top: 1px solid rgba(51,75,142,.08);
  padding: 34px 0 46px;
}
.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}
.footer-logo img {
  width: 74px;
  height: 74px;
}
.footer-links a:hover { color: var(--navy); }
.copyright { width: 100%; font-size: .92rem; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #25d366, #1fb85a);
  color: #07341d;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(0,0,0,.18);
}
.whatsapp-float small { font-size: .78rem; }
.desktop-only { display: flex; }
@media (max-width: 1080px) {
  .hero, .split, .contact-layout { grid-template-columns: 1fr; }
  .service-choice-grid { grid-template-columns: repeat(3, 1fr); }
  .reverse-mobile .visual-panel { order: 2; }
}
@media (max-width: 860px) {
  .logo {
    flex: 1 1 auto;
  }
  .logo img {
    width: 74px;
    height: 74px;
  }
  .logo strong {
    white-space: normal;
  }
  .logo small {
    max-width: none;
  }
  .nav-links {
    position: absolute;
    top: 104px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .cards-3, .feature-grid, .stats-grid, .bullet-list, .media-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-banner { flex-direction: column; align-items: flex-start; }
  .desktop-only { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  h1 { font-size: 2.9rem; }
  .choice-grid, .service-choice-grid, .cards-3, .feature-grid, .stats-grid, .bullet-list, .media-grid { grid-template-columns: 1fr; }
  .selector-card, .result-card, .service-card, .visual-panel, .contact-card, .contact-form, .media-card.large { padding: 20px; }
  .whatsapp-float { left: 16px; right: 16px; text-align: center; align-items: center; }
}

.cards-2 { grid-template-columns: repeat(2, 1fr); }
.premium-banner-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.premium-banner-copy { max-width: 620px; }
.premium-banner-visual img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.software-gallery .card-art,
.bms-gallery .card-art {
  height: 240px;
}
.image-card h3 { margin-top: 0; }
.software-gallery-section .section-heading { margin-bottom: 30px; }
@media (max-width: 860px) {
  .cards-2 { grid-template-columns: 1fr; }
  .premium-banner-media { grid-template-columns: 1fr; }
}

.hero-media .media-card.large img,
.hero-media .media-card.small img,
.visual-panel img,
.card-art,
.premium-banner-visual img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: contain;
}
.hero-media .media-card.large img {
  min-height: 420px;
}
.hero-media .media-card.small {
  grid-template-columns: 96px 1fr;
}
.hero-media .media-card.small img {
  width: 96px;
  height: 96px;
}
.visual-panel img,
.card-art,
.premium-banner-visual img {
  box-shadow: 0 16px 36px rgba(39, 57, 112, 0.12);
}

.free-estimate-banner {
  background:
    linear-gradient(135deg, rgba(51, 75, 142, 0.96), rgba(93, 139, 200, 0.92));
  color: #ffffff;
}
.free-estimate-banner .eyebrow,
.free-estimate-banner p {
  color: rgba(255, 255, 255, 0.86);
}
.free-estimate-banner h2 {
  color: #ffffff;
}
.free-estimate-banner .btn {
  background: #ffffff;
  color: var(--navy);
}

.result-actions {
  align-items: center;
}
.result-actions .btn {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .result-actions .btn {
    width: 100%;
  }
}


.service-choice-grid {
  align-items: stretch;
}
.service-choice {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  min-height: 124px;
  padding: 20px;
  line-height: 1.45;
}
.service-choice span {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.2;
}
.service-choice small {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}
@media (max-width: 640px) {
  .service-choice {
    min-height: auto;
  }
}


.stats-grid-performance div:last-child strong {
  font-size: 2rem;
  line-height: 1.1;
}
.stats-grid-performance div span {
  max-width: 100%;
}
@media (max-width: 860px) {
  .stats-grid-performance div:last-child strong {
    font-size: 1.6rem;
  }
}


/* Hero slider servizi */
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #06162f;
  border: 1px solid rgba(51, 75, 142, 0.12);
  box-shadow: 0 24px 58px rgba(39, 57, 112, 0.18);
  min-height: 510px;
  max-width: 100%;
  margin-left: auto;
  aspect-ratio: 16 / 9;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 510px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.75s ease, transform 0.75s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  display: block;
  object-fit: contain;
  background: #06162f;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(9, 24, 61, 0.22);
  z-index: 3;
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(8, 22, 51, 0.45);
  backdrop-filter: blur(8px);
  z-index: 3;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.slider-dot.active {
  width: 26px;
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero-slider,
  .hero-slider-track,
  .hero-slide img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hero-slider,
  .hero-slider-track,
  .hero-slide img {
    min-height: 310px;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
  }
}


/* Badge nuova sede sopra lo slider */
.hero-media {
  position: relative;
}

.sede-badge {
  display: block;
  max-width: 460px;
  margin: 0 0 18px auto;
  padding: 20px 24px;
  border-radius: 22px;
  background: #ffffff;
  color: var(--navy);
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(39, 57, 112, 0.18);
  border: 1px solid rgba(51, 75, 142, 0.18);
}

.sede-badge span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.sede-badge strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.22;
  color: var(--navy);
}

.sede-badge em {
  display: inline-block;
  margin-top: 8px;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--blue);
}

.sede-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(39, 57, 112, 0.30);
}

@media (max-width: 980px) {
  .sede-badge {
    max-width: none;
    margin-left: 0;
  }
}

.anchor-target {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}


/* Ottimizzazioni responsive smartphone e SEO/UX */
html {
  scroll-padding-top: 120px;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

.nav-links a,
.btn,
.choice-card,
.service-choice,
.sede-badge {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 10px;
    font-size: 0.86rem;
  }

  .logo {
    flex-basis: 310px;
  }

  .logo small {
    max-width: 210px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-copy {
    padding: 12px 0;
  }

  .hero-media {
    width: 100%;
  }

  .sede-badge {
    margin: 0 0 16px 0;
  }

  .split,
  .about-split,
  .contact-layout {
    gap: 28px;
  }

  .premium-banner-media,
  .premium-banner {
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .navbar {
    min-height: 92px;
  }

  .logo img {
    width: 66px;
    height: 66px;
  }

  .logo strong {
    font-size: 0.95rem;
  }

  .logo small {
    font-size: 0.78rem;
    max-width: 210px;
  }

  .nav-links {
    top: 92px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(184, 208, 232, 0.12);
  }

  .nav-links .btn {
    width: 100%;
  }

  .section-heading.center {
    text-align: left;
  }

  .choice-card,
  .service-choice {
    min-height: auto;
  }

  .premium-banner,
  .premium-banner-media {
    align-items: stretch;
  }

  .banner-actions,
  .result-actions,
  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 54px 0;
  }

  h1 {
    font-size: clamp(2.15rem, 12vw, 3.05rem);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions .btn,
  .result-actions .btn,
  .banner-actions .btn,
  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-tags span {
    font-size: 0.9rem;
  }

  .sede-badge {
    padding: 16px 18px;
    border-radius: 18px;
  }

  .sede-badge strong {
    font-size: 1.08rem;
  }

  .hero-slider {
    border-radius: 20px;
  }

  .slider-dots {
    max-width: calc(100% - 24px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .selector-card,
  .contact-form,
  .contact-card,
  .premium-banner,
  .service-card,
  .visual-panel {
    border-radius: 20px;
  }

  .feature-grid div,
  .mini-cards div,
  .stats-grid div {
    text-align: left;
  }

  .map-frame iframe {
    height: 320px;
  }

  .footer-layout {
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .whatsapp-float {
    border-radius: 18px;
  }
}

@media (max-width: 420px) {
  .logo {
    gap: 9px;
  }

  .logo img {
    width: 58px;
    height: 58px;
  }

  .logo small {
    display: none;
  }

  h1 {
    font-size: 2.15rem;
  }

  .hero-slider,
  .hero-slider-track,
  .hero-slide img {
    min-height: 260px;
  }

  .slider-arrow {
    width: 34px;
    height: 34px;
    font-size: 1.4rem;
  }
}


.footer-company-data {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.footer-company-data a {
  color: var(--navy);
  font-weight: 800;
}

@media (max-width: 640px) {
  .footer-company-data {
    flex-direction: column;
    gap: 6px;
  }
}


/* Modulo contatti PHP */
.contact-form select,
.contact-form textarea,
.contact-form input {
  width: 100%;
}

.contact-form select {
  appearance: none;
  background-color: #ffffff;
  cursor: pointer;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input[name="website"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--muted);
}

.privacy-check input {
  width: auto;
  margin-top: 4px;
  flex: 0 0 auto;
}

.thankyou-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef5fb 0%, #ffffff 100%);
  padding: 32px 0;
}

.thankyou-card {
  max-width: 760px;
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(51, 75, 142, 0.14);
  box-shadow: 0 24px 58px rgba(39, 57, 112, 0.16);
  text-align: center;
}

.thankyou-card img {
  width: 98px;
  height: 98px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 18px;
}

.thankyou-card h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

@media (max-width: 640px) {
  .thankyou-card {
    padding: 28px 20px;
  }

  .privacy-check {
    font-size: 0.86rem;
  }
}
