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

:root {
  --navy: #111827;
  --navy2: #1F2937;
  --blue: #2563EB;
  --blue2: #3b82f6;
  --bsoft: #EEF4FF;
  --white: #fff;
  --off: #F8F9FA;
  --g1: #64748B;
  --g2: #94A3B8;
  --bdr: rgba(0,0,0,.07);
  --bdrw: rgba(255,255,255,.08);
  --D: 'Plus Jakarta Sans', sans-serif;
  --B: 'Inter', 'Plus Jakarta Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--B);
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.sec-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

section {
  padding: 100px clamp(1.5rem,5vw,5rem);
  position: relative;
  overflow: hidden;
}

.sec-inner { position: relative; z-index: 1; }

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem,5vw,5rem);
  transition: background .35s, box-shadow .35s;
}

nav.dark {
  background: rgba(17,24,39,.96);
  backdrop-filter: blur(16px);
}

nav.light {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--bdr);
}

.nlogo {
  display: flex;
  align-items: center;
  height: 68px;
  flex-shrink: 0;
  background: transparent;
}

.nlogo img {
  height: 52px;
  width: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  background: transparent;
  filter: none !important;
  mix-blend-mode: normal;
  transition: transform .2s;
}

/*
  Your current uploaded logo is logo.jpeg, and JPEG cannot be transparent.
  This CSS crops the white canvas visually by making the displayed logo wider/cleaner,
  but the real fix is exporting the logo as a true transparent PNG or SVG.
*/
nav.dark .nlogo,
nav.light .nlogo {
  background: transparent !important;
}

nav.dark .nlogo img,
nav.light .nlogo img {
  filter: none !important;
}

.nlogo:hover img { transform: translateY(-1px); }

.nlinks {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nlinks a {
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .85rem;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

nav.dark .nlinks a { color: rgba(255,255,255,.6); }
nav.dark .nlinks a:hover { color: #fff; background: rgba(255,255,255,.07); }
nav.light .nlinks a { color: var(--g1); }
nav.light .nlinks a:hover { color: var(--navy); background: var(--off); }

.ncta {
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 8px;
  transition: transform .15s, box-shadow .15s !important;
}

.ncta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 18px rgba(37,99,235,.45) !important;
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hbg span {
  display: block;
  width: 20px;
  height: 1.5px;
  border-radius: 2px;
  transition: all .3s;
}

nav.dark .hbg span { background: #fff; }
nav.light .hbg span { background: var(--navy); }

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px clamp(1.5rem,5vw,5rem) 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(37,99,235,.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 85%, rgba(37,99,235,.10) 0%, transparent 50%);
}

.hgrid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 20%, transparent 100%);
}

.hero > * { position: relative; z-index: 1; }

h1.htitle {
  font-family: var(--D);
  font-size: clamp(3rem,7.5vw,6.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  color: #fff;
  max-width: 900px;
  margin-bottom: 1.5rem;
  animation: fadeUp .7s ease .2s both;
}

h1.htitle em {
  font-style: normal;
  background: linear-gradient(135deg,#93c5fd 0%,#2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hsub {
  font-size: clamp(.95rem,1.6vw,1.15rem);
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 540px;
  font-weight: 300;
  margin-bottom: 3rem;
  animation: fadeUp .7s ease .3s both;
}

.hbtns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4.2rem;
  animation: fadeUp .7s ease .4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--B);
  font-weight: 600;
  font-size: .9rem;
  padding: .8rem 1.8rem;
  border-radius: 10px;
  transition: transform .15s, box-shadow .15s;
  border: none;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }

.bblu {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,99,235,.3);
}

.bblu:hover { box-shadow: 0 8px 32px rgba(37,99,235,.5); }

.bgho {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.12);
}

.bgho:hover { background: rgba(255,255,255,.12); }

.hstats {
  width: min(880px,100%);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(37,99,235,.20);
  border-radius: 24px;
  background: linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
  animation: fadeUp .7s ease .5s both;
}

