:root {
  --navy: #0f172a;
  --navy-light: #17233c;
  --navy-soft: #1e293b;
  --gold: #c9a227;
  --gold-light: #e5c75b;
  --gold-pale: #f8f1d9;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --shadow-sm: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 20px 50px rgba(15, 23, 42, 0.11);
  --shadow-gold: 0 16px 36px rgba(201, 162, 39, 0.24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --font-heading: "Montserrat", "Noto Sans Georgian", sans-serif;
  --font-body: "Noto Sans Georgian", system-ui, sans-serif;
  --transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--gray-600);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.privacy-modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-heading);
  line-height: 1.25;
}

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

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.section-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 50px);
  letter-spacing: -0.035em;
}

.section-heading > p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 17px;
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 13px 24px;
  color: var(--navy);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.button:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.45);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 10px 19px;
  box-shadow: none;
  font-size: 13px;
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: var(--gray-200);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  border-color: rgba(226, 232, 240, 0.85);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 82px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 10px 2px 10px 2px;
  font-family: Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.brand-copy small {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy i {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
}

.nav-link {
  position: relative;
  padding: 30px 0 27px;
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-link::after {
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: right var(--transition), left var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  padding-top: 82px;
  overflow: hidden;
  background: linear-gradient(115deg, #fff 0%, #fff 55%, #f8fafc 100%);
}

.hero::before {
  position: absolute;
  top: 90px;
  right: -160px;
  width: 600px;
  height: 600px;
  content: "";
  background: radial-gradient(circle, rgba(201, 162, 39, 0.10), rgba(201, 162, 39, 0) 68%);
}

.hero-grid-pattern {
  position: absolute;
  top: 82px;
  right: 0;
  width: 46%;
  height: calc(100% - 82px);
  opacity: 0.52;
  background-image: linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to left, #000, transparent);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  min-height: 640px;
  gap: 72px;
  padding-top: 34px;
  padding-bottom: 42px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-size: clamp(45px, 5.1vw, 68px);
  letter-spacing: -0.055em;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--gold);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 3px;
  bottom: -1px;
  left: 3px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(201, 162, 39, 0.15));
  border-radius: 4px;
}

.hero-content > p {
  max-width: 660px;
  margin-bottom: 34px;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--gray-600);
  font-size: 11px;
  font-weight: 600;
}

.trust-row i {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 10px;
  font-style: normal;
}

