/* ============================================================
   COLDCOAST Air Conditioning & Refrigeration
   Global stylesheet — dark-first, geometric, premium.
   Brand: Blue #12aee5 · Black #000 · Slate #2A2A2D · Sky #5BB8E8
   ============================================================ */

/* -------- Design tokens -------- */
:root {
  --cc-blue: #12aee5;
  --cc-blue-deep: #0b87b4;
  --cc-blue-hover: #2bbef0;   /* lighter blue on hover (design system) */
  --cc-sky: #5bb8e8;
  --cc-black: #000000;
  --cc-ink: #07090c;          /* near-black surface */
  --cc-slate: #2a2a2d;        /* cards / panels */
  --cc-slate-2: #1a1b1e;      /* darker panel */
  --cc-slate-600: #3a3a3f;    /* hairline borders on dark (design system) */
  --cc-slate-500: #56565e;    /* dividers on dark (design system) */
  --cc-line: rgba(255, 255, 255, 0.10);
  --cc-white: #ffffff;
  --cc-grey: #b0b0b8;
  --cc-grey-dim: #80828c;
  --cc-on-blue: #04222e;      /* dark text used on blue fills */

  --font-display: "Bebas Neue", "Barlow Condensed", system-ui, sans-serif;
  --font-head: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 3px;             /* geometric: minimal rounding */
  --section-y: clamp(64px, 9vw, 132px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.75);
  --header-h: 84px;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--cc-black);
  color: var(--cc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }
:focus-visible { outline: 2px solid var(--cc-blue); outline-offset: 3px; }

/* -------- Typography -------- */
.display, h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.02; text-transform: uppercase; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
p { color: var(--cc-grey); }
strong { color: var(--cc-white); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cc-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--cc-blue);
  transform: skewX(-20deg);
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--cc-grey); max-width: 60ch; }
.text-blue { color: var(--cc-blue); }
.text-white { color: var(--cc-white); }

/* -------- Layout -------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--slate { background: var(--cc-slate-2); }
.section--ink { background: var(--cc-ink); }
.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* The sacred slash — diagonal accent line */
.slash { display: inline-block; width: 2px; height: 1em; background: var(--cc-blue); transform: skewX(-20deg); }
.slash-divider { height: 4px; width: 64px; background: var(--cc-blue); transform: skewX(-24deg); margin: 18px 0; }
.slash-divider.center { margin-inline: auto; }

/* -------- Buttons -------- */
.btn {
  --bg: var(--cc-blue);
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--bg); color: var(--cc-on-blue);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(18, 174, 229, 0.7); }
.btn--ghost { background: transparent; color: var(--cc-white); border: 1px solid rgba(255,255,255,0.28); }
.btn--ghost:hover { border-color: var(--cc-blue); color: var(--cc-blue); box-shadow: none; }
.btn--light { background: var(--cc-white); color: var(--cc-ink); }
.btn--block { width: 100%; justify-content: center; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 0.88rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cc-blue);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), height 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 9, 12, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--cc-line);
  height: 70px;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; text-decoration: none; transition: opacity 0.2s var(--ease); }
.brand:hover { opacity: 0.78; }
.brand__mark { height: 42px; width: auto; object-fit: contain; display: block; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__word { font-family: var(--font-display); font-size: 27px; letter-spacing: 0.05em; color: var(--cc-white); line-height: 1; }
.brand__word b { color: var(--cc-blue); font-weight: inherit; }
.brand__tag { font-family: var(--font-body); font-size: 9px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cc-grey); margin-top: 6px; white-space: nowrap; }
.site-header.is-scrolled .brand__mark { height: 36px; }
@media (max-width: 520px) { .brand__tag { display: none; } .brand__word { font-size: 22px; } .brand__mark { height: 36px; } }
/* single-image wide logo (COLDCOAST Logo Wide.png) */
.brand__logo { height: 44px; width: auto; display: block; }
.site-header.is-scrolled .brand__logo { height: 36px; }
@media (max-width: 520px) { .brand__logo { height: 34px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--cc-white);
  transition: color 0.25s var(--ease);
}
.nav__link:hover, .nav__item:focus-within .nav__link { color: var(--cc-blue); }
.nav__link .caret { width: 10px; height: 10px; transition: transform 0.3s var(--ease); }
.nav__item:hover .caret, .nav__item:focus-within .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 268px; background: rgba(16, 18, 22, 0.98); backdrop-filter: blur(16px);
  border: 1px solid var(--cc-line); border-top: 2px solid var(--cc-blue);
  border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
