:root {
  --brand: #1555a5;
  --brand-strong: #0d4288;
  --navy: #0c2343;
  --ink: #15273e;
  --muted: #617087;
  --pale: #edf5ff;
  --line: #dbe7f4;
  --white: #ffffff;
  --green: #20a866;
  --shadow: 0 24px 60px rgba(13, 53, 104, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

svg {
  display: block;
  width: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
}

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

.topbar-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar a {
  color: white;
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 244, 0.85);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 78px;
  height: 44px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 85, 165, 0.2);
  border-radius: 999px;
  background: white;
  box-shadow: 0 7px 20px rgba(21, 85, 165, 0.14);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

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

.brand-copy strong {
  color: #2a2f37;
  font-family: var(--font-geist-sans), Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: var(--brand);
  font-weight: 800;
  letter-spacing: 0.42em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

nav a {
  position: relative;
  color: #435269;
  font-size: 0.89rem;
  font-weight: 700;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 9px;
  border-radius: 12px;
  background: var(--brand);
  box-shadow: 0 10px 28px rgba(21, 85, 165, 0.2);
  color: white;
  font-size: 0.87rem;
  font-weight: 800;
  transition: 180ms ease;
}

.header-cta:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%, rgba(64, 145, 230, 0.17), transparent 28%),
    linear-gradient(135deg, #f9fcff 0%, #edf5ff 54%, #ffffff 100%);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  content: "";
  background-image: linear-gradient(rgba(21, 85, 165, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 85, 165, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 590px;
  padding-block: 68px 88px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 72px;
}

.eyebrow {
  width: fit-content;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: white;
  box-shadow: 0 8px 22px rgba(21, 85, 165, 0.14);
}

.eyebrow-icon svg {
  width: 17px;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3rem, 4.8vw, 4.7rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

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

.hero-copy > p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.94rem;
  font-weight: 900;
  transition: 180ms ease;
}

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

.button-primary {
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(21, 85, 165, 0.22);
  color: white;
}

.button-primary:hover {
  background: var(--brand-strong);
}

.button-whatsapp {
  border-color: #cfe7da;
  background: rgba(255, 255, 255, 0.85);
  color: #177c4d;
}

.button-whatsapp svg {
  width: 20px;
}

.hero-trust {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  list-style: none;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #53647a;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-trust span {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d9f4e6;
  color: #178a55;
  font-size: 0.71rem;
}

.hero-visual {
  position: relative;
  min-height: 485px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(21, 85, 165, 0.17);
  border-radius: 50%;
}

.orbit-one {
  width: 470px;
  height: 470px;
}

.orbit-two {
  width: 390px;
  height: 390px;
  border-style: dashed;
  animation: rotateOrbit 32s linear infinite;
}

.portrait-frame {
  position: relative;
  z-index: 2;
  width: min(350px, 76vw);
  height: 430px;
  overflow: hidden;
  border: 9px solid white;
  border-radius: 170px 170px 32px 32px;
  background: #dce8f7;
  box-shadow: var(--shadow);
}

.portrait-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  content: "";
  background: linear-gradient(transparent, rgba(5, 30, 66, 0.82));
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: grid;
  gap: 4px;
  color: white;
}

.portrait-caption strong {
  font-size: 1.15rem;
}

.portrait-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(12, 35, 67, 0.16);
  backdrop-filter: blur(12px);
}

.floating-card div {
  display: grid;
  gap: 3px;
}

.floating-card small {
  color: #75849a;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.84rem;
}

.floating-online {
  top: 66px;
  right: -9px;
}

.floating-support {
  bottom: 42px;
  left: -24px;
}

.status-dot {
  width: 11px;
  height: 11px;
  border: 3px solid #dff8eb;
  border-radius: 50%;
  background: #21b268;
  box-shadow: 0 0 0 5px #effbf4;
}

.floating-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--pale);
  color: var(--brand);
}

.floating-icon svg {
  width: 19px;
}

.process-ribbon {
  position: relative;
  z-index: 4;
  margin-bottom: -38px;
  min-height: 78px;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background: var(--navy);
  box-shadow: 0 22px 48px rgba(12, 35, 67, 0.2);
  color: white;
}

.process-ribbon > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-ribbon span {
  color: #6faeff;
  font-size: 0.74rem;
  font-weight: 900;
}