.hero-visual {
  position: relative;
  min-height: 510px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  content: "";
  background: var(--navy);
  border-radius: 50%;
  box-shadow: 0 40px 80px rgba(15, 23, 42, 0.22);
  transform: translate(-50%, -50%);
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 328px;
  height: 328px;
  content: "";
  border: 1px solid rgba(201, 162, 39, 0.23);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-orbit {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(201, 162, 39, 0.19);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

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

.orbit-two {
  width: 510px;
  height: 510px;
  border-style: dashed;
}

.visual-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 24px 65px rgba(2, 6, 23, 0.2);
  backdrop-filter: blur(10px);
}

.visual-card-main {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(380px, 80%);
  padding: 25px;
  border-radius: 22px;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.visual-card-top {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.visual-logo {
  display: grid;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  place-items: center;
  color: var(--gold);
  background: var(--navy);
  border-radius: 9px 2px 9px 2px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.visual-card-top div {
  display: flex;
  flex-direction: column;
}

.visual-card-top small {
  color: var(--gray-400);
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.visual-card-top strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 13px;
}

.status-dot {
  width: 9px;
  height: 9px;
  margin-left: auto;
  background: #22c55e;
  border: 2px solid #dcfce7;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #f0fdf4;
}

.compliance-score {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 25px 0;
}

.score-ring {
  display: grid;
  width: 94px;
  height: 94px;
  flex: 0 0 auto;
  place-items: center;
  background: conic-gradient(var(--gold) 0 95%, var(--gray-100) 95% 100%);
  border-radius: 50%;
}

.score-ring::before {
  position: absolute;
  width: 72px;
  height: 72px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.score-ring span {
  position: relative;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
}

.score-ring small {
  font-size: 10px;
}

.score-copy {
  display: flex;
  flex-direction: column;
}

.score-copy > small {
  color: var(--gray-400);
  font-size: 9px;
}

.score-copy strong {
  margin: 3px 0 10px;
  color: var(--navy);
  font-size: 14px;
}

.score-copy span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-600);
  font-size: 9px;
}

.score-copy i {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}

.metric-bars {
  display: flex;
  align-items: end;
  height: 58px;
  gap: 9px;
  padding: 12px 16px 0;
  background: var(--gray-50);
  border-radius: 10px;
}

.metric-bars span {
  width: 20%;
  height: var(--bar);
  max-height: 46px;
  background: linear-gradient(to top, var(--navy), #334155);
  border-radius: 4px 4px 0 0;
  opacity: 0.9;
}

.metric-bars span:nth-child(3),
.metric-bars span:nth-child(5) {
  background: linear-gradient(to top, #a27c0b, var(--gold-light));
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  min-width: 185px;
  gap: 11px;
  padding: 13px 15px;
  border-radius: 13px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card small {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.mini-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 9px;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.shield-icon {
  border-radius: 50% 50% 48% 48% / 30% 30% 70% 70%;
}

.lock-icon {
  position: relative;
  font-size: 8px;
}

.lock-icon::before {
  position: absolute;
  top: 7px;
  width: 13px;
  height: 11px;
  content: "";
  border: 2px solid var(--gold);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.card-safety {
  top: 55px;
  left: 4px;
  animation: float 5s ease-in-out infinite;
}

.card-law {
  top: 190px;
  right: -24px;
  animation: float 6s 0.8s ease-in-out infinite;
}

.card-data {
  bottom: 51px;
  left: 8px;
  animation: float 5.5s 0.4s ease-in-out infinite;
}

.verified-badge {
  position: absolute;
  z-index: 5;
  right: 16px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  color: var(--white);
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-gold);
  transform: rotate(3deg);
}

.verified-badge > span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--gold);
  background: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.verified-badge div {
  display: flex;
  flex-direction: column;
}

.verified-badge strong {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 9px;
  line-height: 1.3;
}

.verified-badge small {
  color: rgba(15, 23, 42, 0.7);
  font-size: 7px;
  line-height: 1.3;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
}

.hero-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 30px;
}

.hero-bottom-inner > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
}

.expertise-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.expertise-list b {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.expertise-list i {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* About */
.about {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 95px;
  margin-bottom: 65px;
}

.about-copy {
  padding-top: 10px;
}

.about-copy p {
  margin-bottom: 17px;
  font-size: 17px;
}

.about-copy strong {
  color: var(--navy);
}

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

.value-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.value-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--gray-200);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
}

.value-icon,
.service-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 27px;
  place-items: center;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 13px;
}

.value-icon svg,
.service-icon svg,
.contact-icon svg {
  width: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.value-card h3 {
  margin-bottom: 13px;
  font-size: 18px;
}

.value-card p {
  margin-bottom: 0;
  font-size: 14px;
}

/* Services */
.services {
  background: var(--gray-50);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.service-card.featured {
  border-top: 3px solid var(--gold);
}

.featured-label {
  position: absolute;
  top: 0;
  right: 28px;
  padding: 5px 13px 6px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 0 0 8px 8px;
  font-size: 9px;
  font-weight: 700;
}

.service-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.service-index {
  color: var(--gray-200);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
}

.service-card h3 {
  min-height: 58px;
  margin-bottom: 15px;
  font-size: 20px;
  overflow-wrap: anywhere;
}

.service-card > p {
  min-height: 98px;
  margin-bottom: 25px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 25px;
  color: var(--gray-800);
  font-size: 13px;
  font-weight: 500;
}

.service-card li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  content: "✓";
  place-items: center;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  color: var(--gold);
  font-size: 18px;
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Why us */
.why-us {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  background: var(--navy);
}

.why-us::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 650px;
  height: 650px;
  content: "";
  border: 1px solid rgba(201, 162, 39, 0.10);
  border-radius: 50%;
}

.why-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  opacity: 0.25;
  background-image: linear-gradient(rgba(201, 162, 39, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 162, 39, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to left, #000, transparent);
}

.why-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 56px;
}

.section-heading.light h2 {
  margin-bottom: 0;
  color: var(--white);
}

.why-header > p {
  max-width: 540px;
  margin-bottom: 7px;
  padding-left: 30px;
  border-left: 2px solid var(--gold);
  font-size: 15px;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-md);
}

.why-card {
  position: relative;
  min-height: 315px;
  padding: 34px 27px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
  transition: background var(--transition), transform var(--transition);
}

.why-card:last-child {
  border-right: 0;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-5px);
}

.why-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 800;
}

.why-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 46px;
  place-items: center;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.23);
  border-radius: 12px;
  font-family: Georgia, serif;
  font-size: 23px;
}

