@font-face{font-family:"Poppins";src:url("assets/fonts/poppins-300.woff2") format("woff2");font-weight:300;font-style:normal;font-display:swap;}
@font-face{font-family:"Poppins";src:url("assets/fonts/poppins-400.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:"Poppins";src:url("assets/fonts/poppins-500.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:"Poppins";src:url("assets/fonts/poppins-600.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:"Poppins";src:url("assets/fonts/poppins-700.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap;}
@font-face{font-family:"Poppins";src:url("assets/fonts/poppins-800.woff2") format("woff2");font-weight:800;font-style:normal;font-display:swap;}

:root {
  --navy: #2b1200;
  --deep: #5b2400;
  --purple: #ff8a22;
  --purple-dark: #a83d00;
  --purple-form: #f47a1f;
  --blue: #ff7a1a;
  --ink: #321800;
  --muted: #8b6a4f;
  --soft: #fff8f1;
  --line: #f1ddc8;
  --shadow: 0 0 32px rgba(0, 0, 0, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: white;
  font-family: "Poppins", Arial, sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  width: 100%;
  display: grid;
  grid-template-columns: 235px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 16px 40px 10px;
  color: white;
}

.brand img {
  width: 235px;
  height: auto;
  filter: sepia(1) saturate(2.5) hue-rotate(348deg) brightness(1.16);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 3vw, 54px);
  font-size: 16px;
  font-weight: 600;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn:focus-visible {
  color: #ffce9a;
  outline: none;
}

.nav-dropdown.is-open .nav-dropdown-btn {
  color: #ffce9a;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(35, 12, 0, 0.28);
  border: 1px solid rgba(255, 140, 50, 0.25);
  z-index: 80;
  display: none;
}

.nav-dropdown.is-open .nav-dropdown-panel {
  display: block;
}

.nav-dropdown-panel li {
  margin: 0;
}

.nav-dropdown-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  background: linear-gradient(90deg, rgba(255, 138, 34, 0.14), transparent);
  color: var(--purple-dark);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 6px 18px rgba(18, 140, 126, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  transform: scale(1.06);
  box-shadow: 0 8px 22px rgba(18, 140, 126, 0.55);
  outline: none;
}

.whatsapp-icon {
  flex-shrink: 0;
}

.header-btn,
.close-cta a,
.purple-cta a,
.metrics-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.header-btn.filled,
.close-cta a,
.purple-cta a:first-child,
.metrics-actions a:first-child {
  color: white;
  background: var(--purple);
  border: 2px solid var(--purple);
}

.header-btn.outline {
  color: white;
  background: transparent;
  border: 2px solid white;
}

.nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: white;
}

.nav-toggle-bars {
  position: relative;
  display: block;
  width: 24px;
  height: 18px;
}

.nav-toggle-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.2s ease, top 0.22s ease;
}

.nav-toggle-bar:nth-child(1) {
  top: 0;
}

.nav-toggle-bar:nth-child(2) {
  top: 7.5px;
}

.nav-toggle-bar:nth-child(3) {
  top: 15px;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  top: 7.5px;
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  top: 7.5px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: url("assets/hero.jpg") top left / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(35, 15, 0, 0.86) 24%, rgba(255, 121, 26, 0.13) 100%);
}

.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(680px, 800px) minmax(420px, 480px);
  justify-content: center;
  align-items: start;
  gap: clamp(30px, 3.6vw, 56px);
  width: min(1340px, calc(100% - 64px));
  margin: 0 auto;
  padding: 132px 0 70px;
}

.hero-copy {
  min-width: 0;
}

.section-kicker,
.section-title p {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 36px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  text-transform: uppercase;
}

.section-kicker::after,
.section-title p::after {
  content: "";
  width: 44px;
  height: 3px;
  flex: 0 0 auto;
  background: currentColor;
}