.process-ribbon strong {
  font-size: 0.79rem;
}

.process-ribbon i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #548bd0;
}

.products-section {
  padding: 112px 0 82px;
  background: white;
}

.section-heading {
  margin-bottom: 36px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 64px;
}

.section-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--brand);
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.product-card {
  min-height: 250px;
  padding: 23px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f9fcff);
  transition: 200ms ease;
}

.product-card:hover {
  border-color: #a9c9ed;
  box-shadow: 0 18px 42px rgba(27, 76, 134, 0.1);
  transform: translateY(-5px);
}

.product-code {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--pale);
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-card h3 {
  margin: 19px 0 9px;
  color: var(--navy);
  font-size: 1.03rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.62;
}

.product-card a {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-card a svg {
  width: 16px;
  transition: transform 180ms ease;
}

.product-card a:hover svg {
  transform: translateX(4px);
}

.security-note {
  padding-bottom: 74px;
  background: white;
}

.security-note-inner {
  min-height: 88px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #d4e5f7;
  border-radius: 18px;
  background: #f6faff;
}

.security-icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 22px rgba(21, 85, 165, 0.09);
  color: var(--brand);
}

.security-icon svg {
  width: 24px;
}

.security-note-inner > div:nth-child(2) {
  display: grid;
  gap: 5px;
}

.security-note strong {
  color: var(--navy);
}

.security-note span {
  color: var(--muted);
  font-size: 0.85rem;
}

.security-note a {
  margin-left: auto;
  padding: 11px 16px;
  flex: none;
  border-radius: 11px;
  background: white;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.operations-section {
  padding: 86px 0;
  background:
    linear-gradient(180deg, #f7faff 0%, #eef5fd 100%);
}

.operations-heading {
  max-width: 730px;
  margin-bottom: 32px;
}

.operations-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.operation-card {
  min-height: 138px;
  padding: 23px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  border: 1px solid #d9e6f4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  transition: 200ms ease;
}

.operation-card:hover {
  border-color: #afcce9;
  background: white;
  box-shadow: 0 18px 38px rgba(19, 65, 121, 0.09);
  transform: translateY(-3px);
}

.operation-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--pale);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
}

.operation-card > div {
  display: grid;
  gap: 7px;
}

.operation-card strong {
  color: var(--navy);
  font-size: 1rem;
}

.operation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.operation-card > svg {
  width: 20px;
  color: var(--brand);
}

.operation-featured {
  border-color: var(--brand);
  background: var(--brand);
}

.operation-featured:hover {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
}

.operation-featured > span {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.operation-featured strong,
.operation-featured > svg {
  color: white;
}

.operation-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: var(--navy);
}

.quote-section::before {
  position: absolute;
  top: -160px;
  left: -130px;
  width: 490px;
  height: 490px;
  content: "";
  border-radius: 50%;
  background: rgba(32, 108, 198, 0.2);
  filter: blur(2px);
}

.quote-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 74px;
}

.quote-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.35rem, 3.8vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.quote-copy > p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.72;
}

.quote-benefits {
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.quote-benefits > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
}

.quote-benefits > div > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(123, 181, 248, 0.34);
  border-radius: 50%;
  background: rgba(31, 104, 192, 0.2);
  color: #8dc1ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.quote-benefits p {
  margin: 0;
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.59);
  font-size: 0.83rem;
  line-height: 1.45;
}

.quote-benefits strong {
  color: white;
  font-size: 0.9rem;
}

