* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #F5A800;
  --navy: #0D1B3E;
}

body {
  font-family: 'Barlow', sans-serif;
  background: #000;
}

/* HERO SECTION – full viewport */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 6vw;
}

/* FOOTBALLER (full bleed, right-aligned) */
.footballer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: right top;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.25) 18%,
    rgba(0,0,0,0.65) 38%,
    black 60%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0,0,0,0.25) 18%,
    rgba(0,0,0,0.65) 38%,
    black 60%
  );
}

/* ORANGE BLEND – heavy left, transparent right */
.orange-blend {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(245, 168, 0, 0.96) 0%,
    rgba(245, 168, 0, 0.90) 20%,
    rgba(245, 168, 0, 0.70) 38%,
    rgba(245, 168, 0, 0.35) 55%,
    rgba(245, 168, 0, 0.08) 72%,
    transparent 88%
  );
  pointer-events: none;
}

/* PHONE MOCK (bottom-right) */
.phone {
  position: absolute;
  right: -20px;
  bottom: -60px;
  height: 95%;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

/* TEXT LEFT CONTENT */
.content {
  max-width: 520px;
  z-index: 5;
  position: relative;
  margin-top: 0;
}

.headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  color: white;
  text-transform: uppercase;
  margin-bottom: 25px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

.body-text {
  color: white;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.65;
  margin-bottom: 38px;
  max-width: 390px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.cta {
  display: inline-block;
  background: #1a4364;
  color: white;
  padding: 17px 42px;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .15em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(13, 27, 62, 0.55);
}

/* ===== LOGO (top-right) – TEXT NOW EXTREMELY CLOSE TO IMAGE ===== */
.logo {
  position: absolute;
  top: 32px;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 6;
  /* remove any extra line spacing that could create invisible gaps */
  line-height: 1;
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 0px;
  line-height: 0.;    /* ZERO margin – no space between image and first text line */
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.15rem;
  color: #F5A800;
  text-transform: uppercase;
  line-height: 0.;        /* tight line height */
  margin-top: 2px;       /* minimal 2px – barely visible but keeps readability */
  margin-bottom: 0px;
  padding: 0;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.2rem;
  color: white;
  opacity: 0.75;
  margin: 0;
  line-height: 1.2;
  font-weight: 500;
  margin-top: 2px;       /* tiny gap between LET'S TRAIN and subtitle */
}

/* Even tighter on mobile where text can be extra close */
@media (max-width: 900px) {
  .hero {
    padding-left: 5vw;
  }
  .headline {
    font-size: 42px;
  }
  .phone {
    height: 55%;
    right: -10px;
    bottom: -20px;
  }
  .logo-img {
    height: 56px;
    margin-bottom: 0px;
  }
  .logo {
    top: 20px;
    right: 4vw;
  }
  .logo-text {
    font-size: 11px;
    margin-top: 1px;   /* even closer on tablet */
    letter-spacing: 0.12rem;
  }
  .logo-sub {
    font-size: 8px;
    margin-top: 1px;
    letter-spacing: 0.15rem;
  }
}

@media (max-width: 768px) {

  /* ❌ Hide images */
  .footballer,
  .phone {
    display: none;
  }

  /* ✅ Make background clean */
  .orange-blend {
    background: var(--orange);
  }

  /* ✅ Center content nicely */
  .hero {
    justify-content: center;
    padding: 0 20px;
    text-align: center;
  }

  .content {
    max-width: 100%;
  }

  /* ✅ Center button */
  .cta {
    margin: 0 auto;
  }
}

@media (max-width: 550px) {
  .hero {
    padding-left: 6vw;
    align-items: center;
  }
  .content {
    max-width: 85%;
  }
  .headline {
    font-size: 36px;
    line-height: 1.05;
  }
  .body-text {
    font-size: 14px;
    max-width: 280px;
  }
  .logo-img {
    height: 48px;
    margin-bottom: 0px;
  }
  .logo-text {
    font-size: 10px;
    margin-top: 1px;
  }
  .logo-sub {
    font-size: 7px;
    margin-top: 1px;
  }
}

/* remove any residual spacing caused by span inheritance */
.logo span {
  display: block;
}

html, body {
  overflow-x: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0D1B3E;
  z-index: -2;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --orange: #F5A800; --navy: #0D1B3E; --navy-mid: #112348; --navy-light: #1a2f58; }
body { font-family: 'Barlow', sans-serif; }

.waitlist {
  position: relative;
  min-height: 100vh;
      background: #1a4364;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  overflow: hidden;
}

/* Logo as background watermark */
.bg-logo {
  position: absolute;
  right: -250px;
  top: 30%;
  transform: translateY(-50%);
  width: 1500px;
  /* height: auto; */
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.waitlist-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 10px;
}

.waitlist-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
   font-size: clamp(32px, 5vw, 56px);
  color: white;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .02em;
}

.waitlist-heading p {
  margin-top: 14px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.card {
  position: relative;
  z-index: 1;
  margin-top: 36px;

  /* 🔥 Bigger width (clean way) */
  width: 100%;
  max-width: 900px; /* increase this for longer card */

  /* 🎨 Glass / Elevated look */
  /* background: rgba(26, 67, 100, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); */

  border-radius: 0px;
  padding: 40px 50px;

  /* ✨ Soft border */
  border: 1px solid rgba(255, 255, 255, 0.12);

  /* 🔥 Elevation shadow */
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.15);

  transition: all 0.3s ease;
}

.field { margin-bottom: 22px; }

.field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .12em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field input,
.field select {
  width: 100%;
  background: #163651;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 16px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  outline: none;
  transition: border-color .2s, color .2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input::placeholder { color: rgba(255,255,255,0.45); }
.field input:focus, .field select:focus { border-color: var(--orange); color: white; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  font-size: 14px;
}
.field select option { background: var(--navy-mid); color: white; }

.submit-btn {
  display: block;
  width: 40%;
  margin: 28px auto 0;
  background: var(--orange);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 18px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.submit-btn:hover { transform: translateY(-3px); }

.social-proof {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 600px) {
  .card { padding: 28px 22px 24px; }
  .submit-btn { width: 80%; }
  .bg-logo { width: 320px; right: -40px; }
}




* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --orange: #F5A800; --navy: #0D1B3E; --navy-mid: #112348; --navy-card: #152a50; }
body { font-family: 'Barlow', sans-serif; }

/* ── PROBLEM SECTION ── */
.problem {
  background: #1a4364;
  padding: 56px 6vw 60px;
}

.problem h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  color: white;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .04em;
  margin-bottom: 40px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  position: relative;
  overflow: hidden;

  background: #1a4364;
  padding: 28px 30px;
  border-radius: 12px;

  /* ✨ Elevation */
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 2px 6px rgba(0, 0, 0, 0.15);

  /* subtle border for depth */
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.35),
    0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Orange left accent bar */
.problem-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange);
}

.problem-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(18px, 2vw, 24px);
  color: white;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: clamp(13px, 1.2vw, 15px);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ── SOLUTION SECTION ── */
.solution {
  position: relative;
  background: var(--orange);
  padding: 60px 6vw 64px;
  overflow: hidden;
}

/* Logo watermark background */
.solution .bg-logo {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 420px;
  height: auto;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}

.solution-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.solution-left .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: .18em;
  color: #1a4364;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.solution-left h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 66px);
  line-height: 0.93;
  color: white;
  text-transform: uppercase;
  letter-spacing: .01em;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.solution-left p {
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 420px;
}

/* RIGHT — feature cards */
.solution-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-card {
  background: #1a4364;
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.feature-icon svg {
  width: 26px; height: 26px;
  fill: var(--navy);
}

.feature-text h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 1.5vw, 18px);
  color: white;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: clamp(12px, 1.1vw, 14px);
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .problem-card:last-child { border-bottom: none; }
  .solution-inner { grid-template-columns: 1fr; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --orange: #F5A800; --navy: #0D1B3E; --navy-card: #122448; }
body { font-family: 'Barlow', sans-serif; }

.features {
  position: relative;
  background: var(--orange);
  padding: 60px 5vw 68px;
  overflow: hidden;
}

.features .bg-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55%;
  max-width: 580px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.features-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}

.features-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 58px);
  color: white;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.features-heading p {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255,255,255,0.88);
  font-weight: 500;
}

