/* ============================================================
   TECH SAVVY SOLUTIONS — Brand design system
   Cool-neutral canvas · Fraunces display serif · Inter body
   Brand blue #24A3DC + warm amber accent
   ============================================================ */

/* ---------- TOKENS ---------- */
:root{
  /* Brand palette — built around #24A3DC */
  --ink:        #0e2a3a;   /* deep blue-slate (text / dark surfaces) */
  --ink-2:      #143949;
  --ink-3:      #1d4a5e;
  --teal:       #24a3dc;   /* PRIMARY brand blue */
  --teal-600:   #1b8bc0;   /* hover / deeper */
  --teal-700:   #1576a6;   /* deepest */
  --brand-100:  #e8f4fb;   /* light tint (icon bg / soft panels) */
  --brand-200:  #cfe8f7;
  --copper:     #f2a30f;   /* warm amber accent (CTAs / highlights) */
  --copper-600: #d98f08;
  --copper-700: #b97706;
  --gold:       #d98f08;

  /* Cool neutrals */
  --cream:      #fbfcfe;   /* page background */
  --cream-2:    #f2f6fa;   /* alt section background */
  --cream-3:    #e9eff5;   /* deeper cool panel */
  --paper:      #ffffff;   /* cards */
  --line:       #e2e8ee;   /* hairlines / borders */
  --line-2:     #d3dce4;

  /* Text */
  --t-1: #0e2a3a;   /* primary */
  --t-2: #41525c;   /* secondary */
  --t-3: #6b7b85;   /* muted */
  --t-inv: #eef4f8; /* on dark */
  --t-inv-2: #aebfc9;

  /* Fonts */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale (fluid) */
  --text-hero: clamp(2.6rem, 1.6rem + 4.6vw, 5rem);
  --text-3xl: clamp(2.1rem, 1.5rem + 2.6vw, 3.4rem);
  --text-2xl: clamp(1.7rem, 1.3rem + 1.6vw, 2.5rem);
  --text-xl:  clamp(1.35rem, 1.15rem + 0.8vw, 1.7rem);
  --text-lg:  1.18rem;
  --text-base:1rem;
  --text-sm:  .9rem;
  --text-xs:  .78rem;

  /* Spacing */
  --space-2:.5rem; --space-3:.75rem; --space-4:1rem; --space-5:1.25rem;
  --space-6:1.5rem; --space-8:2rem; --space-10:2.5rem; --space-12:3rem;
  --space-16:4rem; --space-20:5rem; --space-24:6rem;

  /* Radii + shadow */
  --r-sm:8px; --r:14px; --r-lg:20px; --r-xl:28px; --r-full:999px;
  --shadow-sm: 0 1px 2px rgba(14,42,58,.06), 0 1px 1px rgba(14,42,58,.04);
  --shadow:    0 6px 22px -8px rgba(14,42,58,.16);
  --shadow-lg: 0 24px 60px -22px rgba(14,42,58,.28);

  --maxw: 1280px;
  --maxw-narrow: 820px;

  /* Themed surface aliases (light) */
  --bg: var(--cream);
  --bg-alt: var(--cream-2);
  --surface: var(--paper);
  --border: var(--line);
  --color-primary: var(--teal);
  --color-accent: var(--copper);
  /* Legacy aliases (older page markup) */
  --color-surface: var(--surface);
  --color-border: var(--border);
  --color-text: var(--t-1);
  --color-text-muted: var(--t-2);
  --radius-md: var(--r);
  --radius-lg: var(--r-lg);
}

/* ---------- DARK MODE ---------- */
[data-theme="dark"]{
  --bg: #0b1f2b;
  --bg-alt: #0f2735;
  --surface: #14303f;
  --line: #234152;
  --line-2: #2c5066;
  --t-1: #eef4f8;
  --t-2: #c0ced7;
  --t-3: #91a4b0;
  --cream: #0b1f2b;
  --cream-2: #0f2735;
  --cream-3: #14303f;
  --paper: #14303f;
  --brand-100: rgba(54,179,235,.14);
  --brand-200: rgba(54,179,235,.22);
  --color-primary: #4cb8ec;
  --teal: #4cb8ec;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3);
  --shadow: 0 8px 26px -10px rgba(0,0,0,.5);
  --shadow-lg: 0 28px 70px -24px rgba(0,0,0,.6);
  --border: #234152;
}

