:root {
  --ink: #122139;
  --ink-soft: #35496a;
  --muted: #5d6c84;
  --cream: #eef2f9;
  --cream-2: #f8fafd;
  --sand: #d7e0ee;
  --sage: #c8d5ea;
  --sage-2: #dde6f3;
  --moss: #1f3a63;
  --moss-dark: #0d1f3c;
  --clay: #c08a25;
  --clay-dark: #9c6f15;
  --amber: #e2b340;
  --sky: #33567f;
  --glass: rgba(255, 255, 255, 0.5);
  --glass-strong: rgba(255, 255, 255, 0.66);
  --glass-border: rgba(255, 255, 255, 0.82);
  --line: rgba(24, 43, 74, 0.18);
  --shadow: 0 24px 70px rgba(15, 30, 58, 0.16);
  --shadow-soft: 0 14px 38px rgba(15, 30, 58, 0.12);
  --radius: 22px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(115deg, rgba(204, 215, 233, 0.82), rgba(238, 242, 249, 0.92) 42%, rgba(215, 224, 238, 0.78)),
    linear-gradient(180deg, #f6f9fd 0%, #e8edf6 48%, #dbe3f0 100%);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  margin: 0;
  min-height: 100vh;
}

body::before {
  background-image:
    linear-gradient(rgba(24, 43, 74, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 43, 74, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}

.site-atmosphere {
  background-image:
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 160px),
    repeating-linear-gradient(34deg, rgba(31, 58, 99, 0.08) 0, rgba(31, 58, 99, 0.08) 1px, transparent 1px, transparent 210px);
  inset: 0;
  opacity: 0.78;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(248, 250, 253, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  display: flex;
  height: var(--header-height);
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 253, 0.92);
  box-shadow: 0 14px 36px rgba(15, 30, 58, 0.12);
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
}

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

.brand-logo {
  align-items: center;
  background: rgba(13, 31, 60, 0.92);
  border: 1px solid rgba(226, 179, 64, 0.5);
  box-shadow: 0 0 20px rgba(226, 179, 64, 0.28);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  overflow: hidden;
  width: 44px;
}

.brand-logo img {
  height: 38px;
  object-fit: cover;
  width: 58px;
}

.brand-name {
  color: var(--ink);
  display: grid;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-name span:last-child {
  color: var(--clay);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  margin-top: 3px;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a {
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
  padding: 10px 14px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(192, 138, 37, 0.14);
  border-color: rgba(192, 138, 37, 0.28);
  color: var(--clay-dark);
  outline: none;
}

.header-cta {
  background: linear-gradient(135deg, #c9982e, #e2b340);
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(192, 138, 37, 0.26);
  color: #1a1205 !important;
  margin-left: 6px;
  padding-inline: 20px !important;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(135deg, #b07f1d, #d3a02f) !important;
  color: #1a1205 !important;
}

.menu-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.icon {
  display: inline-flex;
  flex-shrink: 0;
  height: 1.1em;
  width: 1.1em;
}

.icon svg {
  height: 100%;
  width: 100%;
}

.hero,
.page-hero {
  overflow: hidden;
  position: relative;
}

.hero::before,
.page-hero::before,
.section::before {
  background-image: radial-gradient(circle, rgba(24, 43, 74, 0.22) 1px, transparent 1.5px);
  background-size: 155px 155px;
  content: "";
  inset: 0;
  opacity: 0.48;
  pointer-events: none;
  position: absolute;
}

.hero {
  align-items: center;
  display: flex;
  min-height: 100svh;
  padding: calc(var(--header-height) + 54px) 0 76px;
}

.hero-inner {
  margin: 0 auto;
  max-width: 980px;
  padding: 0 24px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.planet-stage {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.planet-stage img {
  filter: drop-shadow(0 18px 34px rgba(18, 33, 57, 0.28));
  height: 132px;
  object-fit: contain;
  object-position: center;
  width: 176px;
}

.pill {
  align-items: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--clay-dark);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 850;
  gap: 9px;
  margin-bottom: 28px;
  padding: 8px 15px;
}

.pill-dot {
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(220, 154, 53, 0.16);
  height: 7px;
  width: 7px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(3.1rem, 8vw, 5.8rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 24px;
}

h1 span,
.gradient-text {
  background: linear-gradient(135deg, var(--clay-dark), var(--amber), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  color: var(--ink);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-copy {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin: 0 auto 34px;
  max-width: 780px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 58px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #c9982e, #e2b340);
  box-shadow: 0 16px 34px rgba(192, 138, 37, 0.28);
  color: #1a1205;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 42px rgba(192, 138, 37, 0.36);
}

.btn-secondary {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.46);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.64);
}

.stats-grid {
  border-top: 1px solid rgba(24, 43, 74, 0.18);
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 34px;
}

.stat-card,
.glass-card,
.legal-card {
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    linear-gradient(180deg, rgba(200, 213, 234, 0.2), rgba(226, 179, 64, 0.08));
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: 16px;
  min-height: 96px;
  padding: 19px 16px;
}

.stat-card strong {
  color: var(--clay);
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.section {
  padding: clamp(72px, 8vw, 106px) 0;
  position: relative;
}

.section-header {
  margin: 0 auto 52px;
  max-width: 760px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.section-label {
  align-items: center;
  color: var(--clay-dark);
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 950;
  gap: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-label::before,
.section-label::after {
  background: var(--clay);
  content: "";
  height: 1px;
  width: 44px;
}

.section-header p,
.section-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.cards-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.glass-card {
  border-radius: var(--radius);
  min-height: 245px;
  padding: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.glass-card:hover {
  border-color: rgba(192, 138, 37, 0.42);
  box-shadow: 0 28px 78px rgba(15, 30, 58, 0.2);
  transform: translateY(-3px);
}

.service-icon,
.value-icon,
.contact-icon {
  align-items: center;
  border-radius: 50%;
  color: #fffaf2;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  margin-bottom: 24px;
  width: 56px;
}

.service-icon svg,
.value-icon svg,
.contact-icon svg {
  height: 24px;
  width: 24px;
}

.tone-sky {
  background: linear-gradient(135deg, #2c4a72, #3d6594);
}

.tone-clay {
  background: linear-gradient(135deg, #b07f1d, #e2b340);
}

.tone-sage {
  background: linear-gradient(135deg, #1f3a63, #335a86);
}

.tone-amber {
  background: linear-gradient(135deg, #c9982e, #e6bd4f);
}

.tone-moss {
  background: linear-gradient(135deg, #0e2240, #21426f);
}

.tone-stone {
  background: linear-gradient(135deg, #475569, #6b7c93);
}

.glass-card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 24px;
}

.card-link {
  color: var(--clay-dark);
  font-size: 0.93rem;
  font-weight: 950;
}

.center-action {
  margin-top: 44px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-hero {
  align-items: center;
  display: flex;
  min-height: 330px;
  padding: calc(var(--header-height) + 52px) 0 78px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 4.9rem);
  margin-bottom: 16px;
}

.breadcrumb {
  align-items: center;
  color: var(--ink-soft);
  display: inline-flex;
  font-size: 0.94rem;
  font-weight: 650;
  gap: 10px;
}

.breadcrumb span:last-child {
  color: var(--clay-dark);
  font-weight: 900;
}

.about-grid,
.contact-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.about-quote {
  border-left: 5px solid var(--clay);
  border-radius: 18px;
  color: var(--ink);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 650;
  margin: 28px 0;
  padding: 22px 24px;
}

.value-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-card {
  min-height: 195px;
  padding: 26px;
}

.process-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.process-card {
  min-height: 255px;
  position: relative;
}

.process-num {
  color: rgba(192, 138, 37, 0.26);
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 22px;
}

.process-card .service-icon {
  height: 44px;
  width: 44px;
}

.wide-card {
  margin: 54px auto 0;
  max-width: 740px;
  min-height: unset;
  text-align: center;
}

.contact-card,
.contact-form {
  min-height: 470px;
}

.email-launch-card {
  cursor: pointer;
  display: block;
}

.email-launch-card:focus-visible {
  border-color: rgba(192, 138, 37, 0.6);
  box-shadow: 0 0 0 4px rgba(192, 138, 37, 0.16), var(--shadow);
  outline: none;
}

.btn[aria-disabled="true"] {
  opacity: 0.72;
}

.contact-item {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.contact-icon {
  border-radius: 14px;
  height: 42px;
  margin: 0;
  width: 42px;
}

.contact-item small {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-item a,
.contact-item span {
  color: var(--ink);
  font-weight: 850;
}

.social-row {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
}

.social-row span {
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  padding: 6px 12px;
}

.form-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.hp-field {
  height: 0;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  top: auto;
  width: 1px;
}

label {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 900;
}

label span {
  color: var(--clay);
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 14px;
  color: var(--ink);
  outline: none;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  width: 100%;
}

select {
  appearance: none;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9a927f;
}

input:focus,
select:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(192, 138, 37, 0.6);
  box-shadow: 0 0 0 4px rgba(192, 138, 37, 0.14);
}

.form-status {
  color: var(--moss-dark);
  font-size: 0.9rem;
  font-weight: 850;
  min-height: 24px;
  text-align: center;
}

.legal-wrap {
  position: relative;
  z-index: 1;
}

.legal-card {
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: 860px;
  padding: clamp(28px, 5vw, 46px);
}

.legal-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-top: 36px;
}

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

.legal-card h3 {
  color: var(--clay-dark);
  font-size: 1.08rem;
  margin-top: 24px;
}

.legal-card p,
.legal-card li {
  color: var(--ink-soft);
}

.legal-card strong {
  color: var(--ink);
}

.legal-card ul {
  color: var(--ink-soft);
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding-left: 24px;
}

.legal-card li::marker {
  color: var(--clay);
}

.legal-card a {
  color: var(--clay-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.cta-band {
  background:
    linear-gradient(115deg, rgba(14, 31, 58, 0.96), rgba(31, 58, 99, 0.92)),
    linear-gradient(90deg, #0e1f3c, #1f3a63);
  color: #f4f7fc;
  padding: 42px 0;
}

.cta-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.cta-inner h3 {
  color: #fffaf2;
  margin-bottom: 2px;
}

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

.cta-inner .btn {
  background: linear-gradient(135deg, #c9982e, #e2b340);
  color: #1a1205;
  min-width: 210px;
}

.footer-main {
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background: rgba(18, 33, 57, 0.16);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.footer-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.25fr;
  padding: 56px 24px;
}

.footer-grid h4 {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li,
.footer-grid a,
.footer-bottom {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.footer-grid ul {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid a:hover {
  color: var(--clay-dark);
}

.footer-contact-button {
  width: 100%;
}

.footer-legal {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 18px 24px;
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-bottom {
  border-top: 1px solid rgba(87, 105, 85, 0.12);
  display: flex;
  justify-content: space-between;
  padding: 28px 24px;
}

.chat-root {
  bottom: 22px;
  display: grid;
  gap: 12px;
  justify-items: end;
  position: fixed;
  right: 22px;
  z-index: 60;
}

.chat-bubble {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(192, 138, 37, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
  max-width: 260px;
  padding: 13px 36px 13px 14px;
  position: relative;
}

.chat-bubble button {
  align-items: center;
  background: var(--clay);
  border: 0;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 21px;
  justify-content: center;
  position: absolute;
  right: -7px;
  top: -7px;
  width: 21px;
}

.chat-toggle {
  align-items: center;
  background: linear-gradient(135deg, var(--clay), var(--amber));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(192, 138, 37, 0.34);
  color: #1a1205;
  display: flex;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.chat-toggle svg {
  height: 34px;
  width: 34px;
}

.chat-panel {
  display: none;
  max-height: calc(100vh - 120px);
  overflow: auto;
  width: min(390px, calc(100vw - 32px));
}

.chat-panel.is-open {
  display: block;
}

.chat-panel .glass-card {
  min-height: unset;
  padding: 0;
}

.chat-head {
  align-items: center;
  background: linear-gradient(135deg, var(--clay), var(--amber));
  border-radius: var(--radius) var(--radius) 0 0;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
}

.chat-head strong {
  align-items: center;
  display: inline-flex;
  gap: 9px;
}

.chat-head button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}

.chat-form {
  display: grid;
  gap: 13px;
  padding: 18px;
}

.chat-form input,
.chat-form select,
.chat-form textarea {
  border-radius: 11px;
  padding: 11px 12px;
}

.chat-form textarea {
  min-height: 96px;
}

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

@media (max-width: 980px) {
  .cards-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    width: min(100% - 32px, 1200px);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    background: rgba(255, 249, 238, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
    display: none;
    left: 16px;
    padding: 10px;
    position: absolute;
    right: 16px;
    top: calc(100% + 10px);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .header-cta {
    margin-left: 0;
    text-align: center;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-name span:last-child {
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-actions .btn,
  .cta-inner .btn {
    width: 100%;
  }

  .cards-grid,
  .process-grid,
  .value-grid,
  .form-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    min-height: 270px;
    padding-bottom: 52px;
  }
}

@media (max-width: 520px) {
  .container,
  .hero-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .glass-card,
  .legal-card {
    border-radius: 18px;
    padding: 22px;
  }

  .chat-root {
    bottom: 16px;
    right: 16px;
  }

  .chat-toggle {
    height: 58px;
    width: 58px;
  }

  .chat-bubble {
    display: none;
  }
}

/* ===== Hero rotator ===== */
.hero-rotator {
  display: inline-block;
  min-height: 1.05em;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero-rotator.is-swapping {
  opacity: 0;
  transform: translateY(14px);
}

/* ===== Our Advantage ===== */
.advantage-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.advantage-card {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  min-height: unset;
  padding: 28px;
}

.advantage-card .service-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.advantage-card h3 {
  margin-bottom: 8px;
}

.advantage-card p {
  margin-bottom: 0;
}

/* ===== Approach ===== */
.approach-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.approach-points {
  display: grid;
  gap: 18px;
}

.approach-card {
  align-items: center;
  display: flex;
  gap: 20px;
  min-height: unset;
  padding: 22px 24px;
}

.approach-card .process-num {
  color: var(--clay);
  font-size: 2.4rem;
  opacity: 0.8;
  position: static;
}

.approach-card h3 {
  margin-bottom: 4px;
}

.approach-card p {
  margin-bottom: 0;
}

/* ===== US-Based band ===== */
.us-based-band {
  position: relative;
}

.us-based-inner {
  align-items: center;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  background:
    linear-gradient(120deg, rgba(14, 31, 58, 0.96), rgba(31, 58, 99, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #f4f7fc;
  display: flex;
  gap: 28px;
  padding: 42px 48px;
  position: relative;
  z-index: 1;
}

.us-based-inner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 8px;
}

.us-based-inner p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 640px;
}

.us-flag {
  align-items: center;
  background: linear-gradient(135deg, #c9982e, #e2b340);
  border-radius: 18px;
  color: #1a1205;
  display: inline-flex;
  flex-shrink: 0;
  height: 64px;
  justify-content: center;
  width: 64px;
}

.us-flag svg {
  height: 32px;
  width: 32px;
}

.us-based-inner .btn {
  flex-shrink: 0;
  margin-left: auto;
}

/* ===== Pricing ===== */
.pricing-toggle {
  display: inline-flex;
  gap: 4px;
  margin: 0 auto 44px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 5px;
  position: relative;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--shadow-soft);
}

.pricing-toggle button {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  display: inline-flex;
  font-weight: 850;
  gap: 8px;
  padding: 10px 22px;
  transition: background 180ms ease, color 180ms ease;
}

.pricing-toggle button.is-active {
  background: linear-gradient(135deg, #0e1f3c, #1f3a63);
  color: #fff;
}

.pricing-toggle button span {
  background: rgba(226, 179, 64, 0.22);
  border-radius: 999px;
  color: var(--clay-dark);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 2px 8px;
}

.pricing-toggle button.is-active span {
  background: rgba(226, 179, 64, 0.92);
  color: #1a1205;
}

.pricing-grid {
  align-items: stretch;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: unset;
  position: relative;
}

.pricing-card.is-featured {
  border-color: rgba(192, 138, 37, 0.55);
  box-shadow: 0 30px 80px rgba(15, 30, 58, 0.22);
  transform: translateY(-8px);
}

.pricing-badge {
  background: linear-gradient(135deg, #c9982e, #e2b340);
  border-radius: 999px;
  color: #1a1205;
  font-size: 0.72rem;
  font-weight: 950;
  left: 30px;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  position: absolute;
  text-transform: uppercase;
  top: -13px;
}

.pricing-tagline {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 18px;
  min-height: 48px;
}

.pricing-price {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  padding-top: 20px;
}

.pricing-amount {
  color: var(--ink);
  font-size: 2.8rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.pricing-per {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.pricing-features {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 24px 0 28px;
  padding: 0;
}

.pricing-features li {
  align-items: flex-start;
  color: var(--ink-soft);
  display: flex;
  font-size: 0.94rem;
  font-weight: 600;
  gap: 11px;
}

.pricing-features .icon {
  align-items: center;
  background: rgba(226, 179, 64, 0.18);
  border-radius: 50%;
  color: var(--clay-dark);
  flex-shrink: 0;
  height: 22px;
  justify-content: center;
  margin-top: 1px;
  padding: 4px;
  width: 22px;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.faq-item {
  min-height: unset;
  overflow: hidden;
  padding: 0;
}

.faq-question {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  display: flex;
  font-size: 1.04rem;
  font-weight: 850;
  gap: 16px;
  justify-content: space-between;
  padding: 22px 26px;
  text-align: left;
  width: 100%;
}

.faq-icon {
  align-items: center;
  background: rgba(226, 179, 64, 0.18);
  border-radius: 50%;
  color: var(--clay-dark);
  display: inline-flex;
  flex-shrink: 0;
  height: 30px;
  justify-content: center;
  transition: transform 220ms ease, background 220ms ease;
  width: 30px;
}

.faq-item.is-open .faq-icon {
  background: linear-gradient(135deg, #c9982e, #e2b340);
  color: #1a1205;
  transform: rotate(45deg);
}

.faq-answer {
  color: var(--muted);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding: 0 26px 22px;
}

@media (max-width: 980px) {
  .advantage-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .pricing-card.is-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .advantage-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    flex-direction: column;
    gap: 14px;
  }

  .us-based-inner {
    flex-direction: column;
    padding: 32px 26px;
    text-align: center;
  }

  .us-based-inner .btn {
    margin-left: 0;
    width: 100%;
  }
}

/* ===== Home hero split ===== */
.hero-home {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  text-align: left;
}

.hero-home .hero-inner {
  align-items: flex-start;
  text-align: left;
  margin: 0;
  max-width: none;
}

.hero-home .hero-actions {
  justify-content: flex-start;
}

.hero-shot {
  position: relative;
  z-index: 1;
}

.hero-shot img {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== What We Offer ===== */
.offer-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: unset;
  overflow: hidden;
  padding: 0;
}

.offer-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.offer-card:hover .offer-media img {
  transform: scale(1.05);
}

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 28px 30px;
}

.offer-body .card-link {
  margin-top: auto;
}

/* ===== 3-up provide cards ===== */
.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ===== Services alternating rows ===== */
.service-rows {
  display: grid;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.service-row {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.service-row.is-reversed .service-row-media {
  order: 2;
}

.service-row-media img {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 100%;
  max-height: 340px;
  object-fit: cover;
}

.service-row-body h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-row-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

/* ===== Approach media ===== */
.approach-media img {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
}

/* ===== Partners badges ===== */
.partners-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.partner-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  display: inline-flex;
  font-weight: 850;
  gap: 10px;
  padding: 12px 22px;
}

.partner-badge .icon {
  color: var(--clay-dark);
  height: 18px;
  width: 18px;
}

/* ===== Contact band (map + info) ===== */
.contact-band {
  align-items: stretch;
  background: linear-gradient(120deg, rgba(14, 31, 58, 0.97), rgba(31, 58, 99, 0.93));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contact-band-map {
  min-height: 320px;
}

.contact-band-map iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  min-height: 320px;
}

.contact-band-info {
  color: #f4f7fc;
  padding: 44px 48px;
}

.contact-band-info .section-label {
  color: var(--amber);
}

.contact-band-info h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.contact-band-address {
  color: rgba(255, 255, 255, 0.82);
}

.contact-band-info a {
  color: var(--amber);
  font-weight: 800;
}

.contact-band-info .btn {
  margin-top: 18px;
}

/* ===== Contact info cards ===== */
.info-cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.info-card {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  min-height: unset;
  padding: 24px;
}

.info-card .service-icon {
  flex-shrink: 0;
  height: 44px;
  margin-bottom: 0;
  width: 44px;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.info-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== About media ===== */
.about-media img {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
}

/* ===== Footer pay badges ===== */
.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pay-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 8px 12px;
}

@media (max-width: 980px) {
  .hero-home,
  .service-row,
  .service-row.is-reversed .service-row-media,
  .offer-grid,
  .cards-grid-3,
  .contact-band,
  .info-cards {
    grid-template-columns: 1fr;
  }

  .hero-home {
    text-align: center;
  }

  .hero-home .hero-inner {
    align-items: center;
    text-align: center;
  }

  .hero-home .hero-actions {
    justify-content: center;
  }

  .service-row.is-reversed .service-row-media {
    order: 0;
  }

  .info-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .info-cards {
    grid-template-columns: 1fr;
  }

  .contact-band-info {
    padding: 32px 26px;
  }
}
