@font-face {
  font-family: 'GoodHeadlinePro';
  src: url('assets/fonts/GoodHeadlinePro.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'GoodHeadlinePro';
  src: url('assets/fonts/GoodHeadlinePro-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'GoodHeadlinePro';
  src: url('assets/fonts/GoodHeadlinePro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'GoodHeadlinePro';
  src: url('assets/fonts/GoodHeadlinePro-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

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

:root {
  --red: #E40B3E;
  --navy: #142B4D;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fff; overflow-x: hidden; }

/* ─────────────────── NAV ─────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

nav.scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.logo-navy { fill: #fff; transition: fill 0.35s; }
nav.scrolled .logo-navy { fill: var(--navy); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s;
}

nav.scrolled .nav-links a { color: var(--navy); }
.nav-links a:hover { color: var(--red) !important; }

.btn-connect {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

nav.scrolled .btn-connect {
  background: var(--red);
  border-color: var(--red);
}

.btn-connect:hover {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
}

/* ─────────────────── BURGER + MOBILE MENU ─────────────────── */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.35s;
}

nav.scrolled .burger-btn span { background: var(--navy); }

.burger-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.is-open span:nth-child(2) { opacity: 0; }
.burger-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 80px 32px 48px;
  gap: 48px;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-links li a {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(36px, 10vw, 52px);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  transition: color 0.2s;
}

.mobile-links li a:hover { color: var(--red); }

.mobile-menu-cta {
  background: var(--red) !important;
  border-color: var(--red) !important;
  font-size: 14px !important;
  padding: 13px 32px !important;
}

/* ─────────────────── HERO ─────────────────── */
.hero-scroll {
  height: 260vh;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.video-frame {
  position: absolute;
  inset: 0;
  border-radius: 0px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius, filter, opacity;
  background: #111;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1c1c2e 0%, #2a2a3e 45%, #1a1a28 100%);
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.18) 55%,
    rgba(0,0,0,0.08) 100%
  );
}

.hero-text {
  position: absolute;
  bottom: 56px;
  left: 60px;
  z-index: 3;
}

.hero-text h1 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 900;
  color: #fff;
  line-height: 0.92;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-text p {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-top: 10px;
  letter-spacing: -0.3px;
}

/* ─────────────────── ABOUT ─────────────────── */
#aboutScroll {
  height: 200vh;
  position: relative;
  z-index: 3;
}

.about-us {
  position: sticky;
  top: 0;
  background: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
  overflow: hidden;
  will-change: transform, filter, opacity;
  transform-origin: center center;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  height: 100%;
  will-change: transform, filter, opacity;
  transform-origin: center center;
}

.about-left h2 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 1.0;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 15px;
  line-height: 1.78;
  color: #444;
  margin-bottom: 32px;
}

.btn-explore {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-explore:hover {
  background: #c5092f;
  transform: translateY(-1px);
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 32px;
  overflow: hidden;
  background: #dde4ed;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dde4ed 0%, #c8d3e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #99aabb;
  font-style: italic;
}

/* ─────────────────── SERVICES ─────────────────── */
#servicesSection {
  position: relative;
  z-index: 4;
  height: auto;
  display: block;
  padding: 40px 0 160px;
  background: transparent;
  transform-origin: top center;
  will-change: transform;
  margin-top: -50vh; /* pulls SERVICES up behind ABOUT — matches (scrollZone - 100vh) */
}

.services-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 36px;
}

.services-header h2 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
  margin-bottom: 16px;
}

.services-header p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 28px;
}

.btn-discover {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-discover:hover { background: #c5092f; }

/* ─────────────────── CHAR FLIP ─────────────────── */
.word {
  display: inline-block;
  white-space: nowrap;
}

.char-wrap {
  display: inline-block;
  vertical-align: bottom;
  perspective: 500px;
}

.char {
  display: inline-block;
  transform-style: preserve-3d;
}

/* ─────────────────── CARDS GRID ─────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  width: 100%;
  padding: 0 80px;
  align-items: start;
}

.cards-col {
  display: flex;
  flex-direction: column;
  gap: 56px;
  will-change: transform;
}

.cards-col-left   { margin-top: 120px; }
.cards-col-center { margin-top: 0px; }
.cards-col-right  { margin-top: 60px; }

.service-card {
  width: 100%;
  cursor: pointer;
  will-change: transform;
}

.card-img {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 100%;
}

.card-body {
  padding: 14px 2px 0;
}

.card-body h3 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.3px;
  transition: color 0.25s ease;
}

.card-body h3:hover {
  color: var(--red);
  cursor: pointer;
}

/* ─────────────────── SERVICE DETAIL OVERLAY ─────────────────── */
#serviceDetail {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 450;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

#serviceDetail.is-open {
  pointer-events: all;
}

#detailClose {
  position: absolute;
  top: 32px;
  right: 56px;
  background: none;
  border: 1.5px solid rgba(20,43,77,0.25);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 15px;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
  z-index: 10;
}

