:root{
      --bg: #f4fbff;
      --surface: #ffffff;
      --surface-alt: #eaf6ff;
      --text: #0f2a3d;
      --muted: #476579;
      --primary: #0077b6;
      --primary-strong: #005f92;
      --accent: #00b4d8;
      --ring: rgba(0, 119, 182, 0.25);
      --success: #2a9d8f;
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --shadow: 0 10px 30px rgba(7, 52, 78, 0.12);
      --space-1: .5rem;
      --space-2: .75rem;
      --space-3: 1rem;
      --space-4: 1.5rem;
      --space-5: 2rem;
      --space-6: 3rem;
      --space-7: 4rem;
      --max: 1120px;
      --font: "Nunito", "Segoe UI", "Trebuchet MS", system-ui, -apple-system, sans-serif;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body{
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 12% 10%, rgba(0,180,216,.18), transparent 30%),
        radial-gradient(circle at 88% 15%, rgba(0,119,182,.16), transparent 35%),
        var(--bg);
      line-height: 1.6;
    }

    .container{
      width: min(var(--max), 92%);
      margin-inline: auto;
    }

    a{ color: inherit; }
    img{ max-width: 100%; display: block; }

    .skip-link{
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }
    .skip-link:focus{
      left: 1rem;
      top: 1rem;
      width: auto;
      height: auto;
      background: #fff;
      color: #000;
      padding: .5rem .75rem;
      border-radius: 8px;
      z-index: 1000;
    }

    header{
      position: sticky;
      top: 0;
      z-index: 30;
      backdrop-filter: blur(10px);
      background: rgba(244, 251, 255, 0.88);
      border-bottom: 1px solid rgba(0, 119, 182, 0.14);
    }
    .nav{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-3);
      padding: .9rem 0;
    }
    .brand{
      font-weight: 800;
      letter-spacing: .2px;
      font-size: 1.15rem;
      color: var(--primary-strong);
      text-decoration: none;
    }
    .nav ul{
      list-style: none;
      display: flex;
      gap: 1rem;
      margin: 0;
      padding: 0;
      flex-wrap: wrap;
    }
    .nav a{
      text-decoration: none;
      font-weight: 700;
      color: var(--text);
      font-size: .95rem;
    }

    .btn{
      display: inline-block;
      border: 0;
      text-decoration: none;
      font-weight: 800;
      border-radius: 999px;
      padding: .8rem 1.2rem;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
      cursor: pointer;
    }
    .btn:focus-visible{
      outline: 3px solid var(--ring);
      outline-offset: 2px;
    }
    .btn-primary{
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      box-shadow: 0 8px 22px rgba(0, 119, 182, 0.28);
    }
    .btn-primary:hover{ transform: translateY(-1px); }
    .btn-secondary{
      background: #fff;
      color: var(--primary-strong);
      border: 1.5px solid rgba(0, 119, 182, 0.28);
    }

    .hero{
      padding: var(--space-7) 0 var(--space-6);
      position: relative;
      overflow: clip;
    }
    .hero::before{
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(120deg, rgba(255,255,255,.35), rgba(255,255,255,0)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 2px, transparent 2px 10px);
      pointer-events: none;
    }
    .hero-grid{
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: var(--space-5);
      align-items: center;
      position: relative;
    }
    .eyebrow{
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      background: #dff3ff;
      color: #0b577f;
      border: 1px solid #b7e5f8;
      border-radius: 999px;
      padding: .25rem .7rem;
      font-size: .85rem;
      font-weight: 700;
      margin-bottom: .8rem;
    }
    h1{
      margin: 0 0 .8rem;
      font-size: clamp(1.9rem, 3.4vw, 3rem);
      line-height: 1.15;
      letter-spacing: .2px;
    }
    .lead{
      font-size: 1.05rem;
      color: var(--muted);
      max-width: 60ch;
      margin: 0 0 1.2rem;
    }
    .hero-actions{
      display: flex;
      gap: .8rem;
      flex-wrap: wrap;
      margin-top: .6rem;
    }
    .hero-card{
      background: linear-gradient(180deg, #ffffff, #f3fbff);
      border: 1px solid rgba(0, 119, 182, 0.18);
      border-radius: var(--radius-lg);
      padding: .9rem;
      box-shadow: var(--shadow);
    }
    .hero-card img{
      border-radius: calc(var(--radius-lg) - 8px);
      aspect-ratio: 4/3;
      object-fit: cover;
    }

    section{
      padding: var(--space-6) 0;
    }
    .section-alt{
      background:
        linear-gradient(180deg, rgba(255,255,255,.65), rgba(234,246,255,.72)),
        var(--surface-alt);
      border-block: 1px solid rgba(0, 119, 182, 0.12);
    }
    h2{
      font-size: clamp(1.45rem, 2.4vw, 2rem);
      margin: 0 0 .6rem;
      line-height: 1.2;
    }
    .section-intro{
      color: var(--muted);
      max-width: 70ch;
      margin-bottom: 1.3rem;
    }

    .grid-3{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-4);
    }
    .card{
      background: var(--surface);
      border: 1px solid rgba(0, 119, 182, 0.14);
      border-radius: var(--radius-md);
      padding: 1.1rem;
      box-shadow: 0 6px 18px rgba(10, 63, 93, 0.08);
    }
    .card h3{
      margin: 0 0 .4rem;
      font-size: 1.1rem;
    }
    .muted{ color: var(--muted); }

    .trust{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-5);
      align-items: center;
    }
    .list{
      margin: .5rem 0 0;
      padding: 0;
      list-style: none;
    }
    .list li{
      padding-left: 1.5rem;
      position: relative;
      margin-bottom: .5rem;
    }
    .list li::before{
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--success);
      font-weight: 800;
    }

    .pricing-wrap{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-4);
    }
    .price-card{
      background: #fff;
      border: 1px solid rgba(0, 119, 182, 0.15);
      border-radius: var(--radius-md);
      padding: 1.2rem;
    }
    .price{
      font-size: 1.7rem;
      margin: .2rem 0 .6rem;
      color: var(--primary-strong);
      font-weight: 900;
    }

    .gallery{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .8rem;
    }
    .gallery img{
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 14px;
      border: 1px solid rgba(0, 119, 182, 0.16);
    }

    .contact-box{
      background: linear-gradient(140deg, #ffffff, #edf9ff);
      border: 1px solid rgba(0, 119, 182, 0.2);
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      box-shadow: var(--shadow);
    }
    form{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .8rem;
      margin-top: .8rem;
    }
    .full{ grid-column: 1 / -1; }
    label{
      display: block;
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: .25rem;
    }
    input, select, textarea{
      width: 100%;
      border: 1px solid rgba(0, 119, 182, 0.25);
      border-radius: 12px;
      padding: .7rem .75rem;
      font: inherit;
      background: #fff;
      color: var(--text);
    }
    input:focus, select:focus, textarea:focus{
      outline: 3px solid var(--ring);
      border-color: var(--primary);
    }

    footer{
      padding: 2rem 0 2.2rem;
      color: var(--muted);
      font-size: .95rem;
      border-top: 1px solid rgba(0, 119, 182, 0.14);
      background: rgba(234, 246, 255, 0.45);
    }

    @media (max-width: 940px){
      .hero-grid, .trust, .grid-3, .pricing-wrap { grid-template-columns: 1fr; }
      .gallery{ grid-template-columns: 1fr 1fr; }
      .nav ul{ display: none; }
    }
    @media (max-width: 640px){
      .hero{ padding-top: 2.4rem; }
      .gallery{ grid-template-columns: 1fr; }
      form{ grid-template-columns: 1fr; }
    }

/* only small tweaks that should override base.css */
:root{
  --brand-orange:#ea580c;
  --brand-orange-dark:#c2410c;
  --brand-orange-soft:#fff7ed;
  --brand-orange-ring:rgba(234,88,12,.35);
}

/* Global accent visibility */
body{
  accent-color:var(--brand-orange);
}

a{
  color:var(--brand-orange-dark);
  text-decoration-color:rgba(194,65,12,.45);
  text-underline-offset:2px;
}
a:hover{
  color:var(--brand-orange);
  text-decoration-color:var(--brand-orange);
}

/* Header and navigation emphasis */
header{
  border-bottom:3px solid var(--brand-orange);
}
.brand{
  color:var(--brand-orange-dark);
  font-weight:800;
}
.nav ul a{
  position:relative;
}
.nav ul a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-.35rem;
  width:100%;
  height:2px;
  background:var(--brand-orange);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .2s ease;
}
.nav ul a:hover::after,
.nav ul a:focus-visible::after{
  transform:scaleX(1);
}

