/* ===== HEADER FIX / OVERRIDES ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,128,255,.10);
  padding: 10px 0;
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 340px;
}

.brand img {
  display: block;
  height: 82px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: #09131f;
  font-weight: 700;
  font-size: .96rem;
  text-decoration: none;
}

.main-nav a:hover {
  color: #0F80FF;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: all .2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #D92323;
  color: #fff;
}

.btn-primary:hover {
  background: #b91d1d;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: #0F80FF;
  border: 2px solid rgba(15,128,255,.20);
}

.btn-outline:hover {
  background: #f4f9ff;
  color: #0F80FF;
}

/* make anchor links land correctly below sticky header */
section[id] {
  scroll-margin-top: 110px;
}

/* ===== MOBILE HEADER ===== */
@media (max-width: 1040px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 6px 0;
  }

  .brand {
    justify-content: center;
    max-width: 100%;
  }

  .brand img {
    height: 72px;
  }

  .main-nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .header-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: auto;
  }

  .brand img {
    height: 62px;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .header-actions .btn {
    width: 100%;
    max-width: 260px;
  }

  .main-nav ul {
    gap: 12px;
  }

  .main-nav a {
    font-size: .92rem;
  }
}

/* =========================
   THE WIND MIT MAN FULL PAGE STYLES
   ========================= */

:root{
  --wm-blue:#0F80FF;
  --wm-red:#D92323;
  --wm-dark:#09131f;
  --wm-dark-2:#122234;
  --wm-text:#17324a;
  --wm-muted:#5a7185;
  --wm-light:#f4f9ff;
  --wm-white:#ffffff;
  --wm-border:#dbe8f5;
  --wm-shadow:0 14px 40px rgba(9,19,31,.10);
  --wm-shadow-lg:0 20px 60px rgba(9,19,31,.16);
  --wm-container:1200px;
  --wm-radius:22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wm-text);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(calc(100% - 40px), var(--wm-container));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,128,255,.10);
  padding: 10px 0;
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 260px;
}

.brand img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--wm-dark);
  font-weight: 700;
  font-size: .96rem;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--wm-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: all .2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--wm-red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(217,35,35,.20);
}

.btn-primary:hover {
  background: #bb1f1f;
  color: #fff;
}

.btn-outline {
  background: #fff;
  color: var(--wm-blue);
  border: 2px solid rgba(15,128,255,.20);
}

.btn-outline:hover {
  background: #f4f9ff;
  color: var(--wm-blue);
}

.btn-light {
  background: #fff;
  color: var(--wm-dark);
}

.btn-light:hover {
  color: var(--wm-dark);
}

.btn-full {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(88,171,255,.35), transparent 30%),
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.10), transparent 20%),
    linear-gradient(135deg, #08172a 0%, #0c2d50 48%, #0F80FF 100%);
  padding: 76px 0 68px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .92rem;
  font-weight: 800;
}

.hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 1.05;
  letter-spacing: -.02em;
}

.hero h1 .highlight {
  color: #93d4ff;
}

.hero p {
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  font-size: .95rem;
}

.hero-card {
  background: rgba(255,255,255,.98);
  color: var(--wm-text);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--wm-shadow-lg);
}