.privacy-card {
  margin-top: 32px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(128, 177, 230, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.privacy-card svg {
  width: 28px;
  flex: none;
  color: #72b0f4;
}

.privacy-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  line-height: 1.5;
}

.quote-form {
  padding: 31px;
  display: grid;
  gap: 17px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background: white;
  box-shadow: 0 28px 70px rgba(0, 13, 31, 0.3);
}

.quote-form-active {
  animation: formPulse 650ms ease-out;
}

.form-heading {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-heading small {
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.form-heading h3 {
  margin: 5px 0 0;
  color: var(--navy);
  font-size: 1.35rem;
}

.form-heading > span {
  padding: 8px 10px;
  border-radius: 9px;
  background: #e9f7ef;
  color: #168652;
  font-size: 0.73rem;
  font-weight: 900;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #35465d;
  font-size: 0.78rem;
  font-weight: 800;
}

.quote-form label em {
  color: #8996a7;
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.location-row > label {
  grid-column: 1 / -1;
}

.general-fields {
  display: grid;
  gap: 17px;
}

.general-fields[hidden] {
  display: none;
}

.vehicle-fields {
  min-width: 0;
  margin: 0;
  padding: 16px;
  display: grid;
  gap: 12px;
  border: 1px solid #cddff2;
  border-radius: 14px;
  background: #f6faff;
}

.vehicle-fields[hidden] {
  display: none;
}

.vehicle-fields [hidden] {
  display: none;
}

.vehicle-fields legend {
  padding: 0 7px;
  color: var(--navy);
  font-size: 0.79rem;
  font-weight: 900;
}

.vehicle-fields > p {
  margin: -2px 0 1px;
  color: #718197;
  font-size: 0.7rem;
  line-height: 1.45;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  outline: none;
  border: 1px solid #d9e3ef;
  border-radius: 11px;
  background: #fbfdff;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 500;
  transition: 160ms ease;
}

.quote-form textarea {
  min-height: 85px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #6da4e2;
  background: white;
  box-shadow: 0 0 0 4px rgba(32, 105, 192, 0.1);
}

.quote-form .consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  color: #68778a;
  font-size: 0.71rem;
  font-weight: 500;
  line-height: 1.45;
}

.quote-form .consent input {
  width: 17px;
  min-height: 17px;
  margin: 1px 0 0;
  accent-color: var(--brand);
}

.submit-button {
  min-height: 51px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  background: #178f57;
  box-shadow: 0 12px 26px rgba(23, 143, 87, 0.18);
  color: white;
  font-size: 0.9rem;
  font-weight: 900;
  transition: 180ms ease;
}

.submit-button:hover {
  background: #117746;
  transform: translateY(-2px);
}

.submit-button svg {
  width: 20px;
}

.form-footnote {
  color: #8592a3;
  font-size: 0.66rem;
  line-height: 1.45;
  text-align: center;
}

.about-section {
  padding: 100px 0;
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 78px;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #f4f8fc;
  box-shadow: var(--shadow);
}

.about-image::before {
  position: absolute;
  z-index: 2;
  inset: 12px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(21, 85, 165, 0.16);
  border-radius: 19px;
}

.about-image img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 3.8vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.about-copy p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.72;
}

.about-copy .lead {
  margin: 24px 0 10px;
  color: #354860;
  font-size: 1.04rem;
  font-weight: 700;
}

.about-values {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.about-values > div {
  padding: 16px;
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
}

.about-values strong {
  color: var(--brand);
  font-size: 0.83rem;
}

.about-values span {
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.45;
}

.claim-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background:
    radial-gradient(circle at 85% 30%, rgba(72, 140, 219, 0.25), transparent 25%),
    #0d2c56;
  color: white;
}

.claim-section::after {
  position: absolute;
  right: -120px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.claim-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
}

.section-kicker-light {
  color: #8fc3ff;
}

.claim-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.claim-copy > p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.96rem;
  line-height: 1.72;
}

.claim-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.claim-whatsapp {
  background: #1fa866;
  color: white;
}

.claim-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 0.92rem;
  font-weight: 900;
}

.claim-phone svg {
  width: 19px;
}

.claim-steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.claim-steps li {
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.claim-steps li > span {
  width: 41px;
  height: 41px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(87, 158, 240, 0.15);
  color: #91c5ff;
  font-size: 0.72rem;
  font-weight: 900;
}

.claim-steps li > div {
  display: grid;
  gap: 6px;
}

.claim-steps strong {
  font-size: 0.91rem;
}

.claim-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.77rem;
  line-height: 1.5;
}

.faq-section {
  padding: 95px 0;
  background: #f7faff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 86px;
}

.faq-grid h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.07;
  letter-spacing: -0.045em;
}

.faq-grid > div:first-child > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

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

.faq-list details {
  overflow: hidden;
  border: 1px solid #dbe7f4;
  border-radius: 14px;
  background: white;
}

.faq-list summary {
  padding: 19px 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.3rem;
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 21px 19px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.contact-section {
  padding: 80px 0;
  background: white;
}

.contact-card {
  min-height: 300px;
  padding: 58px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 95% 0%, rgba(109, 173, 244, 0.22), transparent 30%),
    var(--pale);
}

