/* ===== CSS Variables ===== */
:root {
  --bg-black: #000000;
  --bg-black-2: #000000;
  --gold: #C9A227;
  --gold-light: #E4C766;
  --gold-gradient: linear-gradient(135deg, #C9A227, #E4C766, #C9A227);
  --white: #F5F5F5;
  --gray-text: #B8B8B8;
  --border-subtle: rgba(201, 162, 39, 0.25);
  --nav-height: 80px;
  --nav-height-scrolled: 64px;
  --radius: 4px;
  --transition: 0.3s ease;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Poppins', 'Inter', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  background: #000000;
}

body {
  font-family: var(--font-body);
  background: #000000;
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--bg-black-2);
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  font-weight: 500;
}

.section-text {
  color: var(--gray-text);
  margin-bottom: 32px;
  max-width: 600px;
}

.section-text p + p {
  margin-top: 16px;
}

.section-text strong {
  color: var(--white);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn:hover {
  transform: scale(1.02);
}

.btn--gold {
  background: var(--gold);
  color: var(--bg-black);
}

.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--bg-black);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: height var(--transition), background var(--transition);
}

.navbar.scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(0, 0, 0, 0.95);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.navbar__logo:hover img {
  transform: scale(1.05);
}

.navbar__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.navbar__brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar__link {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--gold);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  margin-left: 16px;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.navbar__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: all var(--transition);
}

.navbar__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.navbar__burger.open span:nth-child(2) {
  opacity: 0;
}

.navbar__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}

.navbar__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar__mobile .navbar__link {
  font-size: 0.85rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.navbar__mobile .btn {
  margin-top: 8px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: var(--bg-black);
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-height);
}

.hero__image-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  animation: heroFadeIn 1.2s ease forwards;
}

.hero__image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - var(--nav-height) - 180px);
  object-fit: contain;
  object-position: center;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 32px 24px 48px;
  animation: heroFadeIn 1.2s ease 0.3s both;
}

.hero__scroll {
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
  animation: heroFadeIn 1.2s ease 0.6s both;
}

.hero__scroll-btn {
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  animation: pulse 2s ease infinite;
}

.hero__scroll-btn svg {
  width: 24px;
  height: 24px;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(6px); }
}

/* ===== Layout: Split ===== */
.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(420px, 1.45fr);
  gap: 40px;
  align-items: start;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split__content {
  max-width: 440px;
  padding-top: 8px;
}

.split__content .section-text {
  max-width: 100%;
}

.split__content .secure-badge {
  margin: 24px 0 0;
}

/* Contact — push secure badge to bottom, flush with gateway block */
.split--contact {
  align-items: stretch;
  margin-bottom: 0;
}

.split--contact .split__content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  max-width: none;
}

.split--contact .split__content .secure-badge {
  margin-top: auto;
  margin-bottom: 0;
}

.split--contact .split__image {
  display: flex;
  align-items: flex-end;
}

.split--contact .split__image img {
  object-position: bottom;
}

.split--contact + .gateway-block {
  margin-top: 24px;
}

.split__image {
  border-radius: 6px;
  overflow: visible;
  border: 1px solid var(--border-subtle);
  line-height: 0;
}

.split__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.6s ease;
}

.split__image.revealed img {
  animation: imageReveal 0.8s ease forwards;
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  gap: 24px;
}

.cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.cards-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

.cards-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-grid--compact {
  gap: 12px;
}

.cards-grid--compact .card {
  padding: 16px 14px;
}

.cards-grid--compact .card__icon {
  margin-bottom: 8px;
}

.cards-grid--compact .card__icon svg {
  width: 24px;
  height: 24px;
}

.cards-grid--compact .card__title {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.cards-grid--compact .card__text {
  font-size: 0.72rem;
  line-height: 1.45;
}

.card {
  padding: 28px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.card:hover .card__icon svg {
  filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.5));
}

.card__icon {
  margin-bottom: 16px;
}

.card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  transition: filter var(--transition);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--white);
}

.card__text {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ===== Feature Strip ===== */
.feature-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin: 48px 0;
}

.feature-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--gray-text);
  white-space: nowrap;
}

.feature-strip__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.feature-strip__divider {
  width: 1px;
  height: 24px;
  background: var(--border-subtle);
}

/* ===== Info Columns ===== */
.info-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.info-col__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.info-col__text {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.info-col__text em {
  font-style: italic;
  color: var(--gray-text);
  opacity: 0.85;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-text);
}

.check-list__item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ===== Stats Bar ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-top: 48px;
  overflow: hidden;
}

.stats-bar__item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.stats-bar__item:last-child {
  border-right: none;
}

.stats-bar__value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.stats-bar__label {
  font-size: 0.7rem;
  color: var(--gray-text);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* ===== Quote Block ===== */
.quote-block {
  margin: 48px 0;
  padding: 40px 48px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.quote-block__text {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: var(--gray-text);
  margin: 0;
}

.quote-block__text strong {
  color: var(--gold);
  font-weight: 600;
}

.quote-block--gold {
  border: 1px solid var(--gold);
  padding: 32px;
  margin: 32px 0;
  border-radius: var(--radius);
}

.quote-block--gold .quote-block__text {
  font-size: 1.1rem;
}

/* ===== Section Slogan (borderless, centered) ===== */
.section-slogan {
  display: block;
  text-align: center;
  margin: 56px auto 40px;
  padding: 0 24px;
  max-width: 900px;
  border: none;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.55;
  color: var(--gray-text);
}

.section-slogan strong {
  color: var(--gold);
  font-weight: 600;
}

/* ===== Checklist Grid ===== */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  margin-top: 32px;
}

.checklist-grid__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-text);
}

