:root {
  --orange: #FF6A00;
  --dark: #0f1724;
  --muted: #6b7280;
  --bg: #fffdfb;
  --glass: rgba(255,255,255,0.85);
  --card-shadow: 0 12px 40px rgba(2,6,23,0.06);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: var(--dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 28px;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: linear-gradient(0deg, rgba(255,255,255,0.85), rgba(255,255,255,0.65));
  backdrop-filter: saturate(140%) blur(6px);
  z-index: 40;
  border-bottom: 1px solid rgba(15,23,36,0.03);
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), #FF8A2D);
  box-shadow: 0 8px 30px rgba(255,106,0,0.14);
}

.brand h1 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
}

.brand p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

/* Navigation */
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  font-weight: 600;
  color: var(--dark);
  padding: 8px 10px;
  border-radius: 8px;
}

.nav a:hover {
  background: rgba(15,23,36,0.03);
}

/* Social links block default hidden (desktop) */
.nav .social-links {
  display: none;
}

/* Nav toggle (hamburger) */
.nav-toggle {
  display: none; /* visible only on mobile via media query */
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  border-radius: 8px;
}

/* CTA (desktop social buttons) */
.cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,36,0.06);
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: white;
  border: 0;
  box-shadow: 0 10px 30px rgba(255,106,0,0.12);
}

/* Hero / Content styles (kept as before) */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}

.hero-left { padding: 6px 0; }

.kicker {
  display: inline-block;
  background: rgba(255,106,0,0.08);
  color: var(--orange);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.02;
  margin: 18px 0 12px;
  font-weight: 900;
}

.hero-sub {
  color: var(--muted);
  max-width: 60ch;
  font-size: 17px;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  border-radius: 18px;
  padding: 18px;
  background: var(--glass);
  box-shadow: var(--card-shadow);
  max-width: 520px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(2,6,23,0.12);
}

.hero-bg .overlay {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,106,0,0.12), rgba(255,106,0,0.03));
}

.section { padding: 44px 0; }
.center { text-align: center; }

.grid { display: grid; gap: 18px; }
.grid-3 { grid-template-columns: 1fr; }

.card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--card-shadow);
}

.stats {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 140px;
  box-shadow: 0 8px 30px rgba(2,6,23,0.04);
}

.features { display: grid; gap: 14px; }
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.steps { display: grid; gap: 12px; }
.step { display: flex; gap: 12px; align-items: flex-start; }

.step .num {
  background: var(--orange);
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 800;
}

.team { display: flex; gap: 12px; flex-wrap: wrap; }

.role {
  background: white;
  border-radius: 12px;
  padding: 14px;
  flex: 1 1 200px;
  box-shadow: var(--card-shadow);
}

.footer {
  border-top: 1px solid rgba(15,23,36,0.04);
  padding: 26px 0;
  margin-top: 24px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .left {
  display: flex;
  gap: 12px;
  align-items: center;
}

.contact-form {
  background: white;
  border-radius: 12px;
  padding: 18px;
  box-shadow: var(--card-shadow);
  max-width: 700px;
  margin: auto;
}

.input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(15,23,36,0.06);
  margin-bottom: 10px;
  resize: vertical;
}

.small { font-size: 13px; color: var(--muted); }

.center-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

/* Desktop breakpoints */
@media (min-width: 820px) {
  .hero { grid-template-columns: 1fr 520px; }
  .grid-3 { grid-template-columns: repeat(3,1fr); }
  .nav a { padding: 8px 12px; }
  .hero-title { font-size: 56px; }
}

/* Hover effects */
.hero-bg,
.card,
.feature,
.role {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-bg:hover,
.card:hover,
.feature:hover,
.role:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
  cursor: pointer;
}

.btn { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15,23,36,0.06);
}

/* ---------------- MOBILE NAV (bottom overrides) ---------------- */

/* mobile menu styles: hidden by default off-canvas */
@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: 70px; /* places dropdown under header */
    right: 16px;
    flex-direction: column;
    background: white;
    width: 240px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(2,6,23,0.12);
    transform: translateX(110%);
    transition: transform 0.28s cubic-bezier(.2,.9,.2,1);
    z-index: 1000;
  }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  .nav a { display: block; width: 100%; padding: 10px 8px; }
  .nav .btn { margin-top: 6px; width: 100%; }

  /* show social links in mobile menu */
  .nav .social-links {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }

  /* hide the header CTA on mobile to prevent duplication */
  .cta { display: none !important; }
}

/* ensure social-links always hidden on desktop via a media-min rule (strong specificity) */
@media (min-width: 821px) {
  nav.nav .social-links { display: none !important; }
}

/* smaller phones */
@media (max-width: 480px) {
  .container { padding: 16px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .btn { width: 100%; text-align: center; }
  .grid-3, .features { grid-template-columns: 1fr; }
}

/* Hide social-links in nav on desktop */
@media (min-width: 821px) {
  .nav .social-links {
    display: none !important;
  }
}

/* Hide desktop CTA completely on mobile */
@media (max-width: 820px) {
  .cta {
    display: none !important;
  }
}
