  :root {
    /* Brand colors extracted from Vanasek V logo */
    --navy: #0D1E35;
    --navy-mid: #0D2444;
    --brand-blue: #0D62AC;
    --brand-cyan: #39C0C5;
    --brand-sky: #43B3E6;
    --brand-blue-deep: #4579BC;
    --teal: #39C0C5;
    --teal-light: #5DD6DA;
    --coral: #FF5C57;
    --white: #FFFFFF;
    --off-white: #F4F8FC;
    --gray-100: #EBF1F8;
    --gray-150: #DDE6F0;
    --gray-300: #C2D0E0;
    --gray-500: #5A6F8A;
    --gray-700: #354F6B;
    --text: #0D1E35;
    --surface: #FFFFFF;
    --surface-muted: #F4F8FC;
    --border: #E1E8F0;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 10px 30px rgba(13,30,53,0.06);
    --shadow-lg: 0 24px 60px rgba(13,30,53,0.10);
    --brand-gradient: linear-gradient(135deg, #39C0C5 0%, #43B3E6 50%, #4579BC 100%);
    --brand-gradient-glow: linear-gradient(135deg, rgba(57,192,197,0.18) 0%, rgba(67,179,230,0.12) 50%, rgba(69,121,188,0.08) 100%);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--surface-muted);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 max(5%, calc((100vw - 1280px) / 2)); height: 76px;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13,30,53,0.08);
    transition: box-shadow 0.3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo svg { flex-shrink: 0; }
  .nav-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #39C0C5 0%, #43B3E6 55%, #4579BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .nav-links { display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
  .nav-links a {
    font-size: 0.9rem; font-weight: 600; color: var(--gray-700);
    text-decoration: none; transition: color 0.2s;
    position: relative; padding: 0.45rem 0;
  }
  .nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -20px;
    height: 3px; background: var(--brand-cyan);
    transform: scaleX(0); transform-origin: center; transition: transform 0.2s;
  }
  .nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
  .nav-links a:hover { color: var(--teal); }
  .nav-links .nav-cta {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 112px; white-space: nowrap; line-height: 1;
    background: var(--navy); color: var(--white) !important;
    padding: 0.72rem 1.05rem; border-radius: var(--radius-sm);
    font-weight: 600 !important; font-size: 0.875rem !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-links .nav-cta:hover { background: var(--brand-blue) !important; color: var(--white) !important; transform: translateY(-1px); }


  /* ── MOBILE NAV ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px; height: 44px;
    background: none; border: none;
    cursor: pointer; padding: 8px;
    border-radius: 10px;
    transition: background 0.2s;
    z-index: 110;
  }
  .nav-hamburger:hover { background: var(--gray-100); }
  .nav-hamburger .bar {
    display: block;
    width: 22px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
    transform-origin: center;
  }
  .nav-hamburger .bar + .bar { margin-top: 5px; }

  /* Open state — X */
  .nav-hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile drawer */
  .nav-drawer {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,22,40,0.08);
    padding: 1.5rem 5% 2rem;
    z-index: 99;
    box-shadow: 0 12px 40px rgba(13,30,53,0.12);
    transform: translateY(-8px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav-drawer a {
    display: flex; align-items: center;
    padding: 0.85rem 0;
    font-size: 1rem; font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    transition: color 0.2s;
  }
  .nav-drawer a:last-child { border-bottom: none; }
  .nav-drawer a:hover { color: var(--teal); }
  .nav-drawer .drawer-cta {
    display: flex; justify-content: center; align-items: center;
    margin-top: 1.25rem;
    background: var(--brand-gradient);
    color: white !important;
    padding: 0.85rem 2rem;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border-bottom: none !important;
    box-shadow: 0 4px 16px rgba(57,192,197,0.3);
  }
  .nav-drawer .drawer-cta:hover { opacity: 0.9; transform: translateY(-1px); }

  @media (max-width: 900px) {
    .nav-hamburger { display: flex; }
    .nav-links { display: none !important; }
    .nav-drawer { display: block; }
  }

  /* ── HERO ── */
  .hero {
    --mouse-x: 72%;
    --mouse-y: 34%;
    --mouse-glow: 0;
    min-height: 94vh;
    display: flex; align-items: center;
    padding: 128px 5% 88px;
    background:
      linear-gradient(135deg, #08172B 0%, #0D1E35 46%, #0A3765 100%),
      var(--navy);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(circle at var(--mouse-x) var(--mouse-y),
        rgba(57,192,197,0.22) 0%,
        rgba(67,179,230,0.13) 18%,
        transparent 42%);
    opacity: var(--mouse-glow);
    transition: opacity 0.35s ease;
    pointer-events: none;
  }
  .hero-bg-mesh {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 72% 52% at 78% 24%, rgba(67,179,230,0.22), transparent 64%),
      radial-gradient(ellipse 52% 44% at 22% 72%, rgba(57,192,197,0.13), transparent 68%),
      linear-gradient(120deg, rgba(255,255,255,0.035) 0%, transparent 34%, rgba(57,192,197,0.08) 60%, transparent 100%);
    background-size: 120% 120%, 110% 110%, 220% 220%;
    animation: hero-light-drift 22s ease-in-out infinite alternate;
  }
  .hero-bg-mesh::after {
    content: ''; position: absolute; inset: -20%;
    background:
      linear-gradient(105deg, transparent 28%, rgba(255,255,255,0.055) 42%, rgba(57,192,197,0.10) 50%, transparent 64%);
    transform: translateX(-24%) rotate(0.01deg);
    animation: hero-sheen 16s ease-in-out infinite;
    opacity: 0.78;
  }
  @keyframes hero-light-drift {
    0% { background-position: 54% 46%, 36% 62%, 0% 50%; }
    100% { background-position: 72% 30%, 20% 78%, 100% 50%; }
  }
  @keyframes hero-sheen {
    0%, 18% { transform: translateX(-34%) rotate(0.01deg); opacity: 0; }
    38%, 62% { opacity: 0.72; }
    82%, 100% { transform: translateX(34%) rotate(0.01deg); opacity: 0; }
  }
  .hero-orb {
    position: absolute; border-radius: 50%;
    filter: blur(96px);
    will-change: transform, opacity;
    pointer-events: none;
  }
  .hero-orb-1 {
    width: 55vw; height: 55vw;
    background: radial-gradient(circle, rgba(57,192,197,0.11) 0%, transparent 70%);
    top: -10%; right: -5%;
    animation: orb1 18s ease-in-out infinite alternate;
  }
  .hero-orb-2 {
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, rgba(69,121,188,0.10) 0%, transparent 70%);
    bottom: -15%; left: -5%;
    animation: orb2 22s ease-in-out infinite alternate;
  }
  .hero-orb-3 {
    width: 30vw; height: 30vw;
    background: radial-gradient(circle, rgba(67,179,230,0.08) 0%, transparent 70%);
    top: 30%; left: 35%;
    animation: orb3 26s ease-in-out infinite alternate;
  }
  @keyframes orb1 {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(-4vw, 3vh) scale(1.08); }
    66%  { transform: translate(3vw, -4vh) scale(0.95); }
    100% { transform: translate(-2vw, 5vh) scale(1.05); }
  }
  @keyframes orb2 {
    0%   { transform: translate(0, 0) scale(1); }
    40%  { transform: translate(5vw, -3vh) scale(1.1); }
    70%  { transform: translate(2vw, 4vh) scale(0.92); }
    100% { transform: translate(6vw, -5vh) scale(1.06); }
  }
  @keyframes orb3 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50%  { transform: translate(-6vw, -4vh) scale(1.15); opacity: 1; }
    100% { transform: translate(4vw, 5vh) scale(0.88); opacity: 0.6; }
  }
  /* Subtle noise grain overlay for depth — pure CSS, no image */
  .hero-grain {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
  }
  .hero-grid-overlay {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 80% 58% at 50% 50%, transparent 0%, rgba(5,14,29,0.12) 56%, rgba(5,14,29,0.50) 100%),
      linear-gradient(180deg, rgba(255,255,255,0.035), transparent 26%, rgba(0,0,0,0.12));
  }
  .hero-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
    gap: 5rem; align-items: center; max-width: 1280px; margin: 0 auto; width: 100%;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 12px;
    background: none; border: 0;
    color: rgba(93,214,218,0.92); padding: 0; border-radius: 0;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 1.8px;
    text-transform: uppercase; margin-bottom: 1.5rem;
    width: fit-content;
  }
  .hero-badge::before {
    content: ''; width: 34px; height: 1px; background: var(--teal);
    border-radius: 0;
  }
  .hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.55rem, 4.2vw, 4.55rem);
    font-weight: 800; line-height: 1.1;
    color: var(--white); letter-spacing: 0;
    margin-bottom: 1.25rem;
  }
  .hero h1 em { font-style: normal; color: var(--teal); }
  .hero p {
    font-size: 1.12rem; line-height: 1.7;
    color: rgba(255,255,255,0.72); max-width: 590px;
    margin-bottom: 2.5rem; font-weight: 300;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-cyan); color: var(--navy);
    padding: 0.92rem 1.45rem; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; transition: all 0.2s;
    box-shadow: 0 10px 26px rgba(57,192,197,0.24);
  }
  .btn-primary:hover { filter: brightness(0.96); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(57,192,197,0.30); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.8);
    padding: 0.92rem 1.45rem; border-radius: var(--radius-sm);
    font-weight: 700; font-size: 0.95rem;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
  .hero-stats {
    display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .stat { display: flex; flex-direction: column; gap: 4px; }
  .stat-num { font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
  .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.62); font-weight: 400; letter-spacing: 0.3px; }

  /* Hero right card */
  .hero-card {
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.64);
    border-radius: 18px; padding: 0;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 28px 80px rgba(2,10,24,0.22);
  }
  .hero-card::before {
    content: ''; position: absolute; inset: 0 0 auto; height: 5px;
    background: var(--brand-gradient);
  }
  .hero-card-label {
    font-size: 0.75rem; font-weight: 800; letter-spacing: 1px;
    text-transform: uppercase; color: var(--brand-blue); margin-bottom: 0.75rem;
  }
  .hero-card-head { padding: 2rem 2rem 1.4rem; border-bottom: 1px solid var(--border); }
  .hero-card-title {
    font-family: 'Sora', sans-serif; font-size: 1.35rem; line-height: 1.25;
    color: var(--navy); font-weight: 800; margin-bottom: 0.55rem;
  }
  .hero .hero-card-copy {
    color: var(--gray-500); font-size: 0.9rem; line-height: 1.6;
    max-width: 310px; margin-bottom: 0; font-weight: 400;
  }
  .hero-card-body { padding: 1.45rem 2rem 1.7rem; }
  .coverage-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
  .coverage-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--gray-700); font-size: 0.92rem; font-weight: 600;
  }
  .coverage-list li .icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(0,201,167,0.15); border: 1px solid rgba(0,201,167,0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
  }
  /* Flat SVG icon in hero coverage list */
  .svg-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(13,98,172,0.08); border: 1px solid rgba(13,98,172,0.14);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--teal); padding: 8px;
  }
  .svg-icon svg { width: 100%; height: 100%; }
  /* Flat SVG icon in value cards */
  .card-icon svg { width: 26px; height: 26px; color: var(--teal); }
  /* Flat SVG icon in coverage grid */
  .coverage-emoji {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--gray-100); border: 1.5px solid var(--gray-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-blue); padding: 10px;
    transition: background 0.25s, border-color 0.25s;
  }
  .coverage-card:hover .coverage-emoji { background: rgba(57,192,197,0.12); border-color: rgba(57,192,197,0.25); color: var(--teal); }
  .coverage-emoji svg { width: 100%; height: 100%; }
  /* News placeholder SVG icon */
  .ph-icon-svg { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
  .ph-icon-svg svg { width: 36px; height: 36px; color: var(--gray-500); opacity: 0.5; }
  .hero-card-cta {
    margin-top: 1.5rem; padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .hero-card-cta span { min-width: 0; font-size: 0.8rem; line-height: 1.45; color: var(--gray-500); }
  .hero-card-cta .btn-mini { flex: 0 0 auto; min-width: 130px; text-align: center; }
  .btn-mini {
    background: var(--navy); color: var(--white);
    padding: 0.62rem 1rem; border-radius: var(--radius-sm);
    font-size: 0.82rem; font-weight: 700;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-mini:hover { filter: brightness(1.1); }
  @media (max-width: 520px) {
    .hero-card-cta { align-items: stretch; flex-direction: column; }
    .hero-card-cta .btn-mini { width: 100%; }
  }

  /* ── SECTIONS ── */
  section { padding: 96px 5%; }
  .section-inner { max-width: 1280px; margin: 0 auto; }
  .section-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.72rem; font-weight: 800; letter-spacing: 1.8px;
    text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
  }
  .section-eyebrow::before {
    content: ''; width: 28px; height: 1px; background: currentColor;
    opacity: 0.75; flex-shrink: 0;
  }
  .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; letter-spacing: 0;
    color: var(--navy); line-height: 1.15;
    margin-bottom: 1rem;
  }
  .section-sub {
    font-size: 1.05rem; color: var(--gray-500);
    max-width: 540px; line-height: 1.7; font-weight: 300;
  }

  /* ── VALUE PROPS ── */
  .value-section { background: var(--white); }
  .founder-quote {
    margin-top: 2.5rem;
    max-width: 820px;
    padding: 1.5rem 0 0 1.5rem;
    border-left: 3px solid var(--brand-cyan);
  }
  .founder-quote p {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    line-height: 1.55;
    color: var(--navy);
    font-weight: 600;
  }
  .founder-quote footer {
    background: none;
    border: 0;
    padding: 0;
    margin-top: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .value-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 4rem;
  }
  .value-card {
    background: var(--white);
    padding: 2rem; border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.25s; cursor: default;
    position: relative; overflow: hidden;
  }
  .value-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--teal); transform: scaleX(0);
    transform-origin: left; transition: transform 0.3s;
  }
  .value-card:hover { border-color: rgba(57,192,197,0.36); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
  .value-card:hover::before { transform: scaleX(1); }
  .card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--off-white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.5rem;
    color: var(--teal); padding: 12px;
  }
  .card-icon svg { width: 100%; height: 100%; }
  .value-card h3 {
    font-family: 'Sora', sans-serif; font-size: 1.1rem;
    font-weight: 700; margin-bottom: 0.75rem; color: var(--navy);
  }
  .value-card p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; font-weight: 300; }

  /* ── CYBER SECTION ── */
  .cyber-section {
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  .cyber-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(57,192,197,0.1) 0%, transparent 70%);
  }
  .cyber-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    max-width: 1280px; margin: 0 auto;
  }
  .cyber-inner .section-title { color: var(--white); }
  .cyber-inner .section-sub { color: rgba(255,255,255,0.5); }
  .cyber-features { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .cyber-features li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.5;
  }
  .check { color: var(--teal); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
  .cyber-cta-group { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

  /* Cyber visual */
  .cyber-visual {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px; padding: 2rem;
    box-shadow: 0 24px 70px rgba(0,0,0,0.18);
  }
  .risk-meter-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.4); margin-bottom: 1.5rem; }
  .threat-items { display: flex; flex-direction: column; gap: 1rem; }
  .threat-item { display: flex; flex-direction: column; gap: 6px; }
  .threat-header { display: flex; justify-content: space-between; align-items: center; }
  .threat-name { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }
  .threat-pct { font-size: 0.8rem; font-weight: 700; }
  .threat-bar-bg { height: 6px; background: rgba(255,255,255,0.08); border-radius: 100px; }
  .threat-bar { height: 6px; border-radius: 100px; transition: width 1s ease; }
  .bar-high { background: var(--coral); width: 78%; }
  .bar-med { background: #FFB547; width: 54%; }
  .bar-low { background: var(--teal); width: 32%; }
  .cyber-note { margin-top: 1.5rem; padding: 1rem 1.25rem; background: rgba(0,201,167,0.1); border: 1px solid rgba(0,201,167,0.2); border-radius: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
  .cyber-note strong { color: var(--teal); }

  /* ── COVERAGE GRID ── */
  .coverage-section { background: var(--off-white); }
  .coverage-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem; margin-top: 3.5rem;
  }
  .coverage-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1.75rem; border: 1px solid var(--border);
    transition: all 0.25s; text-decoration: none; color: inherit;
    display: flex; flex-direction: column; gap: 0.75rem;
  }
  .coverage-card:hover { border-color: var(--brand-cyan); box-shadow: var(--shadow); transform: translateY(-3px); }
  .coverage-card .emoji { font-size: 1.75rem; }
  .coverage-card h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
  .coverage-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.55; font-weight: 300; flex: 1; }
  .coverage-card .arrow { font-size: 0.85rem; color: var(--teal); font-weight: 600; margin-top: 0.5rem; }

  /* ── WHITE GLOVE ── */
  .whiteglove-section { background: var(--white); }
  .wg-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
    max-width: 1280px; margin: 0 auto;
  }
  .wg-visual {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .wg-stat-card {
    background: var(--off-white); border-radius: var(--radius);
    padding: 1.75rem; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0.5rem;
  }
  .wg-stat-card.accent { background: var(--navy); border-color: var(--navy); }
  .wg-stat-card .num {
    font-family: 'Sora', sans-serif; font-size: 2rem;
    font-weight: 800; color: var(--navy); letter-spacing: -1px;
  }
  .wg-stat-card.accent .num { color: var(--teal); }
  .wg-stat-card .lbl { font-size: 0.82rem; color: var(--gray-500); font-weight: 400; }
  .wg-stat-card.accent .lbl { color: rgba(255,255,255,0.5); }
  .wg-stat-card.tall { grid-row: span 2; justify-content: flex-end; background: var(--brand-gradient); border-color: transparent; }
  .wg-stat-card.tall .num { color: var(--white); font-size: 2.5rem; }
  .wg-stat-card.tall .lbl { color: rgba(255,255,255,0.65); }
  .wg-features { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
  .wg-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--gray-700); line-height: 1.5; }
  .wg-features .dot2 { width: 8px; height: 8px; background: var(--brand-gradient); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

  /* ── NEWS ── */
  .news-section { background: var(--off-white); }
  .news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; margin-top: 3.5rem;
  }
  .news-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; border: 1px solid var(--border);
    transition: all 0.25s;
    text-decoration: none; color: inherit; display: block;
  }
  .news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
  .news-tag {
    display: inline-block; padding: 4px 10px; border-radius: 100px;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    text-transform: uppercase; background: rgba(0,201,167,0.1); color: var(--teal);
    margin-bottom: 0.75rem;
  }
  .news-body { padding: 1.75rem; }
  .news-body h3 { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 0.75rem; }
  .news-body p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; font-weight: 300; }
  .news-footer { padding: 1rem 1.75rem; border-top: 1px solid var(--gray-100); font-size: 0.8rem; color: var(--gray-500); }

  /* ── CTA BANNER ── */
  .cta-section {
    background: var(--navy);
    padding: 80px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(57,192,197,0.12) 0%, transparent 70%);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
  .cta-section h2 { font-family: 'Sora', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 1rem; }
  .cta-section p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2.5rem; font-weight: 300; }
  .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary-lg {
    background: var(--brand-gradient); color: var(--white);
    padding: 1rem 2.5rem; border-radius: 100px;
    font-weight: 700; font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
    box-shadow: 0 8px 24px rgba(57,192,197,0.35);
  }
  .btn-primary-lg:hover { filter: brightness(1.1); transform: translateY(-2px); }
  .btn-ghost-lg {
    border: 1.5px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.75);
    padding: 1rem 2.5rem; border-radius: 100px;
    font-weight: 500; font-size: 1rem;
    text-decoration: none; transition: all 0.2s;
  }
  .btn-ghost-lg:hover { border-color: var(--teal); color: var(--teal); }

  /* ── RISK SNAPSHOT MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 500;
    display: none; align-items: center; justify-content: center;
    padding: 1.5rem;
    background: rgba(5,14,29,0.62);
    backdrop-filter: blur(12px);
  }
  .modal-overlay.open { display: flex; }
  .risk-modal {
    width: min(760px, 100%);
    max-height: min(760px, calc(100vh - 3rem));
    overflow: auto;
    background: var(--white);
    border: 1px solid rgba(255,255,255,0.72);
    border-radius: 18px;
    box-shadow: 0 32px 90px rgba(2,10,24,0.34);
  }
  .modal-head {
    position: sticky; top: 0; z-index: 1;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
    padding: 1.6rem 1.75rem 1.25rem;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
  }
  .modal-eyebrow {
    font-size: 0.72rem; font-weight: 800; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--brand-blue); margin-bottom: 0.5rem;
  }
  .modal-title {
    font-family: 'Sora', sans-serif; font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    line-height: 1.18; color: var(--navy); margin-bottom: 0.4rem;
  }
  .modal-copy { color: var(--gray-500); line-height: 1.55; font-size: 0.95rem; max-width: 560px; }
  .modal-close {
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid var(--border); background: var(--surface-muted);
    color: var(--navy); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s, border-color 0.2s;
  }
  .modal-close:hover { background: var(--white); border-color: var(--brand-cyan); }
  .modal-close svg { width: 18px; height: 18px; }
  .risk-form { padding: 1.75rem; }
  .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.45rem; }
  .form-field.full { grid-column: 1 / -1; }
  .form-field label,
  .choice-group legend {
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.4px;
    color: var(--navy); text-transform: uppercase;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%; border: 1px solid var(--border); border-radius: 10px;
    background: #F8FBFE; color: var(--navy);
    padding: 0.82rem 0.9rem;
    font: inherit; font-size: 0.95rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .form-field textarea { min-height: 92px; resize: vertical; }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--brand-cyan); background: var(--white);
    box-shadow: 0 0 0 4px rgba(57,192,197,0.12);
    outline: none;
  }
  .choice-group {
    grid-column: 1 / -1;
    border: 1px solid var(--border); border-radius: 14px;
    padding: 0.82rem 0.9rem 0.9rem; margin: 0;
    background: linear-gradient(180deg, #FBFDFF 0%, #F5F9FD 100%);
  }
  .choice-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem; margin-top: 0.7rem;
  }
  .choice-chip {
    position: relative;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
    min-height: 36px;
    border: 1px solid var(--border); border-radius: 10px;
    background: var(--white); color: var(--gray-700);
    padding: 0.48rem 0.62rem; font-size: 0.82rem; font-weight: 800;
    cursor: pointer; user-select: none;
    text-align: center;
    transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  }
  .choice-chip input {
    position: absolute; opacity: 0; pointer-events: none;
  }
  .choice-chip::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--gray-300);
    box-shadow: 0 0 0 3px rgba(194,208,224,0.18);
    flex-shrink: 0;
  }
  .choice-chip:has(input:checked) {
    background: rgba(57,192,197,0.12);
    border-color: rgba(57,192,197,0.55);
    color: #005E62;
    box-shadow: 0 8px 20px rgba(57,192,197,0.10);
  }
  .choice-chip:has(input:checked)::before {
    background: var(--brand-cyan);
    box-shadow: 0 0 0 3px rgba(57,192,197,0.18);
  }
  .choice-chip:focus-within {
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px rgba(57,192,197,0.12);
  }
  .modal-actions {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
    margin-top: 1.5rem; padding-top: 1.25rem;
    border-top: 1px solid var(--border);
  }
  .modal-note { color: var(--gray-500); font-size: 0.82rem; line-height: 1.45; }
  .modal-submit {
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-cyan); color: var(--navy);
    padding: 0.9rem 1.25rem; border-radius: var(--radius-sm);
    font-weight: 800; font-size: 0.95rem;
    box-shadow: 0 10px 26px rgba(57,192,197,0.22);
    transition: transform 0.2s, filter 0.2s;
    white-space: nowrap;
  }
  .modal-submit:hover { transform: translateY(-1px); filter: brightness(0.96); }
  body.modal-open { overflow: hidden; }

  /* Compact cyber quote form used by the homepage's cyber-specific CTA. */
  .cyber-quote-form { padding: 1.75rem; }
  .cyber-quote-form > h2 { display: none; }
  .cyber-quote-form .wpcf7-form p { margin: 0; }
  .cyber-quote-form .wpcf7-form > p:first-of-type { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .75rem .9rem; align-items: center; }
  .cyber-quote-form .wpcf7-form > p:first-of-type > br { display: none; }
  .cyber-quote-form .wpcf7-form-control-wrap { display: block; min-width: 0; margin: 0; }
  .cyber-quote-form input:not([type='submit']), .cyber-quote-form select, .cyber-quote-form textarea { width: 100%; min-height: 48px; padding: .82rem .9rem; border: 1px solid var(--border); border-radius: 10px; background: #f8fbfe; color: var(--navy); font: inherit; }
  .cyber-coverage-field { grid-column: 2; grid-row: 4; display: flex; flex-direction: column; gap: .4rem; align-self: stretch; }
  .cyber-coverage-field label { color: var(--navy); font-size: .82rem; font-weight: 700; }
  .cyber-quote-form input[type='submit'] { min-height: 48px; padding: .9rem 1.25rem; border: 0; border-radius: 8px; background: var(--brand-cyan); color: var(--navy); font: inherit; font-size: .95rem; font-weight: 800; cursor: pointer; }
  @media (max-width: 620px) {
    .cyber-quote-form { padding: 1.1rem 1.2rem 1.25rem; }
    .cyber-quote-form .wpcf7-form > p:first-of-type { grid-template-columns: 1fr; gap: .65rem; }
    .cyber-coverage-field { grid-column: 1; grid-row: auto; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy-mid);
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo-block { display: flex; flex-direction: column; gap: 1rem; }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  .footer-logo svg { flex-shrink: 0; }
  .footer-logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 1.2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #39C0C5 0%, #43B3E6 55%, #4579BC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .footer-tagline { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 200px; }

  .footer-col-title {
    font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--teal);
    margin-bottom: 1.25rem;
  }
  .footer-address { display: flex; flex-direction: column; gap: 0.4rem; }
  .footer-address .biz-name { font-size: 0.88rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
  .footer-address p { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.6; }
  .footer-address a { font-size: 0.82rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; display: block; margin-top: 0.2rem; }
  .footer-address a:hover { color: var(--teal); }
  .footer-address .phone-highlight {
    font-size: 0.88rem; font-weight: 600; color: var(--brand-sky);
    text-decoration: none; margin-top: 0.5rem; display: block;
  }
  .footer-address .phone-highlight:hover { color: var(--teal-light); }

  .footer-links-col { display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-links-col a { font-size: 0.85rem; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
  .footer-links-col a:hover { color: var(--teal); }

  .footer-hipaa {
    font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.6;
  }
  .footer-hipaa a { color: rgba(255,255,255,0.55); text-decoration: underline; transition: color 0.2s; }
  .footer-hipaa a:hover { color: var(--teal); }

  .social-icons { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
  .social-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem;
    transition: all 0.2s;
  }
  .social-icon:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 1.75rem; gap: 1rem; flex-wrap: wrap;
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--teal); }

  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-logo-block { grid-column: span 4; }
  }
  @media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-logo-block { grid-column: span 2; }
    .modal-overlay { padding: 0.75rem; align-items: flex-end; }
    .risk-modal { max-height: calc(100vh - 1.5rem); border-radius: 16px; }
    .modal-head, .risk-form { padding: 1.25rem; }
    .form-grid { grid-template-columns: 1fr; }
    .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .modal-actions { flex-direction: column; align-items: stretch; }
    .modal-submit { width: 100%; }
  }

  /* ── IMAGE PLACEHOLDERS ── */
  .img-placeholder {
    background: linear-gradient(135deg, var(--gray-100) 0%, #DDE4EE 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: var(--gray-500); font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    position: relative; overflow: hidden; width: 100%; height: 100%;
  }
  .img-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(
      45deg, transparent, transparent 12px,
      rgba(10,22,40,0.03) 12px, rgba(10,22,40,0.03) 13px
    );
  }
  .img-placeholder .ph-icon { font-size: 2rem; opacity: 0.35; position: relative; z-index: 1; }
  .img-placeholder .ph-label { position: relative; z-index: 1; opacity: 0.5; }
  .news-img-wrap { height: 200px; width: 100%; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
  .news-img-wrap img {
    width: 100%; height: 100%; display: block; object-fit: cover;
    transition: transform 0.35s ease;
  }
  .news-img-fallback {
    display: grid; place-items: center; width: 100%; height: 100%; padding: 1.5rem;
    background: linear-gradient(135deg, var(--navy), var(--brand-blue));
    color: var(--white); font-family: 'Sora', sans-serif; font-size: 0.9rem;
    font-weight: 800; letter-spacing: 0.08em; text-align: center; text-transform: uppercase;
  }
  .news-card:hover .news-img-wrap img { transform: scale(1.04); }
  .news-visual {
    height: 100%; padding: 1.25rem;
    background:
      linear-gradient(135deg, rgba(13,30,53,0.96), rgba(13,98,172,0.9)),
      var(--navy);
    color: var(--white); display: flex; flex-direction: column; justify-content: space-between;
  }
  .news-visual.soft {
    background: linear-gradient(135deg, #F8FBFE, #E8F4FA);
    color: var(--navy);
  }
  .news-visual-label {
    display: inline-flex; width: fit-content; align-items: center;
    border: 1px solid rgba(255,255,255,0.18); border-radius: 999px;
    padding: 0.32rem 0.65rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.8px;
    text-transform: uppercase;
  }
  .news-visual.soft .news-visual-label { border-color: var(--border); color: var(--brand-blue); }
  .risk-lines { display: grid; gap: 0.6rem; }
  .risk-line {
    height: 10px; border-radius: 999px;
    background: rgba(255,255,255,0.14); overflow: hidden;
  }
  .risk-line span { display: block; height: 100%; border-radius: inherit; background: var(--brand-cyan); }
  .news-visual.soft .risk-line { background: rgba(13,98,172,0.10); }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    background: var(--navy); padding: 100px 0;
    position: relative; overflow: hidden;
  }
  .testimonials-section::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 50% 70% at 10% 50%, rgba(57,192,197,0.09) 0%, transparent 60%),
      radial-gradient(ellipse 40% 60% at 90% 50%, rgba(69,121,188,0.07) 0%, transparent 60%);
  }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; position: relative; z-index: 1; }
  .testimonials-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem;
  }
  .testimonials-header .section-title { color: var(--white); margin-bottom: 0; }
  .rating-badge {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,201,167,0.12); border: 1px solid rgba(0,201,167,0.25);
    padding: 10px 20px; border-radius: 100px; white-space: nowrap;
  }
  .stars { color: #FFB547; font-size: 1rem; letter-spacing: 2px; }
  .rating-text { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.65); }

  .testimonials-track-wrap { overflow: hidden; }
  .testimonials-track {
    display: flex; gap: 1.5rem;
    animation: marquee 50s linear infinite;
    width: max-content;
    padding: 0.5rem 0 1rem;
  }
  .testimonials-track:hover { animation-play-state: paused; }
  .testimonials-track2 {
    animation-direction: reverse;
    animation-duration: 55s;
    margin-top: 1.5rem;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .t-card {
    width: 340px; flex-shrink: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius); padding: 1.75rem;
    transition: border-color 0.25s, background 0.25s;
  }
  .t-card:hover { border-color: rgba(0,201,167,0.35); background: rgba(255,255,255,0.08); }
  .t-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1.1rem; }
  .t-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    flex-shrink: 0; overflow: hidden;
    border: 2px solid rgba(0,201,167,0.3);
  }
  .t-name { font-family: 'Sora', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--white); line-height: 1.2; }
  .t-meta { font-size: 0.72rem; color: rgba(255,255,255,0.3); margin-top: 3px; }
  .t-stars { color: #FFB547; font-size: 0.8rem; margin-bottom: 0.85rem; letter-spacing: 2px; }
  .t-quote {
    font-size: 0.855rem; line-height: 1.72;
    color: rgba(255,255,255,0.58); font-weight: 300;
  }
  .t-quote::before { content: '\201C'; color: var(--teal); font-size: 1.4rem; line-height: 0; vertical-align: -0.35em; margin-right: 2px; }

  /* ── ACCESSIBILITY ── */
  .skip-nav {
    position: absolute; top: -100%; left: 1rem;
    background: var(--teal); color: white;
    padding: 0.6rem 1.2rem; border-radius: 0 0 8px 8px;
    font-weight: 600; font-size: 0.9rem; z-index: 9999;
    text-decoration: none; transition: top 0.2s;
  }
  .skip-nav:focus { top: 0; }
  :focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
  :focus:not(:focus-visible) { outline: none; }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
  /* ── V WATERMARK ── */
  .hero-v-watermark {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
    z-index: 0;
  }
  .hero-v-watermark svg {
    width: 70%; max-width: 680px; height: auto;
    opacity: 0.07;
    will-change: transform, opacity;
    animation: v-breathe 8s ease-in-out infinite;
  }
  @keyframes v-breathe {
    0%   { transform: scale(1)    rotate(0deg);    opacity: 0.07;  }
    25%  { transform: scale(1.12) rotate(1.5deg);  opacity: 0.13;  }
    50%  { transform: scale(1.18) rotate(0deg);    opacity: 0.07;  }
    75%  { transform: scale(1.12) rotate(-1.5deg); opacity: 0.13;  }
    100% { transform: scale(1)    rotate(0deg);    opacity: 0.07;  }
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-badge { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.2s; }
  .hero p { animation-delay: 0.3s; }
  .hero-actions { animation-delay: 0.4s; }
  .hero-stats { animation-delay: 0.5s; }
  .hero-card { animation: fadeUp 0.7s ease 0.3s both; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero-inner, .cyber-inner, .wg-inner { grid-template-columns: 1fr; }
    .hero-card { display: none; }
    .value-grid, .coverage-grid, .news-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
  }
  @media (max-width: 600px) {
    .value-grid, .coverage-grid, .news-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .wg-visual { grid-template-columns: 1fr 1fr; }
    section { padding: 72px 5%; }
    .hero { padding-top: 112px; }
  }

  /* ── BACK TO TOP ── */
  .btt {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--brand-gradient);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(57,192,197,0.35);
    z-index: 200;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.2s;
    pointer-events: none;
  }
  .btt.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .btt:hover {
    box-shadow: 0 8px 28px rgba(57,192,197,0.5);
    transform: translateY(-2px);
  }
  .btt svg {
    width: 18px; height: 18px;
    color: white; flex-shrink: 0;
  }
  @media (max-width: 600px) {
    .btt { bottom: 1.25rem; right: 1.25rem; width: 40px; height: 40px; }
    .btt svg { width: 16px; height: 16px; }
  }