/* invisible bridge across the gap so the menu doesn't vanish when the cursor
   travels from the tab down to the dropdown items */
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 18px; background: transparent; }
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: var(--radius); color: var(--cc-grey); font-size: 0.9rem; font-weight: 500; transition: background 0.2s, color 0.2s; }
.dropdown a:hover { background: rgba(18,174,229,0.10); color: var(--cc-white); }
.dropdown a span { display: block; font-size: 0.74rem; color: var(--cc-grey-dim); font-weight: 400; margin-top: 2px; text-transform: none; letter-spacing: 0; }

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; letter-spacing: 0.04em; color: var(--cc-white); white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--cc-blue); }
.header-phone:hover { color: var(--cc-blue); }

.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { height: 2px; width: 26px; background: var(--cc-white); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header-phone .num { display: none; }
}
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(7,9,12,0.98); backdrop-filter: blur(18px);
    padding: 18px var(--gutter) 60px; overflow-y: auto;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav.is-open { transform: translateX(0); }
  /* page locked behind the open menu, pinned in place so there's no scroll-jump */
  body.nav-open { position: fixed; left: 0; right: 0; width: 100%; overflow: hidden; }
  /* backdrop-filter on the header makes it the containing block for the fixed
     .nav, which collapses the open menu to header height. Drop it while open. */
  body.nav-open .site-header { background: rgba(7, 9, 12, 0.97); border-bottom-color: var(--cc-line); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-header.is-scrolled .nav { inset: 70px 0 0 0; }
  .nav__item { border-bottom: 1px solid var(--cc-line); }
  .nav__link { padding: 18px 4px; font-size: 1rem; justify-content: space-between; }
  .nav__link .caret { width: 14px; height: 14px; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    min-width: 0; background: transparent; border: none; box-shadow: none; padding: 0 0 12px 8px;
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease);
    border-left: 2px solid var(--cc-blue);
  }
  .dropdown::before { display: none; }
  /* Touch devices fire a sticky :hover / :focus-within on tap, which would re-apply
     the desktop translateX(-50%) and shove the submenu off-screen left. Cancel it. */
  .nav__item:hover .dropdown, .nav__item:focus-within .dropdown { transform: none; left: auto; }
  .nav__item.is-expanded .dropdown { max-height: 520px; }
  .nav__item.is-expanded .caret { transform: rotate(180deg); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: clamp(560px, 92vh, 920px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero--short { min-height: clamp(440px, 62vh, 620px); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero--zoom .hero__media img { animation: kenburns 22s var(--ease) infinite alternate; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(4,6,9,0.55) 0%, rgba(4,6,9,0.25) 35%, rgba(4,6,9,0.85) 100%),
    linear-gradient(90deg, rgba(4,6,9,0.85) 0%, rgba(4,6,9,0.30) 60%, rgba(4,6,9,0.10) 100%);
}
.hero__inner { padding-block: clamp(120px, 16vh, 200px) clamp(56px, 8vh, 96px); width: 100%; }
.hero h1 { max-width: 16ch; }
.hero h1 .text-blue { color: var(--cc-blue); }
.hero .lead { margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px); margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--cc-line); }
.hero__meta .stat__num { font-family: var(--font-head); font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--cc-white); line-height: 1; }
.hero__meta .stat__label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cc-grey); margin-top: 6px; }

.scroll-cue { position: absolute; left: var(--gutter); bottom: 26px; z-index: 2; display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cc-grey); }
.scroll-cue .dot { width: 22px; height: 36px; border: 1px solid var(--cc-line); border-radius: 12px; position: relative; }
.scroll-cue .dot::after { content: ""; position: absolute; top: 7px; left: 50%; width: 3px; height: 7px; background: var(--cc-blue); border-radius: 2px; transform: translateX(-50%); animation: scrolldot 1.8s var(--ease) infinite; }

