:root {
  --blue-950: #031d33;
  --blue-900: #052b46;
  --blue-800: #073a61;
  --blue-700: #0b4f7a;
  --blue-500: #1d8bc5;
  --orange: #ff7a00;
  --orange-600: #e96800;
  --white: #ffffff;
  --paper: #f5f8fb;
  --ink: #0b2239;
  --muted: #587086;
  --line: rgba(10, 47, 78, 0.12);
  --glass: rgba(255, 255, 255, 0.14);
  --shadow-soft: 0 18px 44px rgba(3, 29, 51, 0.14);
  --shadow-strong: 0 28px 70px rgba(3, 29, 51, 0.28);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.55);
  outline-offset: 3px;
}

.topbar {
  background: linear-gradient(90deg, var(--blue-950), var(--blue-900));
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  position: relative;
  z-index: 20;
}

.topbar__inner {
  min-height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.topbar span:last-child {
  justify-self: end;
}

.topbar .topbar__mobile {
  display: none;
}

.topbar svg,
.btn svg,
.contact-info svg,
.accordion-trigger::after {
  flex: 0 0 auto;
}

.topbar svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(5, 43, 70, 0.08);
  transition: box-shadow 0.25s ease, backdrop-filter 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(3, 29, 51, 0.12);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  color: #16324a;
}

.nav a {
  position: relative;
  padding: 10px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--primary {
  color: var(--white);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(135deg, var(--orange), #ff8e26 52%, var(--orange-600));
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.34);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.42);
}

.btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.btn--large {
  min-height: 56px;
  padding-inline: 22px;
}

.btn--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(5, 43, 70, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero__media,
.hero__media img,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.hero__media--mobile {
  display: none;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 78% 18%, rgba(29, 139, 197, 0.5), transparent 32%),
    linear-gradient(105deg, rgba(3, 29, 51, 0.98) 0%, rgba(5, 43, 70, 0.88) 44%, rgba(5, 43, 70, 0.48) 100%),
    linear-gradient(0deg, rgba(3, 29, 51, 0.22), rgba(3, 29, 51, 0.22));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -24% -10%;
  height: 46%;
  z-index: -1;
  background: linear-gradient(0deg, var(--blue-950), transparent);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.76fr);
  gap: 54px;
  align-items: center;
  padding-block: 74px 92px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__badge {
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: none;
  letter-spacing: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero h1,
.section-heading h2,
.why h2,
.contact-card h2,
.mid-cta h2,
.footer h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
}

.hero h1 {
  max-width: 700px;
  margin: 22px 0 18px;
  font-size: 54px;
  line-height: 1.06;
}

.hero h1 span {
  color: var(--orange);
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero__bullets {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.93);
  font-weight: 700;
}

.hero__bullets li {
  position: relative;
  padding-left: 32px;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange) 0 2px, transparent 3px);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.microcopy,
.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.privacy-notice {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.45;
}

.privacy-notice a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lead-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    rgba(6, 55, 88, 0.36);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 38px rgba(65, 190, 255, 0.36);
}

.form-heading {
  position: relative;
  margin-bottom: 20px;
}

.form-glow {
  position: absolute;
  right: -20px;
  top: -24px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.34), transparent 70%);
  pointer-events: none;
}

.form-heading h2 {
  position: relative;
  margin: 0 0 8px;
  color: var(--white);
  font-size: 30px;
  line-height: 1.12;
}

.form-heading p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.field {
  margin-bottom: 12px;
}

.field label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.78) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 20px,
    calc(100% - 15px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.field select option {
  color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.66);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 122, 0, 0.74);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.14);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #ff604f;
  box-shadow: 0 0 0 3px rgba(255, 96, 79, 0.16);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  color: #ffd2cc;
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