.section-kicker.light {
  margin-bottom: 36px;
  color: #ffe2bf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0 0 45px;
  color: white;
  font-size: clamp(58px, 3.6vw, 66px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 em {
  color: #ffae42;
  font-style: normal;
}

.hero-rotating-title {
  min-height: clamp(180px, 18vw, 230px);
}

#heroRotatingCopy,
.hero-market-note {
  display: block;
  transition: opacity 280ms ease, transform 280ms ease;
}

#heroRotatingCopy.is-fading,
.hero-market-note.is-fading {
  opacity: 0;
  transform: translateY(6px);
}

.hero-market-note {
  margin: -20px 0 32px;
  max-width: 760px;
  color: rgba(255, 244, 226, 0.95);
  font-size: 16px;
  line-height: 1.7;
}

.global-compliance-banner {
  width: min(1340px, calc(100% - 64px));
  margin: 16px auto 8px;
  padding: 12px 14px;
  border: 1px solid #ffd9b6;
  border-radius: 10px;
  background: #fff6ec;
}

.global-compliance-banner p {
  margin: 0;
  color: #5b3d28;
  line-height: 1.65;
  font-size: 14px;
}

/* Mask last 4 digits of phone numbers in lead tables (visual blur only). */
.phone-cell {
  white-space: nowrap;
}

.phone-tail {
  display: inline-block;
  filter: blur(5px);
  user-select: none;
  margin-left: 0.04em;
}

.footer-transparency {
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 244, 231, 0.92);
  line-height: 1.6;
  font-size: 13px;
}

.footer-transparency a {
  color: #fff;
}

.footer-company-details {
  grid-column: 1 / 3;
  grid-row: 2;
  align-self: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(0, 0, 0, 0.12);
  color: rgba(255, 244, 231, 0.92);
  line-height: 1.6;
  font-size: 12.5px;
}

.footer-company-details strong {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.98);
  font-size: 13px;
  font-weight: 700;
}

.footer-company-details a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-form-compliance-note {
  display: block;
  margin-top: 10px;
  color: rgba(255, 238, 220, 0.9);
  line-height: 1.55;
  font-size: 12px;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(800px, 100%);
  max-width: 100%;
}

.lead-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: 132px;
  padding: 12px 10px 14px;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf6 100%);
  border: 1px solid rgba(255, 200, 160, 0.45);
  border-bottom: 4px solid rgba(255, 200, 160, 0.35);
  box-shadow:
    0 4px 6px rgba(45, 18, 0, 0.04),
    0 12px 28px rgba(45, 18, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    border-bottom-color 0.2s ease,
    transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.22s ease;
}

.lead-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 138, 34, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lead-card:hover,
.lead-card.active {
  border-color: rgba(255, 138, 34, 0.55);
  border-bottom-color: var(--purple);
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 8px 16px rgba(255, 112, 28, 0.12),
    0 20px 40px rgba(45, 18, 0, 0.14);
}

.lead-card:hover::before,
.lead-card.active::before {
  opacity: 1;
}

.lead-card span {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: 78px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff4e6 0%, #ffe8d4 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.lead-card:hover span,
.lead-card.active span {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(255, 138, 34, 0.2);
}

.lead-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: sepia(1) saturate(2.4) hue-rotate(345deg) brightness(1.04);
  transition: transform 0.22s ease;
}

.lead-card:hover img,
.lead-card.active img {
  transform: scale(1.08);
}

.lead-card strong {
  max-width: 150px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
  letter-spacing: 0.01em;
}

.partners {
  margin-top: 34px;
  padding-left: 0;
  color: white;
}

.partners h2 {
  position: relative;
  margin: 0 0 23px;
  padding-left: 14px;
  color: white;
  font-size: 22px;
  font-weight: 700;
}

.partners h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
}

.partners-slider {
  max-width: 560px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: partners-marquee 20s linear infinite;
}

.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

.partners img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.partners img:nth-child(1) {
  max-height: 31px;
}

@keyframes partners-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33%);
  }
}

.lead-form {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 11px;
  width: min(480px, 100%);
  padding: 28px 31px 31px;
  border: 1px solid rgba(255, 181, 82, 0.34);
  border-radius: 18px;
  color: white;
  background:
    radial-gradient(circle at 88% 9%, rgba(255, 169, 43, 0.58), transparent 28%),
    linear-gradient(155deg, #2b1200 0%, #9f3b00 52%, #ff8b22 128%);
  box-shadow:
    0 28px 60px rgba(56, 22, 0, 0.34),
    0 0 36px rgba(255, 128, 36, 0.22);
  overflow: visible;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 12% 100%, rgba(255, 191, 87, 0.28), transparent 36%);
  pointer-events: none;
}

