@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@600;700&display=swap');

:root {
  --bg: #070b10;
  --bg-soft: #0b1118;
  --surface: rgba(17, 24, 33, .78);
  --surface-solid: #111821;
  --surface-2: #151f2b;
  --text: #f7f9fc;
  --muted: #9aa6b4;
  --muted-2: #6f7b89;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.15);
  --orange: #ff8a1f;
  --orange-light: #ffb65a;
  --orange-dark: #c95b00;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 30px 100px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 15% -10%, rgba(255,138,31,.09), transparent 25%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
code { color: #ffd1a3; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 830px); margin-inline: auto; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(7,11,16,.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 86px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.brand img { width: 74px; height: 74px; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: #c8d0d9; font-size: .93rem; font-weight: 700; transition: .2s ease; }
.site-nav a:hover, .site-nav a.active { color: var(--orange-light); }

.menu-button {
  display: none;
  color: white;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 9px 13px;
}

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  font-weight: 800; letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #1b1007 !important;
  box-shadow: 0 12px 35px rgba(255,138,31,.18);
}
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 45px rgba(255,138,31,.27); }
.button-secondary {
  background: rgba(255,255,255,.035);
  border-color: var(--line-strong);
}
.button-secondary:hover { border-color: rgba(255,138,31,.65); color: var(--orange-light); transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .89rem; }

.hero {
  min-height: 100vh;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  padding-top: 90px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 760px; height: 760px;
  right: -160px; top: -80px;
  background: radial-gradient(circle, rgba(255,138,31,.20), rgba(255,138,31,.06) 34%, transparent 68%);
  filter: blur(8px);
  transition: transform .2s ease-out;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 105px 0 88px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--orange-light);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1,h2,h3 { line-height: 1.08; margin-top: 0; }
h1 {
  margin-bottom: 24px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(4rem, 8.2vw, 7.5rem);
  letter-spacing: -.04em;
}
h2 { font-size: clamp(2.1rem, 4.6vw, 4rem); letter-spacing: -.035em; }
h3 { font-size: 1.25rem; }
.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--orange), #ffd08c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy { max-width: 690px; color: #b9c2cc; font-size: clamp(1.08rem, 1.8vw, 1.28rem); }
.hero-purpose { margin: 26px 0 0; font-size: 1.12rem; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }

.logo-stage {
  position: relative;
  padding: 1px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,138,31,.25), rgba(255,255,255,.05));
  box-shadow: var(--shadow);
}
.logo-stage::after {
  content: "";
  position: absolute; inset: 10% 13%;
  background: radial-gradient(circle, rgba(255,138,31,.18), transparent 66%);
  filter: blur(24px);
  z-index: -1;
}
.logo-panel {
  min-height: 440px;
  display: grid; place-items: center;
  padding: 42px;
  border-radius: 29px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    #0d141d;
  backdrop-filter: blur(20px);
}
.logo-panel img { width: min(100%, 620px); height: auto; object-fit: contain; }

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.018);
}
.trust-inner {
  min-height: 78px;
  display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap;
  color: #aab4bf; font-size: .9rem; font-weight: 700;
}
.trust-inner span::before {
  content: "◆";
  color: var(--orange);
  font-size: .58rem;
  margin-right: 10px;
}

.section { padding: 104px 0; position: relative; }
.section-muted { background: linear-gradient(180deg, #0b1118, #0a1017); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading p { color: var(--muted); font-size: 1.04rem; }

.nav-grid, .steps-grid, .faq-grid, .pricing-grid {
  display: grid;
  gap: 20px;
}
.nav-grid { grid-template-columns: repeat(4,1fr); }
.nav-card, .step, .faq-card, .price-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.042), rgba(255,255,255,.014)),
    var(--surface-solid);
  box-shadow: 0 20px 60px rgba(0,0,0,.16);
}
.nav-card::before, .price-card::before {
  content: "";
  position: absolute;
  width: 160px; height: 160px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(255,138,31,.13), transparent 70%);
}
.nav-card { min-height: 245px; transition: .25s ease; }
.nav-card:hover { transform: translateY(-7px); border-color: rgba(255,138,31,.52); }
.nav-card p, .step p, .faq-card p, .price-card p { color: var(--muted); }
.nav-card .arrow { position: absolute; left: 30px; bottom: 28px; color: var(--orange-light); font-weight: 800; }

.page-hero {
  padding: 175px 0 86px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(255,138,31,.12), transparent 35%),
    linear-gradient(180deg, #0b1118, #080d13);
}
.page-hero h1 { font-size: clamp(3rem, 7vw, 6.3rem); }
.page-hero p { max-width: 730px; margin: 0 auto; color: var(--muted); font-size: 1.1rem; }

.steps-grid { grid-template-columns: repeat(2,1fr); }
.step { padding: 36px; }
.icon-number {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255,138,31,.25);
  border-radius: 50%;
  color: var(--orange-light);
  background: rgba(255,138,31,.08);
  font-weight: 900;
}
.callout {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px;
  padding: 44px;
  border: 1px solid rgba(255,138,31,.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(255,138,31,.14), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
}

.pricing-grid { grid-template-columns: repeat(2,minmax(0,480px)); justify-content: center; }
.price-card { padding: 40px; }
.price-card.featured {
  border-color: rgba(255,138,31,.72);
  box-shadow: 0 30px 90px rgba(255,138,31,.10);
}
.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255,138,31,.28);
  border-radius: 999px;
  color: var(--orange-light);
  background: rgba(255,138,31,.08);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.price { margin: 20px 0 10px; font-size: 3.8rem; font-weight: 900; line-height: 1; }
