﻿=====================================================
   Webstar – Stylesheet
   Palette: Deep Navy #0B1C2E, Press Blue #1A4B8C,
            Ink Black #0D0D0D, Paper White #F7F6F2,
            Signal Red #D92B2B, Mid Steel #8A9BB0
   Type: 'Oswald' display, 'Poppins' body
   Signature: Bold condensed uppercase headline treatment
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bevan:ital@0;1&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


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

:root {
  --navy:    #01548e;
  --blue:    #283b7f;
  --blue-lt: #2260b0;
  --ink:     #01548e;
  --paper:   #F7F6F2;
  --red:     #283b7f;
  --red-dk:  #b02020;
  --steel:   #8A9BB0;
  --lgrey:   #E4E6EA;
  --grey:    #5A6475;
  --white:   #ffffff;
  --radius:  3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: transparent;
  background: var(--white);
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 20px;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  line-height: 100px;
  background-image: url("/images/logo.svg");
  background-size: 250px;
  background-repeat: no-repeat;
  width: 100%;
  background-position: top 20px left 5px;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: .04em;
  color: transparent;
  text-transform: uppercase;
  display: none;
}

.logo-text span { color: var(--red); }

.logo-sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: transparent;
  margin-top: 2px;
}

/* ── NAV ── */
nav { display: flex; align-items: center; gap: 2px; }

nav a {
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  padding: 6px 11px;
  border-radius: var(--radius);
  white-space: nowrap;
  letter-spacing: .02em;
  transition: background .15s, color .15s;
}

nav a:hover, nav a.active {
  background: var(--blue);
  color: #fff;
}

.nav-cta {
  background: var(--ink);
  color: #fff !important;
  font-weight: 600 !important;
  margin-left: 8px;
  border-radius: var(--radius) !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--red-dk) !important; }

/* ── PAGE WRAPPER ── */
.page { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 0 24px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.hero-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 900;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,.04);
  line-height: 1;
  poPoppins-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 80px 0 72px;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
  max-width: 780px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.68);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--blue);
  padding: 32px 24px;
}

.stat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.01em;
}

.stat-item p {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 13.5px;
  cursor: poPoppins;
  border: 2px solid transparent;
  transition: all .15s;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dk); color: #fff; }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.btn-outline-white:hover { border-color: var(--red); color: var(--red); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0e2238; color: #fff; }

.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

/* ── SECTIONS ── */
.section { padding: 72px 0; }

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--navy);
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-body {
  font-size: 16px;
  color: var(--grey);
  max-width: 640px;
  line-height: 1.75;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.two-col-img {
  background: var(--lgrey);
  border-radius: 4px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 13px;
  font-style: italic;
  overflow: hidden;
  position: relative;
}

.two-col-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--red);
}

/* ── SERVICE CARDS ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 40px;
  background: var(--lgrey);
  border: 1px solid var(--lgrey);
}

.service-card {
  background: var(--white);
  padding: 32px 28px 36px;
  position: relative;
  transition: background .15s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  transition: width .25s ease;
}

.service-card:hover { background: var(--paper); }
.service-card:hover::before { width: 100%; }

.service-num {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--steel);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
  line-height: 1.1;
}

.service-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--navy);
  padding: 56px 24px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--red);
}

.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; }

.page-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -.01em;
  text-transform: uppercase;
  line-height: 1.0;
}

.page-header p {
  margin-top: 14px;
  color: rgba(255,255,255,.65);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.65;
}

.breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
  letter-spacing: .03em;
}
.breadcrumb a { color: var(--paper); }
.breadcrumb a:hover { color: #ff4444; }

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--navy);
  padding: 52px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: 'PRINT';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,.03);
  letter-spacing: -.02em;
  poPoppins-events: none;
  white-space: nowrap;
}

.cta-strip h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.cta-strip p {
  color: rgba(255,255,255,.65);
  font-size: 16px;
  margin-bottom: 28px;
  position: relative;
}

/* ── CLIENTS ── */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2px;
  margin-top: 36px;
  background: var(--white);
}

.client-item {
  background: var(--white);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: background .15s;
}

.client-item:hover { background: var(--paper); color: var(--navy); }

/* ── HIGHLIGHT STRIP ── */
.highlight-strip {
  background: var(--red);
  padding: 36px 24px;
}

.highlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.highlight-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1.1;
}

/* ── CONTACT GRID ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--lgrey);
  border-top: 3px solid var(--navy);
  border-radius: 0 0 4px 4px;
  padding: 28px 32px;
}

.contact-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 16px;
}

.contact-card p { font-size: 15px; color: var(--grey); line-height: 1.85; }
.contact-card strong { color: var(--navy); }
.contact-card a { color: var(--blue); }
.contact-card a:hover { color: var(--red); }

/* ── PERSON CARD ── */
.person-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.person-card {
  border-left: 3px solid var(--blue);
  background: var(--paper);
  padding: 20px 22px;
}

.person-card .role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.person-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
}

.person-card p { font-size: 13.5px; color: var(--grey); line-height: 1.7; }
.person-card a { color: var(--blue); }
.person-card a:hover { color: var(--red); }

/* ── CERT BADGES ── */
.cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cert-badge {
  background: var(--paper);
  border: 1px solid var(--lgrey);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-badge::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

/* ── FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 10px 13px;
  border: 1px solid var(--lgrey);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fdfdfd;
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,75,140,.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.map-embed {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 16px;
  filter: saturate(.7) contrast(.95);
}

/* ── TECH SPECS (webstar-online) ── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.spec-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 24px 26px;
  border-top: 3px solid var(--blue);
}

.spec-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.spec-card p, .spec-card li {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.65;
}

.spec-card ul { padding-left: 18px; margin-top: 6px; }
.spec-card li { margin-bottom: 4px; }

/* ── CODE BLOCK ── */
.code-note {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-family: 'Courier New', monospace;
  font-size: 13.5px;
  color: rgba(255,255,255,.8);
  margin-top: 14px;
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.55);
  padding: 52px 24px 24px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-logo span { color: var(--red); }

footer h4 {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

footer ul { list-style: none; padding: 0;}
footer ul li { margin-bottom: 7px; }
footer ul a { color: rgba(255,255,255,.5); font-size: 14px; }
footer ul a:hover { color: var(--red); }
footer p { font-size: 14px; line-height: 1.75; }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: rgba(255,255,255,.3); }
.footer-bottom a:hover { color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stat-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .header-inner { flex-direction: column; height: auto; padding: 12px 16px; gap: 10px; }
  nav { flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