/* ---------- RESET ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;overflow-x:hidden}
body{
  font-family:var(--font-body);
  font-size:var(--text-base);
  line-height:1.65;
  color:var(--t-1);
  background:var(--bg);
  overflow-x:hidden;
  position:relative;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  transition:background .3s ease,color .3s ease;
}
img{max-width:100%;height:auto;display:block}
svg{display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
::selection{background:var(--copper);color:#fff}

h1,h2,h3,h4{font-family:var(--font-display);line-height:1.08;font-weight:600;letter-spacing:-.015em;color:var(--t-1)}

.container{width:100%;max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1.1rem,4vw,2rem)}
.container--default{max-width:880px}
.container--narrow{max-width:var(--maxw-narrow)}

/* ---------- ELEMENTS ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-body);
  font-size:var(--text-xs);font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--copper-600);
}
.eyebrow::before{content:"";width:22px;height:1.5px;background:var(--copper);display:inline-block}
[data-theme="dark"] .eyebrow{color:#f2b13a}

.hl{color:var(--copper-600);font-style:italic}
[data-theme="dark"] .hl{color:#e09a6b}

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  font-family:var(--font-body);font-weight:600;font-size:var(--text-sm);
  padding:.85rem 1.4rem;border-radius:var(--r-full);
  line-height:1;white-space:nowrap;cursor:pointer;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  border:1.5px solid transparent;
}
.btn svg{width:17px;height:17px;flex:none}
.btn:hover{transform:translateY(-2px)}
.btn--primary{background:var(--teal);color:#fff;box-shadow:0 8px 18px -8px rgba(36,163,220,.6)}
.btn--primary:hover{background:var(--teal-600);box-shadow:0 12px 24px -8px rgba(36,163,220,.7)}
[data-theme="dark"] .btn--primary{color:#06222f}
.btn--blue,.btn--teal{background:var(--teal);color:#fff;box-shadow:0 8px 18px -8px rgba(36,163,220,.55)}
.btn--blue:hover,.btn--teal:hover{background:var(--teal-600)}
.btn--ghost{background:transparent;color:var(--t-1);border-color:var(--line-2)}
.btn--ghost:hover{border-color:var(--ink);background:var(--cream-3)}
[data-theme="dark"] .btn--ghost{color:var(--t-1);border-color:var(--line-2)}
[data-theme="dark"] .btn--ghost:hover{background:var(--surface)}
.btn--light{background:#fff;color:var(--ink);box-shadow:var(--shadow-sm)}
.btn--light:hover{background:#eef4f8}
.btn--lg{padding:1rem 1.7rem;font-size:var(--text-base)}

/* ---------- HEADER ---------- */
.header{
  position:sticky;top:0;z-index:60;
  background:color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter:saturate(140%) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.header.scrolled{border-bottom-color:var(--line);box-shadow:0 2px 18px -12px rgba(14,42,58,.4)}
.nav{display:flex;align-items:center;gap:1.5rem;height:84px}
.brand{display:flex;align-items:center;flex:none}
.brand__img{height:58px;width:auto;display:block;transition:opacity .2s ease}
.brand:hover .brand__img{opacity:.85}
.footer__brand .brand__img{height:64px}
@media(max-width:560px){.brand__img{height:44px}}

.nav__links{display:flex;align-items:center;gap:.35rem;margin-left:auto}
.nav__item{position:relative}
.nav__link{
  display:inline-flex;align-items:center;gap:.3rem;
  font-size:.92rem;font-weight:500;color:var(--t-2);
  padding:.55rem .7rem;border-radius:var(--r-sm);transition:color .15s ease,background .15s ease;
}
.nav__link:hover{color:var(--t-1);background:var(--cream-3)}
.nav__link svg{width:13px;height:13px;transition:transform .2s ease}
.nav__item:hover .nav__link svg{transform:rotate(180deg)}
.nav__menu{
  position:absolute;top:calc(100% + 8px);left:0;min-width:248px;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--r);
  box-shadow:var(--shadow-lg);padding:.5rem;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:all .2s ease;
}
.nav__item:hover .nav__menu{opacity:1;visibility:visible;transform:translateY(0)}
.nav__menu a{display:block;padding:.6rem .8rem;border-radius:var(--r-sm);font-size:.9rem;font-weight:500;color:var(--t-2);transition:all .15s ease}
.nav__menu a:hover{background:var(--cream-3);color:var(--teal)}

/* Mega-menu (grouped services) */
.nav__menu--mega{
  left:50%;transform:translate(-50%,8px);
  min-width:min(720px,calc(100vw - 3rem));padding:1.1rem 1.1rem .9rem;
}
.nav__item:hover .nav__menu--mega{transform:translate(-50%,0)}
.mega__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.4rem .8rem}
.mega__col{display:flex;flex-direction:column;gap:.1rem}
.mega__head{
  font-size:var(--text-xs);font-weight:700;letter-spacing:.1em;text-transform:uppercase;
  color:var(--teal);padding:.35rem .8rem .45rem;
}
.mega__col a{font-size:.875rem}
.mega__all{
  display:flex;align-items:center;justify-content:center;gap:.45rem;
  margin-top:.9rem;padding:.75rem;border-top:1px solid var(--line);border-radius:0 0 var(--r-sm) var(--r-sm);
  font-size:.85rem;font-weight:600;color:var(--teal);white-space:nowrap;
}
.mega__all:hover{background:var(--cream-3)}
.mega__all svg{width:13px;height:13px;flex:none;transform:rotate(-90deg)}