.section[id] {
  scroll-margin-top: 118px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.why h2,
.faq h2 {
  margin: 8px 0 10px;
  font-size: 36px;
  line-height: 1.14;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.section-heading--dark h2,
.section-heading--dark p {
  color: var(--white);
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -58px;
  padding-bottom: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card,
.service-card,
.process-card,
.contact-card,
.accordion-item {
  border-radius: var(--radius);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.trust-card {
  min-height: 134px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(13, 81, 126, 0.82), rgba(3, 29, 51, 0.98)),
    var(--blue-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 44px rgba(3, 29, 51, 0.28);
}

.trust-card:hover,
.service-card:hover,
.process-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(3, 29, 51, 0.2);
}

.trust-icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.trust-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-card strong {
  font-size: 20px;
  line-height: 1.12;
}

.trust-card p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.services {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 122, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 226px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(5, 43, 70, 0.07);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 18%, rgba(29, 139, 197, 0.95), transparent 38%),
    linear-gradient(135deg, var(--blue-800), var(--blue-950));
  border-radius: 22px;
  transform: rotate(45deg);
  box-shadow: 0 16px 34px rgba(5, 43, 70, 0.22);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-45deg);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.why,
.process,
.faq,
.contact,
.footer {
  background:
    radial-gradient(circle at 20% 20%, rgba(29, 139, 197, 0.2), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(255, 122, 0, 0.12), transparent 26%),
    linear-gradient(145deg, var(--blue-950) 0%, var(--blue-900) 46%, #041526 100%);
  color: var(--white);
}

.why {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
}

.why__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.why__visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.why__visual img {
  position: relative;
  z-index: 3;
  width: min(420px, 92%);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.38));
}

.shape {
  position: absolute;
  border-radius: 40px;
  transform: rotate(-14deg);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.shape--one {
  width: 330px;
  height: 390px;
  left: 8%;
  bottom: 62px;
  background: linear-gradient(145deg, rgba(29, 139, 197, 0.42), rgba(29, 139, 197, 0.08));
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.08);
}

.shape--two {
  width: 240px;
  height: 290px;
  right: 6%;
  bottom: 36px;
  background: linear-gradient(145deg, rgba(255, 122, 0, 0.28), rgba(255, 122, 0, 0.05));
}

.dot-field {
  position: absolute;
  left: 2%;
  bottom: 78px;
  width: 160px;
  height: 130px;
  background-image: radial-gradient(var(--orange) 1.8px, transparent 1.8px);
  background-size: 18px 18px;
  opacity: 0.9;
}

.why h2 {
  color: var(--white);
  margin-bottom: 28px;
}

.feature-list {
  display: grid;
  gap: 24px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
}

.feature-list span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--orange);
  border: 2px solid rgba(255, 122, 0, 0.55);
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.08);
}

.feature-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.feature-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.mid-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 46px;
  padding: 24px 30px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 2% 50%, rgba(255, 122, 0, 0.17), transparent 20%),
    linear-gradient(135deg, rgba(16, 79, 122, 0.74), rgba(3, 29, 51, 0.82));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: translateY(50%);
}

.mid-cta__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: #22c55e;
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.34);
}

.mid-cta__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mid-cta h2 {
  margin: 0 0 4px;
  font-size: 24px;
}

.mid-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.process {
  padding-top: 146px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-card {
  position: relative;
  min-height: 220px;
  padding: 34px 20px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.process-card:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 2px;
  top: 52%;
  right: -34px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 6px, transparent 6px 11px);
}

.process-number {
  position: absolute;
  left: 50%;
  top: -22px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.36);
}

.process-card svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.faq {
  padding-top: 82px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.faq h2 {
  color: var(--white);
  margin-top: 8px;
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
}

.accordion-trigger {
  position: relative;
  width: 100%;
  min-height: 54px;
  padding: 16px 52px 16px 18px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
  font-weight: 900;
}

.accordion-trigger::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.accordion-panel {
  padding: 0 18px 18px;
}

.accordion-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.faq-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quality-seal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 230px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3, 29, 51, 0.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.quality-seal svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quality-seal strong {
  font-size: 14px;
  line-height: 1.25;
}

.contact {
  padding-top: 68px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
}

.contact-card {
  padding: 34px;
  background:
    radial-gradient(circle at 88% 0%, rgba(29, 139, 197, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.contact-card h2 {
  margin: 8px 0 24px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.25;
}

.contact-info ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
}

.contact-info li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
  box-shadow: inset 0 0 0 2px rgba(255, 122, 0, 0.4);
}

.contact-info svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info strong {
  display: block;
  color: var(--white);
  font-size: 15px;
}

.contact-info a,
.contact-info p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form .field input,
.contact-form .field textarea {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.36);
}

.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder {
  color: #74889a;
}

.contact-form .field label {
  color: rgba(255, 255, 255, 0.82);
}

.contact-form .field-error {
  color: #ffd2cc;
}

/* Form inside contact card */
.contact-form p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

#orcamento-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.18);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #74889a;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23587086' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

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

.form-group .field-error-msg {
  font-size: 12px;
  color: #ffd2cc;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #ff6b6b;
}

.form-group.has-error .field-error-msg {
  display: block;
}

.footer {
  padding: 58px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 1.1fr;
  gap: 40px;
}

.footer__brand img {
  width: 120px;
  margin-bottom: 16px;
}

.footer p,
.footer span,
.footer a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer a,
.footer span {
  display: block;
  margin: 8px 0;
}

.footer a:hover {
  color: var(--orange);
}

.footer h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
  margin: 0;
}

