:root {
  --petrol: #0C2A30;
  --petrol-deep: #081E23;
  --petrol-soft: #11353D;
  --line: #1C4650;
  --teal: #1DE5DB;
  --teal-dim: rgba(29, 229, 219, 0.10);
  --coral: #FF6B4A;
  --coral-hover: #FF8266;
  --paper: #F2F7F6;
  --muted: #8FAEB2;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--petrol);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 30, 35, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand svg { width: 30px; height: 31px; flex-shrink: 0; }
.brand-text { line-height: 1.1; }
.brand-text .n1 { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: 0.06em; color: var(--paper); display: block; }
.brand-text .n2 { font-size: 9.5px; letter-spacing: 0.28em; color: var(--teal); display: block; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--paper); }
.nav-cta { background: var(--coral); color: var(--petrol-deep) !important; padding: 10px 18px; border-radius: 10px; font-weight: 600; transition: background 0.15s; }
.nav-cta:hover { background: var(--coral-hover); }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--paper); padding: 8px 12px; font-size: 18px; cursor: pointer; }

/* Buttons */
.btn { display: inline-block; font-weight: 600; font-size: 16px; padding: 15px 28px; border-radius: 12px; cursor: pointer; border: none; transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s; }
.btn:hover { transform: translateY(-1px); }
.btn-coral { background: var(--coral); color: var(--petrol-deep); }
.btn-coral:hover { background: var(--coral-hover); }
.btn-ghost { background: transparent; color: var(--paper); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-block { display: block; width: 100%; text-align: center; }

/* Hero */
.hero { position: relative; padding: 116px 0 120px; overflow: hidden; }
.hero-n {
  position: absolute; top: 50%; right: -60px; transform: translateY(-50%);
  width: 520px; height: 540px; opacity: 0.07; pointer-events: none;
}
.hero-inner { position: relative; max-width: 700px; }
.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal);
  border-left: 3px solid var(--coral); padding-left: 12px;
  transform: skewX(-8deg); margin-bottom: 24px;
}
.eyebrow span { display: inline-block; transform: skewX(8deg); }
h1 {
  font-family: var(--font-display); font-size: clamp(38px, 5.5vw, 62px); font-weight: 700;
  line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 24px;
}
h1 .hl { color: var(--teal); }
.hero-sub { font-size: 19px; color: var(--muted); max-width: 590px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--muted); }
.hero-note a { font-weight: 600; }

/* Diagonal divider — the signature */
.slash { height: 72px; position: relative; overflow: hidden; }
.slash::before {
  content: ""; position: absolute; inset: 0;
  background: var(--petrol-deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
.slash::after {
  content: ""; position: absolute; left: 0; right: 0; top: 50%;
  height: 4px; background: var(--coral);
  transform: rotate(-1.55deg); transform-origin: center;
}

/* Stats */
.stats { background: var(--petrol-deep); padding: 56px 0 64px; }
.stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-num { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 15px; color: var(--muted); max-width: 280px; }

/* Sections */
.section { padding: 100px 0; }
.section-deep { background: var(--petrol-deep); }
.section-head { max-width: 660px; margin-bottom: 56px; }
h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 18px; }

/* Services */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--petrol-soft); border: 1px solid var(--line); border-radius: 14px;
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 44px; height: 4px;
  background: var(--teal); transform: skewX(-30deg) translateX(-6px);
}
.card:hover { border-color: var(--teal); transform: translateY(-3px); }
.card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin: 14px 0 10px; }
.card p { font-size: 15.5px; color: var(--muted); }