/* Buttons: unmistakably orange primary */
.btn.btn-primary{
  background:var(--brand-orange);
  border-color:var(--brand-orange);
  color:#fff;
  box-shadow:0 8px 18px rgba(234,88,12,.22);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus-visible{
  background:var(--brand-orange-dark);
  border-color:var(--brand-orange-dark);
  color:#fff;
}
.btn.btn-secondary{
  border-color:var(--brand-orange);
  color:var(--brand-orange-dark);
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus-visible{
  background:var(--brand-orange-soft);
  border-color:var(--brand-orange-dark);
}
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible{
  outline:3px solid var(--brand-orange-ring);
  outline-offset:2px;
}

/* Hero + section accents */
.hero{
  background:
    radial-gradient(1000px 360px at 85% -20%, rgba(234,88,12,.16), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}
.eyebrow{
  color:var(--brand-orange-dark);
  font-weight:700;
}
#hero-title{
  text-wrap:balance;
}
.hero-card,
.card,
.price-card,
.contact-box{
  border-top:4px solid var(--brand-orange);
}

/* Alternate sections and intros */
.section-alt{
  background-color:var(--brand-orange-soft);
}
.section-intro strong{
  color:var(--brand-orange-dark);
}

/* Lists and small visual highlights */
.list li::marker{
  color:var(--brand-orange);
}

/* Form controls */
input, select, textarea{
  border-color:rgba(234,88,12,.35);
}
input:hover, select:hover, textarea:hover{
  border-color:rgba(234,88,12,.55);
}
button[type="submit"].btn.btn-primary{
  min-width:13rem;
}

/* Footer accent */
footer{
  border-top:3px solid var(--brand-orange);
}

/* Modal button emphasis */
#lead-modal-close{
  background:var(--brand-orange);
  border:1px solid var(--brand-orange);
  color:#fff;
}
#lead-modal-close:hover,
#lead-modal-close:focus-visible{
  background:var(--brand-orange-dark);
  border-color:var(--brand-orange-dark);
}