.stat {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.15rem .85rem;
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s, background .25s, border-color .25s;
}

.stat:hover {
  transform: translateY(-3px);
  background: rgba(37,99,235,.08);
  border-color: rgba(37,99,235,.28);
}

.hstat-number {
  display: block;
  font-family: var(--D);
  font-size: clamp(1.05rem,2vw,1.45rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: .65rem;
  letter-spacing: -.02em;
}

.hstat-label {
  display: block;
  max-width: 140px;
  font-size: .76rem;
  line-height: 1.45;
  color: rgba(255,255,255,.43);
  font-weight: 400;
}

/* Ticker */
.ticker {
  background: var(--navy2);
  border-top: 1px solid var(--bdrw);
  border-bottom: 1px solid var(--bdrw);
  padding: .9rem 0;
  overflow: hidden;
}

.ttrack {
  display: flex;
  gap: 3rem;
  animation: tick 28s linear infinite;
  width: max-content;
}

.ti {
  display: flex;
  align-items: center;
  gap: .75rem;
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.3);
}

.td {
  width: 4px;
  height: 4px;
  background: var(--blue2);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Shared */
.lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

.lbl.w { color: rgba(255,255,255,.35); }

h2.sec {
  font-family: var(--D);
  font-size: clamp(2.2rem,4.5vw,3.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: .9rem;
}

h2.sec.w { color: #fff; }
h2.sec em { font-style: normal; color: var(--blue); }

.sdesc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--g1);
  font-weight: 300;
  max-width: 560px;
}

.sdesc.w { color: rgba(255,255,255,.38); }

.sh { margin-bottom: 3.75rem; }

.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}

.rv.on { opacity: 1; transform: none; }

/* Audience / Fit */
#fit { background: #fff; }

.fit-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 2rem;
  align-items: start;
}

.fit-card {
  background: var(--off);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.fit-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--blue);
}

.fit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.fit-list li {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 1rem;
  font-size: .88rem;
  color: #334155;
  line-height: 1.55;
}

.fit-list li strong {
  display: block;
  color: var(--navy);
  font-family: var(--D);
  margin-bottom: .2rem;
}

/* Services */
#services { background: var(--off); }

.sgrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
  align-items: start;
}

.pkg {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}

.pkg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--bdr);
  transition: background .3s;
}

.pkg:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(17,24,39,.09);
}

.pkg:hover::after { background: var(--blue2); }

.pkg.star {
  border-color: rgba(37,99,235,.25);
  background: linear-gradient(155deg,#fff 55%,#EEF4FF 100%);
}

.pkg.star::after { background: var(--blue); }

.ptier {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: 1.5rem;
}

.pkg.star .ptier { color: var(--blue); }

.pname {
  font-family: var(--D);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .2rem;
}

.psub {
  font-size: .83rem;
  color: var(--g1);
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.pprice {
  font-family: var(--D);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.pprice span {
  display: block;
  font-family: var(--B);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: .45rem;
}

.pprice sup {
  font-size: 1rem;
  font-weight: 700;
  vertical-align: top;
  margin-right: .1rem;
}

.pprice sub {
  font-size: .85rem;
  font-weight: 400;
  color: var(--g2);
  font-family: var(--B);
}

.pdel {
  font-size: .76rem;
  color: var(--g2);
  padding: .65rem 0;
  margin: .75rem 0 1.75rem;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}

.plist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
}

.plist li {
  font-size: .875rem;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.45;
}

.plist li::before {
  content: '✓';
  font-size: .68rem;
  font-weight: 800;
  color: var(--blue);
  background: var(--bsoft);
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pbtn {
  display: block;
  text-align: center;
  padding: .75rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: all .2s;
}

.pout {
  border: 1.5px solid var(--bdr);
  color: var(--navy);
}

.pout:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--bsoft);
}

.psol {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,.25);
}

.psol:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
  transform: translateY(-1px);
}