.nav__actions{display:flex;align-items:center;gap:.7rem;flex:none}
.nav__phone{display:inline-flex;align-items:center;gap:.45rem;font-size:.9rem;font-weight:600;color:var(--t-1)}
.nav__phone svg{width:16px;height:16px;color:var(--teal)}
.theme-toggle{
  width:38px;height:38px;border-radius:var(--r-full);border:1px solid var(--line-2);
  display:grid;place-items:center;color:var(--t-2);background:var(--surface);transition:all .15s ease;
}
.theme-toggle::before{content:"";width:17px;height:17px;background:currentColor;
  -webkit-mask:center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z'/%3E%3C/svg%3E");
          mask:center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z'/%3E%3C/svg%3E")}
[data-theme="dark"] .theme-toggle::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E");
          mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E")}
.theme-toggle:hover{border-color:var(--ink);color:var(--t-1)}
.nav__burger{display:none;width:42px;height:42px;border-radius:var(--r-sm);color:var(--t-1);place-items:center}
.nav__burger svg{width:24px;height:24px}

/* ---------- MOBILE MENU ---------- */
.mobile-menu{
  position:fixed;inset:74px 0 0;z-index:55;background:var(--bg);max-width:100vw;
  padding:1.5rem clamp(1.1rem,4vw,2rem) 3rem;overflow-y:auto;
  transform:translateX(100%);transition:transform .3s ease,visibility .3s;display:flex;flex-direction:column;gap:.15rem;
  visibility:hidden;
}
.mobile-menu.open{transform:translateX(0);visibility:visible}
.mobile-menu a{padding:.85rem .4rem;font-size:1.05rem;font-weight:500;color:var(--t-1);border-bottom:1px solid var(--line)}
.mobile-menu a.btn{margin-top:1.2rem;border:none;justify-content:center;color:#fff}
.mm-group{font-size:var(--text-xs);font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--t-3);padding:1.1rem .4rem .3rem}

/* ---------- SECTION ---------- */
.section{padding-block:clamp(3.5rem,7vw,6rem)}
.section--tight{padding-block:clamp(2.5rem,5vw,4rem)}
.section--alt{background:var(--bg-alt)}
.section--ink{background:var(--ink);color:var(--t-inv)}
.section--ink h1,.section--ink h2,.section--ink h3{color:#fff}

.section-head{max-width:660px;margin-bottom:clamp(2rem,4vw,3rem)}
.section-head--center{margin-inline:auto;text-align:center}
.section-title{font-size:var(--text-3xl)}
.section-sub{margin-top:1rem;font-size:var(--text-lg);color:var(--t-2);line-height:1.6}

/* ---------- HERO ---------- */
.hero{position:relative;overflow:hidden;background:var(--bg)}
.hero__bg{position:absolute;inset:0;z-index:0}
.hero__bg img{width:100%;height:100%;object-fit:cover}
.hero__bg::after{content:"";position:absolute;inset:0;
  background:linear-gradient(100deg, var(--ink) 0%, color-mix(in srgb,var(--ink) 82%, transparent) 42%, color-mix(in srgb,var(--ink) 25%, transparent) 70%, transparent 100%)}
.hero--image .hero__inner{position:relative;z-index:1;color:var(--t-inv);padding-block:clamp(4rem,9vw,7.5rem);max-width:680px}
.hero--image .hero__title,.hero--image .eyebrow{color:#fff}
.hero--image .eyebrow{color:#f7c25a}
.hero--image .hero__title .hl{color:#f7c25a}
.hero__title{font-size:var(--text-hero);letter-spacing:-.025em;line-height:1.02}
.hero__sub{margin-top:1.4rem;font-size:clamp(1.05rem,.95rem+.5vw,1.3rem);line-height:1.55;max-width:560px}
.hero--image .hero__sub{color:var(--t-inv-2)}
.hero__actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:2rem}
.hero__trust{display:flex;flex-wrap:wrap;gap:1.1rem 1.6rem;margin-top:2.2rem}
.hero__trust span{display:inline-flex;align-items:center;gap:.5rem;font-size:.9rem;font-weight:500;color:var(--t-inv-2)}
.hero__trust svg{width:16px;height:16px;color:#f7c25a;flex:none}

/* Light editorial hero (no image) */
.hero--editorial{background:var(--bg);padding-block:clamp(3rem,6vw,5.5rem);position:relative}
.hero--editorial::before{content:"";position:absolute;inset:0;opacity:.5;
  background-image:radial-gradient(var(--line-2) 1px, transparent 1px);background-size:22px 22px;z-index:0;-webkit-mask:linear-gradient(180deg,#000,transparent)}
.hero--editorial .hero__grid{position:relative;z-index:1;display:grid;grid-template-columns:1.1fr .9fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.hero--editorial .hero__title{color:var(--t-1)}
.hero--editorial .hero__sub{color:var(--t-2)}

/* ---------- LIVE STATS CARD ---------- */
.statcard{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(1.5rem,3vw,2rem);box-shadow:var(--shadow)}
.statcard__head{font-size:var(--text-xs);font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--t-3);margin-bottom:1.2rem}
.statcard__grid{display:grid;grid-template-columns:1fr 1fr;gap:1.4rem 1.2rem}
.statcard__grid--4{grid-template-columns:repeat(4,1fr)}
.statcard__num{font-family:var(--font-display);font-size:clamp(1.8rem,1.4rem+1.4vw,2.6rem);font-weight:600;color:var(--teal);line-height:1}
[data-theme="dark"] .statcard__num{color:#4cb8ec}
.statcard__lbl{margin-top:.35rem;font-size:.8rem;color:var(--t-2);text-transform:uppercase;letter-spacing:.06em;font-weight:500}
.statcard__foot{margin-top:1.3rem;padding-top:1rem;border-top:1px solid var(--line);font-size:.82rem;color:var(--t-3)}

/* ---------- GRID ---------- */
.grid{display:grid;gap:1.4rem}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}
.grid--4{grid-template-columns:repeat(4,1fr)}

/* ---------- CARD ---------- */
.card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.7rem;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;display:flex;flex-direction:column}
.card--link:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--line-2)}
.card__icon{width:50px;height:50px;border-radius:var(--r);background:color-mix(in srgb,var(--teal) 12%, transparent);color:var(--teal);display:grid;place-items:center;margin-bottom:1.1rem}
[data-theme="dark"] .card__icon{background:rgba(54,179,235,.16);color:#4cb8ec}
.card__icon svg{width:24px;height:24px}
.card__title{font-size:var(--text-xl);margin-bottom:.5rem}
.card__text{font-size:.96rem;color:var(--t-2);line-height:1.6;flex:1}
.card__link{display:inline-flex;align-items:center;gap:.4rem;margin-top:1.1rem;font-weight:600;font-size:.9rem;color:var(--copper-600)}
.card__link svg{width:16px;height:16px;transition:transform .2s ease}
.card--link:hover .card__link svg{transform:translateX(4px)}
[data-theme="dark"] .card__link{color:#e09a6b}

/* ---------- SAVVY SECURE MODULE CARDS ---------- */
.mod-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);padding:1.35rem 1.4rem;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}
.mod-card:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:var(--teal)}
.mod-card__head{display:flex;align-items:center;gap:.7rem;margin-bottom:.7rem}
.mod-card__icon{
  flex:none;width:40px;height:40px;border-radius:var(--r-sm);
  display:grid;place-items:center;
  background:color-mix(in srgb,var(--teal) 14%,transparent);color:var(--teal);
}
.mod-card__icon svg{width:20px;height:20px}
.mod-card__name{font-size:1rem;font-family:var(--font-display);font-weight:600;line-height:1.25}
.mod-card__stat{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.02em;color:var(--teal);margin-bottom:.55rem}
.mod-card__n{font-family:var(--font-display);font-size:.85rem;font-weight:600;color:var(--copper-600);margin-bottom:.5rem}
.mod-card__title{font-size:var(--text-lg);font-family:var(--font-display);font-weight:600;margin-bottom:.4rem}
.mod-card__text{font-size:.875rem;color:var(--t-2);line-height:1.55}

/* ---------- STATS ROW ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem;text-align:center}
.stat__num{font-family:var(--font-display);font-size:clamp(2.2rem,1.6rem+2vw,3.2rem);font-weight:600;color:var(--teal);line-height:1}
[data-theme="dark"] .stat__num{color:#4cb8ec}
.stat__label{margin-top:.5rem;font-size:.88rem;color:var(--t-2);font-weight:500}

/* ---------- SPLIT ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.split__media{border-radius:var(--r-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.split__media img{width:100%;aspect-ratio:16/10;object-fit:cover}

/* ---------- FEATURE LIST ---------- */
.feature-list{display:flex;flex-direction:column;gap:.85rem;margin-top:1.6rem}
.feature-list li{display:flex;align-items:flex-start;gap:.7rem;font-size:1rem;color:var(--t-1);font-weight:500}
.feature-list svg{width:20px;height:20px;flex:none;margin-top:2px;color:var(--teal);background:color-mix(in srgb,var(--teal) 12%, transparent);border-radius:50%;padding:3px}
[data-theme="dark"] .feature-list svg{color:#4cb8ec;background:rgba(54,179,235,.16)}

/* ---------- CYBER RISK PULSE ---------- */
.pulse{background:var(--ink);color:var(--t-inv);position:relative;overflow:hidden}
.pulse::before{content:"";position:absolute;inset:0;opacity:.4;
  background:radial-gradient(60% 80% at 80% 10%, rgba(242,163,15,.22), transparent 60%),radial-gradient(50% 60% at 0% 90%, rgba(36,163,220,.3), transparent 60%)}
.pulse>.container{position:relative;z-index:1}
.pulse__grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.pulse__title{font-size:var(--text-3xl);color:#fff;margin-top:.8rem}
.pulse__lead{margin-top:1.1rem;font-size:1.1rem;color:#b9cad4;line-height:1.6}
.pulse__lead strong{color:#f7c25a;font-weight:600}
.pulse__counter{margin-top:1.8rem;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.12);border-radius:var(--r);padding:1.3rem 1.5rem}
.pulse__counter-label{font-size:var(--text-xs);text-transform:uppercase;letter-spacing:.14em;color:#8ba2af;font-weight:600}
.pulse__counter-value{font-family:var(--font-display);font-size:clamp(2.4rem,2rem+2vw,3.4rem);font-weight:600;color:#f7c25a;line-height:1.05;margin-top:.2rem}
.pulse__counter-sub{margin-top:.5rem;font-size:.85rem;color:#8ba2af}
.pulse__metrics{display:flex;flex-direction:column;gap:1rem}
.pulse__metric{display:flex;align-items:flex-start;gap:1rem;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:var(--r);padding:1.2rem 1.4rem}
.pulse__metric-dot{width:10px;height:10px;border-radius:50%;background:var(--copper);margin-top:7px;flex:none;box-shadow:0 0 0 0 rgba(242,163,15,.6);animation:pulseDot 2s infinite}
@keyframes pulseDot{0%{box-shadow:0 0 0 0 rgba(242,163,15,.5)}70%{box-shadow:0 0 0 12px rgba(242,163,15,0)}100%{box-shadow:0 0 0 0 rgba(242,163,15,0)}}
.pulse__metric-num{font-family:var(--font-display);font-size:1.9rem;font-weight:600;color:#fff;line-height:1}
.pulse__metric-text{font-size:.9rem;color:#b9cad4;margin-top:.2rem}

/* ---------- TESTIMONIALS ---------- */
.quote-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.8rem;display:flex;flex-direction:column;box-shadow:var(--shadow-sm)}
.quote-card__stars{color:var(--gold);font-size:1.05rem;letter-spacing:2px;margin-bottom:1rem}
.quote-card__text{font-family:var(--font-display);font-size:1.12rem;font-weight:500;line-height:1.5;color:var(--t-1);font-style:italic;flex:1}
.quote-card__who{margin-top:1.3rem;font-weight:600;font-size:.95rem;color:var(--t-1);display:flex;flex-direction:column}
.quote-card__who span{font-family:var(--font-body);font-weight:500;font-size:.82rem;color:var(--t-3);font-style:normal;margin-top:2px}

/* ---------- LOCATION CARDS ---------- */
.loc-card{position:relative;border-radius:var(--r-lg);overflow:hidden;display:block;box-shadow:var(--shadow-sm);transition:transform .2s ease,box-shadow .2s ease}
.loc-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.loc-card img{width:100%;aspect-ratio:16/10;object-fit:cover;transition:transform .4s ease}
.loc-card:hover img{transform:scale(1.05)}
.loc-card__body{position:absolute;inset:auto 0 0 0;padding:1.3rem;background:linear-gradient(transparent, rgba(14,42,58,.9));color:#fff}
.loc-card__name{font-family:var(--font-display);font-size:1.2rem;font-weight:600;color:#fff}
.loc-card__meta{font-size:.82rem;color:#cfdce4;margin-top:2px}

/* ---------- ACCORDION ---------- */
.accordion{display:flex;flex-direction:column;gap:.7rem}
.acc-item{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);overflow:hidden}
.acc-q{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.15rem 1.4rem;font-family:var(--font-display);font-weight:600;font-size:1.08rem;color:var(--t-1);cursor:pointer;list-style:none}
.acc-q::-webkit-details-marker{display:none}
.acc-icon{width:20px;height:20px;flex:none;color:var(--copper-600);transition:transform .25s ease}
.acc-item[open] .acc-icon{transform:rotate(45deg)}
.acc-a{padding:0 1.4rem 1.3rem;color:var(--t-2);font-size:.98rem;line-height:1.65}
.acc-a a{color:var(--teal);font-weight:600}

/* ---------- CTA BAND ---------- */
.cta-band{background:var(--ink);border-radius:var(--r-xl);padding:clamp(2.5rem,5vw,4rem);text-align:center;position:relative;overflow:hidden}
.cta-band::before{content:"";position:absolute;inset:0;opacity:.5;background:radial-gradient(50% 80% at 80% 20%, rgba(242,163,15,.3), transparent 60%),radial-gradient(50% 70% at 10% 90%, rgba(36,163,220,.4), transparent 60%)}
.cta-band__inner{position:relative;z-index:1;max-width:620px;margin-inline:auto}
.cta-band h2{font-size:var(--text-2xl);color:#fff}
.cta-band p{margin-top:1rem;color:#b9cad4;font-size:1.1rem}
.cta-band .hero__actions{justify-content:center}

/* ---------- FOOTER ---------- */
.footer{background:var(--ink);color:var(--t-inv-2);padding-block:clamp(3rem,6vw,4.5rem) 2rem}
.footer__grid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.3fr;gap:2.5rem}
.footer__brand .brand__logo{color:#4cb8ec}
.footer__about{margin-top:1rem;font-size:.92rem;line-height:1.6;color:#8ba2af;max-width:300px}
.footer__col h4{font-family:var(--font-body);font-size:.78rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#7e918a;margin-bottom:1.1rem}
.footer__col li{margin-bottom:.6rem}
.footer__col a{font-size:.93rem;color:#b9cad4;transition:color .15s ease}
.footer__col a:hover{color:#fff}
.footer__contact{display:flex;flex-direction:column;gap:.85rem}
.footer__contact a{display:flex;align-items:flex-start;gap:.6rem;font-size:.93rem;color:#b9cad4}
.footer__contact svg{width:17px;height:17px;flex:none;margin-top:2px;color:#f7c25a}
.footer__bottom{margin-top:2.8rem;padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.1);display:flex;flex-wrap:wrap;gap:.6rem 1.5rem;justify-content:space-between;font-size:.83rem;color:#7e918a}

/* Footer Trustpilot badge */
.tp-badge{display:inline-flex;flex-direction:column;gap:.45rem;margin-top:1.4rem;text-decoration:none}
.tp-badge__top{display:flex;align-items:center;gap:.5rem}
.tp-badge__logo{display:inline-flex;align-items:center;gap:.35rem;font-weight:700;font-size:.92rem;color:#fff}
.tp-badge__logo svg{width:16px;height:16px;color:#00b67a}
.tp-stars{display:inline-flex;gap:2px}
.tp-stars span{display:inline-grid;place-items:center;width:20px;height:20px;background:#00b67a}
.tp-stars span.is-half{background:linear-gradient(90deg,#00b67a 50%,#dcdce6 50%)}
.tp-stars span.is-empty{background:#dcdce6}
.tp-stars svg{width:13px;height:13px;color:#fff}
.tp-badge__meta{font-size:.82rem;color:#9fb1bb}
.tp-badge__meta b{color:#fff;font-weight:700}
.tp-badge:hover .tp-badge__meta b{text-decoration:underline}

/* Footer social icons */
.footer__social{display:flex;gap:.6rem;margin-top:1.3rem}
.footer__social a{
  width:38px;height:38px;border-radius:var(--r-sm);display:grid;place-items:center;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);color:#b9cad4;
  transition:background .15s ease,color .15s ease,border-color .15s ease;
}
.footer__social a:hover{background:var(--teal);border-color:var(--teal);color:#fff}
.footer__social svg{width:18px;height:18px}

/* ---------- STICKY MOBILE CTA ---------- */
.mobile-cta{display:none;position:fixed;bottom:0;left:0;right:0;z-index:50;background:var(--surface);border-top:1px solid var(--line);padding:.6rem;gap:.6rem;box-shadow:0 -6px 22px -12px rgba(14,42,58,.4)}
.mobile-cta a{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:.45rem;padding:.85rem;border-radius:var(--r-full);font-weight:600;font-size:.92rem}
.mobile-cta svg{width:17px;height:17px}
.mc-call{background:var(--teal);color:#fff}
.mc-quote{background:var(--teal);color:#fff}

/* ---------- PROSE (articles) ---------- */
.prose{max-width:760px}
.prose h2{font-size:var(--text-2xl);margin:2.2rem 0 .8rem;scroll-margin-top:96px}
.prose h3{font-size:var(--text-xl);margin:1.8rem 0 .6rem}
.prose p{margin-bottom:1.1rem;color:var(--t-2);font-size:1.06rem;line-height:1.75}
.prose ul{margin:0 0 1.2rem 1.2rem;list-style:disc}
.prose li{margin-bottom:.5rem;color:var(--t-2)}
.prose a{color:var(--teal);font-weight:600;text-decoration:underline;text-underline-offset:3px}

/* ---------- ARTICLE LAYOUT (two-column editorial) ---------- */
.article__lead{margin:var(--space-6) 0 0;border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-sm)}
.article__lead img{display:block;width:100%;height:auto;aspect-ratio:2/1;object-fit:cover}
.article{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:clamp(2.5rem,5vw,5rem);align-items:start;margin-top:var(--space-8)}
.article__main{min-width:0}
.article__main .prose{max-width:760px}
.article__aside{position:sticky;top:96px;display:flex;flex-direction:column;gap:1.25rem}
.toc{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);padding:1.4rem 1.5rem;box-shadow:var(--shadow-sm)}
.toc__title{font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--t-3);margin-bottom:.9rem}
.toc__list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.1rem}
.toc__list a{display:block;font-size:.92rem;line-height:1.4;color:var(--t-2);text-decoration:none;padding:.45rem .7rem;border-radius:var(--r-sm);border-left:2px solid transparent;transition:color .15s ease,background .15s ease,border-color .15s ease}
.toc__list a:hover{color:var(--teal);background:var(--brand-100)}
.toc__list a.is-active{color:var(--teal);font-weight:600;background:var(--brand-100);border-left-color:var(--teal)}
.aside-cta{background:var(--ink);color:var(--t-inv);border-radius:var(--r-lg);padding:1.5rem;box-shadow:var(--shadow)}
.aside-cta h3{font-size:1.15rem;color:#fff;margin-bottom:.5rem;line-height:1.25}
.aside-cta p{font-size:.9rem;color:var(--t-inv-2);line-height:1.55;margin-bottom:1.1rem}
.aside-cta .btn{width:100%;justify-content:center}
.aside-cta__phone{display:block;text-align:center;margin-top:.7rem;font-size:.9rem;font-weight:600;color:#fff;text-decoration:none}
.aside-cta__phone:hover{color:var(--teal)}
@media (max-width:1024px){
  .article{grid-template-columns:1fr;gap:2.5rem}
  .article__aside{position:static;top:auto;flex-direction:row;flex-wrap:wrap}
  .article__aside>*{flex:1 1 280px}
  .article__main .prose{max-width:760px;margin-inline:auto}
}
@media (max-width:600px){
  .article__aside{flex-direction:column}
  .toc{display:none}
}

/* ---------- BREADCRUMB ---------- */
.crumb{font-size:.85rem;color:var(--t-3);padding-top:1.4rem}
.crumb a{color:var(--t-2)}.crumb a:hover{color:var(--teal)}

/* ---------- CONTACT FORM ---------- */
.form-field{margin-bottom:1.1rem}
.form-field label{display:block;font-size:.85rem;font-weight:600;margin-bottom:.4rem;color:var(--t-1)}
.form-field input,.form-field textarea,.form-field select{width:100%;padding:.85rem 1rem;border:1.5px solid var(--line-2);border-radius:var(--r-sm);background:var(--surface);color:var(--t-1);font-family:inherit;font-size:.96rem;transition:border-color .15s ease}
.form-field input:focus,.form-field textarea:focus,.form-field select:focus{outline:none;border-color:var(--teal)}
.map-embed{border-radius:var(--r-lg);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow-sm)}
.map-embed iframe{display:block;width:100%;border:0}

/* ---------- REVEAL ANIMATION ---------- */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}.btn:hover{transform:none}}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px){
  .nav__links{display:none}
  .nav__burger{display:grid}
  .nav__phone{display:none}
  .footer__grid{grid-template-columns:1fr 1fr}
  .footer__brand{grid-column:1/-1}
}
@media (max-width:880px){
  .grid--3,.grid--4{grid-template-columns:repeat(2,1fr)}
  .pulse__grid,.split,.hero--editorial .hero__grid{grid-template-columns:1fr}
  .split__media{order:-1}
  .stats{grid-template-columns:repeat(2,1fr);gap:2rem 1rem}
}
@media (max-width:600px){
  .nav{height:70px}
  .mobile-menu{inset-block-start:70px}
  .grid--2,.grid--3,.grid--4{grid-template-columns:1fr}
  .statcard__grid,.statcard__grid--4{grid-template-columns:1fr 1fr}
  .mobile-cta{display:flex}
  body{padding-bottom:72px}
  .footer__bottom{flex-direction:column}
  .hero__actions .btn{flex:1}
}

/* ===== Areas We Cover band (service pages) + interlinking widgets ===== */
.areas-band{background:var(--cream-2);border-block:1px solid var(--line)}
.areas-band__head{max-width:640px;margin:0 auto 1.6rem;text-align:center}
.areas-band__head h2{font-size:var(--text-2xl);margin:.3rem 0 .6rem}
.areas-band__head p{color:var(--t-2);margin:0}
.area-chips{display:flex;flex-wrap:wrap;gap:.7rem;justify-content:center;max-width:760px;margin-inline:auto}
.area-chip{display:inline-flex;align-items:center;gap:.45rem;padding:.6rem 1.1rem;background:var(--paper);border:1px solid var(--line-2);border-radius:999px;color:var(--ink);font-weight:600;font-size:.98rem;text-decoration:none;transition:border-color .18s,color .18s,transform .18s,box-shadow .18s}
.area-chip svg{width:15px;height:15px;color:var(--teal);flex-shrink:0}
.area-chip:hover{border-color:var(--teal);color:var(--teal-700);transform:translateY(-2px);box-shadow:0 6px 18px rgba(36,163,220,.14)}
.area-chip--all{background:var(--teal);border-color:var(--teal);color:#fff}
.area-chip--all svg{color:#fff}
.area-chip--all:hover{background:var(--teal-600);border-color:var(--teal-600);color:#fff}
[data-theme="dark"] .areas-band{background:var(--ink-2);border-color:rgba(255,255,255,.08)}
[data-theme="dark"] .area-chip{background:var(--ink-3);border-color:rgba(255,255,255,.12);color:var(--t-inv)}

/* Interlinking widgets (combo + location pages) */
.link-web{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
@media(max-width:760px){.link-web{grid-template-columns:1fr}}
.link-card{background:var(--paper);border:1px solid var(--line);border-radius:16px;padding:1.6rem 1.7rem}
.link-card h3{font-size:var(--text-lg);margin:0 0 1rem;display:flex;align-items:center;gap:.55rem}
.link-card h3 svg{width:20px;height:20px;color:var(--teal)}
.link-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.6rem}
.link-list a{display:inline-flex;align-items:center;gap:.4rem;padding:.5rem .95rem;background:var(--cream-2);border:1px solid var(--line);border-radius:10px;color:var(--ink);font-weight:600;font-size:.95rem;text-decoration:none;transition:all .18s}
.link-list a:hover{border-color:var(--teal);color:var(--teal-700);background:var(--brand-100)}
[data-theme="dark"] .link-card{background:var(--ink-2);border-color:rgba(255,255,255,.08)}
[data-theme="dark"] .link-list a{background:var(--ink-3);border-color:rgba(255,255,255,.1);color:var(--t-inv)}

/* ===== Zen broadband availability checker ===== */
.zen-checker{max-width:var(--maxw);margin-inline:auto}
.zen-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r-xl);padding:clamp(1.6rem,3.5vw,2.6rem);box-shadow:var(--shadow-lg)}
.zen-card__head{max-width:640px;margin-bottom:1.4rem}
.zen-card__head .eyebrow{margin-bottom:.5rem}
.zen-card__head h2{font-size:var(--text-2xl);margin:.2rem 0 .5rem}
.zen-card__head p{color:var(--t-2);margin:0}
.zen-panel{background:var(--bg-alt);border:1px solid var(--line);border-radius:var(--r-lg);padding:1rem}
.zen-row{display:flex;gap:.8rem;align-items:stretch}
.zen-input,.zen-select{flex:1;width:100%;min-height:56px;padding:.9rem 1.1rem;border:1.5px solid var(--line-2);border-radius:var(--r);background:var(--surface);color:var(--t-1);font-family:inherit;font-size:1rem;box-sizing:border-box;transition:border-color .15s ease,box-shadow .15s ease}
.zen-select{appearance:none;-webkit-appearance:none;background-image:linear-gradient(45deg,transparent 50%,var(--t-3) 50%),linear-gradient(135deg,var(--t-3) 50%,transparent 50%);background-position:calc(100% - 22px) calc(50% - 2px),calc(100% - 16px) calc(50% - 2px);background-size:6px 6px,6px 6px;background-repeat:no-repeat;padding-right:42px}
.zen-input:focus,.zen-select:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 4px rgba(36,163,220,.14)}
.zen-btn{min-width:200px;min-height:56px;display:inline-flex;align-items:center;justify-content:center;gap:.5rem;padding:0 1.5rem;background:var(--teal);color:#fff;border:none;border-radius:var(--r);font-family:inherit;font-size:1rem;font-weight:700;cursor:pointer;white-space:nowrap;box-shadow:0 8px 18px -8px rgba(36,163,220,.6);transition:background .15s ease,transform .15s ease}
[data-theme="dark"] .zen-btn{color:#06222f}
.zen-btn:hover{background:var(--teal-600);transform:translateY(-2px)}
.zen-btn:disabled{opacity:.6;cursor:default;transform:none}
.zen-btn svg{width:17px;height:17px;flex:none}
.zen-step{margin-top:1.6rem}
.zen-step h3{font-size:var(--text-lg);margin:0 0 .8rem}
.zen-msg{margin-top:1.2rem;padding:1rem 1.1rem;border-radius:var(--r);background:var(--bg-alt);border:1px solid var(--line);color:var(--t-2);font-size:.96rem}
.zen-msg--err{background:rgba(217,45,45,.08);border-color:rgba(217,45,45,.25);color:#b42318}
[data-theme="dark"] .zen-msg--err{color:#ffb4ab;background:rgba(255,80,80,.12);border-color:rgba(255,80,80,.3)}
.zen-summary{margin-top:1.6rem;background:linear-gradient(135deg,var(--brand-100),var(--surface));border:1px solid var(--brand-200);border-radius:var(--r-lg);padding:1.5rem 1.6rem}
[data-theme="dark"] .zen-summary{background:linear-gradient(135deg,var(--ink-3),var(--ink-2));border-color:rgba(36,163,220,.3)}
.zen-summary h3{margin:0 0 .4rem;font-size:var(--text-xl);display:flex;align-items:center;gap:.55rem;flex-wrap:wrap}
.zen-summary h3 svg{width:22px;height:22px;flex:none;color:var(--teal)}
.zen-summary p{margin:0;color:var(--t-2)}
.zen-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.1rem;margin-top:1.2rem}
.zen-pkg{border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem;background:var(--bg-alt);transition:transform .2s ease,box-shadow .2s ease,background .2s ease}
.zen-pkg:hover{transform:translateY(-3px);box-shadow:var(--shadow);background:var(--surface)}
.zen-pkg__name{margin:0 0 .8rem;font-size:1.05rem;font-weight:600}
.zen-pill{display:inline-block;padding:.35rem .75rem;border-radius:var(--r-full);font-size:.78rem;font-weight:700;background:rgba(22,101,52,.12);color:#166534}
[data-theme="dark"] .zen-pill{background:rgba(74,222,128,.16);color:#86efac}
.zen-pkg__speed{font-size:2rem;font-weight:800;margin:.9rem 0 .15rem;color:var(--t-1);line-height:1.05}
.zen-pkg__label{color:var(--t-3);font-size:.82rem}
.zen-pkg .zen-pkg__cta{display:flex;width:100%;min-width:0;margin-top:1.1rem;min-height:46px;font-size:.95rem}
@media(max-width:700px){.zen-row{flex-direction:column}.zen-btn{width:100%;min-width:0}}

/* ---- Contact form controls (theme-aware) ---- */
.form-field{display:grid;gap:var(--space-2)}
.form-field>label{font-weight:600;font-size:var(--text-sm);color:var(--t-1)}
.form-field .req{color:var(--teal);margin-left:2px}
.form-control{padding:var(--space-3) var(--space-4);border:1.5px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-surface);color:var(--t-1);width:100%;font:inherit;line-height:1.5;transition:border-color .18s,box-shadow .18s}
.form-control::placeholder{color:var(--t-3);opacity:1}
.form-control:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(36,163,220,.18)}
textarea.form-control{resize:vertical;min-height:140px}
/* keep native autofill from forcing black-on-white in dark mode */
.form-control:-webkit-autofill,.form-control:-webkit-autofill:hover,.form-control:-webkit-autofill:focus{-webkit-text-fill-color:var(--t-1);transition:background-color 9999s ease-in-out 0s}

/* ---- Broadband enquiry banner (prominent) ---- */
.enquiry-banner{display:flex;align-items:flex-start;gap:.85rem;scroll-margin-top:100px;margin-bottom:var(--space-6);padding:1.15rem 1.35rem;border:1.5px solid var(--teal);border-left:5px solid var(--teal);background:linear-gradient(100deg,rgba(36,163,220,.16),rgba(36,163,220,.06));border-radius:var(--radius-lg);box-shadow:0 6px 20px rgba(36,163,220,.14)}
.enquiry-banner__icon{flex:none;width:38px;height:38px;border-radius:999px;background:var(--teal);display:flex;align-items:center;justify-content:center;margin-top:1px}
.enquiry-banner__icon svg{width:22px;height:22px;flex:none;color:#fff}
.enquiry-banner__body{font-size:var(--text-sm);line-height:1.5}
.enquiry-banner__title{display:block;font-weight:700;font-size:1.02rem;color:var(--t-1);margin-bottom:.2rem}
.enquiry-banner__text{display:block}
.enquiry-banner__text{color:var(--t-2)}

/* ---------- COOKIE CONSENT BANNER ---------- */
.cookie-consent{position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:9000;background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);box-shadow:var(--shadow);padding:1rem 1.2rem;opacity:0;transform:translateY(14px);transition:opacity .35s ease,transform .35s ease;max-width:760px;margin-inline:auto}
.cookie-consent--in{opacity:1;transform:translateY(0)}
.cookie-consent--hide{opacity:0;transform:translateY(14px)}
.cookie-consent__inner{display:flex;align-items:center;gap:1rem 1.4rem;flex-wrap:wrap;justify-content:space-between}
.cookie-consent__text{margin:0;font-size:.9rem;line-height:1.5;color:var(--t-2);flex:1 1 320px}
.cookie-consent__link{color:var(--teal);text-decoration:underline}
.cookie-consent__link:hover{text-decoration:none}
.cookie-consent__actions{display:flex;gap:.6rem;flex:none}
.cookie-consent__btn{padding:.6rem 1.2rem;font-size:.9rem;cursor:pointer}
@media (max-width:600px){
  .cookie-consent{left:.6rem;right:.6rem;bottom:84px;padding:.9rem 1rem}
  .cookie-consent__inner{flex-direction:column;align-items:stretch;gap:.8rem}
  .cookie-consent__actions{justify-content:stretch}
  .cookie-consent__btn{flex:1}
}
