@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ============================================
   FASTPOINT ENTERPRISES - MAIN STYLESHEET
   Created for easier maintenance and debugging
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
  --blue:       #1875BB;
  --blue-dark:  #125e99;
  --blue-deep:  #0d4a7a;
  --blue-light: #e8f2fb;
  --blue-mid:   #d0e6f7;
  --white:      #ffffff;
  --off-white:  #f5f9fd;
  --gray-light: #e4edf6;
  --gray:       #6b87a4;
  --gray-dark:  #3a5470;
  --text:       #0d2e4a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
}

/* ===== GLOBAL STYLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== HEADER SCROLLED STATE ===== */
header.scrolled {
  box-shadow: 0 4px 32px rgba(24,117,187,0.18);
  border-bottom-color: var(--blue);
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 24px rgba(24,117,187,0.12);
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: box-shadow 0.3s, background 0.3s;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.logo-header-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4da3e8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(24,117,187,0.3);
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; font-family: 'Barlow Condensed', sans-serif; min-width: 0; }

.logo-text .brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-text .tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.63rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

nav { display: flex; align-items: center; gap: 0.2rem; flex-shrink: 0; }

nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gray-dark);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 4px;
  transition: all 0.2s;
}

nav a:hover { color: var(--blue); background: var(--blue-light); }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  background: url("https://plain-apac-prod-public.komododecks.com/202606/03/1BYWvHJIwD9SxSzvojHl/image.png") center center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 30, 60, 0.62);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 3rem 5rem 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-badge span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .light { color: rgba(255,255,255,0.55); }
.hero h1 .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.6);
  color: transparent;
}

.hero-desc {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-desc strong { color: var(--white); font-weight: 600; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--blue);
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

.btn-outline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 5rem 4rem 5rem 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  max-width: 400px;
}

.stat-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.stat-card:hover::after { transform: scaleX(1); }

.stat-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-card .stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1.4;
}

/* ===== SECTION ANCHOR OFFSET (fixed header) ===== */
section[id] { scroll-margin-top: 70px; }

@media (max-width: 768px) { section[id] { scroll-margin-top: 64px; } }
@media (max-width: 480px) { section[id] { scroll-margin-top: 60px; } }

/* ===== SECTION COMMON STYLES ===== */
section { padding: 3.5rem 5rem; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: '';
  height: 2px;
  width: 36px;
  background: var(--blue);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.94;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.section-title .blue  { color: var(--blue); }
.section-title .white { color: var(--white); }

/* ===== ABOUT SECTION ===== */
#about {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

#about::before {
  content: 'FEI';
  position: absolute;
  right: -1rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(24,117,187,0.05);
  pointer-events: none;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-text p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.about-text p strong { color: var(--text); font-weight: 600; }

.about-milestones { display: flex; flex-direction: column; gap: 1.75rem; }

.milestone { display: flex; gap: 1.25rem; align-items: flex-start; }

.milestone-year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  min-width: 55px;
  padding-top: 3px;
}

.milestone-bar {
  width: 2px;
  background: linear-gradient(to bottom, var(--blue) 0%, var(--blue-mid) 100%);
  flex-shrink: 0;
  margin-top: 8px;
  align-self: stretch;
  border-radius: 2px;
}

.milestone-content h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.milestone-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ===== MISSION / VISION SECTION ===== */
#mission {
  background: #18303f;
  position: relative;
  overflow: hidden;
  padding: 5rem;
}

#mission::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(24,117,187,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(24,117,187,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.mv-header {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mv-intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 0.5rem;
}

#mission .section-label { color: rgba(255,255,255,0.55); }
#mission .section-label::after { background: rgba(255,255,255,0.3); }
#mission .section-title { color: var(--white); margin-bottom: 0; }
#mission .section-title .blue { color: var(--blue); }

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* CARD */
.mv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border-color: rgba(24,117,187,0.5);
}

/* IMAGE ZONE */
.mv-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.mv-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.75) saturate(0.85);
}

.mv-card:hover .mv-img {
  transform: scale(1.06);
  filter: brightness(0.85) saturate(1);
}

.mv-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 40, 0.2) 0%,
    rgba(10, 25, 40, 0.65) 100%
  );
}

