/* ── Momentum Digital Group — Stylesheet ── */
:root {
  --navy:   #0d1b35;
  --navy2:  #162140;
  --orange: #f97316;
  --orange2:#ea6c0a;
  --white:  #ffffff;
  --light:  #f8fafc;
  --gray:   #64748b;
  --border: #e2e8f0;
  --text:   #1e293b;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}

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

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo span { color: var(--orange); }

.nav-links { display: flex; gap: 2rem; align-items: center; }

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange2) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover { border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover { background: var(--navy2); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 5% 90px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--orange); }

.hero h2 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-note {
  margin-top: 1.2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  padding: 1.4rem 3rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.25);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SECTIONS ── */
section { padding: 80px 5%; }

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-center { text-align: center; }
.section-center .section-sub { margin-left: auto; margin-right: auto; }

.bg-light { background: var(--light); }
.bg-navy  { background: var(--navy); color: var(--white); }

/* ── WHO WE HELP ── */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.trade-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.trade-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(249,115,22,0.12); }

.trade-icon { font-size: 2rem; margin-bottom: 0.5rem; }

/* ── SERVICES CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.2s;
}

.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-card.featured { border-color: var(--orange); border-width: 2px; }

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p  { color: var(--gray); font-size: 0.95rem; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  counter-reset: steps;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 1.2rem;
}

.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p  { color: var(--gray); font-size: 0.95rem; }

/* ── TESTIMONIAL / PROOF ── */
.proof-block {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.proof-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.proof-attr { font-size: 0.95rem; color: var(--orange); font-weight: 600; }

/* ── FAQ ── */
.faq-list { max-width: 750px; margin: 0 auto; }

details {
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

details summary {
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

details[open] summary::after { content: '−'; }

details p { padding-top: 0.75rem; color: var(--gray); line-height: 1.7; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
  align-items: start;
}

.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.plan.popular {
  border-color: var(--orange);
  border-width: 2px;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.plan-name { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 0.5rem; }
.plan-price { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.3rem; }
.plan-period { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.2rem; }
.plan-desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.6; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }

.plan ul { list-style: none; margin-bottom: 1.5rem; }
.plan ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  padding-left: 1.6rem;
  position: relative;
  color: var(--text);
}

.plan ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.plan .btn { width: 100%; text-align: center; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 80px 5%;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.cta-note { margin-top: 1rem; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.about-content p  { color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }

.about-highlight {
  background: var(--light);
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.about-highlight p { color: var(--text); font-weight: 500; margin: 0; }

.about-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
}

.about-stat { text-align: center; margin-bottom: 1.5rem; }
.about-stat .big { font-size: 3rem; font-weight: 800; color: var(--orange); line-height: 1; }
.about-stat p { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; }

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.contact-info p  { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }

.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; font-weight: 500; }
.contact-detail span.icon { font-size: 1.2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }

label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--text); }

input, select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
}

textarea { min-height: 100px; resize: vertical; }

.form-submit .btn { width: 100%; margin-top: 0.5rem; padding: 1rem; font-size: 1rem; }

.checkbox-group { display: flex; flex-direction: column; gap: 0.4rem; }

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] { width: auto; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 3rem 5% 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.4rem; }
.footer-logo span { color: var(--orange); }
.footer-tagline { font-size: 0.85rem; }

.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 60px 5% 50px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1rem 5%; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .nav-links .nav-cta { margin-top: 0.5rem; border-bottom: none; text-align: center; }
  .nav-toggle { display: block; }

  .stat-item { padding: 1rem 1.5rem; }
  .stat-number { font-size: 1.6rem; }

  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; }
}