/* Why */
#why { background: #fff; }

.wgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.wc {
  background: var(--off);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}

.wc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17,24,39,.07);
}

.wnum {
  font-family: var(--D);
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0,0,0,.04);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  pointer-events: none;
  user-select: none;
}

.wicon {
  width: 48px;
  height: 48px;
  background: var(--bsoft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.wh {
  font-family: var(--D);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}

.wp {
  font-size: .875rem;
  color: var(--g1);
  line-height: 1.7;
  font-weight: 300;
}

/* Process */
#process { background: var(--navy); }

.pgrid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
}

.step {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bdrw);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: background .3s, border-color .3s;
}

.step:hover {
  background: rgba(37,99,235,.07);
  border-color: rgba(37,99,235,.25);
}

.step-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
}

.sh2 {
  font-family: var(--D);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .55rem;
}

.sp {
  font-size: .83rem;
  color: rgba(255,255,255,.35);
  line-height: 1.65;
  font-weight: 300;
}

/* Proof */
#proof { background: var(--navy); }

.proof-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 1.25rem;
  align-items: stretch;
}

.proof-card,
.proof-metric {
  background: rgba(255,255,255,.035);
  border: 1px solid var(--bdrw);
  border-radius: 20px;
  padding: 2rem;
}

.proof-card h3 {
  font-family: var(--D);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .7rem;
}

.proof-card p {
  color: rgba(255,255,255,.42);
  line-height: 1.75;
  font-size: .92rem;
}

.proof-mini {
  display: grid;
  gap: 1rem;
}

.proof-metric strong {
  display: block;
  color: #fff;
  font-family: var(--D);
  font-size: 1.25rem;
}

.proof-metric span {
  color: rgba(255,255,255,.36);
  font-size: .82rem;
  line-height: 1.55;
}

/* Portfolio */
#portfolio { background: #fff; }

.qgrid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}

.qc {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--bdr);
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  cursor: pointer;
}

.qc:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(17,24,39,.09);
}

.qt {
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.qtbg {
  position: absolute;
  inset: 0;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}

.qc:hover .qtbg { transform: scale(1.05); }

.qtov {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  background: rgba(17,24,39,.5);
  backdrop-filter: blur(4px);
}

.qc:hover .qtov { opacity: 1; }

.qtov span {
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .05em;
  border: 1px solid rgba(255,255,255,.35);
  padding: .4rem 1rem;
  border-radius: 99px;
}

.qlbl {
  font-family: var(--D);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  position: relative;
  z-index: 1;
}

.qi { padding: 1.25rem 1.5rem; }

.qiname {
  font-family: var(--D);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .2rem;
}

.qitype {
  font-size: .78rem;
  color: var(--g2);
}

/* Maintenance */
#maintenance { background: var(--off); }

.maintenance-card {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 18px 54px rgba(17,24,39,.06);
}

.maintenance-price {
  background: var(--navy);
  color: white;
  border-radius: 18px;
  padding: 2rem;
}

.maintenance-price strong {
  display: block;
  font-family: var(--D);
  font-size: 2rem;
  margin-bottom: .35rem;
}

.maintenance-price span {
  display: block;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  font-size: .88rem;
}

.maintenance-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.maintenance-list li {
  border: 1px solid var(--bdr);
  background: var(--off);
  border-radius: 14px;
  padding: 1rem;
  color: #334155;
  font-size: .88rem;
  line-height: 1.55;
}

/* Add-ons */
#addons { background: var(--off); }

.addon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.addon {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 1.35rem;
  transition: transform .25s, box-shadow .25s;
}

.addon:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17,24,39,.08);
}

.addon strong {
  display: block;
  font-family: var(--D);
  font-size: .95rem;
  margin-bottom: .55rem;
  color: var(--navy);
}

.addon span {
  display: block;
  color: var(--blue);
  font-weight: 800;
  font-size: .92rem;
}