.features-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card {
  background: #1a4364;
  border-radius: 20px;
  padding: 36px 28px 32px;
  border-top: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 240px;
}

.feature-card svg {
  width: 40px;
  height: 40px;
  fill: white;
  margin-bottom: 18px;
  display: block;
  flex-shrink: 0;
}

.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 1.6vw, 20px);
  color: white;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: clamp(13px, 1.1vw, 15px);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .features-grid { grid-template-columns: 1fr; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --orange: #F5A800; --navy: #0D1B3E; }
body { font-family: 'Barlow', sans-serif; }

.subscription {
  position: relative;
  background: #1a4364;
  padding: 72px 6vw 60px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subscription .bg-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 110%;
  width: auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.sub-heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}

.sub-heading h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 7vw, 80px);
  color: white;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 12px;
}

.sub-heading p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* Cards wrapper — bottoms all aligned, heights grow left to right */
.plans {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;  /* all cards sit on same baseline */
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 920px;
}

.plan-card {
  background: var(--orange);
  border-radius: 35px;
  padding: 36px 30px 38px;
  flex: 1;
  max-width: 290px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  border: 4.5px solid white;
}

/* FREE — smallest */
.plan-card.free   { height: 320px; }

/* PRO — medium */
.plan-card.pro    { height: 420px; }

