:root {
  --frosted: #fdfefe;
  --cadet: #9db4c0;
  --charcoal: #363e44;
  --night: #131313;
  --night-soft: #1a1f23;
  --cadet-dark: #7a9aaa;
  --white: #ffffff;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--night);
  color: var(--frosted);
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(19, 19, 19, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(157, 180, 192, 0.12);
}

.logo-text {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo image sizing in nav */
.logo-text img {
  width: 160px;
  height: auto;
  display: block;
}

nav .nav-cta {
  background: var(--cadet);
  color: var(--night);
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold — Sub Header per brand guide */
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 24px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
  white-space: nowrap;
}

nav .nav-cta:hover {
  background: var(--frosted);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 50%,
      rgba(54, 62, 68, 0.5) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 20% 80%,
      rgba(157, 180, 192, 0.08) 0%,
      transparent 60%
    ),
    var(--night);
  z-index: 0;
}

/* Geometric accent lines */
.hero-lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 1;
  overflow: hidden;
}

.hero-lines::before {
  content: "";
  position: absolute;
  top: 15%;
  right: 8%;
  width: 1px;
  height: 70%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(157, 180, 192, 0.3),
    transparent
  );
  animation: lineReveal 2s 0.5s ease both;
}

.hero-lines::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 16%;
  width: 1px;
  height: 55%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(157, 180, 192, 0.15),
    transparent
  );
  animation: lineReveal 2s 0.8s ease both;
}

@keyframes lineReveal {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* ── Eyebrow label — Helvetica Neue Bold (Sub Header per brand guide p.10) ── */
.eyebrow {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold — Sub Header per brand guide */
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cadet);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s ease both;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--cadet);
  flex-shrink: 0;
}

/* ── H1 — hero headline — PP Monument Black (display/title) ── */
h1 {
  font-family: "PPMonumentExtended", "PP Monument Extended", sans-serif;
  font-weight: 900; /* Black weight — Titles/Display per brand guide p.10 */
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--frosted);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease both;
}

h1 em {
  font-style: normal;
  color: var(--cadet);
}

.hero-sub {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(253, 254, 254, 0.7);
  max-width: 500px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease both;
  line-height: 1.75;
}

.presenter-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease both;
}

.presenter-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--charcoal), var(--cadet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "PPMonumentExtended", sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: var(--frosted);
  flex-shrink: 0;
}

.presenter-info {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.presenter-info strong {
  display: block;
  font-weight: 500;
  color: var(--frosted);
  font-size: 14px;
}

.presenter-info span {
  color: var(--cadet);
  font-size: 12px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease both;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: rgba(253, 254, 254, 0.55);
  letter-spacing: 0.04em;
}

.meta-item .icon {
  color: var(--cadet);
  font-size: 14px;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease both;
}

/* ── Primary button — Helvetica Neue Bold ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cadet);
  color: var(--night);
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold per brand guide */
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--frosted);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.reassurance {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: rgba(253, 254, 254, 0.38);
  letter-spacing: 0.03em;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  position: relative;
  z-index: 2;
  background: var(--charcoal);
  border-top: 1px solid rgba(157, 180, 192, 0.15);
  border-bottom: 1px solid rgba(157, 180, 192, 0.15);
  padding: 52px 48px;
}

.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-intro {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: rgba(253, 254, 254, 0.65);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.trust-intro strong {
  color: var(--frosted);
  font-weight: 500;
}

.trust-bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.trust-bullet {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bullet-icon {
  width: 30px;
  height: 30px;
  background: rgba(157, 180, 192, 0.12);
  border: 1px solid rgba(157, 180, 192, 0.25);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.bullet-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--cadet);
  fill: none;
  stroke-width: 2;
}

.trust-bullet p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(253, 254, 254, 0.72);
  line-height: 1.65;
}

/* ─── SECTION SHARED ─── */
section {
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 48px;
}

/* ── Section label — Helvetica Neue Bold (Sub Header per brand guide p.10) ── */
.section-label {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold — Sub Header per brand guide */
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cadet);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--cadet);
  flex-shrink: 0;
}

/* ── H2 — section headings — PP Monument Regular (Header 1 per brand guide p.10) ── */
h2 {
  font-family: "PPMonumentExtended", "PP Monument Extended", sans-serif;
  font-weight: 400; /* Regular weight — brand guide p.10 */
  font-size: clamp(26px, 3vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--frosted);
  margin-bottom: 36px;
}

h2 em {
  font-style: normal;
  color: var(--cadet);
}

/* ── H3 — PP Monument Light (Header 2 per brand guide p.10) ── */
h3 {
  font-family: "PPMonumentExtended", "PP Monument Extended", sans-serif;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

/* ─── ALAN'S STORY ─── */
.story-section {
  background: var(--night-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-photo {
  aspect-ratio: 3/4;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.story-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(157, 180, 192, 0.35);
}

.story-photo-placeholder svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1;
}

.story-photo-placeholder span {
  font-family: "PPMonumentExtended", sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.story-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--night-soft), transparent);
}

.story-text blockquote {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--frosted);
  line-height: 1.75;
  border-left: 2px solid var(--cadet);
  padding-left: 24px;
  margin-bottom: 24px;
}

.story-text p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(253, 254, 254, 0.62);
  line-height: 1.85;
  margin-bottom: 14px;
}

