:root{
  --bg:#ffffff;--fg:#1a2236;--muted:#6b7280;--border:#e5e7eb;
  --primary:#c0281c;--primary-hover:#a82217;
  --navy:#1a2e44;--navy-2:#152538;--surface:#f5f5f5;--card:#ffffff;
  --shadow-card:0 4px 24px -8px rgba(0,0,0,.12);
  --shadow-elevated:0 12px 40px -12px rgba(64,16,12,.25);
  --radius:.5rem;
}
*{box-sizing:border-box}
*,*::before,*::after{border-color:var(--border)}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--fg);font-family:Inter,system-ui,-apple-system,sans-serif;line-height:1.5;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4{font-family:Montserrat,system-ui,sans-serif;font-weight:800;letter-spacing:-.02em;margin:0}
p{margin:0}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
ul{margin:0;padding:0;list-style:none}

.container{max-width:80rem;margin:0 auto;padding:0 1.5rem}
.molecular-bg{
  background-image:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,.06) 1px,transparent 1.5px),
    radial-gradient(circle at 70% 60%,rgba(255,255,255,.05) 1px,transparent 1.5px),
    radial-gradient(circle at 40% 80%,rgba(255,255,255,.04) 1px,transparent 1.5px),
    linear-gradient(135deg,var(--navy) 0%,var(--navy-2) 100%);
  background-size:120px 120px,180px 180px,220px 220px,100% 100%;
  color:#fff;
}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(26,46,68,.95);backdrop-filter:blur(8px);border-bottom:1px solid rgba(255,255,255,.1)}
.site-header .row{display:flex;align-items:center;justify-content:space-between;height:4rem}
.brand{display:flex;align-items:center;gap:.75rem;color:#fff}
.brand img{height:2.5rem;width:2.5rem;object-fit:contain}
.brand span{font-family:Montserrat,sans-serif;font-weight:800;letter-spacing:.1em;font-size:1rem}
@media (max-width:640px){.brand span{display:none}}
.nav{display:flex;gap:.25rem;font-size:.875rem;font-weight:600}
.nav a{padding:.5rem .75rem;border-radius:.375rem;color:rgba(255,255,255,.7);transition:all .15s}
.nav a:hover{color:#fff;background:rgba(255,255,255,.05)}
.nav a.active{color:#fff;background:rgba(255,255,255,.1)}

/* Hero / page headers */
.hero{text-align:center;padding:6rem 0 5rem}
.hero .eyebrow,.page-header .eyebrow{display:inline-flex;align-items:center;gap:.5rem;padding:.375rem 1rem;border-radius:9999px;border:1px solid rgba(255,255,255,.2);background:rgba(255,255,255,.05);backdrop-filter:blur(8px);font-size:.7rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;margin-bottom:2rem}
.hero .dot{width:.375rem;height:.375rem;border-radius:9999px;background:var(--primary)}
.hero h1{font-size:clamp(2.25rem,5vw,4.5rem);line-height:1.05;max-width:56rem;margin:0 auto}
.hero h1 .accent{color:var(--primary)}
.hero p{margin-top:2rem;font-size:1.125rem;color:rgba(255,255,255,.75);max-width:42rem;margin-left:auto;margin-right:auto}
.hero-strip{border-top:1px solid rgba(255,255,255,.1);background:rgba(21,37,56,.6);backdrop-filter:blur(8px)}
.hero-strip .row{display:flex;flex-wrap:wrap;justify-content:center;gap:1.5rem;padding:1.5rem 0}
.hero-strip .badge{display:flex;align-items:center;gap:.75rem;color:rgba(255,255,255,.85)}
.hero-strip .badge .ico{width:2.5rem;height:2.5rem;border-radius:.375rem;background:rgba(192,40,28,.15);border:1px solid rgba(192,40,28,.3);display:flex;align-items:center;justify-content:center;color:var(--primary)}
.hero-strip .badge span{font-size:.875rem;font-weight:600}

.page-header{text-align:center;padding:5rem 0;color:#fff}
.page-header .eyebrow{font-size:.75rem;color:var(--primary);background:transparent;border:none;padding:0;backdrop-filter:none;margin-bottom:1rem}
.page-header h1{font-size:clamp(2.25rem,4.5vw,3.75rem);line-height:1.05;max-width:56rem;margin:0 auto}
.page-header p{margin-top:1.5rem;font-size:1.125rem;color:rgba(255,255,255,.75);max-width:42rem;margin-left:auto;margin-right:auto}

/* Sections */
.section{padding:5rem 0}
.section.surface{background:var(--surface)}
.section.navy{background:var(--navy);color:#fff;position:relative;overflow:hidden}
.section.navy .molecular-overlay{position:absolute;inset:0;opacity:.4;pointer-events:none}
.section-eyebrow{font-size:.75rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--primary);margin-bottom:.75rem}
.section h2{font-size:clamp(2rem,4vw,3rem);color:var(--navy);margin-bottom:3.5rem;max-width:42rem}
.section.navy h2{color:#fff}

/* Grids */
.grid{display:grid;gap:1.5rem}
.grid.cols-2{grid-template-columns:1fr}
.grid.cols-3{grid-template-columns:1fr}
.grid.cols-4{grid-template-columns:1fr}
@media (min-width:768px){.grid.cols-2{grid-template-columns:repeat(2,1fr)}.grid.cols-3{grid-template-columns:repeat(3,1fr)}}
@media (min-width:1024px){.grid.cols-4{grid-template-columns:repeat(4,1fr)}}

/* Cards */
.card{background:var(--card);border-radius:var(--radius);border-top:4px solid var(--primary);box-shadow:var(--shadow-card);padding:2rem;display:flex;flex-direction:column;transition:box-shadow .2s}
.card:hover{box-shadow:var(--shadow-elevated)}
.card .ico{width:3.5rem;height:3.5rem;border-radius:.375rem;background:rgba(192,40,28,.1);display:flex;align-items:center;justify-content:center;color:var(--primary);margin-bottom:1.5rem}
.card h3{font-size:1.5rem;color:var(--navy);margin-bottom:.75rem}
.card p{color:var(--muted);margin-bottom:2rem;flex:1}
.card .more{display:inline-flex;align-items:center;gap:.5rem;color:var(--primary);font-weight:700;font-size:.875rem;transition:gap .15s}
.card .more:hover{gap:.75rem}

.card-glass{padding:1.5rem;border-radius:.5rem;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.05);backdrop-filter:blur(8px);height:100%}
.card-glass .ico{width:3rem;height:3rem;border-radius:.375rem;background:var(--primary);display:flex;align-items:center;justify-content:center;color:#fff;margin-bottom:1.25rem}
.card-glass h3{font-size:1.125rem;margin-bottom:.5rem;color:#fff}
.card-glass p{font-size:.875rem;color:rgba(255,255,255,.7)}

.contact-card{background:var(--card);border-radius:var(--radius);border-top:4px solid var(--primary);box-shadow:var(--shadow-card);padding:1.5rem;display:flex;gap:1rem;align-items:flex-start}
.contact-card .ico{width:2.75rem;height:2.75rem;border-radius:.375rem;background:var(--navy);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.contact-card .label{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;font-weight:700;color:var(--muted)}
.contact-card .value{color:var(--navy);font-weight:800;margin-top:.25rem;word-break:break-word}

/* Steps */
.steps{position:relative;display:grid;gap:2.5rem;grid-template-columns:1fr}
@media (min-width:768px){.steps{grid-template-columns:repeat(3,1fr);gap:1.5rem}.steps::before{content:"";position:absolute;top:2rem;left:16%;right:16%;height:2px;background:var(--border)}}
.step{position:relative;text-align:center}
.step-num{position:relative;z-index:1;margin:0 auto;width:4rem;height:4rem;border-radius:9999px;background:var(--primary);color:#fff;font-weight:800;font-size:1.25rem;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-elevated)}
.step h3{margin-top:1.5rem;font-size:1.25rem;color:var(--navy)}
.step p{margin-top:.5rem;color:var(--muted);max-width:18rem;margin-left:auto;margin-right:auto}

/* Footer */
.site-footer{background:var(--navy);color:#fff}
.site-footer .top{display:grid;gap:2.5rem;grid-template-columns:1fr;padding:3rem 0}
@media (min-width:768px){.site-footer .top{grid-template-columns:repeat(3,1fr)}}
.site-footer .brand{margin-bottom:1rem}
.site-footer p{font-size:.875rem;color:rgba(255,255,255,.6);max-width:18rem;line-height:1.6}
.site-footer h4{font-size:.875rem;font-weight:800;text-transform:uppercase;letter-spacing:.15em;margin-bottom:1rem}
.site-footer ul{display:flex;flex-direction:column;gap:.5rem;font-size:.875rem;color:rgba(255,255,255,.7)}
.site-footer ul li{display:flex;gap:.5rem;align-items:flex-start}
.site-footer a:hover{color:var(--primary)}
.site-footer .bottom{border-top:1px solid rgba(255,255,255,.1);padding:1.25rem 0;font-size:.75rem;color:rgba(255,255,255,.5);display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem}

svg{stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.ico svg{width:1.25rem;height:1.25rem}
.card .ico svg{width:1.75rem;height:1.75rem}
.card .more svg{width:1rem;height:1rem}
.site-footer ul svg{width:1rem;height:1rem}

/* Mobile refinements */
@media (max-width:640px){
  .container{padding:0 1rem}
  .site-header .row{height:3.5rem}
  .brand img{height:2rem;width:2rem}
  .nav{gap:0;font-size:.75rem;flex-wrap:wrap;justify-content:flex-end;max-width:60%}
  .nav a{padding:.35rem .5rem}
  .hero{padding:3rem 0 2.5rem}
  .hero h1{font-size:2rem}
  .hero p{font-size:1rem;margin-top:1.25rem}
  .hero .eyebrow,.page-header .eyebrow{margin-bottom:1.25rem;font-size:.65rem}
  .hero-strip .row{gap:1rem;padding:1.25rem 0;flex-direction:column;align-items:flex-start}
  .page-header{padding:3rem 0}
  .page-header h1{font-size:1.875rem}
  .section{padding:3rem 0}
  .section h2{font-size:1.625rem;margin-bottom:2rem}
  .card{padding:1.5rem}
  .card h3{font-size:1.25rem}
  .steps{gap:2rem}
  .site-footer .top{padding:2.5rem 0;gap:2rem}
}

.contact-footer{margin-top:4rem;display:flex;flex-direction:column;align-items:center;text-align:center}
.contact-footer img{width:7rem;opacity:.2;margin-bottom:1.5rem}
.contact-footer p{max-width:32rem;color:var(--muted)}
