/* ── 1NDYGO AI SOLUTIONS — Shared Site Styles ───────────────────────────────
   Matches the design language of 1ndygo-ai.com
   Brand palette: Deep Navy #0C0F30 · Metallic Gold #D4AF37 · Glossy Blue #12468B
   ──────────────────────────────────────────────────────────────────────────── */

:root {
  --navy:      #0C0F30;
  --navy-mid:  #12183e;
  --navy-lt:   #1a2255;
  --blue:      #12468B;
  --blue-lt:   #1e5fa8;
  --gold:      #D4AF37;
  --gold-lt:   #e8c84a;
  --gold-dk:   #b8941f;
  --slate:     #64748b;
  --gray-bg:   #f0f4f8;
  --white:     #ffffff;
  --text:      #1a202c;
  --text-lt:   #64748b;
  --border:    #e2e8f0;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 4px 24px rgba(12,15,48,0.12);
  --shadow-lg: 0 8px 40px rgba(12,15,48,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--gray-bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
.site-nav {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--blue) 100%);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(12,15,48,0.45);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.nav-logo .logo-ai { color: var(--gold); }
.nav-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(255,255,255,0.13);
  color: white;
}
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy) !important;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(212,175,55,0.35);
  margin-left: 6px;
}
.nav-links .nav-cta:hover {
  box-shadow: 0 4px 16px rgba(212,175,55,0.5);
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: white;
  font-size: 1.4rem;
  line-height: 1;
}
/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  overflow-y: auto;
  z-index: 999;
  padding-bottom: 32px;
  border-top: 1px solid rgba(212,175,55,0.15);
}
.mobile-menu.open { display: block; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
  min-height: 48px;
}
.mobile-menu a:active { background: rgba(255,255,255,0.1); }
.mobile-menu a i { width: 20px; color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.mobile-menu .mm-section {
  padding: 14px 24px 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.15);
}
.mobile-menu .mm-cta {
  margin: 16px 20px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy) !important;
  border-radius: 10px;
  padding: 14px 20px !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  text-align: center;
  border-bottom: none !important;
  min-height: 52px;
}

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta):not(.always-show) { display: none; }
  .nav-hamburger { display: flex; align-items: center; }
  .site-nav { padding: 0 16px; }
  .nav-inner { height: 58px; }
  .mobile-menu { top: 58px; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 40%, var(--blue) 100%);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(212,175,55,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 20% 80%, rgba(18,70,139,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy);
  font-size: 0.95rem; font-weight: 800;
  padding: 14px 28px; border-radius: 12px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(212,175,55,0.45);
  transition: all 0.25s;
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,175,55,0.6); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(212,175,55,0.4);
  color: var(--gold);
  font-size: 0.95rem; font-weight: 700;
  padding: 14px 28px; border-radius: 12px;
  text-decoration: none; white-space: nowrap;
  backdrop-filter: blur(8px);
  transition: all 0.25s;
}
.btn-secondary:hover { background: rgba(212,175,55,0.12); border-color: var(--gold); }