.why-card h3 {
  min-height: 54px;
  margin-bottom: 13px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.55;
}

.why-card p {
  margin-bottom: 0;
  font-size: 12px;
}

/* Process */
.process {
  background: var(--white);
}

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

.process-line {
  position: absolute;
  top: 72px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: var(--gray-200);
}

.process-line span {
  display: block;
  width: 75%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold), var(--gray-200));
}

.process-step {
  position: relative;
  padding-top: 0;
  text-align: center;
}

.step-number {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.step-dot {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: 0 auto 30px;
  background: var(--white);
  border: 5px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--gold-pale);
}

.process-step:last-child .step-dot {
  background: var(--gold);
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--gold), 0 0 0 8px var(--gold-pale);
}

.process-step h3 {
  min-height: 48px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.55;
}

.process-step p {
  margin-bottom: 0;
  font-size: 12px;
}

/* Contact */
.contact {
  position: relative;
  background: var(--gray-50);
}

.contact::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc((100vw - 1180px) / 2 + 475px);
  content: "";
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.045), transparent);
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
}

.contact-info .section-heading > p {
  font-size: 14px;
}

.contact-list {
  display: grid;
  gap: 13px;
  margin: 36px 0 28px;
  font-style: normal;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 12px;
  transition: background var(--transition);
}

.contact-list > a:hover {
  background: var(--white);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.contact-icon svg {
  width: 20px;
}

.contact-list > * > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-list small {
  margin-bottom: 2px;
  color: var(--gray-400);
  font-size: 9px;
  font-weight: 600;
}

.contact-list strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 12px;
}

.contact-note > span {
  display: grid;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  border-radius: 50%;
  font-size: 12px;
}

.contact-note p {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.contact-note strong {
  color: var(--navy);
  font-size: 11px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--gray-200);
}

.form-header span {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.form-header small {
  color: var(--gray-400);
  font-size: 9px;
}

#contact-form {
  padding: 30px;
}

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

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--gray-800);
  font-size: 11px;
  font-weight: 600;
}

.form-group label span {
  color: #dc2626;
}

.form-group input,
.form-group textarea {
  width: 100%;
  color: var(--navy);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 9px;
  outline: none;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.form-group input {
  height: 48px;
  padding: 0 14px;
  font-size: 12px;
}

.form-group textarea {
  min-height: 125px;
  padding: 13px 14px;
  resize: vertical;
  font-size: 12px;
}

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

.form-group input:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #dc2626;
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 3px;
  color: #b91c1c;
  font-size: 9px;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
  border: 0;
}

.consent-group {
  margin: 2px 0 18px;
}

.consent-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 11px;
  margin: 0 !important;
  color: var(--gray-600) !important;
  cursor: pointer;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.65;
}

.consent-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 1px;
  background: var(--white);
  border: 1px solid var(--gray-400);
  border-radius: 5px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.consent-checkbox input:checked + .custom-checkbox {
  background: var(--gold);
  border-color: var(--gold);
}

.consent-checkbox input:checked + .custom-checkbox::after {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 9px;
  content: "";
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.consent-checkbox input:focus-visible + .custom-checkbox {
  outline: 3px solid rgba(201, 162, 39, 0.35);
  outline-offset: 2px;
}

.consent-group.invalid .custom-checkbox {
  border-color: #dc2626;
}

.consent-checkbox a,
.form-privacy-notice a {
  color: #765b08;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-privacy-notice {
  margin: 13px 2px 0;
  color: var(--gray-600);
  font-size: 9px;
  line-height: 1.65;
  text-align: center;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 13px 15px;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 9px;
  font-size: 12px;
}

.form-success.visible {
  display: flex;
  animation: success-in 400ms ease both;
}

.form-success > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--white);
  background: #22c55e;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.form-success p {
  margin: 0;
}

