@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap");

:root {
  --navy: #071a2d;
  --ink: #17304a;
  --blue: #0878e8;
  --blue-dark: #0564c7;
  --blue-pale: #edf6ff;
  --mint: #08b88a;
  --yellow: #f7c843;
  --cream: #fbfaf6;
  --mist: #f4f8fc;
  --muted: #6d7d8e;
  --line: #e3ebf2;
  --shadow: 0 18px 50px rgba(7, 34, 60, 0.1);
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
}
button,
a {
  font: inherit;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}
.content-width {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 118px;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  background: rgba(7, 26, 45, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1220px, calc(100% - 64px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #fff;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 31%, #f7c843 0 18%, transparent 19%),
    linear-gradient(145deg, #0878e8 0 48%, #0564c7 49% 100%);
  box-shadow: inset 0 -7px 0 rgba(7, 26, 45, 0.2);
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.main-nav a {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.main-nav a:hover {
  color: #fff;
}
.header-cta {
  margin-left: 12px;
}
.menu-toggle,
.menu-button {
  display: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 11px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background 0.2s var(--ease);
}
.button:active {
  transform: scale(0.97);
}
.button-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 11px 24px rgba(247, 200, 67, 0.18);
}
.button-primary:hover {
  background: #f3bb22;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(247, 200, 67, 0.26);
}
.button-secondary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 11px 24px rgba(8, 120, 232, 0.18);
}
.button-secondary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
.hero-section {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #eaf4ff;
}
.hero-image {
  position: absolute;
  inset: 0 0 0 29%;
  z-index: -2;
  background: url("https://images.unsplash.com/photo-1483729558449-99ef09a8c325?w=1800&q=88")
    center/cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    #f2f8ff 0%,
    rgba(242, 248, 255, 0.94) 35%,
    rgba(242, 248, 255, 0.2) 72%,
    rgba(242, 248, 255, 0.03)
  );
}
.hero-content {
  padding-top: 76px;
}
.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(8, 184, 138, 0.12);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.hero-content h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.07em;
}
.hero-content h1 em,
h2 em {
  color: var(--blue);
  font-family: Caveat, cursive;
  font-style: normal;
  font-size: 1.13em;
  letter-spacing: 0;
}
.hero-lead {
  max-width: 480px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.trust-line {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.hero-stamp {
  position: absolute;
  right: 9%;
  bottom: 14%;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  background: rgba(7, 26, 45, 0.78);
  color: #fff;
  box-shadow: var(--shadow);
  font-size: 11px;
  line-height: 1.25;
}
.hero-stamp span {
  color: var(--yellow);
  margin-right: 7px;
}
.hero-stamp strong {
  color: var(--yellow);
}
.category-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.category-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  align-items: stretch;
}
.category-intro {
  padding: 27px 25px 27px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.category-intro strong {
  color: var(--ink);
  font-family: Poppins, sans-serif;
  font-size: 17px;
}
.category-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 88px;
  padding: 18px;
  border-left: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.category-item:hover {
  background: var(--blue-pale);
  transform: translateY(-3px);
}
.category-item > span:last-child {
  margin-left: auto;
  color: var(--blue);
}
.category-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 19px;
}
.vendor-section {
  position: relative;
  background: var(--mist);
}
.vendor-section:before {
  content: "";
  position: absolute;
  top: -22px;
  left: -3%;
  width: 106%;
  height: 45px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  background: var(--mist);
}
.vendor-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 95px;
}
.vendor-visual {
  position: relative;
}
.vendor-visual img {
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(7, 34, 60, 0.15);
}
.floating-note {
  position: absolute;
  right: -26px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 236px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}
.note-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #e8fbf5;
  color: var(--mint);
}
.floating-note strong,
.floating-note small {
  display: block;
}
.floating-note strong {
  font-size: 12px;
}
.floating-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}
.vendor-copy h2,
.about-copy h2,
.plans-intro h2,
.selection-section h2,
.cta-content h2 {
  margin: 13px 0 18px;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: clamp(36px, 4.4vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}
.vendor-copy > p:not(.section-kicker),
.about-copy > p:not(.section-kicker),
.plans-intro > p:last-child {
  max-width: 520px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
}
.check-list li span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e8fbf5;
  color: var(--mint);
}
.selection-section {
  background: #fff;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.heading-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}
.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.selection-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 23px;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(7, 34, 60, 0.08);
  transition:
    transform 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}