/* ── SECTION COMMONS ── */
.section { padding: 72px 24px; }
.section-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; text-align: center;
}
.section-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 900; color: var(--navy);
  text-align: center; line-height: 1.15; margin-bottom: 12px;
}
.section-title em { color: var(--blue); font-style: normal; }
.section-sub {
  font-size: 1rem; color: var(--slate);
  text-align: center; max-width: 580px;
  margin: 0 auto 52px; line-height: 1.65;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212,175,55,0.4);
}
.card-header {
  background: linear-gradient(145deg, var(--navy) 0%, var(--blue) 100%);
  padding: 28px 24px 22px;
  color: white;
  text-align: center;
  position: relative;
}
.card-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.4), transparent);
}
.card-icon {
  width: 56px; height: 56px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold);
  margin: 0 auto 14px;
}
.card-header h3 { font-size: 1.1rem; font-weight: 800; line-height: 1.2; margin-bottom: 4px; }
.card-price {
  font-size: 0.72rem; color: rgba(212,175,55,0.85); font-weight: 600;
  letter-spacing: 0.3px; margin-top: 4px;
}
.card-body {
  padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column;
}
.card-desc { color: var(--slate); font-size: 0.875rem; line-height: 1.6; margin-bottom: 16px; }
.card-features { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.card-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: #374151; font-weight: 500;
}
.card-features li i {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  background: rgba(212,175,55,0.12); color: var(--gold-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 900;
  border: 1px solid rgba(212,175,55,0.2);
}
.card-cta {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.875rem; font-weight: 800;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid rgba(212,175,55,0.2);
}
.card-cta:hover { opacity: 0.9; transform: translateX(2px); }
.card-cta i { color: var(--gold); }

/* ── PROCESS STEPS ── */
.steps-section { background: white; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.step {
  text-align: center; padding: 32px 20px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 18px;
  transition: all 0.3s;
}
.step:hover { border-color: var(--gold); box-shadow: 0 12px 28px rgba(212,175,55,0.14); transform: translateY(-4px); }
.step-num { font-size: 0.65rem; font-weight: 900; letter-spacing: 3px; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; }
.step-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 14px;
  border: 1px solid rgba(212,175,55,0.2);
  box-shadow: 0 6px 18px rgba(12,15,48,0.2);
}
.step h4 { color: var(--navy); font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: 0.82rem; line-height: 1.6; }

/* ── WHY SECTION (dark) ── */
.why-section {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 40%, var(--blue) 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(212,175,55,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; position: relative; z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 18px; padding: 28px 24px;
  transition: all 0.3s; backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(18,70,139,0.3));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 16px;
  border: 1px solid rgba(212,175,55,0.2);
}
.why-card h4 { color: white; font-size: 0.975rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.83rem; line-height: 1.65; }
.why-label { color: rgba(212,175,55,0.85) !important; }
.why-title { color: white !important; }
.why-sub { color: rgba(255,255,255,0.65) !important; }

/* ── PRICING CALLOUT ── */
.pricing-tag {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 6px; letter-spacing: 0.3px;
}

/* ── CTA SECTION ── */
.cta-section { padding: 72px 24px; background: var(--gray-bg); }
.cta-card {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 40%, var(--blue) 100%);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 28px; padding: 52px 60px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  position: relative; overflow: hidden;
  box-shadow: 0 24px 72px rgba(12,15,48,0.5);
}
.cta-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.12), transparent 65%);
  pointer-events: none;
}
.cta-left { flex: 1; min-width: 260px; position: relative; z-index: 1; }
.cta-eyebrow {
  font-size: 0.65rem; font-weight: 900; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.cta-title { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 14px; }
.cta-desc { font-size: 0.9rem; color: rgba(255,255,255,0.72); line-height: 1.65; max-width: 480px; }
.cta-right { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--navy); font-size: 1rem; font-weight: 900;
  padding: 18px 36px; border-radius: 14px;
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 28px rgba(212,175,55,0.5);
  transition: all 0.25s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(212,175,55,0.7); }
.cta-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-align: center; }

/* ── SITE FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.15);
  color: rgba(255,255,255,0.7);
  padding: 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px; padding: 52px 24px 40px;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.footer-brand-logo img { width: 36px; height: 36px; border-radius: 8px; object-fit: contain; }
.footer-brand-logo span { color: white; font-size: 1.1rem; font-weight: 800; }
.footer-brand-logo .logo-ai { color: var(--gold); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.footer-contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-list a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.82rem;
  text-decoration: none; transition: color 0.2s;
}
.footer-contact-list a i { color: var(--gold); font-size: 0.75rem; }
.footer-contact-list a:hover { color: white; }
.footer-col-title {
  color: var(--gold); font-size: 0.78rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 14px; border-bottom: 1px solid rgba(212,175,55,0.2);
  padding-bottom: 8px;
}
.footer-col a {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.82rem;
  text-decoration: none; transition: color 0.2s; margin-bottom: 8px;
}
.footer-col a:hover { color: var(--gold); }
.footer-col a i { color: rgba(212,175,55,0.5); font-size: 0.7rem; }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 16px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom span { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 20px 24px; }
  .cta-card { padding: 36px 24px; gap: 28px; }
  .cta-btn { width: 100%; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; }
}