/* KEYWORD BADGE over image */
.mv-keyword {
  position: absolute;
  top: 1.1rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--white);
  background: rgba(24,117,187,0.85);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
}

/* BODY ZONE */
.mv-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mv-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--blue);
  opacity: 0.8;
}

.mv-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.mv-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
  margin: 0;
}

.mv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.5rem;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
  color: #ffffff;
  background: rgba(24,117,187,0.45);
  border: 1px solid rgba(24,117,187,0.8);
  width: fit-content;
  box-shadow: 0 0 12px rgba(24,117,187,0.3);
}

.mv-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5bb8ff;
  flex-shrink: 0;
  box-shadow: 0 0 6px #5bb8ff;
}

/* Responsive */
@media (max-width: 1024px) {
  .mv-grid { grid-template-columns: 1fr 1fr; }
  .mv-card:last-child { grid-column: 1 / -1; }
  .mv-card:last-child .mv-img-wrap { height: 220px; }
}

@media (max-width: 768px) {
  #mission { padding: 2.5rem 1.25rem; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card:last-child { grid-column: auto; }
  .mv-img-wrap { height: 180px; }
}

/* ===== BUSINESSES SECTION ===== */
#businesses {
  background: #d8e8f8;
}

.biz-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.biz-intro {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
  font-weight: 400;
  max-width: 560px;
}

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.biz-card {
  background: var(--off-white);
  border: 2px solid var(--gray-light);
  border-radius: 18px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  cursor: default;
}

.biz-card:hover {
  border-color: var(--blue);
  background: var(--blue-light);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(24,117,187,0.15);
}

.biz-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgb(36 117 179);
  position: absolute;
  top: 1rem; right: 1rem;
  line-height: 1;
  transition: color 0.3s;
  z-index: 1;
}

.biz-card:hover .biz-num { color: rgba(24,117,187,0.18); }

.biz-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  min-height: 170px;
  background: var(--gray-light);
}

.biz-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.biz-icon { font-size: 1.75rem; margin-bottom: 0.6rem; display: block; }

.biz-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.biz-card:hover h3 { color: var(--blue); }

.biz-card p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.55;
  font-weight: 400;
}

.biz-tag {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(24,117,187,0.1);
  color: var(--blue);
  border: 1px solid rgba(24,117,187,0.25);
}

.biz-tag.white-tag {
  background: var(--white);
  color: var(--blue);
  border-color: var(--blue);
}

.biz-card-cta {
  background: var(--blue);
  border-color: var(--blue) !important;
  color: var(--white);
}

.biz-card-cta:hover {
  background: var(--blue-dark) !important;
  border-color: var(--blue-dark) !important;
}

.biz-card-cta h3 { color: var(--white) !important; }
.biz-card-cta:hover h3 { color: var(--white) !important; }
.biz-card-cta p { color: rgba(255,255,255,0.8) !important; }
.biz-card-cta:hover p { color: rgba(255,255,255,0.9) !important; }
.biz-card-cta .biz-num { color: rgba(255,255,255,0.1) !important; }
.biz-card-cta:hover .biz-num { color: rgba(255,255,255,0.18) !important; }

.biz-card-cta .biz-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* ===== CLIENTS SECTION ===== */
#clients { background: var(--off-white); }

#contact {
  background: var(--white);
}

/* contact.html page — left-aligned, full-width grid with its own padding */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 5rem;
  text-align: left;
}

.contact-details {
  max-width: 520px;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.96;
  margin-bottom: 1rem;
}

