
:root {
  --bg:       #08192e;
  --bg-mid:   #0f2540;
  --bg-card:  #112b47;
  --teal:     #00A8CC;
  --orange:   #F77F00;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,.55);
  --faint:    rgba(255,255,255,.25);
  --border:   rgba(255,255,255,.08);
  --border-md:rgba(255,255,255,.14);
  font-size: 16px;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 80px 0; }
.section-mid{ padding: 80px 0; background: var(--bg-mid); }
.text-center{ text-align: center; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 600; line-height: 1.12; letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 600; line-height: 1.2; letter-spacing: -.015em; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--muted); }

.eyebrow {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--teal); font-weight: 600; display: block; margin-bottom: .75rem;
}
.section-heading { margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: .5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-size: .875rem; font-weight: 600;
  padding: .7rem 1.5rem; border-radius: 6px; cursor: pointer;
  transition: opacity .15s, transform .15s; border: none;
  text-decoration: none; letter-spacing: .01em;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn-orange  { background: var(--orange); color: #fff; }
.btn-teal    { background: var(--teal);   color: #fff; }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border-md); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); opacity: 1; }
.btn-ghost   { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-ghost:hover { background: var(--teal); color: #fff; opacity: 1; }
.btn-sm { padding: .5rem 1.1rem; font-size: .8rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,25,46,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; }
.logo-wave { color: var(--white); }
.logo-solutions { color: var(--teal); }
.nav-inner nav ul { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-inner nav ul li a { font-size: .85rem; color: var(--muted); font-weight: 500; transition: color .15s; }
.nav-inner nav ul li a:hover,
.nav-inner nav ul li a.active { color: var(--white); }
.hamburger {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.4rem; cursor: pointer; padding: 4px;
}
@media(max-width:768px){
  .hamburger { display: block; }
  .nav-inner nav { display: none; }
  .nav-inner nav.open { display: block; }
  .nav-inner nav ul {
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg-mid); border-top: 1px solid var(--border);
    position: absolute; top: 64px; left: 0; right: 0;
    padding: 1rem 1.5rem 1.5rem;
  }
  .nav-inner nav ul li { width: 100%; padding: .5rem 0; border-bottom: 1px solid var(--border); }
  .nav-inner nav ul li:last-child { border: none; padding-top: 1rem; }
}

/* ── HERO ── */
.hero {
  padding: 100px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,168,204,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 640px; }
.hero h1 { margin: .5rem 0 1.25rem; }
.hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 2.25rem; }
.hero-ctas { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.hero-phone { font-size: .875rem; color: var(--faint); }
.hero-phone a { color: var(--faint); transition: color .15s; }
.hero-phone a:hover { color: var(--white); }

/* ── STATS BAR ── */
.stats-bar { background: var(--teal); padding: 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-item:last-child { border: none; }
.stat-num  { font-size: 1.6rem; font-weight: 700; color: #fff; line-height: 1; }
.stat-label{ font-size: .75rem; color: rgba(255,255,255,.75); margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color .2s, transform .2s;
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover { border-left-color: var(--orange); transform: translateY(-3px); }
.service-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--white); margin-bottom: .5rem; }
.service-card p  { font-size: .9rem; color: var(--muted); }
.service-link { display: inline-block; margin-top: 1rem; font-size: .8rem; color: var(--teal); font-weight: 600; }

/* ── WHY WAVE ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature { display: flex; gap: 1rem; align-items: flex-start; }
.why-dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; flex-shrink: 0; margin-top: .6rem; }
.why-feature strong { color: var(--white); display: block; margin-bottom: .2rem; }
.why-feature p { font-size: .9rem; }
.why-callout {
  background: var(--bg-card); border: 1px solid var(--border-md);
  border-radius: 12px; padding: 2.5rem;
}
.why-callout .big-num { font-size: 4rem; font-weight: 700; color: var(--teal); line-height: 1; }
.why-callout p { font-size: .95rem; margin-top: .5rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.75rem;
}
.stars { color: var(--orange); font-size: .9rem; margin-bottom: .75rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-size: .9rem; color: var(--muted); font-style: italic; margin-bottom: 1rem; }
.reviewer-name { font-size: .85rem; font-weight: 600; color: var(--white); }
.reviewer-company { font-size: .78rem; color: var(--faint); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--bg-mid) 0%, #0a2240 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 64px 0; text-align: center;
}
.cta-band h2 { margin-bottom: .75rem; }
.cta-band p  { max-width: 500px; margin: 0 auto 2rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  padding: 64px 0 56px;
}
.page-hero h1 { font-size: clamp(1.75rem,3.5vw,2.5rem); margin-bottom: .5rem; }
.page-hero p  { max-width: 560px; color: var(--muted); font-size: 1rem; }
.breadcrumb   { font-size: .78rem; color: var(--faint); margin-bottom: 1rem; }
.breadcrumb a { color: var(--teal); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SERVICE DETAIL ── */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start; }
.service-content h2 { color: var(--white); font-size: 1.4rem; margin: 2rem 0 .75rem; }
.service-content h2:first-child { margin-top: 0; }
.service-content p  { margin-bottom: 1rem; }
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin: 1rem 0; }
.include-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: .85rem 1rem;
  font-size: .875rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start;
}
.include-check { color: var(--teal); font-weight: 700; flex-shrink: 0; }
.service-sidebar { position: sticky; top: 80px; }
.sidebar-box {
  background: var(--bg-card); border: 1px solid var(--border-md);
  border-radius: 12px; padding: 1.75rem; margin-bottom: 1.5rem;
}
.sidebar-box h3 { color: var(--white); margin-bottom: 1rem; font-size: 1rem; }
.sidebar-box p  { font-size: .875rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--white);
  font-size: .95rem; font-weight: 600; padding: 1.1rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: inherit;
}
.faq-q span { font-size: 1.2rem; color: var(--teal); transition: transform .2s; }
.faq-a { padding: 0 1.25rem 1.1rem; display: none; }
.faq-a p { font-size: .9rem; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q span { transform: rotate(45deg); }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 340px; gap: 4rem; align-items: start; }
.about-content h2 { color: var(--white); font-size: 1.4rem; margin: 2rem 0 .75rem; }
.about-content h2:first-child { margin-top: 0; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}
.about-stat .num { font-size: 2rem; font-weight: 700; color: var(--teal); line-height: 1; }
.about-stat .lbl { font-size: .75rem; color: var(--faint); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.industry-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.25rem; text-align: center;
}
.industry-card .icon { font-size: 1.5rem; margin-bottom: .5rem; }
.industry-card h3 { font-size: .9rem; color: var(--white); margin-bottom: .3rem; }
.industry-card p  { font-size: .8rem; }

/* ── TEAM ── */
.team-intro { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.team-grid  { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card  {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.75rem; text-align: center;
}
.team-avatar {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: .04em;
}
.team-card h3 { color: var(--white); font-size: 1rem; margin-bottom: .15rem; }
.team-role   { font-size: .8rem; color: var(--teal); font-weight: 600; margin-bottom: .75rem; }
.team-bio    { font-size: .83rem; color: var(--muted); line-height: 1.6; margin-bottom: .75rem; }
.team-email  { font-size: .8rem; color: var(--faint); word-break: break-all; }
.team-email:hover { color: var(--teal); }

/* ── CONTACT ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h2 { color: var(--white); margin-bottom: 1.5rem; }
.contact-block   { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.c-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-block strong { color: var(--white); display: block; margin-bottom: .2rem; font-size: .9rem; }
.contact-block a  { color: var(--teal); font-size: .9rem; }
.contact-block p  { font-size: .9rem; }
.contact-form h2  { color: var(--white); margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-card); border: 1px solid var(--border-md);
  border-radius: 6px; padding: .7rem 1rem; font-size: .9rem;
  color: var(--white); font-family: inherit; width: 100%;
  transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--faint); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--teal);
}
.form-group select option { background: var(--bg-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  background: rgba(0,168,204,.15); border: 1px solid rgba(0,168,204,.3);
  color: var(--teal); padding: 1rem; border-radius: 6px; text-align: center;
  font-weight: 600; font-size: .9rem; display: none;
}

/* ── QUOTE ── */
.quote-layout  { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: .5rem; }
.checkbox-label{ display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--muted); cursor: pointer; }
.checkbox-label input { width: auto; accent-color: var(--teal); }
.trust-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.5rem; margin-bottom: 1.25rem;
}
.trust-box h3 { color: var(--white); font-size: .95rem; margin-bottom: .85rem; }
.trust-list   { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.trust-list li{ font-size: .85rem; color: var(--muted); display: flex; gap: .5rem; }
.trust-list li::before { content: '—'; color: var(--teal); flex-shrink: 0; }

/* ── SERVICES HUB ── */
.hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.hub-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-left: 3px solid var(--teal); border-radius: 10px;
  padding: 2rem 1.75rem; text-decoration: none; color: inherit;
  transition: border-left-color .2s, transform .2s; display: flex; flex-direction: column; gap: .6rem;
}
.hub-card:hover { border-left-color: var(--orange); transform: translateY(-3px); }
.hub-icon { font-size: 1.6rem; }
.hub-card h2 { font-size: 1.1rem; color: var(--white); }
.hub-card p  { font-size: .875rem; flex: 1; }
.hub-link    { font-size: .8rem; color: var(--teal); font-weight: 600; }

/* ── FOOTER ── */
.site-footer { background: #050f1c; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { font-size: 1.1rem; font-weight: 700; margin-bottom: .75rem; }
.footer-col p { font-size: .875rem; color: var(--muted); }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .875rem; color: var(--muted); transition: color .15s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col address { font-style: normal; font-size: .875rem; color: var(--muted); line-height: 1.8; }
.footer-col address a { color: var(--muted); }
.footer-col address a:hover { color: var(--teal); }
.footer-license { font-size: .78rem; color: var(--faint); margin-top: .5rem; }
.remote-link { display: inline-block; margin-top: .75rem; font-size: .82rem; color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.25rem 0;
  font-size: .8rem; color: var(--faint);
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom a { color: var(--faint); }
.footer-bottom a:hover { color: var(--teal); }

/* ── MOBILE STICKY ── */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--bg-mid); border-top: 1px solid var(--border);
  padding: 10px 16px; gap: 10px;
}
@media(max-width:768px){ .mobile-sticky-cta { display: flex; } }
.mobile-sticky-cta .btn { flex: 1; text-align: center; font-size: .8rem; padding: .6rem; }

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .services-grid, .hub-grid  { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid          { grid-template-columns: 1fr; }
  .service-layout, .about-layout, .contact-layout, .quote-layout { grid-template-columns: 1fr; }
  .why-grid                   { grid-template-columns: 1fr; gap: 2rem; }
  .industry-grid, .team-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid                { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media(max-width:640px){
  .services-grid, .hub-grid   { grid-template-columns: 1fr; }
  .team-grid, .industry-grid  { grid-template-columns: 1fr; }
  .stats-grid                 { grid-template-columns: repeat(2,1fr); }
  .includes-grid, .form-row, .checkbox-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 52px; }
  .section, .section-mid { padding: 56px 0; }
  body { padding-bottom: 68px; }
}

/* ── LOGO IMAGE (added when text wordmark replaced with brand logo) ── */
.logo { display: inline-flex; align-items: center; }
.logo img { height: 38px; width: auto; display: block; }
.footer-logo img { height: 46px; width: auto; display: block; }
@media (max-width: 600px) { .logo img { height: 32px; } }