/* ─── WHAT YOU'LL LEARN ─── */
.learn-section {
  background: var(--charcoal);
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.learn-item {
  background: rgba(19, 19, 19, 0.55);
  padding: 32px 28px;
  border: 1px solid rgba(157, 180, 192, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.learn-item:hover {
  background: rgba(157, 180, 192, 0.07);
  border-color: rgba(157, 180, 192, 0.22);
  transform: translateY(-2px);
}

/* Big decorative number */
.learn-number {
  font-family: "PPMonumentExtended", "PP Monument Extended", sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: rgba(157, 180, 192, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.learn-item p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(253, 254, 254, 0.72);
  line-height: 1.75;
}

/* ─── QUALIFICATION ─── */
.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.qual-col {
  padding: 44px 36px;
}

.qual-col.yes {
  background: rgba(157, 180, 192, 0.07);
  border: 1px solid rgba(157, 180, 192, 0.18);
}

.qual-col.no {
  background: rgba(54, 62, 68, 0.38);
  border: 1px solid rgba(157, 180, 192, 0.07);
}

.qual-col h3 {
  /* Inherits h3 styles — PP Monument Light per brand guide */
  font-size: 12px;
  letter-spacing: 0.18em;
  margin-bottom: 28px;
}

.qual-col.yes h3 {
  color: var(--cadet);
}
.qual-col.no h3 {
  color: rgba(253, 254, 254, 0.35);
}

.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.qual-list li {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(253, 254, 254, 0.68);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.qual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.qual-col.yes .qual-list li::before {
  background: var(--cadet);
}
.qual-col.no .qual-list li::before {
  background: rgba(253, 254, 254, 0.18);
}

.not-note {
  margin-top: 20px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: rgba(253, 254, 254, 0.3);
  font-style: italic;
  line-height: 1.65;
  padding-left: 18px;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--night-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1px;
  margin-top: 48px;
  border: 1px solid rgba(157, 180, 192, 0.1);
}

.faq-item {
  padding: 26px 22px;
  background: var(--night-soft);
  border-right: 1px solid rgba(157, 180, 192, 0.07);
  border-bottom: 1px solid rgba(157, 180, 192, 0.07);
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: rgba(157, 180, 192, 0.05);
}

.faq-q {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--frosted);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid var(--cadet);
}

.faq-note {
  text-align: center;
  margin-top: 28px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: var(--cadet);
  font-style: italic;
  letter-spacing: 0.04em;
}

/* ─── REGISTRATION FORM ─── */
.form-section {
  background: var(--charcoal);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.form-aside h2 {
  margin-bottom: 16px;
}

.form-aside p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(253, 254, 254, 0.58);
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-trust-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: rgba(253, 254, 254, 0.55);
}

.form-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--cadet);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

form {
  background: rgba(19, 19, 19, 0.65);
  border: 1px solid rgba(157, 180, 192, 0.14);
  padding: 44px 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; /* Bold — Sub Header per brand guide p.10 */
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cadet);
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(253, 254, 254, 0.04);
  border: 1px solid rgba(157, 180, 192, 0.18);
  color: var(--frosted);
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder {
  color: rgba(253, 254, 254, 0.25);
}

input:focus,
select:focus {
  border-color: var(--cadet);
  background: rgba(157, 180, 192, 0.05);
}

select option {
  background: var(--charcoal);
  color: var(--frosted);
}

.checkbox-group {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  accent-color: var(--cadet);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-group label {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(253, 254, 254, 0.6);
  cursor: pointer;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

.form-privacy {
  margin-top: 14px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  color: rgba(253, 254, 254, 0.28);
  line-height: 1.65;
  text-align: center;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--night);
  border-top: 1px solid rgba(157, 180, 192, 0.1);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.about-logo {
  font-family: "PPMonumentExtended", "PP Monument Extended", sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--frosted);
  line-height: 1.1;
}

.about-logo span {
  color: var(--cadet);
}

.about-logo small {
  display: block;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(253, 254, 254, 0.35);
  margin-top: 8px;
  text-transform: uppercase;
}

.about-content p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(253, 254, 254, 0.62);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid rgba(157, 180, 192, 0.18);
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: rgba(253, 254, 254, 0.65);
}

.badge svg {
  width: 13px;
  height: 13px;
  stroke: var(--cadet);
  fill: none;
  stroke-width: 2;
}

/* ─── FINAL CTA ─── */
.final-cta {
  background: linear-gradient(135deg, var(--charcoal), var(--night-soft));
  border-top: 1px solid rgba(157, 180, 192, 0.12);
  text-align: center;
  padding: 96px 48px;
}

.final-cta h2 {
  max-width: 640px;
  margin: 0 auto 14px;
  font-size: clamp(24px, 3vw, 42px);
}

.final-cta p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(253, 254, 254, 0.48);
  margin-bottom: 36px;
}

.final-reassurance {
  margin-top: 18px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: rgba(253, 254, 254, 0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
footer {
  background: var(--night);
  border-top: 1px solid rgba(157, 180, 192, 0.08);
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  position: relative;
}

footer p {
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: rgba(253, 254, 254, 0.28);
  letter-spacing: 0.03em;
}

/* Footer logo image */
.footer-logo img {
  width: 80px;
  height: auto;
  display: block;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav {
    padding: 14px 24px;
  }
  .logo-text img {
    width: 130px;
  }

  .hero {
    padding: 110px 24px 60px;
  }
  .section-inner {
    padding: 64px 24px;
  }
  .trust-bar {
    padding: 40px 24px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-photo {
    aspect-ratio: 16/9;
  }

  .qual-grid {
    grid-template-columns: 1fr;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  form {
    padding: 28px 22px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-logo img {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  .hero-meta {
    gap: 14px;
  }
  .qual-col {
    padding: 28px 20px;
  }
  .final-cta {
    padding: 64px 24px;
  }
}