/* design refresh: orange-forward accent system */
    :root {
      --brand-primary: #f97316;
      --brand-primary-strong: #ea580c;
      --brand-primary-soft: #fff2e8;
      --brand-primary-deep: #9a3412;
      --text-strong: #1f2937;
      --focus-ring: 0 0 0 3px rgba(249, 115, 22, 0.28);
    }

    body {
      color: var(--text-strong);
      text-rendering: optimizeLegibility;
    }

    .skip-link:focus {
      box-shadow: var(--focus-ring);
      outline: none;
    }

    header {
      border-bottom: 1px solid #fed7aa;
      background: #fff;
    }

    .brand {
      color: var(--brand-primary-strong);
      font-weight: 800;
      letter-spacing: 0.2px;
    }

    .nav ul a {
      color: #374151;
      text-decoration-thickness: 2px;
      text-underline-offset: 4px;
    }

    .nav ul a:hover,
    .nav ul a:focus-visible {
      color: var(--brand-primary-strong);
    }

    .hero {
      background:
        radial-gradient(circle at 80% 20%, rgba(249,115,22,0.10), transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(249,115,22,0.08), transparent 42%);
    }

    .eyebrow {
      display: inline-block;
      color: var(--brand-primary-deep);
      background: var(--brand-primary-soft);
      border: 1px solid #fdba74;
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      font-weight: 700;
    }

    h2 {
      position: relative;
      color: #111827;
    }

    h2::after {
      content: "";
      display: block;
      width: 64px;
      height: 4px;
      margin-top: 0.55rem;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-strong));
    }

    .section-intro {
      color: #4b5563;
      max-width: 70ch;
    }

    .hero-card,
    .card,
    .price-card,
    .contact-box {
      border: 1px solid #ffedd5;
      box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
    }

    .btn {
      border-radius: 0.7rem;
      font-weight: 700;
      transition: all 0.2s ease;
    }

    .btn.btn-primary {
      background: linear-gradient(180deg, #fb923c, var(--brand-primary));
      border: 1px solid var(--brand-primary-strong);
      color: #ffffff;
      box-shadow: 0 6px 16px rgba(249, 115, 22, 0.28);
    }

    .btn.btn-primary:hover,
    .btn.btn-primary:focus-visible {
      background: linear-gradient(180deg, var(--brand-primary), var(--brand-primary-strong));
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
    }

    .btn.btn-secondary {
      background: #fff7ed;
      border: 1px solid #fdba74;
      color: var(--brand-primary-deep);
    }

    .btn.btn-secondary:hover,
    .btn.btn-secondary:focus-visible {
      background: #ffedd5;
      border-color: var(--brand-primary);
      color: var(--brand-primary-strong);
    }

    a {
      color: var(--brand-primary-strong);
    }

    a:hover,
    a:focus-visible {
      color: var(--brand-primary-deep);
    }

    .list li::marker {
      color: var(--brand-primary);
    }

    .price {
      color: var(--brand-primary-strong);
      font-weight: 800;
    }

    input,
    select,
    textarea {
      border: 1px solid #d1d5db;
      border-radius: 0.55rem;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--brand-primary);
      outline: none;
      box-shadow: var(--focus-ring);
    }

    footer {
      border-top: 1px solid #fed7aa;
      background: #fff7ed;
      color: #7c2d12;
    }

    #lead-modal {
      border: 1px solid #fdba74;
      border-radius: 0.8rem;
      box-shadow: 0 18px 42px rgba(0,0,0,0.18);
    }

    #lead-modal-close {
      background: var(--brand-primary);
      color: #fff;
      border: 1px solid var(--brand-primary-strong);
      border-radius: 0.5rem;
      padding: 0.45rem 0.8rem;
      font-weight: 700;
    }

    #lead-modal-close:hover,
    #lead-modal-close:focus-visible {
      background: var(--brand-primary-strong);
    }

    @media (max-width: 768px) {
      .hero .lead,
      .section-intro,
      .muted {
        font-size: 1rem;
        line-height: 1.65;
      }

      .btn {
        min-height: 44px;
      }

      h1 {
        line-height: 1.2;
      }
    }