.price small { color: var(--muted); font-size: 1rem; font-weight: 600; }
.features { list-style: none; padding: 0; margin: 28px 0; }
.features li { padding: 12px 0; border-bottom: 1px solid var(--line); }
.features li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 10px; }
.price-card .button { width: 100%; }

.faq-grid { grid-template-columns: repeat(2,1fr); }
.faq-card { padding: 32px; }

.subscribe-summary { max-width: 780px; margin: 0 auto 48px; text-align: center; }
.checkout-notice {
  display: none;
  max-width: 790px;
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid rgba(255,178,84,.35);
  border-radius: 16px;
  background: #21170f;
  color: #ffd8ae;
}
.checkout-notice.show { display: block; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  background: #05080c;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-brand img { width: 96px; height: 96px; object-fit: contain; }
.footer-meta { color: var(--muted); font-size: .9rem; text-align: right; }
.footer-meta a { color: var(--orange-light); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-glow { transition: none; }
}
@media (max-width: 940px) {
  .brand img { width: 66px; height: 66px; }
  .menu-button { display: block; }
  .site-nav {
    display: none;
    position: fixed; inset: 86px 0 0 0;
    padding: 34px 22px;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(7,11,16,.98);
    backdrop-filter: blur(18px);
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.1rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .logo-stage { max-width: 680px; margin-inline: auto; }
  .logo-panel { min-height: 360px; }
  .nav-grid { grid-template-columns: repeat(2,1fr); }
  .callout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 60px; height: 60px; }
  .hero-inner { padding-top: 70px; gap: 48px; }
  .hero { min-height: auto; }
  .logo-panel { min-height: 270px; padding: 22px; }
  .section { padding: 76px 0; }
  .nav-grid, .steps-grid, .faq-grid, .pricing-grid { grid-template-columns: 1fr; }
  .nav-card { min-height: 220px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}


/* Contact page */
.contact-hero { background: radial-gradient(circle at 50% 0, rgba(255,138,31,.14), transparent 38%), linear-gradient(180deg,#0b1118,#080d13); }
.contact-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:54px; align-items:start; }
.contact-intro { position:sticky; top:125px; }
.contact-intro > p:not(.eyebrow), .contact-bottom p { color:var(--muted); font-size:1.04rem; }
.contact-detail-card, .response-note { margin-top:28px; padding:24px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.025); }
.contact-label { display:block; margin-bottom:8px; color:var(--muted-2); font-size:.74rem; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.contact-detail-card a { color:var(--orange-light); font-weight:800; word-break:break-word; }
.contact-detail-card p, .response-note p { margin:8px 0 0; color:var(--muted); font-size:.92rem; }
.response-note strong { color:#fff; }
.contact-form-card { padding:40px; border:1px solid var(--line); border-radius:28px; background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.014)),var(--surface-solid); box-shadow:var(--shadow); }
.contact-form-card h2 { margin-bottom:30px; }
.form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; }
.field { margin-bottom:20px; }
.field label { display:block; margin-bottom:8px; color:#dce2e8; font-size:.91rem; font-weight:700; }
.field label span { color:var(--orange-light); }
.field input, .field select, .field textarea { width:100%; border:1px solid var(--line-strong); border-radius:13px; background:#0a1017; color:#fff; padding:14px 15px; font:inherit; outline:none; transition:border-color .2s ease,box-shadow .2s ease; }
.field input, .field select { min-height:51px; }
.field textarea { resize:vertical; min-height:160px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:rgba(255,138,31,.75); box-shadow:0 0 0 4px rgba(255,138,31,.09); }
.field select { color-scheme:dark; }
.contact-submit { width:100%; margin-top:4px; }
.form-message { margin:0 0 18px; padding:13px 15px; border-radius:12px; font-size:.92rem; }
.form-error { color:#ffd5d5; background:rgba(190,51,51,.12); border:1px solid rgba(255,98,98,.3); }
.form-privacy { margin:14px 0 0; color:var(--muted-2); font-size:.78rem; text-align:center; }
.contact-bottom { text-align:center; }
.contact-bottom .button { margin-top:18px; }
.footer-links { display:flex; justify-content:flex-end; gap:9px; flex-wrap:wrap; }
.footer-links a { color:var(--orange-light); }
@media (max-width:900px) { .contact-layout { grid-template-columns:1fr; } .contact-intro { position:static; } }
@media (max-width:640px) { .contact-form-card { padding:27px 20px; } .form-grid { grid-template-columns:1fr; gap:0; } .footer-links { justify-content:center; } }
/* Hero Benefits */

.hero-benefits {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-benefits div {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #f5f5f5;
}

.hero-benefits div::before {
    content: "✓";
    color: #f59e0b;
    font-weight: 700;
    margin-right: 12px;
}
/* ================================
   INDUSTRIES PAGE
================================ */

.industries-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-top:50px;
}

.nav-card{
    display:block;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:#111822;
    text-decoration:none;
    transition:.25s ease;
}

.nav-card:hover{
    transform:translateY(-6px);
    border-color:#ff9b2f;
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.nav-card h3{
    color:white;
    margin-bottom:12px;
}

.nav-card p{
    color:#b8c4d2;
    margin-bottom:20px;
}

.arrow{
    color:#ff9b2f;
    font-weight:700;
}
