/* Cleveland Trade Centre — COLT-aligned marketing site */

:root {
  --red: #d5282f;
  --red-dark: #b01f26;
  --red-glow: rgba(213, 40, 47, 0.45);
  --navy: #151a3f;
  --navy-light: #1e2554;
  --amber: #f0c219;
  --amber-dark: #d4a80f;
  --cream: #faf6ec;
  --cream-dark: #f0ebe0;
  --charcoal: #2a2d35;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 4px 24px rgba(21, 26, 63, 0.12);
  --shadow-lg: 0 20px 60px rgba(21, 26, 63, 0.18);
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "DM Sans", "Inter", system-ui, sans-serif;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-lead {
  font-size: 1.1rem;
  color: #5a5f6e;
  max-width: 52ch;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--red-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(240, 194, 25, 0.35);
}

.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240, 194, 25, 0.45);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}

.nav.scrolled {
  background: rgba(21, 26, 63, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.nav-logo img {
  height: 2.75rem;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.25rem !important;
  font-size: 0.85rem !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-image: url("../assets/backgroundct.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  transform: none;
  animation: heroKenBurns 24s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 18%,
    rgba(21, 26, 63, 0.25) 32%,
    rgba(21, 26, 63, 0.72) 48%,
    var(--navy) 62%
  );
  pointer-events: none;
}

@keyframes heroKenBurns {
  from { transform: translateX(0); }
  to { transform: translateX(-1.5%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(21, 26, 63, 0.82) 0%, rgba(21, 26, 63, 0.5) 45%, rgba(21, 26, 63, 0.18) 100%),
    linear-gradient(to bottom, transparent 0%, transparent 22%, rgba(21, 26, 63, 0.5) 48%, rgba(21, 26, 63, 0.85) 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 3rem) 0 6rem;
  width: min(1200px, 92vw);
  margin-inline: auto;
  overflow: visible;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1rem 2.5rem;
}

.hero-main {
  min-width: 0;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.hero-koala {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: end;
  justify-self: end;
  margin-bottom: 0;
  margin-top: auto;
  padding-top: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.hero-koala-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 2;
}

.hero-koala-bridge {
  position: absolute;
  right: calc(100% + 0.2rem);
  top: 10%;
  width: min(16.5rem, 38vw);
  z-index: 4;
  pointer-events: auto;
}

.hero-koala-bubble {
  position: relative;
  z-index: 3;
  margin: 0;
  max-width: 18rem;
  padding: 1rem 1.15rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(21, 26, 63, 0.09);
  border-radius: 14px;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 16px 36px rgba(0, 0, 0, 0.14);
}

.hero-koala-bubble-name {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b8860b;
}

.hero-koala-bubble p {
  margin: 0;
}

.hero-koala-bubble::after {
  content: "";
  position: absolute;
  top: 28%;
  right: -6px;
  left: auto;
  bottom: auto;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: rgba(255, 255, 255, 0.97);
  border-right: 1px solid rgba(21, 26, 63, 0.09);
  border-bottom: 1px solid rgba(21, 26, 63, 0.09);
  transform: rotate(-45deg);
}

.hero-koala-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(21, 26, 63, 0.08);
}

.hero-koala-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  background: rgba(21, 26, 63, 0.06);
  border: 1px solid rgba(21, 26, 63, 0.08);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-koala-chip:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.hero-koala-chip--cta {
  color: var(--navy);
  background: rgba(240, 194, 25, 0.22);
  border-color: rgba(240, 194, 25, 0.45);
}

.hero-koala-chip--cta:hover {
  color: var(--navy);
  background: var(--amber);
  border-color: var(--amber);
}

.hero-koala .koala-wrap {
  position: relative;
  z-index: 1;
  background: transparent;
  line-height: 0;
}

.hero-koala .koala-mascot,
.hero-koala .hero-koala-video {
  display: block;
  width: clamp(100px, 12vw, 165px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  background: transparent;
  border: none;
  outline: none;
  vertical-align: bottom;
  animation: koala-idle-hero 3.2s ease-in-out 1s infinite;
}

.hero-koala .hero-koala-video {
  -webkit-mask-image: none;
}

@keyframes koala-idle-hero {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

/* ── Cleveland the Koala ── */
@keyframes koala-enter {
  0% { opacity: 0; transform: translateY(40px) scale(0.94); }
  65% { opacity: 1; transform: translateY(-8px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes koala-idle {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

.koala-wrap {
  animation: koala-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.koala-mascot {
  animation: koala-idle 3.2s ease-in-out 1s infinite;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
  transform-origin: 50% 100%;
  will-change: transform;
}

.koala-wrap:hover .koala-mascot {
  animation-duration: 1.6s;
}

.koala-mascot-lg {
  width: clamp(200px, 28vw, 320px);
  height: auto;
}

.trust-koala {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.trust-item-koala {
  color: var(--amber);
  font-weight: 600;
}

/* Meet Cleveland section */
.meet-cleveland {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 50%, var(--cream) 100%);
  border-bottom: 1px solid rgba(21, 26, 63, 0.06);
  position: relative;
  overflow-x: hidden;
}

.meet-cleveland::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(240, 194, 25, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.meet-cleveland-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.koala-spotlight {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem 2rem 0;
  min-height: 320px;
}

.koala-spotlight .koala-wrap {
  display: flex;
  justify-content: center;
}

.koala-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--amber);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.koala-speech {
  position: relative;
  margin: 1.25rem 0 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(21, 26, 63, 0.08);
  box-shadow: var(--shadow);
}

.koala-speech::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: -10px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-left: 1px solid rgba(21, 26, 63, 0.08);
  border-top: 1px solid rgba(21, 26, 63, 0.08);
  transform: rotate(45deg);
}

.koala-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  font-weight: 500;
}

.koala-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.koala-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.koala-perk-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(213, 40, 47, 0.08);
  border-radius: 8px;
  font-size: 1rem;
  flex-shrink: 0;
}

.colt-feature-koala-icon {
  background: rgba(240, 194, 25, 0.15) !important;
  padding: 0.25rem;
}

.colt-feature-koala-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-koala {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.45rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--amber) 0%, #ffe066 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
  margin: 1.5rem 0 2.25rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* Hero COLT logo card — below CTAs */
.hero-colt-card {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 2rem;
  padding: 0.85rem 1.1rem 0.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(240, 194, 25, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  max-width: 260px;
}

.hero-colt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(240, 194, 25, 0.55);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(240, 194, 25, 0.15);
}

.hero-colt-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.hero-colt-card-logo {
  width: 100%;
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hero-colt-card-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 0.15rem;
}

.hero-colt-card:hover .hero-colt-card-link {
  color: var(--white);
}

/* COLT logo button */
.btn-colt-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.25rem 0.7rem 0.85rem;
  background: linear-gradient(135deg, #1a1f4a 0%, var(--navy) 100%);
  color: var(--white);
  border: 1.5px solid rgba(240, 194, 25, 0.4);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.btn-colt-logo:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
  box-shadow: 0 8px 28px rgba(240, 194, 25, 0.2);
}

.btn-colt-logo-img {
  height: 1.5rem;
  width: auto;
}

.footer-colt-logo {
  height: 1.35rem;
  width: auto;
  opacity: 0.9;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 680px;
}

.stat-card {
  padding: 1.1rem 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-value[data-count] { color: var(--amber); }

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.35rem;
}

.hero-scroll {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bob 2.5s ease-in-out infinite;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.hero-scroll.is-hidden {
  opacity: 0;
}

.hero-scroll-line {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--amber), transparent);
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Trust strip ── */
.trust-strip {
  background: var(--navy);
  padding: 1.25rem 0;
  border-bottom: 3px solid var(--red);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 194, 25, 0.15);
  border-radius: 8px;
  color: var(--amber);
  font-size: 1rem;
}

/* ── Services ── */
.services {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(213, 40, 47, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-header .section-lead { margin-inline: auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(21, 26, 63, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 26, 63, 0.45) 0%, transparent 55%);
  pointer-events: none;
}

.service-card-body {
  padding: 1.35rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-num {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(21, 26, 63, 0.55);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(213, 40, 47, 0.1) 0%, rgba(240, 194, 25, 0.1) 100%);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #6b7080;
  line-height: 1.55;
}

/* ── COLT Technology ── */
.colt-section {
  position: relative;
  padding: 6rem 0;
  background: var(--navy);
  overflow: hidden;
}

.colt-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(213, 40, 47, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(240, 194, 25, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.colt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.colt-visual {
  position: relative;
}

.colt-mockup {
  background: linear-gradient(145deg, var(--navy-light) 0%, #0d1028 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.colt-mockup-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.colt-mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.colt-mockup-bar span:first-child { background: var(--red); }
.colt-mockup-bar span:nth-child(2) { background: var(--amber); }
.colt-mockup-bar span:nth-child(3) { background: #4ade80; }

.colt-mockup-screen {
  background: var(--cream);
  border-radius: calc(var(--radius-lg) - 0.5rem);
  padding: 1.25rem;
  min-height: 280px;
}

.colt-mockup-logo {
  height: 2rem;
  margin-bottom: 1rem;
}

.colt-search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 2px solid rgba(21, 26, 63, 0.08);
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #9ca3af;
}

.colt-search-bar svg { flex-shrink: 0; color: var(--red); }

.colt-product-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.colt-product-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid rgba(21, 26, 63, 0.06);
}

.colt-product-thumb {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #e8e4dc, #d4cfc4);
  border-radius: 8px;
  flex-shrink: 0;
}

.colt-product-info { flex: 1; min-width: 0; }

.colt-product-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.colt-product-meta {
  font-size: 0.7rem;
  color: #9ca3af;
}

.colt-product-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
}

.colt-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--red);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.colt-content .section-label { color: var(--amber); }
.colt-content .section-label::before { background: var(--amber); }
.colt-content .section-title { color: var(--white); }
.colt-content .section-lead { color: rgba(255, 255, 255, 0.65); }

.colt-features {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.colt-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.colt-feature-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 194, 25, 0.12);
  border-radius: 10px;
  color: var(--amber);
  font-size: 1rem;
}

.colt-feature h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.colt-feature p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.colt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── About ── */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
}

.about-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(21, 26, 63, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.about-image-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.about-image-badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.about-points {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-point {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.about-point-check {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(213, 40, 47, 0.1);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Contact ── */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(21, 26, 63, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.contact-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  color: var(--amber);
  font-size: 1.1rem;
}

.contact-card h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.contact-card p,
.contact-card a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-card a:hover { color: var(--red); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(21, 26, 63, 0.08);
  min-height: 400px;
  background: var(--navy-light);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  height: 3rem;
  margin-bottom: 1rem;
  filter: brightness(1.1);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 32ch;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-colt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-colt img { height: 1.5rem; opacity: 0.8; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-koala {
    align-self: center;
    justify-self: center;
    order: 10;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding-top: 0;
  }
  .hero-koala .koala-mascot,
  .hero-koala .hero-koala-video { width: clamp(90px, 22vw, 140px); }
  .meet-cleveland-grid { grid-template-columns: 1fr; text-align: center; }
  .meet-cleveland-visual { order: -1; }
  .meet-cleveland-content .section-label::before { display: none; }
  .meet-cleveland-content .section-label { justify-content: center; }
  .meet-cleveland-content .section-lead { margin-inline: auto; }
  .koala-perks { align-items: center; }
  .koala-speech::before { left: 50%; margin-left: -10px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .colt-grid, .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .colt-visual { order: -1; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    background: rgba(21, 26, 63, 0.98);
    backdrop-filter: blur(16px);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { gap: 1rem 1.5rem; }
  .hero-scroll { display: none; }
}