#detailClose:hover {
  border-color: var(--red);
  color: var(--red);
}

.detail-panels {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  padding: 0 80px;
  align-items: center;
}

.detail-left {
  background: var(--navy);
  border-radius: 24px;
  padding: 52px 44px;
  height: min(72vh, 560px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.detail-left h2 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: -0.5px;
}

.detail-left p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.70);
  text-transform: uppercase;
  letter-spacing: 0.2px;
  font-weight: 500;
  flex: 1;
}

.btn-use-cases {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  transition: border-color 0.2s, background 0.2s;
}

.btn-use-cases:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.detail-right {
  padding: 20px 0;
}

#detailList {
  list-style: none;
}

#detailList li {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: -0.5px;
  cursor: pointer;
  display: block;
  padding: 3px 0;
  text-decoration: none;
  transition: color 0.18s;
}

#detailList li:hover {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 2.5px;
  text-underline-offset: 5px;
}

/* ─────────────────── HORIZONTAL ZONE ─────────────────── */
#horizontalZone {
  position: relative;
  z-index: 5;
  height: 100vh;
  overflow: hidden;
  margin-top: -50vh;
  transform-origin: top center;
  will-change: transform;
}

.hz-track {
  display: flex;
  width: 160vw;   /* logos(60vw) + text(40vw) + awards(60vw) */
  height: 100%;
  will-change: transform;
  align-items: center;
}

.hz-panel-logos {
  width: 60vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 60px 80px;
}

.hz-panel-text {
  width: 40vw;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 56px;
}

.hz-panel-awards {
  width: 60vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 60px 60px;
}

/* Both texts stack in the same spot — GSAP cross-fades content */
.hz-text {
  position: absolute;
  left: 56px;
  right: 56px;
}

#hzTextAwards {
  opacity: 0;
}

.hz-text h2 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
  margin-bottom: 20px;
}

.hz-text p {
  font-size: 15px;
  line-height: 1.78;
  color: #444;
  margin-bottom: 32px;
}

/* ─────────────────── PARTNERS GRID ─────────────────── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 16px;
  align-items: center;
  width: 100%;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.55);
  transition: filter 0.3s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%) brightness(1);
}

/* ─────────────────── AWARDS CARDS ─────────────────── */
.awards-cards {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.award-card {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20,43,77,0.16), 0 6px 20px rgba(20,43,77,0.08);
  transition: box-shadow 0.3s ease;
}

.award-card:hover {
  box-shadow: 0 40px 80px rgba(20,43,77,0.20), 0 10px 28px rgba(20,43,77,0.10);
}

.award-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.award-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award-body {
  padding: 22px 20px 24px;
}

.award-meta {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}

.award-title {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 12px;
}

.award-cat {
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: block;
  font-weight: 600;
}

/* ─────────────────── NEWSLETTER ─────────────────── */
#newsletterSection {
  position: relative;
  z-index: 6;
  padding: 80px;
  background: #fff;
  will-change: transform, opacity;
}