.checklist-grid__item svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ===== Two Column Cards ===== */
.two-col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.two-col-cards__heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ===== Bottom Feature Block ===== */
.bottom-feature {
  margin-top: 48px;
  padding: 32px 40px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  text-align: center;
}

.bottom-feature__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bottom-feature__text {
  color: var(--gray-text);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Timeline ===== */
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 48px 0;
  overflow-x: auto;
  padding-bottom: 16px;
}

.timeline__step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.timeline__step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 20px;
  right: -8px;
  color: var(--gold);
  font-size: 1.2rem;
}

.timeline__number {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.timeline__text {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ===== Membership Standards ===== */
.membership-standards {
  margin-top: 48px;
}

.membership-standards__intro {
  max-width: none;
  margin-bottom: 24px;
}

/* ===== Contact ===== */
.secure-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin: 24px 0;
  background: rgba(0, 0, 0, 0.5);
}

.secure-badge svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.secure-badge__text strong {
  color: var(--white);
}

.secure-badge__text {
  font-size: 0.9rem;
  color: var(--gray-text);
}

.gateway-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px 32px;
  flex-wrap: wrap;
  padding: 24px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin: 32px 0;
}

.gateway-block__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 0 1 260px;
  min-width: 220px;
}

.gateway-block__head .info-col__title {
  margin-bottom: 6px;
}

.gateway-block__badge {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gateway-block__badge svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.gateway-block__intro {
  font-size: 0.78rem;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.45;
}

.gateway-block__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px 28px;
  flex: 1 1 300px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gateway-block__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--gray-text);
  white-space: nowrap;
}

.gateway-block__list li svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.gateway-block__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin: 0;
  text-align: center;
}

.gateway-block__action .btn {
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 0.72rem;
}

.gateway-block__note {
  font-size: 0.68rem;
  color: var(--gray-text);
  font-style: italic;
  margin: 0;
}

/* ===== Steps Row ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.step-card__icon {
  margin: 0 auto 12px;
  display: flex;
  justify-content: center;
}

.step-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

.step-card__text {
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.5;
}

/* ===== Contact Form ===== */
.contact-form {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-black);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.contact-form .btn {
  margin-top: 24px;
}

/* ===== Footer ===== */
.footer {
  background: #000000;
  border-top: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer__brand img {
  height: 44px;
  width: auto;
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer__brand-tagline {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.footer__desc {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--gray-text);
  max-width: 240px;
  flex-shrink: 1;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--white);
  transition: color var(--transition);
  white-space: nowrap;
}

a.footer__contact:hover {
  color: var(--gold);
}

.footer__contact svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}

.footer__social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: fill var(--transition);
}

.footer__social-link:hover {
  background: var(--gold);
}

.footer__social-link:hover svg {
  fill: #000000;
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Section Heading Block ===== */
.section-heading-block {
  margin-bottom: 48px;
}

.principles-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split__content {
    max-width: none;
    order: 2;
  }

  .split--reverse {
    direction: ltr;
  }

  .split__image {
    order: 1;
  }

  .split__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .split--contact .split__content {
    min-height: 0;
  }

  .split--contact .split__content .secure-badge {
    margin-top: 24px;
  }

  .split--contact .split__image {
    align-items: flex-start;
  }

  .split--contact .split__image img {
    object-position: center top;
  }

  .split--contact + .gateway-block {
    margin-top: 32px;
  }

  .cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-bar__item:nth-child(3) {
    border-right: none;
  }

  .stats-bar__item:nth-child(4),
  .stats-bar__item:nth-child(5),
  .stats-bar__item:nth-child(6) {
    border-top: 1px solid var(--border-subtle);
  }

  .two-col-cards {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__bar {
    flex-wrap: wrap;
    gap: 28px;
  }

  .footer__desc {
    max-width: none;
    flex: 1 1 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
    --nav-height-scrolled: 56px;
  }

  .section {
    padding: 64px 0;
  }

  .navbar__nav,
  .navbar__cta {
    display: none;
  }

  .navbar__burger {
    display: flex;
  }

  .navbar__mobile {
    display: flex;
  }

  .navbar__brand-name {
    font-size: 1.05rem;
  }

  .navbar__brand-tagline {
    font-size: 0.42rem;
    letter-spacing: 0.1em;
  }

  .navbar__logo img {
    height: 34px;
  }

  .navbar__logo {
    gap: 10px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__image {
    max-height: calc(100vh - var(--nav-height) - 200px);
  }

  .cards-grid--4,
  .cards-grid--5 {
    grid-template-columns: 1fr;
  }

  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-strip__divider {
    width: 100%;
    height: 1px;
  }

  .feature-strip__item {
    white-space: normal;
  }

  .info-columns {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stats-bar__item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .stats-bar__item:last-child {
    border-bottom: none;
  }

  .quote-block,
  .bottom-feature {
    padding: 28px 24px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 24px;
  }

  .timeline__step:not(:last-child)::after {
    display: none;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .gateway-block {
    flex-direction: column;
    align-items: stretch;
  }

  .gateway-block__left {
    flex: 1 1 auto;
    min-width: 0;
  }

  .gateway-block__list {
    grid-template-columns: 1fr;
    flex: 1 1 auto;
  }

  .gateway-block__list li {
    white-space: normal;
  }

  .gateway-block__action {
    align-items: stretch;
  }

  .gateway-block__action .btn {
    width: 100%;
    justify-content: center;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer__contact {
    white-space: normal;
  }
}