/* Policy center */
.policy-center {
  padding: 72px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.policy-center-heading {
  margin-bottom: 28px;
}

.policy-center-heading > span {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-center-heading h2 {
  margin: 7px 0 0;
  font-size: 28px;
}

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

.policy-list details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  scroll-margin-top: 100px;
}

.policy-list details:target {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.policy-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

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

.policy-list summary span {
  color: var(--gold);
  font-size: 20px;
  transition: transform var(--transition);
}

.policy-list details[open] summary span {
  transform: rotate(45deg);
}

.policy-content {
  padding: 0 20px 18px;
  border-top: 1px solid var(--gray-100);
}

.policy-content p {
  margin: 15px 0 0;
  font-size: 11px;
}

.policy-content a {
  color: #765b08;
  font-weight: 700;
  text-decoration: underline;
}

/* Legal disclaimer */
.legal-disclaimer {
  color: var(--gray-600);
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.legal-disclaimer .container {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.disclaimer-icon {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}

.legal-disclaimer p {
  max-width: 980px;
  margin: 0;
  font-size: 10px;
  line-height: 1.7;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.52);
  background: #0a1020;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 70px;
  padding-top: 52px;
  padding-bottom: 42px;
}

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

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.52);
}

.footer-main > p {
  max-width: 410px;
  margin: 0;
  font-size: 11px;
}

.footer-main nav {
  display: flex;
  gap: 25px;
}

.footer-main nav a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  transition: color var(--transition);
}

.footer-main nav a:hover {
  color: var(--gold);
}

.footer-compliance {
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-compliance nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
}

.footer-compliance a,
.cookie-settings-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 9px;
  transition: color var(--transition);
}

.footer-compliance a:hover,
.cookie-settings-link:hover {
  color: var(--gold);
}

.footer-compliance a:focus-visible,
.cookie-settings-link:focus-visible,
.cookie-settings-button:focus-visible,
.cookie-modal-close:focus-visible {
  outline: 3px solid rgba(201, 162, 39, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 8px;
  letter-spacing: 0.07em;
}

.footer-bottom span {
  margin: 0 4px;
  color: var(--gold);
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--navy);
}

/* Cookie consent */
.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 2000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(15, 23, 42, 0.985);
  border-top: 1px solid rgba(201, 162, 39, 0.42);
  box-shadow: 0 -20px 60px rgba(2, 6, 23, 0.25);
  backdrop-filter: blur(16px);
  animation: cookie-banner-in 450ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: min(1280px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.cookie-banner-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.cookie-banner-copy h2 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: -0.01em;
}