.contact-copy {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: var(--gray-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: grid;
  place-items: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 14px;
  font-size: 1.1rem;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-form-wrap {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 22px 60px rgba(24,117,187,0.15);
}

/* Success message shown after sending message */
.contact-success {
  margin-top: 1rem;
  background: #ffffff;
  color: #22354f;
  border: 1px solid rgba(24, 117, 187, 0.16);
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
  box-shadow: 0 18px 40px rgba(24, 117, 187, 0.08);
}
.contact-success[hidden] { display: none; }

/* Error message */
.contact-error {
  margin-top: 0.9rem;
  background: #fff4f4;
  color: #7a2020;
  border: 1px solid #ffd2d2;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
}
.contact-error[hidden] { display: none; }

/* Honeypot visually hidden (still accessible to screen readers off) */
.honeypot { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Reset button shown after success */
.contact-reset {
  margin-top: 12px;
  color: var(--blue);
  border: 2px solid var(--blue);
  background: var(--white);
  border-radius: 8px;
  padding: 12px 18px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  box-shadow: 0 8px 20px rgba(24, 117, 187, 0.1);
}

.contact-success .contact-reset:hover,
.contact-success .contact-reset:focus-visible {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(24, 117, 187, 0.18);
  transform: translateY(-1px);
}

.contact-reset:active {
  transform: translateY(0);
}

/* Disabled state for primary buttons */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: block;
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.contact-form label span {
  color: var(--blue);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13,46,74,0.14);
  background: #f8fbff;
  color: var(--text);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(13,46,74,0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(24,117,187,0.08);
}

.contact-submit {
  margin-top: 0.5rem;
  width: fit-content;
}

.clients-intro {
  max-width: 580px;
  margin-bottom: 3rem;
}

.clients-intro p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.7;
  font-weight: 400;
}

/* ===== CLIENTS MARQUEES ===== */
.clients-marquee-wrap {
  margin: 2rem 0 0;
}

.clients-marquee-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.clients-marquee-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--blue-mid);
}

.clients-marquee-track-outer {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  padding: 0.9rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* Current clients — blue tinted background */
.clients-marquee-current {
  background: var(--blue-light);
  border: 1.5px solid var(--blue-mid);
}

/* Past partners — neutral background */
.clients-marquee-past {
  background: var(--off-white);
  border: 1.5px solid var(--gray-light);
}

.clients-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: clients-marquee-fwd 35s linear infinite;
  will-change: transform;
}

.clients-marquee-track--reverse {
  animation: clients-marquee-rev 30s linear infinite;
}

.clients-marquee-track:hover,
.clients-marquee-track--reverse:hover {
  animation-play-state: paused;
}

@keyframes clients-marquee-fwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes clients-marquee-rev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.cm-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-dark);
  white-space: nowrap;
}

.cm-name--current {
  color: var(--blue);
}

.cm-dot {
  color: var(--blue);
  font-size: 0.65rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.clients-marquee-past .cm-dot {
  color: var(--gray);
}

/* ===== CLIENT MARQUEE CARDS & LOGOS ===== */
.cm-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  min-width: 140px;
  flex-shrink: 0;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cm-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(24,117,187,0.12);
}

.cm-card--current {
  background: var(--white);
  border-color: var(--blue-mid);
}

.cm-logo {
  width: 100px;
  height: 50px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.cm-logo-placeholder {
  width: 100px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray);
  background: var(--gray-light);
  border-radius: 6px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cm-name { font-size: 0.85rem; }
  .clients-marquee-track { gap: 1rem; }
  .cm-logo { width: 72px; height: 38px; }
  .cm-logo-placeholder { width: 72px; height: 38px; font-size: 0.9rem; }
  .cm-card { min-width: 110px; padding: 0.6rem 0.9rem; }
}

/* ===== CONTACT SECTION ===== */
#contact {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Index-only contact section: centered + padded (no contact-grid child) */
#contact > .section-label,
#contact > .contact-title,
#contact > .contact-sub,
#contact > .contact-info,
#contact > .contact-btns {
  text-align: center;
  padding-left: 5rem;
  padding-right: 5rem;
}
#contact > .section-label {
  justify-content: center;
  padding-top: 6rem;
}
#contact > .contact-btns {
  padding-bottom: 6rem;
}
#contact > .section-label { justify-content: center; }

/* Shared color overrides for blue background */
#contact .section-label { color: rgba(255,255,255,0.7); }
#contact .section-label::after { background: rgba(255,255,255,0.5); }
#contact .section-title { color: var(--white); }
#contact .section-title .blue { color: #ffffff; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(255,255,255,0.4); }
#contact .contact-copy { color: rgba(255,255,255,0.88); }
#contact .contact-list li { color: rgba(255,255,255,0.9); }
#contact .contact-list a { color: var(--white); font-weight: 500; }
#contact .contact-list a:hover { color: rgba(255,255,255,0.72); text-decoration: underline; }
#contact .contact-icon { background: rgba(255,255,255,0.22); color: var(--white); }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.contact-title .outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
  color: transparent;
}

