/* Keystrike — main.css */
/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Serif:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap");


  :root {
    --navy:       #041E28;
    --dark-teal:  #0A3746;
    --teal:       #167F8B;
    --teal-hover: #0D6D77;
    --slate:      #4A5D65;
    --slate-light:#7C959D;
    --ice:        #E2F5F8;
    --ice-section:#EDF7FA;
    --silver:     #B6BCBF;
    --white:      #FFFFFF;
    --off-white:  #F6F8F9;
    --text-primary:  #041E28;
    --text-muted:    #4A5D65;
    --text-light:    #7C959D;
    --border:        #DDE4E7;
    --border2:       #B6BCBF;
    --shadow-sm: 0 1px 3px rgba(4,30,40,0.06), 0 1px 2px rgba(4,30,40,0.04);
    --shadow-md: 0 4px 12px rgba(4,30,40,0.08), 0 2px 4px rgba(4,30,40,0.04);
    --font-sans:  'IBM Plex Sans', sans-serif;
    --font-serif: 'IBM Plex Serif', serif;
    --font-mono:  'IBM Plex Mono', monospace;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--white);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
  }



  /* ── NAV ── */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: var(--white); border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 40px;
    height: 68px; display: flex; align-items: center;
  }
  .nav-logo {
    font-family: var(--font-sans); font-size: 30px; font-weight: 600;
    color: var(--navy); text-decoration: none; letter-spacing: -0.03em;
    display: flex; align-items: center; flex-shrink: 0; margin-right: 48px;
  }
  .nav-links {
    display: flex; align-items: stretch; list-style: none; flex: 1; height: 100%;
  }
  .nav-links li { display: flex; align-items: center; }
  .nav-links a {
    color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 400;
    padding: 0 16px; height: 100%; display: flex; align-items: center;
    border-bottom: 2px solid transparent; transition: color 0.15s, border-color 0.15s;
  }
  .nav-links a:hover { color: var(--navy); border-bottom-color: var(--teal); }
  .nav-cta { margin-left: auto; display: flex; gap: 10px; flex-shrink: 0; }
  .nav-hamburger {
    display: none; margin-left: auto; background: none; border: none; cursor: pointer;
    padding: 8px; flex-direction: column; gap: 5px; flex-shrink: 0;
  }
  .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display: none; position: fixed; inset: 0;
    background: var(--white); z-index: 300; flex-direction: column;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav-header {
    height: 68px; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; flex-shrink: 0;
  }
  .mobile-nav-close { background: none; border: none; cursor: pointer; font-size: 24px; color: var(--text-muted); padding: 4px; line-height: 1; }
  .mobile-nav-links { list-style: none; padding: 16px 0; flex: 1; overflow-y: auto; }
  .mobile-nav-links li a {
    display: block; padding: 16px 24px; font-size: 17px; color: var(--text-primary);
    text-decoration: none; font-weight: 400; border-bottom: 1px solid var(--border);
    transition: background 0.15s;
  }
  .mobile-nav-links li a:hover { background: var(--off-white); }
  .mobile-nav-footer { padding: 24px; border-top: 1px solid var(--border); flex-shrink: 0; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 10px 22px; font-family: var(--font-sans); font-size: 14px; font-weight: 500;
    text-decoration: none; letter-spacing: 0.01em; cursor: pointer; border: none;
    transition: all 0.15s; white-space: nowrap;
  }
  .btn-primary { background: var(--teal); color: var(--white); padding: 12px 28px; }
  .btn-primary:hover { background: var(--teal-hover); }
  .btn-secondary {
    background: transparent; color: var(--teal); font-size: 14px; font-weight: 500;
    text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
    padding: 12px 0; border-bottom: 1px solid transparent; transition: border-color 0.15s;
    font-family: var(--font-sans);
  }
  .btn-secondary:hover { border-bottom-color: var(--teal); }
  .btn-outline { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
  .btn-outline:hover { background: var(--ice); }
  .btn-ghost {
    background: transparent; color: var(--text-muted); border: 1px solid var(--border2);
    font-size: 13px; padding: 9px 18px;
  }
  .btn-ghost:hover { border-color: var(--slate); color: var(--navy); }

  /* ── HERO ── */
  .hero {
    background: var(--dark-teal);
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
  }

  /* Video background */
  .hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  /* HTML5 video — notað þegar MP4 er til staðar */
  .hero-video-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
  }

  /* Image background */
  .hero-img-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    background-image:url('../images/hero-bg.jpg');
  }
  /* CSS fallback — animated gradient þegar ekkert video er til staðar */
  .hero-video-fallback {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(22,127,139,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 60% 80% at 20% 80%, rgba(10,55,70,0.6) 0%, transparent 55%),
      linear-gradient(135deg, #041E28 0%, #0A3746 50%, #0D5560 100%);
    background-size: 200% 200%;
    animation: gradientShift 12s ease infinite alternate;
  }

  @keyframes gradientShift {
    0%   { background-position: 0% 0%; }
    33%  { background-position: 60% 40%; }
    66%  { background-position: 30% 80%; }
    100% { background-position: 100% 100%; }
  }

  /* Teal overlay — yfir mynd */
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      135deg,
      rgba(4, 30, 40, 0.62) 0%,
      rgba(10, 55, 70, 0.52) 50%,
      rgba(22, 127, 139, 0.28) 100%
    );
  }

  .hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    position: relative; z-index: 2;
  }

  .scroll-cue {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.35;
    z-index: 2;
  }
  .scroll-cue-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: scrollcue 2s ease infinite;
  }
  .scroll-cue-label {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }
  @keyframes scrollcue {
    0%   { opacity: 0.5; transform: scaleY(1);   transform-origin: top; }
    50%  { opacity: 1;   transform: scaleY(0.4); transform-origin: top; }
    100% { opacity: 0.5; transform: scaleY(1);   transform-origin: top; }
  }
  .hero-compliance { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
  .compliance-tag {
    font-family: var(--font-mono); font-size: 10px; font-weight: 500; padding: 4px 10px;
    letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid rgba(22,127,139,0.4); color: rgba(226,245,248,0.7);
    background: rgba(22,127,139,0.12);
  }
  .hero-headline {
    font-family: var(--font-sans); font-size: clamp(34px, 5vw, 64px); font-weight: 700;
    line-height: 1.08; color: var(--white); margin-bottom: 24px; letter-spacing: -0.035em;
    max-width: 820px;
  }
  .hero-headline span { color: #7DCDD4; font-weight: 600; }
  .hero-sub {
    font-size: 17px; color: rgba(226,245,248,0.78); max-width: 580px;
    line-height: 1.75; font-weight: 400; margin-bottom: 40px;
  }
  .hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

  /* ── SECTION SYSTEM ── */
  .section-white    { background: var(--white); }
  .section-offwhite { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .section-ice      { background: var(--ice-section); border-top: 1px solid rgba(22,127,139,0.15); border-bottom: 1px solid rgba(22,127,139,0.15); }
  .section-quote    { background: var(--ice); border-top: 1px solid rgba(22,127,139,0.2); border-bottom: 1px solid rgba(22,127,139,0.2); }
  .section-inner    { max-width: 1200px; margin: 0 auto; padding: 96px 40px; }

  .section-label {
    font-family: var(--font-mono); font-size: 10px; color: var(--teal);
    letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-sans); font-size: clamp(26px, 3vw, 40px); font-weight: 700;
    letter-spacing: -0.03em; color: var(--navy); line-height: 1.15; margin-bottom: 20px;
  }
  .section-body {
    font-size: 16px; color: var(--text-muted); max-width: 600px; line-height: 1.8; font-weight: 400;
  }

  /* ── PILLARS — clean, no icons ── */
  .pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
  .pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pillar {
    background: var(--white); border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s;
  }
  .pillar-see     { border-top-color: var(--teal); }
  .pillar-control { border-top-color: var(--dark-teal); }
  .pillar-prove   { border-top-color: var(--slate-light); }
  .pillar:hover   { box-shadow: var(--shadow-md); transform: translateY(-2px); }

  .pillar-heading { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.25; letter-spacing: -0.015em; }
  .pillar-text    { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

  /* ── QUOTE ── */
  .quote-inner {
    max-width: 1200px; margin: 0 auto; padding: 64px 40px;
    display: grid; grid-template-columns: 1fr 260px; gap: 64px; align-items: center;
  }
  .quote-text { font-family: var(--font-serif); font-size: 21px; color: var(--dark-teal); line-height: 1.65; font-style: normal; font-weight: 500; }
  .quote-attribution { border-left: 2px solid rgba(22,127,139,0.35); padding-left: 24px; }
  .quote-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
  .quote-org  { font-size: 12px; color: var(--slate-light); font-weight: 400; line-height: 1.5; }

  /* ── SESSION TIMELINE ── */
  .timeline-wrap {
    margin-top: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 36px 28px;
    box-shadow: var(--shadow-sm);
  }
  .timeline-label {
    font-family: var(--font-mono); font-size: 9px; color: var(--text-light);
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 28px;
  }
  .timeline-svg { width: 100%; height: auto; display: block; }
  .timeline-legend {
    display: flex; gap: 28px; margin-top: 20px; padding-top: 18px;
    border-top: 1px solid var(--border); flex-wrap: wrap;
  }
  .timeline-legend-item {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 10px; color: var(--text-light);
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .legend-swatch { width: 20px; height: 10px; flex-shrink: 0; }
  .legend-swatch-teal { background: rgba(22,127,139,0.15); border: 1px solid var(--teal); }
  .legend-swatch-grey { background: #E3E7E9; border: 1px solid var(--border2); }

  /* ── TABLES ── */
  .table-wrap { border: 1px solid var(--border); margin-top: 40px; overflow-x: auto; box-shadow: var(--shadow-sm); }
  .data-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 600px; }
  .data-table thead tr { background: var(--off-white); border-bottom: 1px solid var(--border); }
  .data-table th {
    padding: 13px 20px; text-align: left; font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate-light); font-weight: 400;
  }
  .data-table td {
    padding: 17px 20px; border-bottom: 1px solid var(--border);
    color: var(--text-muted); line-height: 1.55; vertical-align: top; font-size: 13.5px; font-weight: 400;
  }
  .data-table tr:last-child td { border-bottom: none; }
  .data-table tr:hover td { background: rgba(0,0,0,0.015); }
  .data-table td:first-child {
    font-family: var(--font-mono); font-size: 12px; color: var(--navy);
    font-weight: 500; white-space: nowrap; letter-spacing: 0.02em;
  }
  .data-table strong { color: var(--teal); font-weight: 500; }

  .compare-wrap { border: 1px solid var(--border); margin-top: 40px; overflow-x: auto; box-shadow: var(--shadow-sm); }
  .compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 480px; }
  .compare-table thead tr { border-bottom: 2px solid var(--border); }
  .compare-table th {
    padding: 15px 24px; text-align: left; font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--slate-light); font-weight: 400; background: var(--off-white);
  }
  .compare-table th.ks-col { background: var(--dark-teal); color: rgba(226,245,248,0.8); }
  .compare-table td {
    padding: 17px 24px; border-bottom: 1px solid var(--border);
    color: var(--text-muted); vertical-align: top; font-size: 13.5px; font-weight: 400;
  }
  .compare-table tr:last-child td { border-bottom: none; }
  .compare-table td:first-child {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-light); background: var(--off-white); font-weight: 400;
  }
  .compare-table td.ks-col {
    background: rgba(10,55,70,0.04); color: var(--navy); font-weight: 500;
    border-left: 2px solid var(--teal); border-right: 2px solid var(--teal);
  }

  /* ── PERSONA CARDS ── */
  .persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
  .persona-card {
    background: var(--white); border: 1px solid var(--border); padding: 32px 28px;
    box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s;
  }
  .persona-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .persona-role {
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--slate-light); margin-bottom: 14px;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
  }
  .persona-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 18px; line-height: 1.3; letter-spacing: -0.015em; }
  .persona-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .persona-list li {
    font-size: 14px; color: var(--text-muted); line-height: 1.6;
    padding-left: 14px; position: relative; font-weight: 400;
  }
  .persona-list li::before {
    content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 1px; background: var(--silver);
  }

  /* ── INDUSTRY GRID ── */
  .industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
  .industry-card {
    background: var(--white); border: 1px solid var(--border); padding: 28px 24px;
    box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, transform 0.2s;
  }
  .industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .industry-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; font-weight: 500; }
  .industry-name { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.25; letter-spacing: -0.015em; }
  .industry-text { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

  /* ── PROVE CARDS ── */
  .prove-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
  .prove-card { background: var(--white); border: 1px solid var(--border); padding: 32px 28px; box-shadow: var(--shadow-sm); }
  .prove-num { font-family: var(--font-mono); font-size: 10px; color: var(--teal); letter-spacing: 0.12em; margin-bottom: 16px; font-weight: 500; text-transform: uppercase; }
  .prove-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; letter-spacing: -0.015em; }
  .prove-text  { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }

  /* ── FAQ ── */
  .faq-list { border: 1px solid var(--border); margin-top: 40px; box-shadow: var(--shadow-sm); }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 28px; cursor: pointer; list-style: none; user-select: none;
    background: var(--white); transition: background 0.15s;
  }
  .faq-question:hover { background: var(--off-white); }
  .faq-q-text { font-size: 16px; color: var(--text-primary); font-weight: 600; line-height: 1.4; padding-right: 20px; letter-spacing: -0.01em; }
  .faq-toggle { font-family: var(--font-mono); font-size: 18px; color: var(--teal); flex-shrink: 0; width: 24px; text-align: center; transition: transform 0.2s; line-height: 1; }
  details[open] .faq-question .faq-toggle { transform: rotate(45deg); }
  details[open] .faq-question { background: var(--off-white); }
  .faq-answer { padding: 20px 28px 24px; background: var(--off-white); border-top: 1px solid var(--border); }
  .faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.8; font-weight: 400; max-width: 680px; }

  /* ── CTA ── */
  .cta-section { background: var(--dark-teal); padding: 80px 40px; text-align: center; }
  .cta-inner   { max-width: 600px; margin: 0 auto; }
  .cta-label   { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(22,127,139,0.8); margin-bottom: 20px; }
  .cta-title   { font-family: var(--font-sans); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: var(--white); letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.15; }
  .cta-sub     { font-size: 16px; color: rgba(182,188,191,0.85); margin-bottom: 40px; font-weight: 400; line-height: 1.75; }
  .cta-actions { display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
  .btn-cta-primary {
    background: var(--teal); color: var(--white); padding: 13px 32px;
    font-size: 14px; font-weight: 500; text-decoration: none;
    display: inline-flex; transition: background 0.15s; font-family: var(--font-sans);
  }
  .btn-cta-primary:hover { background: var(--teal-hover); }
  .btn-cta-text {
    color: rgba(226,245,248,0.6); font-size: 14px; text-decoration: none; font-weight: 400;
    border-bottom: 1px solid rgba(226,245,248,0.2); transition: color 0.15s, border-color 0.15s;
    font-family: var(--font-sans);
  }
  .btn-cta-text:hover { color: rgba(226,245,248,0.9); border-bottom-color: rgba(226,245,248,0.5); }
  .cta-contact { font-family: var(--font-mono); font-size: 11px; color: rgba(124,149,157,0.5); letter-spacing: 0.04em; }

  /* ── FOOTER ── */
  .footer-wrap { background: var(--navy); }
  footer { max-width: 1200px; margin: 0 auto; padding: 56px 40px 40px; }
  .footer-top {
    display: grid; grid-template-columns: 200px 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px;
  }
  .footer-logo    { font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
  .footer-tagline { font-size: 12px; color: rgba(124,149,157,0.6); line-height: 1.65; font-weight: 400; }
  .footer-col-title { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(124,149,157,0.45); margin-bottom: 16px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: rgba(124,149,157,0.7); text-decoration: none; font-weight: 400; transition: color 0.15s; }
  .footer-links a:hover { color: var(--white); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
  .footer-copy   { font-family: var(--font-mono); font-size: 10px; color: rgba(124,149,157,0.35); letter-spacing: 0.05em; }
  .footer-legal  { display: flex; gap: 24px; }
  .footer-legal a { font-family: var(--font-mono); font-size: 10px; color: rgba(124,149,157,0.35); text-decoration: none; letter-spacing: 0.04em; transition: color 0.15s; }
  .footer-legal a:hover { color: rgba(124,149,157,0.8); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .pillars, .persona-grid { grid-template-columns: 1fr 1fr; }
    .quote-inner { grid-template-columns: 1fr; gap: 28px; }
    .quote-attribution { border-left: none; border-top: 1px solid rgba(22,127,139,0.25); padding-left: 0; padding-top: 20px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .topbar { display: none; }
    .nav-inner { padding: 0 20px; }
    .nav-logo { margin-right: 0; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .hero { padding: 48px 20px 80px; min-height: calc(100vh - 68px); }
    .hero-sub { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .btn-primary { width: 100%; justify-content: center; }
    .section-inner { padding: 64px 20px; }
    .pillars, .pillar-grid, .persona-grid, .prove-grid, .testimonial-grid { grid-template-columns: 1fr !important; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
    .timeline-wrap { padding: 24px 20px 20px; }
    .quote-inner { padding: 48px 20px; }
    .cta-section { padding: 64px 20px; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .btn-cta-primary { text-align: center; justify-content: center; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 40px 20px 32px; }
    .stats-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .stats-grid > div { border-right: none !important; padding-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
    .stats-grid > div:last-child { border-bottom: none; padding-bottom: 0; }
  }
  @media (max-width: 960px) and (min-width: 769px) {
    .stats-grid { grid-template-columns: repeat(2,1fr) !important; }
    .stats-grid > div:nth-child(2n) { border-right: none !important; padding-right: 0 !important; }
  }
  @media (max-width: 560px) {
    .industry-grid { grid-template-columns: 1fr; }
    .compare-table thead { display: none; }
    .compare-table tbody tr { display: block; border: 1px solid var(--border); margin-bottom: 10px; background: var(--white); }
    .compare-table tbody tr:last-child { margin-bottom: 0; }
    .compare-table td { display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
    .compare-table td:last-child { border-bottom: none; }
    .compare-table td::before { content: attr(data-label); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); font-weight: 500; white-space: nowrap; flex-shrink: 0; padding-top: 2px; }
    .compare-table td:first-child { display: none; }
    .compare-table td.ks-col { border-left: none; border-right: none; border-top: 2px solid var(--teal); background: rgba(10,55,70,0.04); }
  }

  /* ── DROPDOWN MENU ── */
  .has-dropdown { position: relative; overflow: visible; }

  /* Transparent bridge fills the gap so hover stays alive */
  .has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    transform: translateY(-6px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(4,30,40,0.14), 0 2px 8px rgba(4,30,40,0.06);
    min-width: 300px;
    padding: 8px;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    pointer-events: none;
  }

  .has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-dropdown a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    border-bottom: none !important;
    text-decoration: none;
    transition: background 0.12s;
    text-align: left !important;
  }
  .nav-dropdown a:hover { background: var(--off-white); }

  .nav-dropdown-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
  }
  .nav-dropdown-sub {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 400;
  }

  .nav-dropdown-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4px 0 0;
  }

  .nav-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy) !important;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    border-radius: 0 0 12px 12px;
    background: var(--off-white);
    border-top: none;
  }
  .nav-dropdown-footer:hover { background: var(--ice-section); }

  /* Arrow indicator — snýst við hover */
  .has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 4px;
    margin-left: 5px;
    background: currentColor;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    opacity: 0.45;
    transition: transform 0.2s, opacity 0.2s;
    vertical-align: middle;
  }
  .has-dropdown:hover > a::after {
    transform: rotate(180deg);
    opacity: 0.9;
  }

/* ── DROPDOWN FIX ── */
.nav-dropdown a { display: block !important; text-align: left !important; }
.nav-dropdown-label, .nav-dropdown-sub { text-align: left !important; }
.nav-hidden { display: none !important; }
.nav-dropdown a.nav-hidden { display: none !important; }

.pillar-bullets   { margin: 10px 0 0 0; padding: 0; list-style: none; }
.pillar-bullets li { font-size: 14px; color: var(--text-muted); padding: 3px 0; }
.pillar-bullets li::before { content: "\2713  "; color: var(--teal); font-weight: 600; }

/* ── STAT NUMBERS ── */
.stat-num {
  display: inline-block;
}

/* ── STATS SECTION ── */
.stats-section { background: var(--navy); padding: 40px 24px; }
.stats-section-inner { max-width: 1100px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-serif); font-size: 36px; font-weight: 500; color: var(--white); margin-bottom: 6px; display: block; }
.stat-desc   { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.stat-source { font-size: 10px; color: rgba(255,255,255,0.35); margin-top: 6px; letter-spacing: 0.04em; }

/* ── MISSION SECTION ── */
.mission-section { padding: 56px 24px; background: var(--white); text-align: center; }
.mission-inner { max-width: 720px; margin: 0 auto; }
.mission-divider { border: none; border-top: 1px solid var(--border); }
.mission-text { font-family: var(--font-serif); font-size: 20px; line-height: 1.7; color: var(--dark-teal); margin: 40px 0; }

/* ── QUOTE SECTION ── */
.quote-section { background: #EEF3F5; padding: 0 24px; }
.quote-section-inner { max-width: 1100px; margin: 0 auto; }
.quote-section-divider { border: none; border-top: 1px solid #C5D0D6; }
.quote-flex { display: flex; align-items: center; gap: 48px; padding: 48px 0; }
.quote-flex-text { font-family: var(--font-serif); font-size: 19px; line-height: 1.7; color: var(--dark-teal); margin: 0; flex: 1; }
.quote-flex-attr { display: flex; align-items: stretch; gap: 24px; flex-shrink: 0; }
.quote-flex-line { width: 1px; background: #8FAAB5; align-self: stretch; }
.quote-attr-name { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.quote-attr-org  { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── TWO COL INTRO ── */
.two-col-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.two-col-video {
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.two-col-video iframe,
.two-col-video video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

/* ── PILLAR LABEL ── */
.pillar-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  font-weight: 500;
}

/* ── RESPONSIVE ADDITIONS ── */
@media (max-width: 768px) {
  .mission-text { font-size: 17px; }
  .quote-flex { flex-direction: column; gap: 24px; }
  .quote-flex-line { display: none; }
  .quote-flex-attr { border-top: 1px solid rgba(22,127,139,0.25); padding-top: 20px; width: 100%; }
  .two-col-intro { grid-template-columns: 1fr; gap: 32px; }
  .two-col-video { order: -1; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-item { border-right: none; padding: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
  .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
  .stats-section { padding: 40px 20px; }
  .mission-section { padding: 40px 20px; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE TABLE FIX ── */
/* Ensure table containers scroll horizontally */
.table-wrap, .compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── VIDEO PLACEHOLDER — show on all sizes ── */
/* Override the display:none we had before */
@media (max-width: 768px) {
  .two-col-video {
    display: flex !important;
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
}

/* ── COMPARE TABLE MOBILE — simpler stacked view ── */
@media (max-width: 640px) {
  .compare-table {
    min-width: unset;
    width: 100%;
  }
  .compare-table thead { display: none; }
  .compare-table tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid var(--border);
    margin-bottom: 8px;
  }
  .compare-table td {
    display: block;
    padding: 12px 14px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    font-size: 13px;
  }
  .compare-table td:last-child { border-right: none; }
  .compare-table td:first-child { display: none; }
  .compare-table td.ks-col {
    border-left: none;
    border-right: none;
    border-top: 2px solid var(--teal);
  }
  .compare-table td::before {
    display: block;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    content: attr(data-label);
  }
}

/* ── DATA TABLE MOBILE — allow scroll ── */
@media (max-width: 768px) {
  .table-wrap { overflow-x: auto; }
  .data-table { min-width: 560px; }
}

/* ── COMPLIANCE TAG — dark variant for light backgrounds ── */
.compliance-tag-dark {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(22,127,139,0.35);
  color: var(--dark-teal);
  background: rgba(22,127,139,0.08);
  display: inline-block;
}

/* ── RESPONSIVE GRID UTILITIES ── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-2-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mt-40 { margin-top: 40px; }

/* Testimonial grid */
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
.testimonial-card { background: var(--ice-section); border: 1px solid var(--border); padding: 36px 32px; }
.testimonial-text { font-family: var(--font-serif); font-size: 17px; line-height: 1.75; color: var(--dark-teal); margin-bottom: 24px; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.testimonial-org  { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.team-card { background: var(--white); border: 1px solid var(--border); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.team-avatar { width: 60px; height: 60px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 16px; }
.team-name  { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.015em; }
.team-role  { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; font-weight: 500; }
.team-bio   { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; font-weight: 400; }

@media (max-width: 768px) {
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid-3, .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .grid-2, .testimonial-grid { grid-template-columns: 1fr; gap: 20px; }
  .grid-2-tight { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* ── CARD BASE — proper flex container ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.card-meta   { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.card-label  { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--teal); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.card-title  { font-size: 17px; font-weight: 600; color: var(--text-primary); margin-bottom: 12px; line-height: 1.4; }
.card-body   { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.card-link   { font-size: 13px; color: var(--teal); font-weight: 500; text-decoration: none; display: inline-block; margin-top: 8px; }
.card-link:hover { text-decoration: underline; }
.card-note   { font-size: 12px; color: var(--text-light); font-family: var(--font-mono); margin-top: 12px; }

/* Platform component cards — numbered */
.component-card { background: var(--white); border: 1px solid var(--border); padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.component-num  { font-family: var(--font-mono); font-size: 11px; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 14px; font-weight: 500; }
.component-title{ font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.component-body { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 400; }
.component-note { font-size: 11px; color: var(--text-light); font-family: var(--font-mono); margin-top: 16px; line-height: 1.5; }

/* Grid with equal height cards */
.grid-3.equal-h,
.grid-2.equal-h,
.pillar-grid.equal-h { align-items: stretch; }

/* ── SECTION LABEL — more prominent ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── PILLAR CARD — proper card container ── */
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--border);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pillar-card .pillar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  font-weight: 500;
}
.pillar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* Section intro text */
.section-intro {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── PILLAR CARD LABEL — more visible ── */
.pillar-card .pillar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal) !important;
  margin-bottom: 10px;
  font-weight: 700;
  border-bottom: 1px solid rgba(22,127,139,0.2);
  padding-bottom: 10px;
}

/* ── SECTION INTRO — spacing before grid ── */
.section-intro {
  margin-bottom: 40px !important;
}

/* ── PILLAR GRID / GRID SPACING ── */
.pillar-grid,
.pillars {
  margin-top: 48px;
}

/* ── NAV — fix crowding on mid screens ── */

/* Hamburger triggers earlier — 1024px instead of 768px */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { margin-right: 0; }
}

/* On larger screens — tighten nav link padding */
@media (min-width: 1025px) {
  .nav-links a { padding: 0 12px; font-size: 13.5px; }
  .nav-logo { font-size: 26px; margin-right: 32px; }
  .btn-ghost { padding: 8px 14px; font-size: 13px; }
}

@media (min-width: 1200px) {
  .nav-links a { padding: 0 16px; font-size: 14px; }
}

/* ── PILLAR LABEL — global fix for ALL .pillar variants ── */
.pillar-label,
.pillar .pillar-label,
.pillar-card .pillar-label {
  font-family: var(--font-mono) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--teal) !important;
  margin-bottom: 12px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(22,127,139,0.25) !important;
  display: block !important;
}




/* ═══════════════════════════════════════════
   DARK SECTIONS
   ═══════════════════════════════════════════ */

.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark .section-label { color: rgba(22,127,139,0.9); }
.section-dark .section-label::before { background: rgba(22,127,139,0.7); }
.section-dark .section-title { color: var(--white); }
.section-dark .section-body,
.section-dark .section-intro { color: rgba(182,188,191,0.85); }
.section-dark .pillar,
.section-dark .pillar-card,
.section-dark .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.section-dark .pillar-heading,
.section-dark .pillar-title,
.section-dark .card-title { color: var(--white); }
.section-dark .pillar-text,
.section-dark .card-body { color: rgba(182,188,191,0.8); }

.section-dark-teal {
  background: var(--dark-teal);
  color: var(--white);
}
.section-dark-teal .section-label { color: rgba(125,205,212,0.9); }
.section-dark-teal .section-label::before { background: rgba(125,205,212,0.7); }
.section-dark-teal .section-title { color: var(--white); }
.section-dark-teal .section-body,
.section-dark-teal .section-intro { color: rgba(226,245,248,0.8); }
.section-dark-teal .pillar,
.section-dark-teal .pillar-card,
.section-dark-teal .card {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
}
.section-dark-teal .pillar-heading,
.section-dark-teal .pillar-title,
.section-dark-teal .card-title { color: var(--white); }
.section-dark-teal .pillar-text,
.section-dark-teal .card-body { color: rgba(226,245,248,0.75); }











/* ═══════════════════════════════════════════
   HERO GRADIENTS — Vivid color glow, dark base
   Texti er alltaf læsilegur — base er alltaf #05-15 dark
   ═══════════════════════════════════════════ */

/* PLATFORM — cobalt blue glow */
.hero-platform .hero-img-bg {
  background-image:
    radial-gradient(ellipse 65% 60% at 75% 30%, rgba(50,100,255,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(20,50,140,0.4) 0%, transparent 55%),
    linear-gradient(145deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* SOLUTIONS — emerald green */
.hero-solutions .hero-img-bg {
  background-image:
    radial-gradient(ellipse 70% 55% at 30% 45%, rgba(0,180,100,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 35% 50% at 85% 75%, rgba(0,100,60,0.35) 0%, transparent 50%),
    linear-gradient(135deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* ABOUT — warm amber/gold */
.hero-about .hero-img-bg {
  background-image:
    radial-gradient(ellipse 65% 55% at 65% 35%, rgba(210,130,20,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 70%, rgba(160,80,10,0.35) 0%, transparent 55%),
    linear-gradient(150deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* RESOURCES — violet/purple */
.hero-resources .hero-img-bg {
  background-image:
    radial-gradient(ellipse 70% 55% at 40% 50%, rgba(140,60,220,0.5) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 80% 25%, rgba(90,30,160,0.35) 0%, transparent 50%),
    linear-gradient(140deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* FAQ — deep rose/crimson */
.hero-faq .hero-img-bg {
  background-image:
    radial-gradient(ellipse 60% 55% at 68% 40%, rgba(200,40,70,0.5) 0%, transparent 63%),
    radial-gradient(ellipse 40% 45% at 20% 70%, rgba(130,20,40,0.35) 0%, transparent 55%),
    linear-gradient(155deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* ROI — orange/coral */
.hero-roi .hero-img-bg {
  background-image:
    radial-gradient(ellipse 68% 55% at 60% 35%, rgba(220,100,30,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 35% 45% at 10% 75%, rgba(160,60,10,0.35) 0%, transparent 50%),
    linear-gradient(130deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* SUPPORT — slate steel blue */
.hero-support .hero-img-bg {
  background-image:
    radial-gradient(ellipse 60% 55% at 55% 45%, rgba(60,140,200,0.5) 0%, transparent 63%),
    radial-gradient(ellipse 35% 40% at 85% 20%, rgba(30,90,150,0.3) 0%, transparent 50%),
    linear-gradient(160deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* BANKING — cool sapphire */
.hero-banking .hero-img-bg {
  background-image:
    radial-gradient(ellipse 58% 60% at 25% 50%, rgba(30,80,200,0.5) 0%, transparent 62%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(15,50,140,0.3) 0%, transparent 50%),
    linear-gradient(170deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* GOVERNMENT — prussian blue, autoritatively */
.hero-government .hero-img-bg {
  background-image:
    radial-gradient(ellipse 65% 45% at 50% 25%, rgba(20,60,160,0.55) 0%, transparent 58%),
    radial-gradient(ellipse 45% 50% at 70% 75%, rgba(10,30,100,0.35) 0%, transparent 52%),
    linear-gradient(180deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* HEALTHCARE — cyan/aqua, clinical */
.hero-healthcare .hero-img-bg {
  background-image:
    radial-gradient(ellipse 72% 55% at 45% 45%, rgba(0,180,200,0.5) 0%, transparent 63%),
    radial-gradient(ellipse 35% 45% at 85% 75%, rgba(0,120,140,0.3) 0%, transparent 50%),
    linear-gradient(145deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* MANUFACTURING — burnt red/rust */
.hero-manufacturing .hero-img-bg {
  background-image:
    radial-gradient(ellipse 55% 60% at 72% 55%, rgba(180,60,20,0.55) 0%, transparent 62%),
    radial-gradient(ellipse 40% 40% at 15% 25%, rgba(120,30,10,0.35) 0%, transparent 50%),
    linear-gradient(200deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* DATA CENTERS — electric indigo */
.hero-datacenter .hero-img-bg {
  background-image:
    radial-gradient(ellipse 85% 38% at 50% 52%, rgba(80,50,230,0.5) 0%, transparent 58%),
    radial-gradient(ellipse 40% 50% at 15% 20%, rgba(50,30,160,0.35) 0%, transparent 50%),
    linear-gradient(135deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* MSSPS — teal/jade, distinct from healthcare */
.hero-mssps .hero-img-bg {
  background-image:
    radial-gradient(ellipse 62% 65% at 12% 38%, rgba(0,160,120,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 35% 40% at 80% 70%, rgba(0,100,80,0.3) 0%, transparent 50%),
    linear-gradient(120deg, rgba(4,14,22,0.82) 0%, rgba(8,16,28,0.78) 100%),
    url('../images/hero-bg-sub.jpg');
}

/* ── HERO HEADLINE — prevent bad line breaks ── */
.hero-headline {
  max-width: 760px;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}
@media (max-width: 768px) {
  .hero-headline { font-size: clamp(28px, 7vw, 42px); }
}

/* ── NAV LOGO — more left padding ── */
.nav-inner { padding-left: 48px; }
@media (max-width: 1024px) { .nav-inner { padding-left: 20px; } }

/* ── DEPLOY BAR — much bigger ── */
.deploy-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}
.deploy-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.deploy-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.deploy-num {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 500;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.03em;
}
.deploy-unit {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.05em;
}
.deploy-divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}
.deploy-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}
@media (max-width: 768px) {
  .deploy-bar { padding: 24px 20px; }
  .deploy-bar-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .deploy-divider { display: none; }
  .deploy-num { font-size: 52px; }
}

/* ── CTA SECTION — fix GET STARTED label ── */
.cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(125,205,212,0.9);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.cta-label::before,
.cta-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(125,205,212,0.5);
}

/* ── HERO ALIGNMENT — match nav logo position ── */
.hero {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hero-inner {
  padding-left: 48px;
  padding-right: 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .hero-inner { padding-left: 20px; padding-right: 20px; }
}

/* ── HERO HEADLINE — better line breaks ── */
.hero-headline {
  text-wrap: balance;
  max-width: 820px;
}

/* =====================================================
   MISSION + QUOTE TWO-COL SECTION
   ===================================================== */
.mission-quote-section {
  background: #041E28;
  padding: 64px 24px;
}
.mission-quote-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.mission-quote-left {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 36px;
}
.mission-quote-text {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.mission-blockquote {
  font-family: 'IBM Plex Serif', serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  font-style: italic;
}
.mission-quote-attr {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.mission-quote-line {
  width: 2px;
  height: 40px;
  background: #167F8B;
  flex-shrink: 0;
  margin-top: 2px;
}
.mission-quote-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.mission-quote-org {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}
@media (max-width: 768px) {
  .mission-quote-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =====================================================
   DEPLOYMENT FACTS BAR (manufacturing)
   ===================================================== */
.deployment-facts {
  background: #0A3746;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
}
.deployment-facts-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.deployment-fact {
  border-left: 2px solid #167F8B;
  padding-left: 16px;
}
.deployment-fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #167F8B;
  margin-bottom: 6px;
}
.deployment-fact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .deployment-facts-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .deployment-facts-inner {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   TEAM LINKEDIN LINK
   ===================================================== */
.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, color 0.15s;
}
.team-linkedin:hover {
  color: var(--teal-hover);
  border-bottom-color: var(--teal);
}
.team-linkedin svg {
  flex-shrink: 0;
}

/* =====================================================
   TEAM PHOTO
   ===================================================== */
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-bottom: 16px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.team-card:hover .team-photo {
  filter: grayscale(20%);
}

/* =====================================================
   BREADCRUMB NAV
   ===================================================== */
.breadcrumb-nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 40px;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 0;
}
.breadcrumb-item a {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(226,245,248,0.5);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.breadcrumb-item a:hover { color: rgba(226,245,248,0.85); }
.breadcrumb-current {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.breadcrumb-sep {
  font-size: 12px;
  color: rgba(226,245,248,0.2);
  padding: 0 8px;
}
@media (max-width: 768px) {
  .breadcrumb-inner { padding: 10px 20px; }
}