.cookie-banner-copy p {
  max-width: 790px;
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.cookie-banner-copy a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cookie-banner-actions .button {
  min-height: 42px;
  padding: 9px 16px;
  box-shadow: none;
  font-size: 10px;
  white-space: nowrap;
}

.cookie-essential-only {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-essential-only:hover {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.cookie-settings-button {
  min-height: 42px;
  padding: 8px 10px;
  color: var(--gold-light);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-modal {
  position: fixed;
  z-index: 2100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(7px);
}

.cookie-modal-panel {
  position: relative;
  width: min(610px, 100%);
  max-height: calc(100vh - 48px);
  padding: 30px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.32);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 90px rgba(2, 6, 23, 0.36);
  animation: cookie-modal-in 350ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cookie-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cookie-modal-kicker {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-modal-header h2 {
  margin: 5px 0 0;
  font-size: 25px;
}

.cookie-modal-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  padding: 0 0 2px;
  place-items: center;
  color: var(--navy);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 9px;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.cookie-modal-description {
  margin: 17px 0 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 11px;
}

.cookie-categories {
  display: grid;
  gap: 10px;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 17px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.cookie-category h3 {
  margin-bottom: 5px;
  font-size: 12px;
}

.cookie-category p {
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
}

.preference-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  cursor: pointer;
}

.preference-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.preference-switch > span:last-child {
  position: relative;
  width: 42px;
  height: 23px;
  background: var(--gray-400);
  border-radius: 20px;
  transition: background var(--transition);
}

.preference-switch > span:last-child::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.25);
  transition: transform var(--transition);
}

.preference-switch input:checked + span {
  background: var(--gold);
}

.preference-switch input:checked + span::after {
  transform: translateX(19px);
}

.preference-switch input:disabled + span {
  background: var(--navy);
  cursor: not-allowed;
}

.preference-switch input:focus-visible + span {
  outline: 3px solid rgba(201, 162, 39, 0.4);
  outline-offset: 3px;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.cookie-modal-actions .button {
  min-height: 45px;
  box-shadow: none;
  font-size: 11px;
}

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

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

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

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes success-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cookie-modal-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav {
    gap: 19px;
  }

  .hero-layout {
    gap: 30px;
  }

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

  .card-law {
    right: -5px;
  }

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

  .why-card:nth-child(2) {
    border-right: 0;
  }

  .why-card:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }

  .footer-main {
    gap: 35px;
  }
}

@media (max-width: 920px) {
  .header-cta {
    margin-left: auto;
    margin-right: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 16px 24px 28px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 25px 40px rgba(15, 23, 42, 0.11);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--transition), transform var(--transition);
  }

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

  .nav-link {
    padding: 14px 4px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 80px;
    text-align: center;
  }

  .hero-content {
    max-width: 750px;
    margin: auto;
  }

  .hero .eyebrow,
  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero h1,
  .hero-content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-visual {
    width: min(600px, 100%);
    margin: 5px auto 0;
  }

  .hero-grid-pattern {
    width: 100%;
    mask-image: linear-gradient(to bottom, transparent, #000, transparent);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 0;
  }

  .service-card h3,
  .service-card > p {
    min-height: 0;
  }

  .service-card {
    padding: 34px;
  }

  .why-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 30px;
  }

  .process-line {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-info {
    max-width: 650px;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-main nav {
    justify-self: end;
  }

  .cookie-banner-inner {
    grid-template-columns: auto 1fr;
  }

  .cookie-banner-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

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

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

  .brand-copy strong {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -0.045em;
  }

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .hero-visual {
    min-height: 420px;
    transform: scale(0.93);
  }

  .hero-visual::before {
    width: 315px;
    height: 315px;
  }

  .hero-visual::after {
    width: 270px;
    height: 270px;
  }

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

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

  .visual-card-main {
    width: 310px;
    padding: 20px;
  }

  .compliance-score {
    gap: 14px;
  }

  .score-ring {
    width: 80px;
    height: 80px;
  }

  .score-ring::before {
    width: 60px;
    height: 60px;
  }

  .score-ring span {
    font-size: 20px;
  }

  .floating-card {
    min-width: 160px;
  }

  .card-safety {
    top: 26px;
    left: -10px;
  }

  .card-law {
    top: 156px;
    right: -18px;
  }

  .card-data {
    bottom: 25px;
    left: -8px;
  }

  .verified-badge {
    right: -8px;
    bottom: 19px;
  }

  .hero-bottom-inner {
    justify-content: center;
    min-height: 58px;
  }

  .hero-bottom-inner > span {
    display: none;
  }

  .expertise-list {
    gap: 10px;
  }

  .expertise-list b {
    font-size: 7px;
  }

  .about-layout {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .value-card,
  .service-card {
    padding: 28px 24px;
  }

  .why-header > p {
    padding-left: 18px;
  }

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

  .why-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-card:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-card:last-child {
    border-bottom: 0;
  }

  .why-icon {
    margin-bottom: 28px;
  }

  .why-card h3 {
    min-height: 0;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 16px;
    text-align: left;
  }

  .step-number {
    grid-column: 1;
    grid-row: 1;
    margin: 4px 0 0;
    text-align: center;
  }

  .step-dot {
    display: none;
  }

  .process-step h3 {
    grid-column: 2;
    min-height: 0;
    margin-bottom: 7px;
  }

  .process-step p {
    grid-column: 2;
  }

  .contact::before {
    display: none;
  }

  .form-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
  }

  #contact-form {
    padding: 22px;
  }

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

  .legal-disclaimer .container {
    align-items: flex-start;
  }

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

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-main nav {
    flex-wrap: wrap;
    justify-self: start;
    gap: 15px 22px;
  }

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

  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-inner {
    display: block;
  }

  .cookie-banner-icon {
    display: none;
  }

  .cookie-banner-copy h2 {
    font-size: 14px;
  }

  .cookie-banner-copy p {
    font-size: 9px;
  }

  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
  }

  .cookie-settings-button {
    grid-column: 1 / -1;
  }

  .cookie-modal {
    align-items: end;
    padding: 10px;
  }

  .cookie-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 23px 18px;
    border-radius: 18px;
  }

  .cookie-modal-header h2 {
    font-size: 20px;
  }

  .cookie-category {
    gap: 15px;
    padding: 14px;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    width: 108%;
    margin-left: -4%;
    transform: scale(0.86);
  }

  .visual-card-main {
    width: 290px;
  }

  .floating-card {
    min-width: 150px;
    padding: 10px;
  }

  .floating-card strong {
    font-size: 9px;
  }
}

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

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

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