.lead-form > * {
  position: relative;
  z-index: 1;
}

.form-call {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-call span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  color: white;
  background: linear-gradient(135deg, #ff9d2f 0%, #ff6b1a 100%);
  box-shadow: 0 10px 24px rgba(255, 112, 28, 0.34);
  font-size: 0;
}

.form-call span::before {
  content: "\260E";
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.form-call strong,
.form-call a {
  display: block;
  color: white;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.form-call a {
  margin-top: 7px;
  font-size: 20px;
}

.lead-form h2 {
  margin: 7px 0 7px;
  color: white;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 12px rgba(74, 27, 0, 0.28);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 1fr);
  gap: 8px 10px;
  align-items: start;
  width: 100%;
  overflow: visible;
}

.phone-field.phone-field--open {
  position: relative;
  z-index: 10050;
}

.phone-country-wrap {
  position: relative;
  width: 100%;
  min-width: 0;
}

.phone-country-wrap.is-open {
  z-index: 1;
}

.phone-country-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 37px;
  height: auto;
  margin: 0;
  padding: 5px 8px 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  background-image: none;
  box-shadow: inset 0 0 0 1px rgba(255, 137, 34, 0.05);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  outline: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.phone-country-wrap.is-open .phone-country-trigger {
  border-color: #b0b0b0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.phone-flag-box {
  flex-shrink: 0;
  display: inline-flex;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.phone-flag-img {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
}

.phone-trigger-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.phone-dial-display {
  flex: 0 0 auto;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.phone-name-display {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
}

.phone-caret {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6b5344;
  margin-top: 2px;
  transition: transform 0.2s ease;
}

.phone-country-wrap.is-open .phone-caret {
  transform: rotate(180deg);
}

.phone-country-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  max-height: min(260px, 48vh);
  margin: 0;
  padding: 2px 0;
  list-style: none;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 8px;
  border: 1px solid #bdbdbd;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  z-index: 10060;
  -webkit-overflow-scrolling: touch;
}

.phone-country-option {
  display: grid;
  grid-template-columns: 26px minmax(3.25rem, auto) 1fr;
  column-gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 7px 10px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #1a1a1a;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
}

.phone-opt-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-opt-flag img {
  display: block;
  width: 22px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.phone-country-option:hover {
  background: #e8e8e8;
}

.phone-country-option:focus-visible {
  background: #d6e9ff;
  outline: none;
}

.phone-opt-dial {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #1a1a1a;
  white-space: nowrap;
}

.phone-opt-name {
  min-width: 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.35;
  color: #1a1a1a;
  white-space: normal;
  word-break: break-word;
}

.phone-national-input {
  width: 100%;
  min-width: 0;
  align-self: start;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 137, 34, 0.05);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.phone-country-trigger:focus-visible {
  border-color: #9a9a9a;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
  transform: none;
}

.phone-field .phone-national-input:focus {
  border-color: #ff9d2f;
  box-shadow:
    0 0 0 3px rgba(255, 157, 47, 0.24),
    inset 0 0 0 1px rgba(255, 137, 34, 0.14);
  transform: translateY(-1px);
}

.phone-national-input::placeholder {
  color: #9b8066;
}

.lead-form input:not(.phone-national-input),
.lead-form select {
  width: 100%;
  height: 37px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 137, 34, 0.05);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lead-form input:not(.phone-national-input):focus,
.lead-form select:focus {
  border-color: #ff9d2f;
  box-shadow:
    0 0 0 3px rgba(255, 157, 47, 0.24),
    inset 0 0 0 1px rgba(255, 137, 34, 0.14);
  transform: translateY(-1px);
}

.lead-form input:not(.phone-national-input)::placeholder {
  color: #9b8066;
}

.lead-form select {
  font-weight: 500;
  cursor: pointer;
}

.lead-form textarea.lead-form-textarea {
  width: 100%;
  min-height: 96px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(255, 137, 34, 0.05);
  font-size: 13px;
  font-family: inherit;
  line-height: 1.45;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form textarea.lead-form-textarea::placeholder {
  color: #9b8066;
}

.lead-form textarea.lead-form-textarea:focus {
  border-color: #ff9d2f;
  box-shadow:
    0 0 0 3px rgba(255, 157, 47, 0.24),
    inset 0 0 0 1px rgba(255, 137, 34, 0.14);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-top: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 205, 130, 0.22);
  border-radius: 10px;
  color: white;
  background: rgba(55, 21, 0, 0.22);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.45;
}

.consent input {
  accent-color: #ff8a22;
  width: 14px;
  height: 14px;
  margin-top: 5px;
}

.lead-form p {
  margin: 0;
  color: white;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.45;
}

.lead-form p a {
  border-bottom: 1px solid white;
}

.lead-form button:not(.phone-country-option):not(.phone-country-trigger),
.footer-form button {
  min-height: 40px;
  border: 0;
  border-radius: 4px;
  color: white;
  background: #ff8a22;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
}

.lead-form button:not(.phone-country-option):not(.phone-country-trigger) {
  min-height: 44px;
  border: 1px solid rgba(255, 214, 158, 0.55);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffad35 0%, #ff741d 52%, #ff9f2b 100%);
  box-shadow:
    0 14px 28px rgba(255, 103, 25, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lead-form button:not(.phone-country-option):not(.phone-country-trigger):hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(255, 103, 25, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  filter: saturate(1.08);
}

.lead-form small {
  min-height: 16px;
  text-align: center;
}

.services {
  position: relative;
  padding: 86px 20px 86px;
  overflow: hidden;
  background: #ffffff;
}

.outline-ring {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 1px solid #d7dbe8;
  border-radius: 50%;
  pointer-events: none;
}

.services-ring {
  right: 48px;
  top: 260px;
  width: 310px;
  height: 310px;
}

.section-title {
  width: min(900px, 100%);
}

.section-title.center {
  margin: 0 auto;
  text-align: center;
}

.section-title.center p {
  justify-content: center;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
}

.section-title p {
  font-size: 16px;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 255px);
  justify-content: center;
  gap: 52px 175px;
  width: min(1240px, 100%);
  margin: 70px auto 62px;
}

.services-grid article {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: start;
}

.services-grid img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: sepia(1) saturate(2.4) hue-rotate(345deg) brightness(1.05);
}

.services-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
}

.purple-cta {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: 54px 30px;
  border-radius: 12px;
  color: white;
  background: linear-gradient(90deg, #5a2300 0%, #ff8a22 100%);
  box-shadow: 0 18px 40px rgba(255, 117, 24, 0.18);
  text-align: center;
}

.purple-cta h3 {
  margin: 0;
  color: white;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.purple-cta p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.purple-cta div,
.metrics-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.purple-cta a,
.metrics-actions a,
.close-cta a {
  min-height: 52px;
  padding: 0 36px;
  font-size: 17px;
}

.about {
  position: relative;
  padding: 86px 20px 84px;
  overflow: hidden;
  background: var(--soft);
}

.about-ring {
  right: 170px;
  bottom: 38px;
  width: 270px;
  height: 270px;
}

.about-wrap {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.about .section-title {
  margin-bottom: 42px;
}

.about .section-title p {
  margin-bottom: 22px;
  color: var(--blue);
}

.about p {
  color: #8c725a;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 28px;
}

.about .purple-cta {
  margin-top: 42px;
}

.metrics {
  position: relative;
  padding: 98px 20px 86px;
  min-height: 500px;
  color: white;
  background:
    linear-gradient(rgba(49, 20, 0, 0.78), rgba(49, 20, 0, 0.74)),
    url("assets/metrics-bg.jpg") center / cover no-repeat;
  text-align: center;
}

.light-title p,
.light-title h2 {
  color: white;
}

.light-title h2 {
  font-size: 35px;
  line-height: 1.2;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 104px;
  width: min(920px, 100%);
  margin: 54px auto 42px;
}

.metric-grid div {
  display: grid;
  gap: 7px;
}

.metric-grid strong {
  color: white;
  font-size: 39px;
  font-weight: 700;
  line-height: 1;
}

.metric-grid span {
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.live {
  position: relative;
  padding: 92px 20px 104px;
  overflow: hidden;
  background: #fffaf4;
}

.live-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(1100px, 100%);
  margin: 22px auto 0;
}

.live-controls select,
.live-control-btn {
  height: 40px;
  border: 1px solid #d8c3af;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.live-controls select {
  min-width: 250px;
  padding: 0 12px;
}

.live-control-btn {
  min-width: 74px;
  padding: 0 12px;
  cursor: pointer;
}

.ring-art {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: contain;
  opacity: 0.65;
}

.ring-art.left {
  left: 150px;
  top: 128px;
}

.ring-art.right {
  right: 95px;
  top: 82px;
}

.live-sheet-wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 42px auto 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 13px 32px rgba(90, 43, 0, 0.11);
  overflow: auto;
}

.live-sheet {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  font-size: 14px;
}

.live-sheet thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 12px 14px;
  text-align: left;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #b44b00 0%, #ff8a22 100%);
  white-space: nowrap;
}

.live-sheet tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid #efe2d5;
  color: #5e4837;
  white-space: nowrap;
}

.live-sheet tbody tr:nth-child(even) {
  background: #fff7ef;
}

.live-sheet tbody tr:hover {
  background: #ffefd9;
}

.live-sheet tbody td:first-child {
  color: var(--ink);
  font-weight: 700;
}

.testimonials {
  position: relative;
  padding: 88px 12px 92px;
  overflow: hidden;
  background: white;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  width: min(1220px, 100%);
  margin: 46px auto 0;
}

figure {
  position: relative;
  min-height: 214px;
  margin: 0;
  padding: 27px 28px 27px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: 0 10px 25px rgba(90, 43, 0, 0.09);
}

.quote {
  position: absolute;
  right: 26px;
  top: 24px;
  width: 86px;
  opacity: 0.12;
}

.person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.person > img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
}

.person span {
  display: block;
  color: #ff8a22;
  font-size: 13px;
  letter-spacing: 3px;
}

.person strong,
.person small {
  display: block;
}

.person strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.person small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #8a7058;
  font-size: 14px;
  line-height: 1.75;
}

.close-cta {
  position: relative;
  z-index: 0;
  padding: 82px 20px 72px;
  color: white;
  background: linear-gradient(180deg, #ff8a22 0%, #c74a00 88%, #a03a00 100%);
  text-align: center;
}

.close-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.close-cta h2 {
  margin: 0;
  color: white;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.12;
}

.close-cta p {
  margin: 18px 0 27px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.footer {
  position: relative;
  z-index: 1;
  color: white;
  background: linear-gradient(180deg, #3d1500 0%, #4a1b00 42%, #2c0d00 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 0.62fr 1.42fr 0.96fr;
  gap: 24px 28px;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 38px;
}

.footer-logo {
  width: 220px;
  margin: -6px 0 18px;
  filter: sepia(1) saturate(2.5) hue-rotate(348deg) brightness(1.22);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.footer address {
  width: 100%;
  min-width: 0;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
  font-size: 14px;
  line-height: 1.65;
}

.footer address strong,
.footer-form strong {
  display: block;
  margin-bottom: 12px;
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.footer-form {
  display: grid;
  gap: 12px;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: start;
}

.footer-form div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.footer-form input,
.footer-form textarea {
  min-height: 40px;
  padding: 0 12px;
  color: white;
  background: rgba(44, 15, 0, 0.22);
  border: 1px solid rgba(255, 220, 178, 0.6);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
}

.footer-form textarea {
  min-height: 64px;
  padding-top: 10px;
  resize: vertical;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 244, 231, 0.78);
}

.footer-form button {
  min-height: 40px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 12px;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 300;
}

.copyright-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.copyright-links a {
  color: rgba(255, 248, 240, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright-links a:hover,
.copyright-links a:focus-visible {
  color: #fff;
  outline: none;
}

.copyright-sep {
  opacity: 0.55;
  user-select: none;
}

@media (max-width: 1366px) {
  .site-header {
    grid-template-columns: 15% 1fr auto;
    padding: 10px 20px;
  }

  .brand img {
    width: 100%;
    min-width: 150px;
  }

  .main-nav {
    gap: 20px;
    font-size: 14px;
  }

  .header-actions {
    gap: 12px;
  }

  .phone-link {
    font-size: 14px;
  }

  .header-btn {
    min-height: 37px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-wrap {
    grid-template-columns: minmax(620px, 700px) minmax(380px, 440px);
    gap: clamp(26px, 3vw, 42px);
    width: min(1240px, calc(100% - 40px));
    padding-top: 98px;
  }

  h1 {
    font-size: 43px;
    line-height: 1.18;
    margin-bottom: 30px;
  }

  .section-kicker {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .lead-grid {
    width: min(760px, 100%);
    gap: 12px;
  }

  .lead-card {
    min-height: 104px;
  }

  .lead-card span {
    min-height: 58px;
  }

  .lead-card img {
    width: 35px;
    height: 35px;
  }

  .lead-card strong {
    font-size: 11px;
    line-height: 1.35;
  }

  .partners {
    margin-top: 22px;
  }

  .partners h2 {
    margin-bottom: 12px;
    padding-left: 0;
    font-size: 12px;
  }

  .partners h2::before {
    display: none;
  }

  .partners img {
    max-height: 18px;
  }

  .lead-form {
    width: min(440px, 100%);
    gap: 10px;
    padding: 23px 24px 27px;
    border-radius: 14px;
  }

  .form-call span {
    width: 44px;
    height: 44px;
  }

  .form-call span::before {
    font-size: 27px;
  }

  .form-call strong,
  .form-call a {
    font-size: 22px;
  }

  .form-call a {
    margin-top: 5px;
    font-size: 18px;
  }

  .lead-form h2 {
    margin: 5px 0 5px;
    font-size: 18px;
  }

  .lead-form input:not(.phone-national-input),
  .lead-form select,
  .phone-country-trigger,
  .phone-national-input {
    height: 35px;
    font-size: 12px;
  }

  .phone-country-trigger {
    padding: 0 8px 0 6px;
  }

  .phone-flag-img {
    width: 22px;
  }

  .phone-field {
    grid-template-columns: minmax(0, 46%) minmax(0, 1fr);
    gap: 6px 8px;
  }

  .consent,
  .lead-form p {
    font-size: 11px;
    line-height: 1.42;
  }

  .consent input {
    width: 13px;
    height: 13px;
  }

  .lead-form button:not(.phone-country-option):not(.phone-country-trigger) {
    min-height: 41px;
    font-size: 18px;
    font-weight: 600;
    text-transform: none;
  }

  .lead-form textarea.lead-form-textarea {
    min-height: 88px;
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (max-width: 1100px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    align-items: center;
    padding: 12px max(16px, env(safe-area-inset-right)) 12px max(16px, env(safe-area-inset-left));
    padding-top: max(12px, env(safe-area-inset-top));
    background: rgba(48, 19, 0, 0.94);
    box-sizing: border-box;
  }

  .site-header.nav-open {
    align-items: start;
    max-height: 100vh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }

  .brand {
    max-width: calc(100% - 64px);
  }

  .brand img {
    width: min(185px, 52vw);
  }

  .nav-toggle {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: flex;
    z-index: 1001;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    color: white;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 8px 0;
  }

  .site-header.nav-open .header-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    margin-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-header.nav-open .header-actions .header-btn {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }

  .site-header.nav-open .header-contact {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-btn {
    justify-content: flex-start;
    width: 100%;
    padding: 8px 4px;
    font-size: 15px;
  }

  .nav-dropdown-panel {
    position: static;
    left: auto;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    transform: none;
    border: 0;
    border-radius: 10px;
    background: rgba(40, 16, 0, 0.55);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-panel {
    display: block;
    margin-top: 6px;
    padding: 6px 0;
    border: 1px solid rgba(255, 200, 160, 0.22);
  }

  .nav-dropdown-item {
    color: rgba(255, 248, 240, 0.95);
  }

  .nav-dropdown-item:hover,
  .nav-dropdown-item:focus-visible {
    background: rgba(255, 138, 34, 0.2);
    color: #fff;
  }

  .header-contact {
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero .lead-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid rgba(255, 160, 90, 0.55);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.75) inset,
      0 10px 28px rgba(0, 0, 0, 0.22);
  }

  .hero .lead-card::before {
    opacity: 0.35;
  }

  .hero .lead-card span {
    background: linear-gradient(180deg, #fff6ec 0%, #ffe8d4 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 138, 34, 0.18);
  }

  .hero .lead-card strong {
    color: #140700;
    font-weight: 800;
  }

  .hero .lead-card img {
    filter: saturate(1.45) brightness(1.08);
  }

  .hero .lead-card:hover,
  .hero .lead-card.active {
    border-color: rgba(255, 138, 34, 0.5);
    border-bottom-color: var(--purple);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.85) inset,
      0 14px 36px rgba(0, 0, 0, 0.28);
  }

  .hero {
    min-height: auto;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(760px, calc(100% - 40px));
    padding-top: max(110px, calc(92px + env(safe-area-inset-top)));
  }

  .lead-grid {
    grid-template-columns: repeat(3, 1fr);
    width: min(720px, 100%);
  }

  .lead-form {
    width: min(480px, 100%);
  }

  .services-grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 42px 50px;
    width: min(820px, 100%);
  }

  .services-grid img {
    width: 44px;
    height: 44px;
  }

  .services-grid h3 {
    font-size: 17px;
  }

  .purple-cta {
    width: min(900px, 100%);
    padding: 38px 22px;
  }

  .purple-cta h3 {
    font-size: 24px;
  }

  .purple-cta p {
    font-size: 16px;
  }

  .about-wrap {
    width: min(900px, 100%);
  }

  .about p {
    font-size: 16px;
  }

  .metrics {
    padding: 82px 20px 76px;
  }

  .metric-grid {
    gap: 28px 48px;
    width: min(760px, 100%);
  }

  .metric-grid strong {
    font-size: 34px;
  }

  .live-sheet-wrap {
    width: min(920px, 100%);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
    width: min(820px, 100%);
  }

  .close-cta h2 {
    font-size: 38px;
  }

  .footer-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer-wrap > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-company-details {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-form {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-form {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-logo {
    width: 230px;
  }

  .copyright {
    font-size: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 10px max(14px, env(safe-area-inset-right)) 10px max(14px, env(safe-area-inset-left));
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .nav-toggle {
    display: flex;
    width: 46px;
    height: 46px;
  }

  .brand img {
    width: min(155px, 48vw);
    min-width: 0;
  }

  .main-nav,
  .header-actions {
    font-size: 13px;
  }

  .hero-wrap {
    width: min(100%, calc(100% - 32px));
    padding-bottom: 42px;
  }

  .section-kicker,
  .section-title p {
    gap: 10px;
    font-size: 10px;
    line-height: 1.45;
  }

  .section-kicker::after,
  .section-title p::after {
    width: 32px;
  }

  h1 {
    max-width: 380px;
    font-size: 34px;
  }

  .lead-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 12px;
  }

  .services-grid,
  .metric-grid,
  .testimonial-grid,
  .footer-wrap,
  .footer-form div {
    grid-template-columns: 1fr;
  }

  .lead-card {
    min-height: 118px;
    padding: 10px 8px 12px;
    text-align: center;
  }

  .lead-card span {
    width: 100%;
    min-height: 64px;
    margin: 0 0 6px;
  }

  .lead-card strong {
    max-width: none;
    font-size: 12.5px;
    font-weight: 800;
  }

  .hero .lead-card strong {
    font-size: 12.5px;
  }

  .partners-slider {
    max-width: 100%;
  }

  .partners-track {
    gap: 24px;
    animation: partners-marquee 14s linear infinite;
  }

  .partners div,
  .purple-cta div,
  .metrics-actions {
    flex-wrap: wrap;
  }

  .copyright {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    width: calc(100% - 32px);
    padding-top: 24px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 12px));
    margin-top: 4px;
  }

  .copyright-line {
    max-width: 340px;
    line-height: 1.5;
  }

  .copyright-links {
    justify-content: center;
  }

  .lead-form {
    width: 100%;
  }

  .metrics {
    min-height: auto;
    padding: 66px 16px 62px;
  }

  .services-grid {
    justify-items: center;
    text-align: center;
    gap: 28px;
    margin: 36px auto 38px;
  }

  .services-grid img {
    margin: 0 auto;
  }

  .services,
  .about,
  .live,
  .testimonials {
    padding-left: 16px;
    padding-right: 16px;
  }

  .purple-cta {
    padding: 24px 16px;
  }

  .purple-cta h3 {
    font-size: 20px;
  }

  .purple-cta p {
    font-size: 14px;
  }

  .purple-cta div,
  .metrics-actions {
    gap: 12px;
    font-size: 12px;
  }

  .purple-cta a,
  .metrics-actions a,
  .close-cta a {
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

  .about p {
    font-size: 14px;
  }

  .metric-grid {
    width: min(360px, 100%);
    gap: 28px;
    margin: 38px auto 34px;
  }

  .metric-grid strong {
    font-size: 30px;
  }

  .metric-grid span {
    font-size: 11px;
  }

  .testimonial-grid {
    gap: 18px;
  }

  .section-title h2,
  .light-title h2 {
    font-size: 28px;
  }

  .live-sheet-wrap {
    margin-top: 28px;
    border-radius: 8px;
  }

  .live-controls {
    justify-content: stretch;
    gap: 8px;
  }

  .live-controls select {
    min-width: 0;
    flex: 1;
  }

  .live-sheet {
    min-width: 760px;
    font-size: 12px;
  }

  .live-sheet thead th,
  .live-sheet tbody td {
    padding: 9px 10px;
  }

  figure {
    min-height: auto;
    padding: 22px 18px;
  }

  .person > img {
    width: 54px;
    height: 54px;
  }

  blockquote {
    font-size: 13px;
  }

  .close-cta {
    padding: 58px 16px 44px;
  }

  .close-cta h2 {
    font-size: 30px;
  }

  .close-cta p {
    font-size: 15px;
  }

  .ring-art {
    display: none;
  }

  .footer-wrap {
    gap: 30px;
    padding: 32px 0 calc(44px + env(safe-area-inset-bottom, 0px));
  }

  .footer-company-details {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .footer-logo {
    width: 210px;
    margin: 0 auto 22px;
  }

  .socials {
    justify-content: center;
  }

  .footer address,
  .footer-form input,
  .footer-form textarea,
  .footer-form button {
    font-size: 14px;
  }

  .footer address strong,
  .footer-form strong {
    font-size: 18px;
  }

  .copyright {
    font-size: 13px;
    padding-bottom: calc(44px + env(safe-area-inset-bottom, 16px));
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 31px;
  }

  .lead-grid {
    gap: 10px;
  }

  .lead-card {
    min-height: 106px;
    padding: 8px;
  }

  .lead-card span {
    min-height: 56px;
  }

  .lead-card img {
    width: 32px;
    height: 32px;
  }

  .lead-card strong {
    font-size: 11.5px;
  }

  .hero .lead-card strong {
    font-size: 11.5px;
  }

  .partners-slider {
    mask-image: none;
  }
}

.industry-insights {
  width: min(1200px, calc(100% - 40px));
  margin: 64px auto;
}

.industry-insights .section-title {
  margin-bottom: 24px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.insight-card {
  padding: 20px;
  border: 1px solid #ffe0c4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 18px rgba(17, 24, 39, 0.06);
}

.insight-card h3 {
  margin: 0 0 8px;
  color: #14151d;
  font-size: 20px;
}

.insight-card p {
  margin: 0;
  line-height: 1.65;
  color: #4a5260;
}

.industry-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid #ffd6b6;
  border-radius: 10px;
  background: #fff6ee;
  color: #5a3d2a;
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 980px) {
  .insight-grid {
    grid-template-columns: 1fr;
  }
}