/* Comparison */
.compare-wrap { overflow-x: auto; }
.compare { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.compare th, .compare td { padding: 20px 24px; text-align: left; font-size: 16px; border-bottom: 1px solid var(--line); }
.compare tr:last-child td { border-bottom: none; }
.compare thead th { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; background: var(--petrol-soft); }
.compare thead th:nth-child(2) { color: var(--muted); }
.compare thead th:nth-child(3) { color: var(--teal); }
.compare td:first-child { color: var(--muted); font-weight: 600; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.06em; width: 21%; }
.compare td:nth-child(2) { color: var(--muted); }
.compare td:nth-child(3) { background: var(--teal-dim); }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: var(--petrol-soft); border: 1px solid var(--line); border-radius: 14px; padding: 38px 30px; display: flex; flex-direction: column; }
.plan-featured { border-color: var(--teal); position: relative; }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: var(--petrol-deep); font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; white-space: nowrap;
}
.plan h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.plan-promise { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; }
.plan-for { font-size: 14.5px; color: var(--muted); margin-bottom: 24px; min-height: 44px; }
.plan-price { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1; }
.plan-price span { font-size: 16px; font-weight: 500; color: var(--muted); }
.plan-setup { font-size: 14px; color: var(--muted); margin: 8px 0 26px; }
.plan ul { list-style: none; margin-bottom: 30px; flex: 1; }
.plan li { font-size: 15px; padding: 8px 0 8px 24px; position: relative; }
.plan li::before {
  content: ""; position: absolute; left: 2px; top: 15px; width: 12px; height: 4px;
  background: var(--teal); transform: skewX(-30deg);
}
.addon {
  margin-top: 22px; background: var(--petrol-soft); border: 1px dashed var(--line);
  border-radius: 14px; padding: 24px 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.addon h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.addon p { font-size: 14.5px; color: var(--muted); }
.addon .addon-price { font-family: var(--font-display); font-size: 24px; font-weight: 700; white-space: nowrap; }
.addon .addon-price span { font-size: 14px; color: var(--muted); font-weight: 500; }

/* CTA */
.cta-band { position: relative; text-align: center; padding: 110px 0; overflow: hidden; background: var(--petrol-deep); }
.cta-n { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 640px; height: 660px; opacity: 0.05; pointer-events: none; }
.cta-band h2 { max-width: 680px; margin: 0 auto 16px; position: relative; }
.cta-band p { color: var(--muted); font-size: 18px; max-width: 540px; margin: 0 auto 36px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--paper); font-size: 15px; }
.footer a:hover { color: var(--teal); }
.footer-about p { color: var(--muted); font-size: 15px; max-width: 340px; margin-top: 14px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; color: var(--muted); }

/* Floating CTA */
.float-cta {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--coral); color: var(--petrol-deep);
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 15px 24px; border-radius: 100px; text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,107,74,0.4);
  transition: transform 0.15s ease, background 0.15s ease;
}
.float-cta:hover { background: var(--coral-hover); transform: translateY(-2px); color: var(--petrol-deep); }
.float-cta svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .float-cta { right: 16px; bottom: 16px; padding: 14px 20px; font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) { .float-cta { transition: none; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-3, .pricing-grid, .stats-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--petrol-deep); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 20px 24px 26px; gap: 18px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 72px 0 84px; }
  .hero-n { opacity: 0.05; }
  .section { padding: 64px 0; }
}

/* ===== Interior page hero ===== */
.page-hero { position: relative; padding: 96px 0 64px; overflow: hidden; }
.page-hero .hero-n { opacity: 0.06; }
.page-hero h1 { font-size: clamp(34px, 4.6vw, 52px); max-width: 760px; }
.page-hero p { color: var(--muted); font-size: 19px; max-width: 640px; margin-top: 16px; }

/* ===== Services detail ===== */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 68px 0; border-bottom: 1px solid var(--line); align-items: start; }
.svc:last-of-type { border-bottom: none; }
.svc-tag { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); background: var(--teal-dim); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
.svc h3 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 14px; }
.svc p { color: var(--muted); }
.svc-list { list-style: none; }
.svc-list li { padding: 12px 0 12px 26px; position: relative; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before { content: ""; position: absolute; left: 2px; top: 20px; width: 12px; height: 4px; background: var(--teal); transform: skewX(-30deg); }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-body p { margin-bottom: 20px; }
.about-body p.muted { color: var(--muted); }
.fact-card { background: var(--petrol-soft); border: 1px solid var(--line); border-radius: 14px; padding: 30px; }
.fact-card h3 { font-family: var(--font-display); font-size: 17px; margin-bottom: 18px; }
.fact-card ul { list-style: none; }
.fact-card li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--muted); }
.fact-card li:last-child { border-bottom: none; }
.fact-card li strong { color: var(--paper); display: block; font-size: 15.5px; margin-bottom: 2px; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-card { background: var(--petrol-soft); border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; margin-bottom: 18px; display: block; transition: border-color 0.2s; }
a.contact-card:hover { border-color: var(--teal); }
.contact-card .label { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-card .value { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--paper); }
.contact-card .hint { font-size: 14px; color: var(--muted); margin-top: 6px; }
.form-panel { background: var(--petrol-soft); border: 1px solid var(--line); border-radius: 14px; padding: 36px; }
.form-panel h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.form-panel .form-sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.field input, .field textarea, .field select { width: 100%; background: var(--petrol-deep); border: 1px solid var(--line); border-radius: 10px; color: var(--paper); font-family: var(--font-body); font-size: 16px; padding: 13px 15px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--teal); }
.field textarea { min-height: 130px; resize: vertical; }

@media (max-width: 900px) {
  .svc, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