.footer__bottom a {
  display: inline;
  color: var(--orange);
}

.privacy-main {
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 122, 0, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.privacy-hero {
  padding: 88px 0 42px;
  background:
    radial-gradient(circle at 12% 20%, rgba(29, 139, 197, 0.18), transparent 30%),
    linear-gradient(145deg, var(--blue-950), var(--blue-900));
  color: var(--white);
}

.privacy-hero h1 {
  max-width: 820px;
  margin: 12px 0 14px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 44px;
  line-height: 1.1;
}

.privacy-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.policy-section {
  padding: 54px 0 90px;
}

.policy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(5, 43, 70, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.policy-card h2 {
  margin: 34px 0 10px;
  color: var(--blue-900);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 24px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 22px;
}

.policy-card a {
  color: var(--orange);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(34, 197, 94, 0.42);
  animation: pulse 2.4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.42), 0 0 0 0 rgba(34, 197, 94, 0.32);
  }
  50% {
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.42), 0 0 0 14px rgba(34, 197, 94, 0);
  }
}

@media (max-width: 1100px) {
  .header__cta {
    display: none;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero__grid,
  .why__grid,
  .faq__grid,
  .contact__grid {
    gap: 34px;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 920px) {
  .topbar__inner {
    display: flex;
    justify-content: center;
  }

  .topbar span {
    display: none;
  }

  .topbar .topbar__mobile {
    display: inline-flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 116px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 10px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 58px 92px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-form {
    max-width: 560px;
  }

  .trust-strip {
    margin-top: -42px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__grid,
  .faq__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .why__visual {
    min-height: 430px;
  }

  .why__content {
    padding-bottom: 24px;
  }

  .mid-cta {
    grid-template-columns: 1fr;
    text-align: left;
    transform: translateY(36%);
  }

  .process {
    padding-top: 132px;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .topbar {
    font-size: 12px;
  }

  .header__inner {
    min-height: 70px;
  }

  .logo img {
    width: 108px;
  }

  .nav {
    top: 104px;
    left: 14px;
    right: 14px;
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 72% 12%, rgba(29, 139, 197, 0.42), transparent 34%),
      linear-gradient(180deg, rgba(3, 29, 51, 0.9) 0%, rgba(5, 43, 70, 0.86) 54%, rgba(3, 29, 51, 0.96) 100%);
  }

  .hero__grid {
    gap: 30px;
    padding-block: 42px 74px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .lead-card {
    padding: 22px;
  }

  .form-heading h2 {
    font-size: 26px;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .section[id] {
    scroll-margin-top: 106px;
  }

  .section-heading h2,
  .why h2,
  .faq h2 {
    font-size: 30px;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .why__visual {
    min-height: 360px;
  }

  .shape--one {
    width: 270px;
    height: 320px;
  }

  .shape--two {
    width: 190px;
    height: 230px;
  }

  .dot-field {
    width: 120px;
    height: 100px;
    background-size: 15px 15px;
  }

  .feature-list article {
    grid-template-columns: 36px 1fr;
  }

  .mid-cta {
    padding: 22px;
  }

  .mid-cta h2 {
    font-size: 22px;
  }

  .process-card {
    min-height: 190px;
  }

  .faq-card img {
    min-height: 280px;
  }

  .quality-seal {
    left: 14px;
    right: 14px;
    max-width: none;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-info li {
    grid-template-columns: 42px 1fr;
  }

  .contact-info li > span {
    width: 42px;
    height: 42px;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .privacy-hero {
    padding: 58px 0 34px;
  }

  .privacy-hero h1 {
    font-size: 34px;
  }

  .policy-card {
    padding: 24px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp svg {
    width: 29px;
    height: 29px;
  }
}

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

  .hero__media--mobile {
    display: block;
    object-fit: cover;
    object-position: center center;
  }

  .hero {
    min-height: 100svh;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