.newsletter-card {
  background: var(--navy);
  border-radius: 32px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 0%, rgba(228,11,62,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.newsletter-left h2 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.0;
}

.newsletter-right p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.newsletter-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.newsletter-field label {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.newsletter-field input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-field input:focus {
  border-color: rgba(255,255,255,0.4);
}

.btn-subscribe {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}

.btn-subscribe:hover { background: #c5092f; }

.newsletter-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

.social-icon:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ─────────────────── BTN TALK ─────────────────── */
.btn-talk {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-talk:hover { background: #c5092f; }

/* ─────────────────── FLOATING BUTTON ─────────────────── */
.float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  width: 50px;
  height: 50px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(228,11,62,0.45);
  transition: transform 0.2s;
}

/* ─────────────────── FOOTER ─────────────────── */
.footer-navy { fill: var(--navy); }

#siteFooter {
  background: #fff;
  padding: 70px 80px 144px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Brand column */
.footer-brand .footer-logo {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-copy {
  display: block;
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Nav columns */
.footer-col h4 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

.footer-links-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links-grid li a {
  font-size: 14px;
  color: #444;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-links-grid li a:hover { color: var(--red); }

/* CTA column */
.footer-cta h3 {
  font-family: 'GoodHeadlinePro', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 14px;
}

.footer-cta p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-footer-connect {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-footer-connect:hover { background: #c5092f; }

.float-btn:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════
   TABLET  (769px – 1024px)
═══════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 1024px) {
  nav { padding: 0 28px; }
  .about-us { padding: 0 40px; }
  .cards-grid { padding: 0 40px; }
  .newsletter-card { padding: 56px 48px; gap: 48px; }
  #newsletterSection { padding: 60px 32px; }
  #siteFooter { padding: 60px 40px 100px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }

  /* Horizontal zone: disable GSAP layout, show stacked */
  #horizontalZone { height: auto !important; overflow: visible !important; margin-top: 0 !important; }
  .hz-track { width: 100% !important; flex-direction: column; height: auto !important; transform: none !important; }
  .hz-panel-logos,
  .hz-panel-text,
  .hz-panel-awards { width: 100% !important; padding: 56px 40px; flex-shrink: unset; }
  .hz-text { position: static !important; opacity: 1 !important; transform: none !important; }
  #hzTextPartners,
  #hzTextAwards { opacity: 1 !important; }
  .hz-panel-text { flex-direction: column; gap: 48px; }
  .awards-cards { flex-wrap: wrap; }
  .award-card { flex: 0 0 calc(50% - 12px); }
}

/* ═══════════════════════════════════════
   MOBILE  (≤ 768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAV ── */
  nav { padding: 0 20px; height: 56px; }
  .nav-links { display: none; }
  .btn-connect { display: none; }
  .burger-btn { display: flex; }
  .mobile-menu { display: block; }

  /* ── HERO ── */
  .hero-scroll { height: 200vh; }
  .hero-text { left: 24px; bottom: 32px; right: 24px; }
  .hero-text h1 { letter-spacing: -1px; }
  .hero-text p { font-size: clamp(15px, 4.5vw, 20px); }

  /* ── ABOUT ── */
  #aboutScroll { height: auto; }
  .about-us {
    position: static;
    height: auto;
    padding: 72px 24px 56px;
    align-items: flex-start;
  }
  .about-inner { grid-template-columns: 1fr; gap: 32px; height: auto; }
  .about-photo { display: none; }

  /* ── SERVICES ── */
  #servicesSection { margin-top: 0 !important; padding: 40px 0 64px; }
  .services-header { padding: 0 24px; text-align: left; }
  .services-header p { margin-left: 0; margin-right: 0; }
  .cards-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 20px; }
  .cards-col-left,
  .cards-col-center,
  .cards-col-right { margin-top: 0; }
  .cards-col { gap: 20px; }
  .card-img { height: 200px; }

  /* ── SERVICE DETAIL ── */
  .detail-panels { grid-template-columns: 1fr; padding: 0 20px; gap: 24px; overflow-y: auto; }
  .detail-left { height: auto; padding: 40px 28px; }
  #detailClose { right: 20px; top: 20px; }
  #detailList li { font-size: clamp(22px, 6vw, 36px); }

  /* ── HORIZONTAL ZONE — static stacked layout ── */
  #horizontalZone { height: auto !important; overflow: visible !important; margin-top: 0 !important; }
  .hz-track { width: 100% !important; flex-direction: column; height: auto !important; transform: none !important; }
  .hz-panel-logos,
  .hz-panel-text,
  .hz-panel-awards { width: 100% !important; padding: 48px 24px; flex-shrink: unset; transform: none !important; }
  .hz-text { position: static !important; opacity: 1 !important; transform: none !important; }
  #hzTextPartners,
  #hzTextAwards { opacity: 1 !important; }
  .hz-panel-text { flex-direction: column; gap: 40px; display: flex; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .partner-logo img { max-width: 120px; height: 60px; }
  .awards-cards { flex-direction: column; }

  /* ── NEWSLETTER ── */
  #newsletterSection { padding: 32px 20px; }
  .newsletter-card { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; border-radius: 20px; }
  .btn-subscribe { align-self: stretch; text-align: center; }

  /* ── FOOTER ── */
  #siteFooter { padding: 48px 24px 80px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  /* ── FLOAT BTN ── */
  .float-btn { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}