.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 3.7vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.contact-copy p {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions > a {
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #d9e6f4;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  transition: 180ms ease;
}

.contact-actions > a:hover {
  background: white;
  box-shadow: 0 14px 30px rgba(21, 85, 165, 0.1);
  transform: translateX(4px);
}

.contact-action-icon {
  width: 45px;
  height: 45px;
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 13px;
  background: var(--brand);
  color: white;
}

.contact-action-whatsapp {
  background: #1c9d61;
}

.contact-action-icon svg {
  width: 21px;
}

.contact-actions > a > span:last-child {
  display: grid;
  gap: 4px;
}

.contact-actions small {
  color: #7d8a9b;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.contact-actions strong {
  color: var(--navy);
  font-size: 0.97rem;
}

footer {
  padding: 66px 0 24px;
  background: #091b35;
  color: white;
}

.footer-main {
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr 1fr;
  gap: 55px;
}

.footer-brand .brand-copy strong {
  color: white;
}

.footer-brand > p {
  max-width: 310px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links > strong,
.footer-contact > strong {
  margin-bottom: 5px;
  font-size: 0.83rem;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.76rem;
  line-height: 1.55;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.footer-bottom span:last-child {
  max-width: 570px;
  text-align: right;
}

.mobile-action-bar {
  display: none;
}

@keyframes rotateOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes formPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(92, 165, 247, 0.5);
  }
  100% {
    box-shadow: 0 0 0 18px rgba(92, 165, 247, 0);
  }
}

@media (max-width: 1050px) {
  nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.84fr;
    gap: 34px;
  }

  .floating-online {
    right: 0;
  }

  .floating-support {
    left: 0;
  }

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

  .quote-grid,
  .about-grid,
  .claim-grid {
    gap: 46px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 46px;
  }

  .contact-card {
    padding: 42px;
    gap: 40px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

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

  .topbar-inner {
    min-height: 40px;
    justify-content: center;
    text-align: center;
  }

  .topbar-inner > span,
  .topbar-links span {
    display: none;
  }

  .topbar-links {
    width: 100%;
    justify-content: space-between;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand-mark {
    width: 66px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.76rem;
  }

  .header-cta svg {
    display: none;
  }

  .hero-grid {
    min-height: unset;
    padding-block: 54px 82px;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 425px;
  }

  .portrait-frame {
    width: min(310px, 82vw);
    height: 390px;
  }

  .orbit-one {
    width: 360px;
    height: 360px;
  }

  .orbit-two {
    width: 310px;
    height: 310px;
  }

  .floating-online {
    top: 34px;
    right: -5px;
  }

  .floating-support {
    bottom: 5px;
    left: -4px;
  }

  .process-ribbon {
    margin-bottom: -22px;
    padding: 16px;
    grid-template-columns: 1fr 1fr;
    gap: 16px 10px;
  }

  .process-ribbon i {
    display: none;
  }

  .process-ribbon > div {
    align-items: flex-start;
  }

  .products-section {
    padding-top: 82px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .product-card {
    min-height: 220px;
  }

  .security-note-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .security-note a {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .operations-section,
  .quote-section,
  .about-section,
  .claim-section,
  .faq-section,
  .contact-section {
    padding-block: 72px;
  }

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

  .operation-card {
    min-height: 128px;
    padding: 18px;
  }

  .quote-grid,
  .about-grid,
  .claim-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    gap: 42px;
  }

  .quote-form {
    padding: 22px 18px;
  }

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

  .about-grid {
    gap: 38px;
  }

  .about-image {
    max-width: 470px;
    margin-inline: auto;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .claim-grid,
  .faq-grid {
    gap: 38px;
  }

  .contact-card {
    padding: 30px 22px;
    gap: 34px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 72px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 70;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 58px;
    padding: 6px;
    display: grid;
    grid-template-columns: 0.7fr 0.9fr 1.2fr;
    gap: 5px;
    border: 1px solid #dce7f2;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 40px rgba(10, 34, 65, 0.22);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 11px;
    color: var(--brand);
    font-size: 0.72rem;
    font-weight: 900;
  }

  .mobile-action-bar a:nth-child(2) {
    color: #178b54;
  }

  .mobile-action-bar a:last-child {
    background: var(--brand);
    color: white;
  }

  .mobile-action-bar svg {
    width: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