/* FAQ */
#faq { background: #fff; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--bdr);
  border-radius: 16px;
  background: var(--off);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.35rem;
  font-family: var(--D);
  font-weight: 800;
  color: var(--navy);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 1.35rem 1.35rem;
  color: var(--g1);
  line-height: 1.7;
  font-size: .9rem;
}

/* Contact */
#contact { background: var(--off); }

.ctgrid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 4rem;
  align-items: start;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bdr);
}

.ci:first-of-type { border-top: 1px solid var(--bdr); }

.ciico {
  width: 40px;
  height: 40px;
  background: var(--bsoft);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.ci strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .15rem;
}

.ci span {
  font-size: .82rem;
  color: var(--g1);
}

.fw {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(17,24,39,.05);
}

.fwtitle {
  font-family: var(--D);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.75rem;
}

.f2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fg { margin-bottom: 1rem; }

.fg label {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .02em;
  margin-bottom: .4rem;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--bdr);
  border-radius: 10px;
  font-family: var(--B);
  font-size: .875rem;
  color: var(--navy);
  background: var(--off);
  outline: none;
  resize: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

.fg textarea { height: 96px; }
.fg select { cursor: pointer; }

.fsub {
  width: 100%;
  padding: .9rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--B);
  font-size: .9rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,99,235,.2);
}

.fsub:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,99,235,.4);
}

.form-note {
  margin-top: .8rem;
  color: var(--g2);
  font-size: .78rem;
  text-align: center;
}

/* Footer */
footer {
  background: var(--navy);
  padding: 4rem clamp(1.5rem,5vw,5rem) 2.5rem;
  position: relative;
  overflow: hidden;
}

.ft {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--bdrw);
  position: relative;
  z-index: 1;
}

.fb img {
  height: 52px;
  width: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  filter: none !important;
  background: #fff;
  padding: .35rem .6rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.fb p {
  font-size: .78rem;
  color: rgba(255,255,255,.28);
  line-height: 1.65;
  max-width: 220px;
}

.fc h5 {
  font-family: var(--D);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.1rem;
}

.fc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.fc a {
  font-size: .82rem;
  color: rgba(255,255,255,.28);
  transition: color .2s;
}

.fc a:hover { color: rgba(255,255,255,.85); }

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  color: rgba(255,255,255,.18);
  position: relative;
  z-index: 1;
}

.fbot a {
  color: rgba(255,255,255,.18);
  transition: color .2s;
}

.fbot a:hover { color: rgba(255,255,255,.55); }

.wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 100;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}

.wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.wa svg {
  width: 26px;
  height: 26px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:960px) {
  .sgrid { grid-template-columns: 1fr; }
  .wgrid { grid-template-columns: 1fr; }
  .pgrid { grid-template-columns: 1fr 1fr; }
  .qgrid { grid-template-columns: 1fr 1fr; }
  .ctgrid { grid-template-columns: 1fr; gap: 2.5rem; }
  .ft { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hstats { grid-template-columns: repeat(2,1fr); max-width: 620px; }
  .fit-grid,
  .proof-grid,
  .maintenance-card { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media(max-width:640px) {
  nav { height: 68px; }

  .nlogo img {
    height: 44px;
  }

  .nlinks { display: none; }

  .nlinks.open {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(17,24,39,.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem clamp(1.5rem,5vw,5rem) 2rem;
    border-bottom: 1px solid var(--bdrw);
  }

  .hbg { display: flex; }

  .hero { padding-top: 115px; }

  .hbtns { margin-bottom: 3rem; }

  .hstats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .stat { min-height: 92px; }

  .pgrid { grid-template-columns: 1fr; }
  .qgrid { grid-template-columns: 1fr; }
  .f2 { grid-template-columns: 1fr; }
  .ft { grid-template-columns: 1fr; }

  .fit-list,
  .maintenance-list { grid-template-columns: 1fr; }

  .addon-grid { grid-template-columns: 1fr; }

  .fbot {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
  }
}