.contact-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0.75rem auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.contact-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }

.contact-item .ci-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-btns {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== MOBILE NAV ===== */
#main-nav.nav-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 8px 32px rgba(24,117,187,0.18);
  padding: 0.75rem 1.25rem 1.25rem;
  gap: 0.15rem;
  z-index: 999;
  animation: navSlideDown 0.22s ease;
}

@keyframes navSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

#main-nav.nav-open a {
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
}

#main-nav.nav-open a:not(.nav-cta):hover {
  background: var(--blue-light);
  border-bottom-color: transparent;
}

#main-nav.nav-open .nav-cta {
  margin-left: 0;
  margin-top: 0.75rem;
  text-align: center;
  padding: 12px 18px !important;
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger span { transition: transform 0.25s, opacity 0.25s; }

/* ===== CONTACT LINKS ===== */
.contact-item .ci-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

.contact-item a.ci-value:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  height: 1px;
  background: var(--gray-light);
}

/* ===== FOOTER ===== */
footer {
  background: #0f2b44;
  color: rgba(255,255,255,0.88);
  padding: 4rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: 1.4rem;
  min-width: 240px;
  flex: 1;
}

.footer-brand-contact {
  min-width: 300px;
  max-width: 400px;
  flex: 1.5;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue), #4da3e8);
  padding: 10px;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo-text .brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
}

.footer-logo-text .tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0;
}

.footer-contact strong {
  color: rgba(255,255,255,0.95);
}

.footer-contact a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--blue-light);
  text-decoration: underline;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin: 0 0 0.4rem 0;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-list a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  font-size: 1rem;
  display: inline-block;
}

.footer-link-list a:hover {
  color: var(--blue-light);
  padding-left: 4px;
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stagger children on cards */
.biz-grid .biz-card,
.mv-grid .mv-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.35s, box-shadow 0.35s;
}

.biz-grid .biz-card.visible,
.mv-grid .mv-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay overrides for hover-only transitions to remain snappy */
.biz-card:hover, .mv-card:hover {
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s !important;
}

/* ===== LEGAL PAGES (terms, privacy) ===== */
.legal-section {
  padding: 4rem 5rem;
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.legal-section h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-dark);
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

.legal-section p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-section ul {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-section ul li {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-section a {
  color: var(--blue);
  text-decoration: underline;
}

/* Subpage hero responsive fixes */
.subpage-hero .hero-left {
  padding: clamp(2rem, 5vw, 4rem) clamp(1.25rem, 5vw, 3rem);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border-radius: 6px; transition: background 0.2s; flex-shrink: 0; }
.hamburger:hover { background: var(--blue-light); }
.hamburger span { width: 24px; height: 2px; background: var(--blue); border-radius: 2px; display: block; }

/* ── LAPTOP / LARGE DESKTOP (≤ 1280px) ──────────────────────────────── */
@media (max-width: 1280px) {
  header { padding: 0 2rem; }
  section { padding: 3rem 2rem; }
  #mission { padding: 4rem 2rem; }

  .hero-left { padding: 4rem 2rem; }
  .hero-right { padding: 3.5rem 1.5rem; }
  .hero-grid-overlay { background-size: 40px 40px; }

  .about-grid { gap: 3.5rem; }

  .biz-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); }

  .leaders-grid { grid-template-columns: 1fr 1fr 1fr; }

  .affiliates-grid { grid-template-columns: repeat(3, minmax(180px, 1fr)); }

  .contact-grid { padding: 3rem 2rem; }

  .legal-section { padding: 3rem 2rem; }

  footer { padding: 3.5rem 3rem; }
}

