 /* Component Sourcing Styling from Claude */
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --aes-blue:    #3B78BC;
    --aes-blue-dk: #2C5C94;
    --aes-blue-lt: #D6E7F7;
    --aes-blue-bg: #EDF4FB;
    --aes-green:   #7DBB3F;
    --aes-green-dk:#5F9A28;
    --navy:        #1A3A5C;
    --white:       #FFFFFF;
    --off:         #F5F7FA;
    --rule:        #CDD7E3;
    --text:        #1A2E44;
    --muted:       #4A607A;
    --sm-cap:      16px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif; 
    background: var(--white);
    font-size: 16px;
    line-height: 1.65;
  }

  /* ── PAGE HEADER IMAGE ── */
 /* .site-header {
    width: 100%;
    display: block;
    line-height: 0;
  }
  .site-header img {
    width: 100%;
    height: auto;
    display: block;
  }

    /* ── PAGE INTRO (replaces hero - sits below header image) ── */
  .page-intro {
    background: var(--aes-blue);
    padding: 3rem 4vw 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    border-bottom: 4px solid var(--aes-green);
  }
  .page-intro-eyebrow {
    display: inline-block;
    font-size: var(--sm-cap); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: #C5DEFF;
    margin-bottom: 1rem;
    border-left: 3px solid var(--aes-green);
    padding-left: 0.75rem;
  }
  .page-intro h1 {
    font-family: sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    font-weight: 400;
  }
  .page-intro h1 em { font-style: italic; color: #C5DEFF; }
  .page-intro-body {
    color: rgba(255,255,255,0.78);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2rem;
    line-height: 1.75;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

  /* ── BUTTONS ── */
  .btn-primarycs {
    background: var(--aes-green); color: var(--white);
    border: none; border-radius: 3px;
    padding: 0.7rem 1.5rem;
    font-size: 12px; font-weight: 600; letter-spacing: 0.03em;
    cursor: pointer; text-decoration: none; transition: background 0.2s;
    display: inline-block;
  }
  .btn-primarycs:hover { background: var(--aes-green-dk); }

  .btn-ghostcs {
    background: transparent; color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.3); border-radius: 3px;
    padding: 0.7rem 1.5rem;
    font-size: 12px; font-weight: 400; letter-spacing: 0.03em;
    cursor: pointer; text-decoration: none; transition: all 0.2s;
    display: inline-block;
  }
  .btn-ghostcs:hover { border-color: rgba(255,255,255,0.65); color: var(--white); }

  /* ── HERO PANEL ── */
  .hero-panel {
    background: var(--aes-blue);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    padding: 2rem 2rem 1.5rem;
  }
  .hero-panel-label {
    font-size: var(--sm-cap); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.25rem;
  }
  .cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.1); }
  .cred-item {
    background: var(--aes-blue-dk);
    padding: 1.1rem 1rem;
  }
  .cred-item strong {
    display: block;
    font-size: 14px; font-weight: 600; color: var(--white);
    margin-bottom: 0.2rem;
  }
  .cred-item span { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; text-transform: uppercase; }
  .joscar {
    margin-top: 1px;
    background: var(--aes-blue-dk);
    padding: 0.85rem 1rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .joscar-badge {
    background: var(--aes-green); color: var(--white);
    font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.3rem 0.6rem; border-radius: 2px;
    white-space: nowrap;
  }
  .joscar span { font-size: 14px; color: rgba(255,255,255,0.55); }

  /* ── TRUST BAR ── */
  /*.trust-bar {
    background: var(--off);
    border-bottom: 1px solid var(--rule);
    padding: 1.1rem 4vw;
    display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  }
  .trust-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 500; white-space: nowrap; }
  .trust-items { display: flex; gap: 2rem; flex-wrap: wrap; }
  .trust-item { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 0.4rem; }
  .trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--aes-green); flex-shrink: 0; }

  /* ── SECTION BASE ── */
  section { padding: 5rem 4vw; }
  .section-eyebrow {
    font-size: var(--sm-cap); font-weight: 16px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--aes-blue); margin-bottom: 0.6rem;
	border-left: 3px solid var(--aes-green);
	padding-left: 0.75rem;
  }

  .section-heading {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400; line-height: 1.25;
    color: var(--navy);
    margin-bottom: 1rem;
  }
  .section-sub { font-size: 20px; color: var(--muted); max-width: 560px; line-height: 1.75; margin-bottom: 2.5rem; }

  /* ── WHY ── */
  .why { background: var(--white); }
  .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; border: 1px solid var(--rule); }
  .why-item {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .why-item:last-child { border-right: none; }
  .why-icon {
    width: 36px; height: 36px;
    background: var(--aes-blue-bg);
    border: 1px solid var(--aes-blue-lt);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
  }
  .why-icon svg { width: 26px; height: 26px; stroke: var(--aes-blue); fill: none; stroke-width: 1.5; }
  .why-item h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 0.5rem; }
  .why-item { font-size: 14px; color: var(--muted); line-height: 1.65; }

  /* ── WHAT WE SOURCE ── */
  .what { background: var(--off); }
  .what-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
  .component-list {
    columns: 2; column-gap: 1.5rem;
    list-style: none;
  }
  .component-list li {
    font-size: 14px; color: var(--muted);
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--rule);
    break-inside: avoid;
    display: flex; align-items: baseline; gap: 0.5rem;
  }
  .component-list li::before {
    content: '';
    width: 4px; height: 4px;
    background: var(--aes-green);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
  }

  /* ── PROCESS ── */
  .process { background: var(--aes-blue); }
  .process .section-eyebrow { color: #C5DEFF; }
  .process .section-heading { color: var(--white); }
  .process .section-sub { color: rgba(255,255,255,0.6); }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(255,255,255,0.1); margin-top: 3rem; }
  .step {
    background: var(--aes-blue);
    padding: 2rem 1.5rem;
    position: relative;
  }
  .step-num {
    font-family: 'DM Serif Display', serif;
    font-size: 26px; font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .step h3 { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .step { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.65; }
  .step-accent { width: 24px; height: 2px; background: var(--aes-green); margin-bottom: 1rem; }

  /* ── QUALITY ── */
  .quality { background: var(--white); }
  .quality-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .quality-checks { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .quality-checks li {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: 14px; color: var(--muted);
  }
  .check-tick {
    width: 26px; height: 26px; flex-shrink: 0;
    background: var(--aes-blue-bg); border: 1px solid var(--aes-blue-lt);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .check-tick svg { width: 10px; height: 10px; stroke: var(--aes-blue); fill: none; stroke-width: 2; }

  .obsolescence-card {
    background: var(--aes-blue);
    border-radius: 4px;
    padding: 2.5rem;
    color: rgba(255,255,255,0.75);
  }
  .obsolescence-card h3 {
    font-family: sans-serif;
    font-size: 18px; font-weight: 400; color: var(--white);
    margin-bottom: 1rem;
  }
  .obsolescence-card p { font-size: 18px; line-height: 1.75; margin-bottom: 1.5rem; }
  .obs-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .obs-tag {
    font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 2px;
    color: rgba(255,255,255,0.6);
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--aes-blue-bg);
    border-top: 4px solid var(--aes-green);
  }
  .cta-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }
  .cta-inner h2 {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 400; color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .cta-inner { font-size: 14px; color: var(--muted); line-height: 1.75; }
  .enquiry-box {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 2rem;
  }
  .enquiry-box h3 { font-size: 18px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
  .field { margin-bottom: 1rem; }
  .field label { display: block; font-size: 12px; font-weight: 500; color: var(--text); margin-bottom: 0.35rem; }
  .field input, .field textarea {
    width: 100%; border: 1px solid var(--rule);
    border-radius: 3px; padding: 0.6rem 0.75rem;
    font-size: 14px; font-family: inherit; color: var(--text);
    background: var(--off);
    outline: none; transition: border 0.2s;
  }
  .field input:focus, .field textarea:focus { border-color: var(--aes-blue); background: var(--white); }
  .field textarea { resize: vertical; min-height: 80px; }
  .contact-strip {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--rule);
    display: flex; gap: 1.5rem; flex-wrap: wrap;
  }
  .contact-item { font-size: 14px; color: var(--muted); }
  .contact-item strong { display: block; font-weight: 500; color: var(--text); margin-bottom: 0.1rem; }

  /* ── PAGE FOOTER IMAGE ── */
 /* .site-footer {
    width: 100%;
    display: block;
    line-height: 0;
  }
  .site-footer img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* ── RESPONSIVE ── */
 /* @media (max-width: 768px) {
    .page-intro { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 5vw 2rem; }
    .what-inner, .quality-inner, .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .nav-links { display: none; }
    .component-list { columns: 1; }
  }