.selection-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.selection-card:after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 210px;
  height: 210px;
  border: 25px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: rotate(-20deg);
}
.card-sky {
  background: linear-gradient(145deg, #0878e8, #54b8ef);
}
.card-mint {
  background: linear-gradient(145deg, #08b88a, #54d5b1);
}
.card-navy {
  background: linear-gradient(145deg, #071a2d, #1a5f8e);
}
.selection-card span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.selection-card strong {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.selection-card b {
  font-size: 11px;
}
.plans-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.plans-intro {
  max-width: 610px;
  margin-bottom: 46px;
}
.plans-intro h2 {
  margin-bottom: 16px;
}
.plans-intro > p:last-child {
  margin-bottom: 0;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 17px;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px 24px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 22px rgba(7, 34, 60, 0.04);
}
.plan-card.plan-featured {
  z-index: 1;
  margin-top: -15px;
  margin-bottom: -15px;
  border: 2px solid var(--blue);
  box-shadow: 0 20px 50px rgba(8, 120, 232, 0.18);
}
.recommended {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--blue);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.plan-index {
  color: var(--yellow);
  font-family: Poppins, sans-serif;
  font-size: 18px;
  letter-spacing: -0.05em;
}
.plan-card h3 {
  margin-bottom: 8px;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.plan-description {
  min-height: 45px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.price {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: 45px;
  line-height: 1;
  letter-spacing: -0.06em;
}
.price small {
  margin-right: 4px;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}
.price span {
  margin-left: 5px;
  color: var(--muted);
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
}
.plan-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.plan-card li:before {
  content: "✓";
  margin-right: 8px;
  color: var(--mint);
  font-weight: 800;
}
.plan-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}
.plan-link span {
  font-size: 18px;
}
.plan-button {
  width: 100%;
  margin-top: auto;
}
.plans-footnote {
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.about-section {
  position: relative;
  background: var(--cream);
}
.about-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: linear-gradient(
      135deg,
      transparent 25%,
      rgba(8, 184, 138, 0.12) 25%,
      rgba(8, 184, 138, 0.12) 50%,
      transparent 50%
    )
    0 0/34px 18px;
  opacity: 0.45;
}
.about-points {
  display: flex;
  gap: 23px;
  margin-top: 34px;
}
.about-points div {
  display: grid;
  gap: 5px;
  padding-left: 12px;
  border-left: 2px solid var(--yellow);
}
.about-points strong {
  color: var(--blue);
  font-family: Poppins;
  font-size: 12px;
}
.about-points span {
  font-size: 11px;
  font-weight: 800;
}
.about-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 25px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 28px 60px rgba(7, 34, 60, 0.18);
}
.about-card > span,
.about-card > small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.about-card > strong {
  font-family: Poppins, sans-serif;
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}
.about-card em {
  color: var(--yellow);
  font-style: normal;
}
.cta-section {
  min-height: 450px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(7, 26, 45, 0.96), rgba(7, 26, 45, 0.57)),
    url("https://images.unsplash.com/photo-1470214304380-aadaedcfff1b?w=1800&q=88")
      center/cover;
  color: #fff;
}
.cta-content {
  padding-block: 100px;
}
.section-kicker.light {
  color: var(--yellow);
}
.cta-content h2 {
  color: #fff;
}
.cta-content > p:not(.section-kicker) {
  max-width: 420px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.7;
}
.site-footer {
  padding: 68px 0 25px;
  background: var(--navy);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
}
.footer-brand {
  margin-bottom: 16px;
}
.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  line-height: 1.65;
}
.site-footer h3 {
  margin: 3px 0 16px;
  font-size: 12px;
}
.site-footer a,
.site-footer span {
  display: block;
  width: max-content;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 12px;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}
@media (max-width: 960px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 13px 32px 17px;
    background: var(--navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .menu-button {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    color: #fff;
    cursor: pointer;
  }
  .menu-button span {
    display: none;
  }
  .menu-button b {
    font-size: 11px;
  }
  .menu-toggle:checked ~ .main-nav {
    display: flex;
  }
  .menu-toggle:checked ~ .menu-button b {
    font-size: 0;
  }
  .menu-toggle:checked ~ .menu-button b:after {
    content: "Fechar";
    font-size: 11px;
  }
  .main-nav a {
    padding: 12px 0;
  }
  .header-cta {
    display: none;
  }
  .vendor-grid,
  .about-grid {
    gap: 55px;
  }
  .category-inner {
    grid-template-columns: repeat(4, 1fr);
  }
  .category-intro {
    display: none;
  }
  .category-item:first-of-type {
    border-left: 0;
  }
  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.plan-featured {
    margin: 15px 0;
    order: -1;
  }
  .selection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .content-width,
  .nav-wrap {
    width: min(100% - 36px, 1160px);
  }
  .section-pad {
    padding-block: 76px;
  }
  .hero-section {
    min-height: 720px;
    align-items: end;
  }
  .hero-image {
    inset: 0;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(242, 248, 255, 0.3),
      rgba(242, 248, 255, 0.93) 63%,
      #f2f8ff 100%
    );
  }
  .hero-content {
    padding-bottom: 75px;
  }
  .hero-content h1 {
    font-size: clamp(43px, 12vw, 62px);
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-stamp {
    right: 18px;
    top: 105px;
    bottom: auto;
    transform: scale(0.9);
    transform-origin: top right;
  }
  .category-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-item {
    min-height: 70px;
    padding: 13px 9px;
    border-top: 1px solid var(--line);
  }
  .vendor-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .floating-note {
    right: 8px;
    bottom: 18px;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .heading-note {
    text-align: left;
  }
  .selection-grid {
    grid-template-columns: 1fr;
  }
  .selection-card {
    min-height: 190px;
  }
  .plans-intro h2 {
    font-size: 42px;
  }
  .about-points {
    gap: 12px;
    flex-wrap: wrap;
  }
  .about-card {
    min-height: 330px;
  }
  .footer-grid {
    gap: 28px;
  }
  .footer-bottom {
    align-items: start;
    flex-direction: column;
    margin-top: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Seção de parceiros: preparada para conteúdo testimonial real e autorizado. */
.partners-section {
  background: #fff;
  border-top: 1px solid var(--line);
}
.partners-heading {
  align-items: end;
}
.partner-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}
.partner-card-featured {
  border: 2px solid var(--mint);
  background: #f2fcf8;
  box-shadow: 0 18px 42px rgba(8, 184, 138, 0.11);
}
.partner-number {
  color: var(--yellow);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  letter-spacing: -0.05em;
}
.partner-placeholder {
  margin-top: 38px;
}
.partner-placeholder strong {
  display: block;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.partner-placeholder p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.partner-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  background: transparent;
}
.partner-avatar {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 800;
}
.partner-card footer strong,
.partner-card footer small {
  display: block;
}
.partner-card footer strong {
  color: var(--ink);
  font-size: 11px;
}
.partner-card footer small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}
@media (max-width: 720px) {
  .partner-testimonials {
    grid-template-columns: 1fr;
  }
  .partners-heading .heading-note {
    max-width: 300px;
  }
}

/* Formulário de contato estático. */
.contact-section {
  background: var(--mist);
  border-top: 1px solid var(--line);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  align-items: start;
  gap: 85px;
}
.contact-copy h2 {
  margin: 13px 0 18px;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: clamp(36px, 4.4vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}
.contact-copy > p:not(.section-kicker) {
  max-width: 480px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.contact-note {
  padding-left: 14px;
  border-left: 2px solid var(--yellow);
  font-size: 12px !important;
  line-height: 1.6 !important;
}
.contact-note strong {
  color: var(--ink);
}
.contact-form {
  display: grid;
  gap: 9px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 34, 60, 0.06);
}
.contact-form label {
  margin-top: 5px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}
.contact-form textarea {
  resize: vertical;
  min-height: 105px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(8, 120, 232, 0.13);
  border-color: var(--blue);
}
.contact-form .button {
  margin-top: 8px;
  width: max-content;
}
@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-form .button {
    width: 100%;
  }
}
.success-page {
  width: min(620px, calc(100% - 40px));
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 16px;
  margin: 0 auto;
}

.success-page h1 {
  margin: 0;
  color: var(--navy);
  font-family: Poppins, sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.success-page p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
}