/* ── TABLET LANDSCAPE / SMALL LAPTOP (≤ 1024px) ─────────────────────── */
@media (max-width: 1024px) {
  header { padding: 0 1.75rem; gap: 0.75rem; }
  .logo-text .brand { font-size: 1rem; }
  .logo-text .tagline { font-size: 0.6rem; letter-spacing: 0.09em; }
  nav a { padding: 7px 9px; font-size: 0.76rem; }
  .nav-cta { padding: 7px 14px !important; margin-left: 4px; }

  section { padding: 2.5rem 1.75rem; }
  #mission { padding: 3.5rem 1.75rem; }

  .hero-left { padding: 3.5rem 1.75rem; }
  .hero-right { padding: 3rem 1.5rem; }
  .hero-grid-overlay { background-size: 32px 32px; }
  .hero-stats { max-width: 380px; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-milestones { gap: 1.5rem; }

  .biz-header { gap: 0.4rem; margin-bottom: 1.25rem; }
  .biz-grid { grid-template-columns: 1fr 1fr; }

  .leaders-grid { grid-template-columns: 1fr 1fr; }
  .leaders-header-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .leaders-intro { max-width: 100%; margin-left: 0; }

  .affiliates-grid { grid-template-columns: repeat(2, minmax(180px, 1fr)); }

  .clients-intro { max-width: 100%; }

  .mv-grid { grid-template-columns: 1fr 1fr; }
  .mv-card:last-child { grid-column: 1 / -1; }
  .mv-card:last-child .mv-img-wrap { height: 220px; }

  .contact-grid { padding: 2.5rem 1.75rem; grid-template-columns: 1fr 1.05fr; gap: 2rem; }

  .legal-section { padding: 2.5rem 1.75rem; }

  footer { padding: 3rem 2rem; }
}

/* ── TABLET PORTRAIT (≤ 768px) ───────────────────────────────────────── */
@media (max-width: 768px) {
  /* NAV → hamburger */
  nav { display: none; }
  .hamburger { display: flex; }

  /* Header */
  header { padding: 0 1.5rem; height: 64px; }
  .logo-text { max-width: calc(100vw - 120px); }
  #main-nav.nav-open { top: 64px; }

  /* Sections */
  section { padding: 2.5rem 1.25rem; }
  #mission { padding: 2.5rem 1.25rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-right { display: none; }
  .hero h1 { margin-bottom: 1.25rem; }
  .hero-desc { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a, .hero-actions button { width: 100%; justify-content: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Mission/Vision */
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card:last-child { grid-column: auto; }
  .mv-img-wrap { height: 180px; }

  /* Businesses */
  .biz-header { gap: 0.3rem; margin-bottom: 1rem; }
  .biz-grid { grid-template-columns: 1fr; gap: 0.85rem; }

  /* Leadership */
  .leaders-grid { grid-template-columns: 1fr; }

  /* Affiliates */
  .affiliates-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  /* Clients marquee */
  .clients-marquee-track { gap: 1rem; }
  .cm-card { min-width: 120px; }

  /* Contact page grid */
  .contact-grid { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2.5rem; text-align: left; }
  .contact-details { max-width: 100%; text-align: left; }
  .contact-details .section-label { justify-content: flex-start; }
  .contact-form-wrap { padding: 2rem; }
  .contact-list { gap: 1.1rem; }
  .contact-list li { font-size: 1rem; align-items: center; }
  .contact-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; }
  .contact-submit { width: 100%; justify-content: center; }
  .contact-reset { width: 100%; justify-content: center; }
  .contact-copy { font-size: 1rem; }
  .contact-form { gap: 1.5rem; }
  .contact-form input, .contact-form textarea { padding: 1rem 1.1rem; font-size: 1rem; }
  .contact-form label { font-size: 1rem; margin-bottom: 0.5rem; }

  .legal-section { padding: 2.5rem 1.25rem; }

  /* Index contact CTA section */
  .contact-info { gap: 1.5rem; }
  .contact-btns { flex-direction: column; align-items: stretch; }
  .contact-btns a, .contact-btns button { width: 100%; justify-content: center; }
  #contact > .section-label,
  #contact > .contact-title,
  #contact > .contact-sub,
  #contact > .contact-info,
  #contact > .contact-btns { padding-left: 1.5rem; padding-right: 1.5rem; }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    padding: 3rem 1.5rem;
    align-items: stretch;
  }
  .footer-column { width: 100%; min-width: unset; }
  .footer-brand-contact { max-width: none; }
  .footer-link-list { flex-direction: row; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
}

/* ── LARGE PHONES LANDSCAPE / SMALL TABLET (≤ 640px) ────────────────── */
@media (max-width: 640px) {
  header { padding: 0 1.25rem; }

  .hero-left { padding: 2.75rem 1.25rem 2rem; }
  .hero h1 { font-size: clamp(3rem, 11vw, 4.5rem); }
  .hero-badge { margin-bottom: 1.5rem; }

  .section-title { font-size: clamp(2.2rem, 9vw, 3.2rem); }

  .affiliates-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .contact-form-wrap { padding: 1.5rem 1.25rem; }

  /* Terms & Privacy inner sections */
  .legal-section { padding: 2rem 1.25rem; }

  footer { padding: 2.5rem 1.25rem; }
}

/* ── MOBILE PORTRAIT (≤ 480px) ───────────────────────────────────────── */
@media (max-width: 480px) {
  header { height: 60px; min-height: 60px; padding: 0 1rem; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-wrap { gap: 8px; }
  .logo-text .brand { font-size: 0.88rem; }
  .logo-text .tagline { display: none; }
  #main-nav.nav-open { top: 60px; }

  .hero-left { padding: 2.5rem 1rem 2rem; }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero-desc { font-size: 0.93rem; line-height: 1.65; }
  .hero-badge span { font-size: 0.65rem; }
  .hero-actions { gap: 0.75rem; }
  .btn-primary, .btn-outline { padding: 12px 16px; font-size: 0.82rem; }

  .section-label { font-size: 0.63rem; }
  .section-title { font-size: clamp(2rem, 10vw, 2.8rem); }

  .about-text p, .clients-intro p { font-size: 0.88rem; }

  .milestone { gap: 1rem; }
  .milestone-year { font-size: 0.9rem; min-width: 48px; }

  .stat-card { padding: 1.25rem 1rem; }
  .stat-card .stat-num { font-size: 2.6rem; }

  .biz-card { padding: 1.25rem; }
  .biz-card p { font-size: 0.82rem; }
  .biz-image img { height: 140px; }

  .mv-body { padding: 1.25rem 1.25rem 1.5rem; }


  .affiliates-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }

  .cm-logo { width: 64px; height: 32px; }
  .cm-logo-placeholder { width: 64px; height: 32px; font-size: 0.9rem; }
  .cm-card { min-width: 100px; padding: 0.55rem 0.75rem; }
  .cm-name { font-size: 0.82rem; }
  .clients-marquee-track { animation-duration: 28s; gap: 0.75rem; }

  .contact-grid { padding: 2rem 1.25rem; gap: 2rem; }
  .contact-form-wrap { padding: 1.75rem 1.5rem; border-radius: 22px; }
  .contact-form input, .contact-form textarea { padding: 1rem 1rem; border-radius: 14px; font-size: 1rem; }
  .contact-list li { font-size: 0.95rem; }
  .contact-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 11px; }
  .contact-form { gap: 1.25rem; }
  .contact-form label { font-size: 0.95rem; }

  /* Terms / Privacy sections */
  .legal-section { padding: 1.75rem 1rem; }
  .legal-section h3 { font-size: 0.95rem; }
  .legal-section p, .legal-section ul li { font-size: 0.85rem; line-height: 1.7; }

  footer { padding: 2rem 1rem; gap: 1.75rem; }
  .footer-logo-icon { width: 44px; height: 44px; padding: 8px; }
  .footer-logo-text .brand { font-size: 1.05rem; }
  .footer-logo-text .tagline { font-size: 0.78rem; }
  .footer-contact p, .footer-contact a { font-size: 0.88rem; }
  .footer-link-list a { font-size: 0.88rem; }
  .footer-copy { font-size: 0.8rem; }
}

/* ── SMALL PHONES (≤ 360px) ──────────────────────────────────────────── */
@media (max-width: 360px) {
  .logo-text .brand { font-size: 0.82rem; }

  .hero h1 { font-size: clamp(2.5rem, 13vw, 3.5rem); }
  .hero-desc { font-size: 0.88rem; }

  .section-title { font-size: clamp(1.85rem, 11vw, 2.5rem); }

  .affiliates-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 1rem 0.85rem; }

  footer { padding: 1.75rem 0.85rem; }
}