@keyframes kenburns { from { transform: scale(1) translate3d(0,0,0); } to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); } }
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* corner slash accent for heroes/sections */
.corner-slash { position: absolute; top: 0; right: 0; width: 42%; height: 100%; z-index: -1; pointer-events: none; overflow: hidden; }
.corner-slash::before { content: ""; position: absolute; top: -10%; right: 8%; width: 2px; height: 120%; background: linear-gradient(var(--cc-blue), transparent); transform: skewX(-20deg); opacity: 0.5; }

/* ============================================================
   HOMEPAGE HERO — Claude Design "Your Vision. Our Obsession."
   Faithful static translation of Homepage Hero.dc.html
   ============================================================ */
.hero-home { position: relative; width: 100%; min-height: 100svh; overflow: hidden; background: #000; isolation: isolate; display: flex; }
.hero-home__bg { position: absolute; inset: -6%; z-index: 0; background-size: cover; background-position: center; animation: ccZoom 26s ease-in-out infinite alternate; will-change: transform; transition: transform 300ms var(--ease); }
.hero-home__grade-a { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.78) 32%, rgba(0,0,0,.40) 60%, rgba(0,0,0,.12) 100%); }
.hero-home__grade-b { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 38%), radial-gradient(120% 90% at 80% 10%, rgba(18,174,229,.16) 0%, rgba(18,174,229,0) 55%); }
.hero-home__vignette { position: absolute; inset: 0; z-index: 1; pointer-events: none; box-shadow: inset 0 0 220px rgba(0,0,0,.7); }
.hero-home__watermark { position: absolute; z-index: 1; right: -60px; top: 6%; width: min(46vw, 560px); opacity: .07; filter: saturate(1.4) brightness(1.3); pointer-events: none; animation: ccFloat 14s ease-in-out infinite; will-change: transform; transition: transform 300ms var(--ease); }
.hero-home__hairline { position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 6; background: linear-gradient(90deg, var(--cc-blue) 0%, var(--cc-sky) 40%, transparent 80%); }
.hero-home .container { position: relative; z-index: 4; display: flex; align-items: center; width: 100%; }
.hero-home__inner { max-width: 880px; padding-block: clamp(130px, 18vh, 220px) clamp(80px, 12vh, 130px); }

.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-eyebrow .hatch { display: block; width: 54px; height: 12px; background: repeating-linear-gradient(115deg, var(--cc-sky) 0 2px, transparent 2px 7px); transform: skewX(-24deg); flex-shrink: 0; }
.hero-eyebrow b { font-family: var(--font-body); font-size: clamp(12px, 1.2vw, 14px); font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--cc-sky); }
.hero-display { margin: 0; font-family: var(--font-display); font-weight: 400; text-transform: uppercase; line-height: 0.92; letter-spacing: 0.01em; color: #fff; font-size: clamp(56px, 9.6vw, 148px); text-shadow: 0 8px 40px rgba(0,0,0,.5); }
.hero-display .text-blue { color: var(--cc-blue); }
.hero-home .lead { margin-top: clamp(20px, 2.4vw, 30px); max-width: 560px; font-weight: 400; }
.hero-home .hero__actions { margin-top: clamp(30px, 3.6vw, 46px); }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(14px, 2vw, 26px); margin-top: clamp(36px, 4.5vw, 54px); }
.hero-trust .ti { display: flex; align-items: center; gap: clamp(14px, 2vw, 26px); }
.hero-trust .ti .bar { display: block; width: 1px; height: 26px; background: var(--cc-slate-600); transform: skewX(-24deg); margin-right: calc(-1 * clamp(14px, 2vw, 26px)); }
.hero-trust .ti:first-child .bar { opacity: 0; }
.hero-trust .ti b { font-family: var(--font-body); font-size: clamp(11px, 1.1vw, 13px); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #9a9aa4; }

.scroll-cue-center { position: absolute; left: 50%; bottom: 22px; z-index: 4; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue-center b { font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: #7a7a84; }
.scroll-cue-center i { display: block; width: 1px; height: 30px; background: linear-gradient(var(--cc-sky), transparent); animation: ccCue 1.8s ease-in-out infinite; }

@keyframes ccZoom { from { transform: scale(1.06); } to { transform: scale(1.14); } }
@keyframes ccCue { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(7px); opacity: 1; } }
@keyframes ccFloat { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(0,-14px) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-home__bg, .hero-home__watermark, .scroll-cue-center i { animation: none !important; }
}

/* ============================================================
   SUPPLIER MARQUEE (infinite rolling banner)
   ============================================================ */
.marquee {
  background: var(--cc-ink);
  border-block: 1px solid var(--cc-line);
  padding: 30px 0; overflow: hidden; position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--cc-ink), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--cc-ink), transparent); }