/* ACADEMY — biggest */
.plan-card.academy { height: 500px; }

.plan-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase;
  letter-spacing: .06em;
  color: white;
  margin-bottom: 10px;
  text-align: center;
}

.plan-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 60px);
  color: white;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-price .period {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow', sans-serif;
}

.plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 18px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: clamp(13px, 1.2vw, 15px);
  color: white;
  font-weight: 500;
  line-height: 1.4;
}

.plan-features li::before {
  content: '✓';
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.sub-note {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}

@media (max-width: 700px) {
  .plans { flex-direction: column; align-items: center; }
  .plan-card { max-width: 100%; width: 100%; height: auto !important; }
}

/* ── MODAL STYLES ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #1a4364;
  width: 100%;
  max-width: 450px;
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-icon {
  width: 80px;
  height: 80px;
  background: var(--orange);
  color: white;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: 0 10px 20px rgba(245, 168, 0, 0.3);
}

.modal-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.modal-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-btn {
  background: var(--orange);
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 20px rgba(245, 168, 0, 0.2);
}

.modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 168, 0, 0.4);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --orange: #F5A800; --navy: #0D1B3E; --navy-mid: #112348; }
body { font-family: 'Barlow', sans-serif; }

/* ── TESTIMONIALS ── */
.testimonials {
  position: relative;
  background: #1a4364;
  padding: 64px 6vw 0;
  overflow: hidden;
}

/* Footballer watermark */
.testimonials .bg-footballer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.testimonials h2 {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 56px);
  color: white;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 48px;
}

.testimonials-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 64px;
}

.testimonial-card {
  background: var(--orange);
  border-radius: 6px;
  padding: 28px 26px 26px;
}

.testimonial-card .quote {
  font-size: clamp(13px, 1.2vw, 15px);
  color: white;
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(15px, 1.4vw, 18px);
  color: #1a4364;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 3px;
}

.testimonial-card .author-role {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

/* Orange band below testimonials */
.orange-band {
  background: var(--orange);
  height: 80px;
  width: 100%;
}

/* ── FOOTER ── */
footer {
  background: #1a4364;
  padding: 48px 6vw 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* Logo column */
.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-logo .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .14em;
  color: var(--orange);
  text-transform: uppercase;
}

.footer-logo .brand-tag {
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 600;
}

/* Footer columns */
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .1em;
  color: white;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover { color: var(--orange); }

/* Follow us — inline links */
.footer-col.follow a {
  display: inline;
  margin-right: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
}