.hero-card-top {
  background: linear-gradient(135deg,var(--wm-blue),#3ea0ff);
  color: #fff;
  font-weight: 900;
  padding: 16px 22px;
}

.hero-card-body {
  padding: 24px;
}

.hero-card-body h3 {
  margin: 0 0 8px;
  color: var(--wm-dark);
}

.hero-card-body p {
  color: var(--wm-muted);
}

.hero-checks {
  margin: 18px 0 0;
  padding-left: 20px;
}

.hero-checks li {
  margin-bottom: 10px;
}

/* TRUST STRIP */
.trust-strip {
  background: #fff;
  padding: 18px 0;
  border-bottom: 1px solid var(--wm-border);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}

.trust-chip {
  background: var(--wm-light);
  border: 1px solid var(--wm-border);
  border-radius: 999px;
  padding: 12px 16px;
  text-align: center;
  color: var(--wm-dark);
  font-weight: 800;
  box-shadow: var(--wm-shadow);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}

.section-tight {
  padding: 58px 0;
}

.section-alt {
  background: linear-gradient(180deg,#f8fbff 0%, #eef6ff 100%);
}

.eyebrow {
  color: var(--wm-blue);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.section h2 {
  margin: 0 0 14px;
  color: var(--wm-dark);
  font-size: clamp(2rem,3.3vw,3rem);
  line-height: 1.08;
}

.section-intro {
  max-width: 760px;
  color: var(--wm-muted);
  font-size: 1.04rem;
  margin-bottom: 28px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--wm-border);
  box-shadow: var(--wm-shadow);
  display: flex;
  flex-direction: column;
}

.service-cap {
  height: 7px;
  background: linear-gradient(90deg,var(--wm-blue),#60b5ff);
}

.service-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--wm-dark);
  font-size: 1.42rem;
}

.service-tag {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 14px;
  background: #eef6ff;
  border: 1px solid #d9ebff;
  color: var(--wm-blue);
  font-size: .82rem;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
}

.service-card p {
  margin: 0 0 14px;
  color: var(--wm-muted);
}

.service-list {
  margin: 0 0 20px;
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 9px;
}

.service-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* PANELS */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.panel {
  background: #fff;
  border: 1px solid var(--wm-border);
  border-radius: 24px;
  box-shadow: var(--wm-shadow);
  padding: 28px;
}

.panel h3 {
  margin-top: 0;
  color: var(--wm-dark);
}

.checklist {
  margin: 0;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 12px;
}

/* POWERED BY */
.powered-band {
  background: linear-gradient(135deg,var(--wm-dark),#12375e);
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--wm-shadow-lg);
}

.powered-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.powered-band h2,
.powered-band h3 {
  color: #fff;
}

.powered-band p {
  color: rgba(255,255,255,.90);
}

.powered-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 24px;
}

.powered-card ul {
  margin: 0;
  padding-left: 20px;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--wm-border);
  border-radius: 20px;
  box-shadow: var(--wm-shadow);
  padding: 22px;
}

.faq-item h3 {
  margin: 0 0 8px;
  color: var(--wm-dark);
  font-size: 1.05rem;
}

/* CTA */
.cta-wrap {
  background: linear-gradient(135deg,#0F80FF,#0a67d2);
  color: #fff;
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--wm-shadow-lg);
}

.cta-wrap h2 {
  color: #fff;
  margin-top: 0;
}

.cta-wrap p {
  color: rgba(255,255,255,.92);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* FOOTER */
.site-footer {
  background: var(--wm-dark);
  color: rgba(255,255,255,.82);
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .9fr;
  gap: 26px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

.site-footer a {
  color: #fff;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 18px;
  padding-top: 18px;
  font-size: .94rem;
}

/* ANCHOR OFFSET */
section[id] {
  scroll-margin-top: 110px;
}

/* RESPONSIVE */
@media (max-width: 1040px) {
  .header-inner,
  .hero-inner,
  .services-grid,
  .split-grid,
  .powered-grid,
  .faq-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    padding: 6px 0;
  }

  .brand {
    justify-content: center;
    max-width: 100%;
  }

  .brand img {
    height: 68px;
  }

  .main-nav {
    flex: 0 0 100%;
    order: 3;
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .header-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 24px), var(--wm-container));
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: auto;
  }

  .brand img {
    height: 58px;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .header-actions .btn,
  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .main-nav ul {
    gap: 12px;
  }

  .main-nav a {
    font-size: .92rem;
  }

  .hero {
    padding: 56px 0 52px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .powered-band,
  .cta-wrap,
  .panel,
  .service-card-body,
  .hero-card-body {
    padding: 22px;
  }
}

/* HERO LOGO REPLACEMENT */

.hero-logo-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* fade into blue background */
.hero-logo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #0F80FF);
}

.logo-wrap {
  position: relative;
  z-index: 2;
}

.logo-wrap img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