.marquee__label { text-align: center; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cc-grey-dim); margin-bottom: 22px; }
.marquee__track { display: flex; align-items: center; gap: clamp(40px, 6vw, 88px); width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.marquee__item img { height: clamp(30px, 4.4vw, 46px); width: auto; object-fit: contain; opacity: 0.78; transition: opacity 0.3s var(--ease); filter: saturate(0.9); }
.marquee__item img:hover { opacity: 1; }
.marquee__item.is-tile img { height: clamp(40px, 5.4vw, 58px); border-radius: var(--radius); opacity: 0.92; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   CARDS / FEATURES
   ============================================================ */
.card {
  background: linear-gradient(120deg, var(--cc-slate-2), var(--cc-ink)); border: 1px solid var(--cc-line); border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px); position: relative; overflow: hidden; height: 100%; isolation: isolate;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.card > * { position: relative; z-index: 1; }
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--cc-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); z-index: 2; }
.card::after { content: ""; position: absolute; top: -40%; right: -12%; width: 200px; height: 200%; background: linear-gradient(var(--cc-blue), transparent); opacity: 0.15; transform: skewX(-20deg); pointer-events: none; z-index: 0; }
.card:hover { transform: translateY(-6px); border-color: rgba(18,174,229,0.4); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 54px; height: 54px; display: grid; place-items: center; background: rgba(18,174,229,0.12); border: 1px solid rgba(18,174,229,0.3); border-radius: var(--radius); margin-bottom: 22px; color: var(--cc-blue); }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { font-size: 0.96rem; }
.card .link-arrow { margin-top: 22px; }
.card--link:hover { background: #303034; }

/* Service / split media row */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.media-row.reverse .media-row__media { order: 2; }
.media-row__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.media-row__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform 0.8s var(--ease); }
.media-row__media:hover img { transform: scale(1.05); }
.media-row__media .badge { position: absolute; left: 18px; bottom: 18px; background: var(--cc-blue); color: var(--cc-on-blue); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px; border-radius: var(--radius); }
.media-row ul.ticks { margin-top: 22px; display: grid; gap: 12px; }
.media-row ul.ticks li { position: relative; padding-left: 30px; color: var(--cc-grey); }
.media-row ul.ticks li::before { content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 9px; border-left: 2px solid var(--cc-blue); border-bottom: 2px solid var(--cc-blue); transform: rotate(-45deg); }
@media (max-width: 860px) { .media-row { grid-template-columns: 1fr; } .media-row.reverse .media-row__media { order: 0; } }

/* Stats band */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats .stat { padding: 20px; border-left: 1px solid var(--cc-line); }
.stats .stat:first-child { border-left: none; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--cc-blue); line-height: 1; }
/* uniform number band so mixed numeric + text stats keep their labels aligned */
.stats .stat__num { min-height: clamp(2.4rem, 5vw, 3.6rem); display: flex; align-items: center; justify-content: center; }
.stat__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cc-grey); margin-top: 10px; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } .stats .stat:nth-child(odd) { border-left: none; } }

