@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:    #07090e;
  --mid:   #0d1117;
  --card:  #111620;
  --card2: #161c28;
  --border: rgba(255,255,255,0.07);
  --teal:  #1ecab8;
  --teal2: #0ea89a;
  --blue:  #1a8cff;
  --red:   #ff4455;
  --muted: #6b7789;
  --text:  #d8e0ed;
  --white: #ffffff;
  --H: 'Bebas Neue', sans-serif;
  --B: 'Outfit', sans-serif;
  --r: 12px;
  --r2: 18px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--B);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

/* ── NAV ────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 300;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(7,9,14,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

/* Logo pill */
.logo-pill {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  background: rgba(30,202,184,0.07);
  border: 1px solid rgba(30,202,184,0.18);
  border-radius: 10px;
  padding: 6px 14px 6px 8px;
  transition: .2s;
}
.logo-pill:hover {
  background: rgba(30,202,184,0.12);
  border-color: rgba(30,202,184,0.3);
  box-shadow: 0 0 20px rgba(30,202,184,0.1);
}
.logo-pill img {
  height: 34px; width: 34px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 5px rgba(30,202,184,0.35));
}
.logo-pill-text { line-height: 1.1; }
.logo-pill-name {
  font-family: var(--H);
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--white);
  display: block;
}
.logo-pill-name em { color: var(--teal); font-style: normal; }
.logo-pill-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

.nav-links { display: flex; gap: 2px; align-items: center; }
.nb {
  background: none; border: none;
  color: var(--muted); font-family: var(--B); font-size: 13px;
  padding: 7px 14px; border-radius: 6px; cursor: pointer;
  transition: .15s; text-decoration: none; display: inline-block;
}
.nb:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nb.on  { color: var(--teal); background: rgba(30,202,184,0.1); }
.nav-cta {
  background: var(--teal); color: #000 !important;
  border: none; font-family: var(--B); font-size: 13px; font-weight: 700;
  padding: 9px 20px; border-radius: 7px; cursor: pointer;
  margin-left: 10px; transition: .15s;
  text-decoration: none; display: inline-block; white-space: nowrap;
}
.nav-cta:hover { background: var(--teal2); }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 24px; cursor: pointer;
}

/* ── FULL-WIDTH SECTIONS ────────────── */
/* Every section is 100vw, padding controls rhythm */
section, .section {
  width: 100%;
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
section:last-child, .section:last-child { border-bottom: none; }

/* ── TYPE HELPERS ───────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
.label::before {
  content: '';
  display: inline-block; width: 18px; height: 2px;
  background: var(--teal); border-radius: 2px;
}
h1, h2, h3 { font-family: var(--H); line-height: .97; letter-spacing: .5px; }
h1 { font-size: clamp(52px, 6vw, 88px); color: var(--white); margin-bottom: 22px; }
h2 { font-size: clamp(36px, 4.5vw, 62px); color: var(--white); margin-bottom: 16px; }
h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.t  { color: var(--teal); }
.sub {
  color: var(--muted); font-size: 16px; line-height: 1.75;
  max-width: 600px;
}

/* ── BUTTONS ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--B); font-weight: 600; font-size: 14px;
  padding: 14px 28px; border-radius: 9px; border: none;
  cursor: pointer; transition: .15s; text-decoration: none;
  white-space: nowrap;
}
.btn-teal  { background: var(--teal); color: #000; }
.btn-teal:hover { background: var(--teal2); transform: translateY(-1px); }
.btn-ghost {
  background: none; color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }
.btn-dark {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover { background: rgba(255,255,255,0.1); }

/* ── GRIDS ──────────────────────────── */
.g2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }

/* ── CARDS ──────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  transition: .22s; position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  opacity: 0; transition: .2s;
}
.card:hover { border-color: rgba(30,202,184,0.28); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card:hover::after { opacity: 1; }

.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(30,202,184,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.card-title { font-weight: 600; font-size: 16px; color: var(--white); margin-bottom: 8px; }
.card-text  { color: var(--muted); font-size: 13px; line-height: 1.65; }
.chip {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; margin-top: 12px; margin-right: 4px;
  letter-spacing: .3px;
}
.chip-teal { background: rgba(30,202,184,0.12); color: var(--teal); }
.chip-blue { background: rgba(26,140,255,0.12); color: var(--blue); }

/* ── FORMS ──────────────────────────── */
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fg label { font-size: 12px; font-weight: 600; color: var(--text); letter-spacing: .3px; }
.fi {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 9px; color: var(--white); font-family: var(--B);
  font-size: 14px; padding: 11px 14px; outline: none; width: 100%; transition: .15s;
}
.fi:focus { border-color: rgba(30,202,184,0.45); background: rgba(30,202,184,0.04); }
.fi::placeholder { color: var(--muted); }
select.fi {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7789' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
select.fi option { background: #111620; }
textarea.fi { resize: vertical; min-height: 100px; }
.fg2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.phone-wrap {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 9px; overflow: hidden; transition: .15s;
}
.phone-wrap:focus-within { border-color: rgba(30,202,184,0.45); }
.phone-flag { padding: 11px 12px; border-right: 1px solid var(--border); color: var(--muted); font-size: 13px; white-space: nowrap; }
.phone-input { background: none; border: none; color: var(--white); font-family: var(--B); font-size: 14px; padding: 11px 13px; outline: none; flex: 1; }
.submit-btn {
  width: 100%; background: var(--teal); color: #000; border: none;
  font-family: var(--B); font-weight: 700; font-size: 15px;
  padding: 14px; border-radius: 9px; cursor: pointer; margin-top: 8px; transition: .15s;
}
.submit-btn:hover { background: var(--teal2); }

/* ── MISC ───────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 5px;
  text-transform: uppercase; letter-spacing: .5px;
  background: rgba(30,202,184,0.1); color: var(--teal);
}
.warn-box {
  background: rgba(255,180,0,0.07); border: 1px solid rgba(255,180,0,0.22);
  border-radius: 9px; padding: 13px 18px; margin-top: 14px;
  font-size: 12px; color: #f0c060; text-align: center; line-height: 1.7;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
.fade-up { animation: fadeUp .65s ease both; }
.d1{animation-delay:.1s} .d2{animation-delay:.25s} .d3{animation-delay:.4s} .d4{animation-delay:.55s}

/* ── FOOTER ─────────────────────────── */
footer {
  width: 100%; padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 12px; text-decoration: none; transition: .15s; }
.foot-links a:hover { color: var(--text); }
.foot-copy { font-size: 12px; color: var(--muted); }

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .g4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section, .section { padding: 56px 24px; }
  .nav { padding: 0 24px; }
  .nav-links {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(7,9,14,0.99);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 4px;
    z-index: 299;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-hamburger { display: block; }
  /* Make nav links full width on mobile */
  .nav-links .nb,
  .nav-links .nav-cta {
    width: 100%;
    text-align: left;
    padding: 12px 8px;
    border-radius: 8px;
    margin: 0;
    font-size: 15px;
  }
  .nav-links .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
  .g2, .g3, .g4, .g-auto { grid-template-columns: 1fr; }
  .fg2 { grid-template-columns: 1fr; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .foot-links { justify-content: center; }
}