/* Project gallery cards */
.project-card { position: relative; isolation: isolate; border-radius: var(--radius); overflow: hidden; min-height: 360px; display: flex; align-items: flex-end; width: 100%; padding: 0; text-align: left; cursor: pointer; }
.project-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); z-index: 0; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,6,9,0.92) 100%); z-index: 1; }
.project-card:hover img { transform: scale(1.07); }
.project-card__body { position: relative; z-index: 2; padding: 28px; }
.project-card .tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cc-blue); font-weight: 600; }
.project-card h3 { font-size: 1.45rem; margin-top: 8px; }
.project-card p { margin-top: 8px; font-size: 0.92rem; }
.project-card .project-card__client { margin-top: 7px; font-size: 0.95rem; color: var(--cc-white); font-weight: 500; }
.project-card .project-card__spec { margin-top: 5px; font-size: 0.8rem; color: var(--cc-grey); letter-spacing: 0.01em; }
.project-card .tag--resi { color: #5cb073; }

/* Split feature cards (image + gradient + content overlay) */
.split-card { position: relative; isolation: isolate; overflow: hidden; border-radius: var(--radius); min-height: 440px; display: flex; align-items: flex-end; }
.split-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.8s var(--ease); }
.split-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,6,9,0.20) 25%, rgba(4,6,9,0.93) 100%); z-index: 1; }
.split-card:hover img { transform: scale(1.05); }
.split-card__body { position: relative; z-index: 2; padding: clamp(26px, 3vw, 38px); }
.split-card__body h3 { margin: 12px 0 12px; font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.split-card__body p { max-width: 42ch; }
.split-card__body .link-arrow { margin-top: 20px; }

/* Logo wall (clients) */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--cc-line); border: 1px solid var(--cc-line); border-radius: var(--radius); overflow: hidden; }
.logo-wall .cell { background: var(--cc-ink); aspect-ratio: 16/9; display: grid; place-items: center; padding: 26px; transition: background 0.3s; }
.logo-wall .cell:hover { background: var(--cc-slate); }
.logo-wall .cell img { max-height: 56px; width: auto; object-fit: contain; opacity: 0.82; filter: saturate(0.95); transition: opacity 0.3s; }
.logo-wall .cell:hover img { opacity: 1; }
@media (max-width: 900px) { .logo-wall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } }

/* CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--cc-slate-2), var(--cc-ink)); border: 1px solid var(--cc-line); border-radius: var(--radius); padding: clamp(40px, 6vw, 76px); text-align: center; }
.cta-band::before { content: ""; position: absolute; top: -40%; right: -10%; width: 380px; height: 200%; background: linear-gradient(var(--cc-blue), transparent); opacity: 0.12; transform: skewX(-20deg); }
.cta-band h2 { position: relative; }
.cta-band p { position: relative; margin: 18px auto 30px; max-width: 56ch; }
.cta-band .hero__actions { justify-content: center; }

/* Breadcrumb / page intro for sub-heroes */
.crumbs { font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cc-grey-dim); display: flex; gap: 10px; align-items: center; }
.crumbs a:hover { color: var(--cc-blue); }
.crumbs .sep { color: var(--cc-blue); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cc-ink); border-top: 1px solid var(--cc-line); padding-top: clamp(56px, 7vw, 88px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.footer-brand .footer-logo { height: 84px; width: auto; margin-bottom: 22px; display: block; }
.footer-brand p { max-width: 34ch; font-size: 0.94rem; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--cc-line); border-radius: var(--radius); color: var(--cc-grey); transition: 0.3s; }
.footer-social a:hover { color: var(--cc-blue); border-color: var(--cc-blue); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cc-white); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--cc-grey); font-size: 0.92rem; transition: color 0.2s, padding 0.2s; }
.footer-col a:hover { color: var(--cc-blue); padding-left: 4px; }
.footer-contact li { display: flex; gap: 12px; color: var(--cc-grey); font-size: 0.92rem; margin-bottom: 14px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--cc-blue); flex-shrink: 0; margin-top: 3px; }
.footer-bar { margin-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--cc-line); padding: 26px 0; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.footer-bar p { font-size: 0.82rem; color: var(--cc-grey-dim); }
.footer-bar .licences { display: flex; flex-wrap: wrap; gap: 18px; font-size: 0.78rem; color: var(--cc-grey-dim); }
.footer-bar .licences b { color: var(--cc-grey); font-weight: 600; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero--zoom .hero__media img { animation: none; }
  .marquee__track { animation: none; }
  .scroll-cue .dot::after { animation: none; }
}

/* ============================================================
   CONTACT — form, info cards, map
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: grid; gap: 18px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; overflow: hidden; pointer-events: none; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.field label { display: block; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cc-grey); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--cc-ink); border: 1px solid var(--cc-line); border-radius: var(--radius);
  color: var(--cc-white); padding: 13px 14px; font: inherit; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--cc-grey-dim); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cc-blue); box-shadow: 0 0 0 3px rgba(18,174,229,0.15); }
.field textarea { min-height: 150px; resize: vertical; }
.form .note { background: rgba(18,174,229,0.10); border: 1px solid rgba(18,174,229,0.35); border-radius: var(--radius); padding: 14px 16px; color: var(--cc-white); font-size: 0.92rem; }

.info-card { background: var(--cc-slate); border: 1px solid var(--cc-line); border-radius: var(--radius); padding: 26px; display: grid; gap: 18px; }
.info-card .info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-card .info-item svg { width: 22px; height: 22px; color: var(--cc-blue); flex-shrink: 0; margin-top: 3px; }
.info-card .info-item h4 { font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cc-grey); margin-bottom: 4px; }
.info-card .info-item a, .info-card .info-item span { color: var(--cc-white); font-size: 1.02rem; }
.info-card .info-item a:hover { color: var(--cc-blue); }

.map { border: 1px solid var(--cc-line); border-radius: var(--radius); overflow: hidden; line-height: 0; background: var(--cc-slate-2); }
.map iframe { width: 100%; height: clamp(300px, 42vw, 460px); border: 0; filter: grayscale(0.3) invert(0.92) hue-rotate(170deg) contrast(0.9); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--cc-grey-dim); }
.divider-line { height: 1px; background: var(--cc-line); border: 0; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid var(--cc-line); border-radius: 999px; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cc-grey); }
.pill .slash { height: 0.8em; }

/* ============================================================
   LIGHT BANNERS — grey (slate) sections rendered white with
   dark, contrasted text. Black/ink sections are left untouched.
   ============================================================ */
.section--slate { background: #ffffff; }
.section--slate h1, .section--slate h2, .section--slate h3, .section--slate h4 { color: var(--cc-ink); }
.section--slate p, .section--slate .lead, .section--slate li { color: #45484f; }
.section--slate strong { color: var(--cc-ink); }
.section--slate .muted { color: #6b6e76; }
.section--slate .crumbs { color: #6b6e76; }
.section--slate .crumbs a { color: #45484f; }
.section--slate .eyebrow { color: var(--cc-blue-deep); }
.section--slate .eyebrow::before { background: var(--cc-blue-deep); }
.section--slate .text-blue { color: var(--cc-blue-deep); }
.section--slate .link-arrow { color: var(--cc-blue-deep); }
.section--slate .slash-divider { background: var(--cc-blue-deep); }
.section--slate .media-row ul.ticks li { color: #45484f; }
.section--slate .media-row ul.ticks li::before { border-color: var(--cc-blue-deep); }
.section--slate .btn--ghost { color: var(--cc-ink); border-color: rgba(7, 9, 12, 0.22); }
.section--slate .btn--ghost:hover { color: var(--cc-blue-deep); border-color: var(--cc-blue-deep); }

/* Cards become light on white sections */
.section--slate .card { background: #f5f7f9; border-color: #e4e8ec; }
.section--slate .card::after { display: none; }
.section--slate .card:hover { background: #eef2f6; border-color: rgba(18, 174, 229, 0.5); }
.section--slate .card h3 { color: var(--cc-ink); }
.section--slate .card p { color: #45484f; }
.section--slate .card .card__icon { background: rgba(18, 174, 229, 0.12); border-color: rgba(18, 174, 229, 0.4); color: var(--cc-blue-deep); }

/* Self-contained dark components keep their dark styling on white sections */
.section--slate .cta-band h2 { color: var(--cc-white); }
.section--slate .cta-band p { color: var(--cc-grey); }
.section--slate .cta-band .eyebrow { color: var(--cc-blue); }
.section--slate .cta-band .eyebrow::before { background: var(--cc-blue); }
.section--slate .cta-band .text-blue { color: var(--cc-blue); }
.section--slate .cta-band .btn--ghost { color: var(--cc-white); border-color: rgba(255, 255, 255, 0.28); }
.section--slate .split-card__body h3 { color: var(--cc-white); }
.section--slate .split-card__body p { color: var(--cc-grey); }
.section--slate .split-card__body .eyebrow { color: var(--cc-blue); }
.section--slate .split-card__body .eyebrow::before { background: var(--cc-blue); }
.section--slate .split-card__body .link-arrow { color: var(--cc-blue); }
.section--slate .project-card__body h3 { color: var(--cc-white); }
.section--slate .project-card__body p { color: var(--cc-grey); }
.section--slate .project-card__body .tag { color: var(--cc-blue); }

/* ============================================================
   LIGHTBOX — pop-up project galleries
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 2000; display: none; }
.lightbox.is-open { display: block; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(4, 6, 9, 0.94); backdrop-filter: blur(6px); animation: lbFade 0.25s var(--ease); }
.lightbox__dialog { position: absolute; inset: 0; display: flex; flex-direction: column; padding: clamp(14px, 3vw, 38px); }
.lightbox__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.lightbox__title { font-family: var(--font-head); text-transform: uppercase; font-size: clamp(1.1rem, 2.2vw, 1.7rem); letter-spacing: 0.04em; color: var(--cc-white); line-height: 1; }
.lightbox__meta { display: flex; align-items: center; gap: 18px; }
.lightbox__counter { font-size: 0.82rem; letter-spacing: 0.16em; color: var(--cc-grey); white-space: nowrap; }
.lightbox__close { width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; border: 1px solid var(--cc-line); border-radius: var(--radius); color: var(--cc-white); transition: 0.2s var(--ease); }
.lightbox__close:hover { border-color: var(--cc-blue); color: var(--cc-blue); transform: rotate(90deg); }
.lightbox__close svg, .lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__stage { position: relative; flex: 1 1 auto; display: flex; align-items: center; justify-content: center; min-height: 0; }
.lightbox__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow); animation: lbImg 0.3s var(--ease); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; display: grid; place-items: center; background: rgba(7, 9, 12, 0.55); border: 1px solid var(--cc-line); border-radius: var(--radius); color: var(--cc-white); transition: 0.2s var(--ease); }
.lightbox__nav:hover { background: var(--cc-blue); color: var(--cc-on-blue); border-color: var(--cc-blue); }
.lightbox__nav--prev { left: clamp(2px, 1vw, 14px); }
.lightbox__nav--next { right: clamp(2px, 1vw, 14px); }
.lightbox__thumbs { display: flex; gap: 9px; margin-top: 16px; overflow-x: auto; padding-bottom: 4px; justify-content: flex-start; scrollbar-width: thin; }
@media (min-width: 760px) { .lightbox__thumbs { justify-content: center; } }
.lightbox__thumb { flex: 0 0 auto; width: 88px; height: 58px; border-radius: 2px; overflow: hidden; opacity: 0.5; border: 2px solid transparent; transition: 0.2s var(--ease); padding: 0; cursor: pointer; }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__thumb:hover { opacity: 0.85; }
.lightbox__thumb.is-active { opacity: 1; border-color: var(--cc-blue); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbImg { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .lightbox__backdrop, .lightbox__img { animation: none; } .lightbox__close:hover { transform: none; } }

/* Rich feature cards — same dark gradient + blue slash as the CTA band */
.card--rich { background: linear-gradient(120deg, var(--cc-slate-2), var(--cc-ink)); }
.card--rich::after { content: ""; position: absolute; top: -40%; right: -12%; width: 200px; height: 200%; background: linear-gradient(var(--cc-blue), transparent); opacity: 0.15; transform: skewX(-20deg); pointer-events: none; }
.card--rich > * { position: relative; z-index: 1; }
/* keep the rich treatment even inside white (slate) sections */
.section--slate .card--rich { background: linear-gradient(120deg, var(--cc-slate-2), var(--cc-ink)); border-color: var(--cc-line); }
.section--slate .card--rich h3 { color: var(--cc-white); }
.section--slate .card--rich p { color: var(--cc-grey); }

/* Spec image panel — contain a product shot or diagram on a clean panel (no cropping) */
.media-row__media--spec { background: #ffffff; border: 1px solid #e6eaee; box-shadow: 0 18px 44px -26px rgba(0, 0, 0, 0.6); }
.media-row__media--spec img { width: 100%; height: 100%; min-height: 320px; object-fit: contain; padding: clamp(20px, 4vw, 46px); }
.media-row__media--spec:hover img { transform: none; }

/* ============================================================
   FEATURE TABS — interactive smart-air-con showcase (MyAir)
   ============================================================ */
.feature-tabs__nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(30px, 4vw, 48px); }
.feature-tab { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border: 1px solid var(--cc-line); border-radius: var(--radius); background: var(--cc-slate); color: var(--cc-grey); font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease); cursor: pointer; white-space: nowrap; }
.feature-tab svg { width: 18px; height: 18px; color: var(--cc-blue); transition: color 0.25s var(--ease); flex-shrink: 0; }
.feature-tab:hover { color: var(--cc-white); border-color: rgba(18, 174, 229, 0.45); }
.feature-tab.is-active { background: var(--cc-blue); color: var(--cc-on-blue); border-color: var(--cc-blue); }
.feature-tab.is-active svg { color: var(--cc-on-blue); }

.feature-panel { display: none; }
.feature-panel.is-active { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 64px); align-items: center; animation: lbFade 0.4s var(--ease); }
.feature-panel__media { background: #ffffff; border: 1px solid #e6eaee; border-radius: var(--radius); overflow: hidden; box-shadow: 0 22px 50px -28px rgba(0, 0, 0, 0.65); aspect-ratio: 16 / 11; display: flex; align-items: center; justify-content: center; }
.feature-panel__media img { width: 100%; height: 100%; object-fit: contain; padding: clamp(8px, 1.6vw, 22px); }
.feature-panel__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 12px 0 14px; }
.feature-panel__body p { font-size: 1.02rem; max-width: 46ch; }
.feature-panel__body .link-arrow { margin-top: 22px; }
@media (max-width: 820px) {
  .feature-panel.is-active { grid-template-columns: 1fr; }
  .feature-tabs__nav { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; scrollbar-width: thin; }
}
@media (prefers-reduced-motion: reduce) { .feature-panel.is-active { animation: none; } }
/* photos directly on the dark section (no white card) — used on MyPlace IQ */
.feature-tabs--onblack .feature-panel__media { background: transparent; border: none; box-shadow: none; }
.feature-tabs--onblack .feature-panel__media img { padding: 0; }

/* ============================================================
   VIDEO EMBED
   ============================================================ */
.video-embed { position: relative; aspect-ratio: 16 / 9; max-width: 980px; margin-inline: auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--cc-line); box-shadow: var(--shadow); background: linear-gradient(120deg, var(--cc-slate-2), var(--cc-ink)); cursor: pointer; isolation: isolate; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video-embed__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.video-embed::after { content: ""; position: absolute; inset: 0; background: rgba(4, 6, 9, 0.4); z-index: 1; transition: background 0.3s var(--ease); }
.video-embed:hover::after { background: rgba(4, 6, 9, 0.2); }
.video-embed__play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; width: clamp(64px, 9vw, 88px); height: clamp(64px, 9vw, 88px); border-radius: 50%; background: var(--cc-blue); color: var(--cc-on-blue); display: grid; place-items: center; box-shadow: 0 14px 34px rgba(18, 174, 229, 0.5); transition: transform 0.25s var(--ease); }
.video-embed:hover .video-embed__play { transform: translate(-50%, -50%) scale(1.08); }
.video-embed__play svg { width: 38%; height: 38%; margin-left: 8%; }
.video-embed.is-playing .video-embed__poster, .video-embed.is-playing .video-embed__play, .video-embed.is-playing::after { display: none; }

/* ============================================================
   COMPARISON CHART (smart vs standard)
   ============================================================ */
.compare { display: grid; grid-template-columns: 1fr 1fr; background: #ffffff; border: 1px solid #e6eaee; border-radius: var(--radius); overflow: hidden; box-shadow: 0 26px 64px -32px rgba(0, 0, 0, 0.5); }
.compare__col { padding: clamp(26px, 4vw, 48px); }
.compare__col--featured { background: rgba(18, 174, 229, 0.08); }
.compare__col h3 { font-size: clamp(1.35rem, 2.3vw, 1.85rem); padding-bottom: 16px; border-bottom: 2px solid #e6eaee; margin-bottom: 24px; color: var(--cc-ink); }
.compare__col--featured h3 { color: var(--cc-blue-deep); border-bottom-color: rgba(18, 174, 229, 0.45); }
.compare__col ul { display: grid; gap: 15px; }
.compare__col li { display: flex; align-items: flex-start; gap: 13px; color: #45484f; font-size: 1rem; line-height: 1.4; }
.compare__col--featured li { color: var(--cc-ink); font-weight: 500; }
.compare__col li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.compare__col li .ic-up { color: var(--cc-blue); }
.compare__col li .ic-down { color: #b4b7bf; }
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } .compare__col--featured { border-bottom: 1px solid #e6eaee; } }
