/* =====================================================
   Smart Switch Consulting — styles.css
   Colors: Navy #1B2A49 | Teal #2EB2C1 | Gray #F4F6F8
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&display=swap');

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: #2EB2C1;
  color: #fff;
  border-color: #2EB2C1;
}
.btn-primary:hover { background: #259aaa; border-color: #259aaa; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-navy {
  background: transparent;
  color: #1B2A49;
  border-color: #1B2A49;
}
.btn-outline-navy:hover { background: #1B2A49; color: #fff; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2EB2C1;
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #1B2A49;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 620px;
}

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 52px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1B2A49;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: #2EB2C1; }

/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 10px;
  padding: 20px;
  min-width: 620px;
  z-index: 200;
  border-top: 3px solid #2EB2C1;
}
.has-dropdown:hover .dropdown { display: flex; }
.dropdown-col { flex: 1; }
.dropdown-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2EB2C1;
  padding: 0 12px 10px;
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}
.dropdown a {
  display: block;
  padding: 8px 12px;
  font-size: 0.88rem;
  color: #333;
  border-radius: 5px;
  transition: background 0.15s;
}
.dropdown a:hover { background: #F4F6F8; color: #2EB2C1; }
.dropdown a span {
  display: block;
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
}

.nav-phone { margin-left: 8px; }
.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 6px;
  border: 1.5px solid #2EB2C1;
  color: #2EB2C1;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-phone-link:hover { background: #2EB2C1; color: #fff; }

.nav-cta { margin-left: 8px; }
.nav-cta-btn {
  padding: 11px 24px !important;
  font-size: 1rem !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #1B2A49;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
#hero {
  background: linear-gradient(135deg, #1B2A49 0%, #0e1b30 60%, #1a3a45 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232EB2C1' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2EB2C1;
  background: rgba(46,178,193,0.12);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-headline .rotating {
  color: #2EB2C1;
  display: inline-block;
  min-width: 300px;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
}
.hero-stat-val {
  font-size: 1.8rem;
  font-weight: 900;
  color: #2EB2C1;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* Hero side card */
.hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-card-badge {
  display: inline-block;
  background: #2EB2C1;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1B2A49;
  margin-bottom: 16px;
}
.hero-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F4F6F8;
}
.hero-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.hero-step-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #1B2A49;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-step-title { font-weight: 700; font-size: 0.9rem; color: #1B2A49; }
.hero-step-sub { font-size: 0.8rem; color: #888; }

/* ---------- Stats Bar ---------- */
#stats-bar {
  background: #1B2A49;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: #1B2A49;
}
.stat-item {
  background: #1B2A49;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #2EB2C1;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 0.82rem; color: rgba(255,255,255,0.7); }

/* ---------- Problem Section ---------- */
#problem {
  padding: 96px 0;
  background: #fff;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.problem-card {
  background: #F4F6F8;
  border-radius: 12px;
  padding: 32px 28px;
  border-top: 4px solid #2EB2C1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.problem-icon { font-size: 2.4rem; margin-bottom: 16px; }
.problem-card h3 { font-size: 1.2rem; color: #1B2A49; margin-bottom: 12px; }
.problem-card p { font-size: 0.95rem; color: #555; line-height: 1.65; }

/* ---------- Value Banner ---------- */
#value-banner {
  background: linear-gradient(135deg, #2EB2C1 0%, #1a8a97 100%);
  padding: 60px 0;
  text-align: center;
}
.value-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.vb-item { text-align: center; }
.vb-icon { font-size: 2rem; margin-bottom: 12px; }
.vb-title { font-weight: 700; color: #fff; font-size: 1rem; margin-bottom: 6px; }
.vb-sub { font-size: 0.85rem; color: rgba(255,255,255,0.82); }

/* ---------- Services ---------- */
#services {
  padding: 96px 0;
  background: #F4F6F8;
}
.services-intro { margin-bottom: 48px; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid #e4e8ef;
  transition: all 0.2s;
  cursor: pointer;
}
.service-card:hover {
  border-color: #2EB2C1;
  box-shadow: 0 8px 28px rgba(46,178,193,0.15);
  transform: translateY(-3px);
}
.sc-icon { font-size: 2rem; margin-bottom: 14px; }
.sc-title { font-size: 1rem; font-weight: 700; color: #1B2A49; margin-bottom: 8px; }
.sc-desc { font-size: 0.85rem; color: #666; line-height: 1.6; margin-bottom: 14px; }
.sc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sc-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: #2EB2C1;
  background: rgba(46,178,193,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}

/* Advisory section */
.advisory-header { margin-bottom: 32px; }
.advisory-header .section-label { color: #1B2A49; }
.advisory-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.advisory-card {
  background: #1B2A49;
  border-radius: 12px;
  padding: 32px 28px;
  color: #fff;
  transition: transform 0.2s;
}
.advisory-card:hover { transform: translateY(-4px); }
.advisory-card .sc-title { color: #fff; font-size: 1.05rem; }
.advisory-card .sc-desc { color: rgba(255,255,255,0.75); }
.advisory-card .sc-tag { color: #2EB2C1; background: rgba(46,178,193,0.15); }

/* ---------- Coming Soon ---------- */
.coming-soon-header {
  margin-top: 72px;
  margin-bottom: 36px;
  padding-top: 56px;
  border-top: 2px dashed #d4dae6;
}
.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.cs-badge::before {
  content: '🕐';
  font-size: 0.85rem;
}
.coming-soon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coming-soon-card {
  background: #fff;
  border: 2px dashed #d4dae6;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  opacity: 0.9;
  transition: border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.coming-soon-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 28px rgba(245,158,11,0.12);
  opacity: 1;
}
.cs-card-top { flex: 1; }
.cs-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f59e0b;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.cs-roles {
  background: #F4F6F8;
  border-radius: 10px;
  padding: 16px;
}
.cs-roles-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 12px;
}
.cs-roles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cs-role-chip {
  font-size: 0.78rem;
  color: #555;
  background: #fff;
  border: 1px solid #d4dae6;
  border-radius: 5px;
  padding: 5px 10px;
}
.btn-coming-soon {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #f59e0b;
  background: rgba(245,158,11,0.08);
  border: 2px solid rgba(245,158,11,0.35);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.btn-coming-soon:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #fff;
}

@media (max-width: 1024px) {
  .coming-soon-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .coming-soon-cards { grid-template-columns: 1fr; }
}

/* ---------- Service Deep Dives ---------- */
#deep-dives {
  padding: 96px 0;
  background: #fff;
}
.dives-intro { text-align: center; margin-bottom: 48px; }
.dives-intro .section-sub { margin: 0 auto; }
.accordion { border: 1px solid #e4e8ef; border-radius: 12px; overflow: hidden; }
.accordion-item { border-bottom: 1px solid #e4e8ef; }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.accordion-trigger:hover { background: #F4F6F8; }
.accordion-trigger.active { background: #F4F6F8; }
.at-icon { font-size: 1.5rem; flex-shrink: 0; }
.at-num { font-size: 0.75rem; font-weight: 700; color: #2EB2C1; width: 28px; }
.at-title { font-weight: 700; color: #1B2A49; font-size: 1rem; flex: 1; }
.at-arrow {
  font-size: 0.8rem;
  color: #999;
  transition: transform 0.3s;
}
.accordion-trigger.active .at-arrow { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 28px 28px;
  background: #F4F6F8;
}
.accordion-body.open { display: block; }
.dive-desc { font-size: 0.95rem; color: #555; line-height: 1.7; margin-bottom: 20px; }
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}
.role-chip {
  background: #fff;
  border: 1px solid #d4dae6;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: #1B2A49;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #2EB2C1;
  flex-shrink: 0;
}

/* ---------- Industries ---------- */
#industries {
  padding: 96px 0;
  background: #F4F6F8;
}
.industries-intro { margin-bottom: 48px; }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.industry-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  border-left: 4px solid #2EB2C1;
  transition: box-shadow 0.2s, transform 0.2s;
}
.industry-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-3px); }
.ind-name { font-weight: 700; color: #1B2A49; font-size: 1rem; margin-bottom: 8px; }
.ind-focus { font-size: 0.83rem; color: #666; line-height: 1.5; }

/* ---------- How It Works ---------- */
#how-it-works {
  padding: 96px 0;
  background: #1B2A49;
}
#how-it-works .section-heading { color: #fff; }
#how-it-works .section-sub { color: rgba(255,255,255,0.7); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(46,178,193,0.3);
}
.step-card { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #2EB2C1;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(46,178,193,0.2);
}
.step-title { font-weight: 700; color: #fff; font-size: 1.05rem; margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ---------- Pricing ---------- */
#pricing {
  padding: 96px 0;
  background: #fff;
}
.pricing-note {
  font-size: 0.92rem;
  color: #888;
  margin-top: 8px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}
.price-card {
  border: 2px solid #e4e8ef;
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.price-card:hover { border-color: #2EB2C1; box-shadow: 0 12px 36px rgba(46,178,193,0.12); }
.price-card.popular {
  border-color: #2EB2C1;
  box-shadow: 0 16px 48px rgba(46,178,193,0.18);
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2EB2C1;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-plan { font-size: 1rem; font-weight: 700; color: #1B2A49; margin-bottom: 8px; }
.price-rate { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1B2A49;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: #888; }
.price-divider { border: none; border-top: 1px solid #eee; margin: 24px 0; }
.price-features { margin-bottom: 28px; }
.price-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
  padding: 7px 0;
}
.price-feat::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(46,178,193,0.15);
  color: #2EB2C1;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.implementation-note {
  margin-top: 32px;
  background: #F4F6F8;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: center;
  font-size: 0.92rem;
  color: #555;
}
.implementation-note strong { color: #1B2A49; }

/* ---------- Why Smart Switch ---------- */
#why-us {
  padding: 96px 0;
  background: #F4F6F8;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.differentiators { display: grid; gap: 20px; }
.diff-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid #e4e8ef;
}
.diff-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(46,178,193,0.12);
  color: #2EB2C1;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff-title { font-weight: 700; color: #1B2A49; margin-bottom: 5px; }
.diff-desc { font-size: 0.88rem; color: #666; line-height: 1.6; }

/* Comparison Table */
.comparison-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ct-head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #1B2A49;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}
.ct-head div { padding: 14px 16px; }
.ct-head div:last-child { background: #2EB2C1; text-align: center; }
.ct-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #eee;
  font-size: 0.88rem;
  align-items: center;
}
.ct-row:last-child { border-bottom: none; }
.ct-row div { padding: 13px 16px; color: #444; }
.ct-row div:first-child { font-weight: 600; color: #1B2A49; }
.ct-row div:last-child { text-align: center; color: #2EB2C1; font-weight: 700; background: rgba(46,178,193,0.05); }
.ct-row:nth-child(even) { background: #fafafa; }
.ct-no { color: #e44 !important; font-weight: 700; }

/* ---------- ROI ---------- */
#roi {
  padding: 96px 0;
  background: #fff;
}
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
}
.case-study {
  background: #1B2A49;
  border-radius: 16px;
  padding: 36px;
  color: #fff;
}
.cs-title { font-weight: 700; color: #2EB2C1; margin-bottom: 20px; font-size: 0.95rem; }
.cs-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.92rem;
}
.cs-item:last-child { border-bottom: none; }
.cs-label { font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.cs-val { color: #fff; line-height: 1.5; }
.cs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 24px;
}
.cs-metric {
  background: rgba(255,255,255,0.06);
  text-align: center;
  padding: 18px 12px;
}
.cs-metric-val { font-size: 1.6rem; font-weight: 900; color: #2EB2C1; line-height: 1; }
.cs-metric-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ROI Calculator */
.roi-calc {
  background: #F4F6F8;
  border-radius: 16px;
  padding: 36px;
}
.roi-calc h3 { font-size: 1.3rem; color: #1B2A49; margin-bottom: 24px; }
.calc-field { margin-bottom: 20px; }
.calc-field label { display: block; font-size: 0.85rem; font-weight: 700; color: #1B2A49; margin-bottom: 8px; }
.calc-field input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4dae6;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s;
}
.calc-field input:focus { outline: none; border-color: #2EB2C1; }
.calc-results {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.calc-row:last-child { border-bottom: none; }
.calc-row .label { color: #666; }
.calc-row .value { font-weight: 700; color: #1B2A49; }
.calc-savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 0;
  margin-top: 8px;
  border-top: 2px solid #2EB2C1;
}
.calc-savings .label { font-weight: 700; color: #1B2A49; font-size: 1rem; }
.calc-savings .value { font-weight: 900; color: #2EB2C1; font-size: 1.4rem; }

/* ---------- Testimonials ---------- */
#testimonials {
  padding: 96px 0;
  background: #F4F6F8;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.testi-stars { color: #f5a623; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { font-weight: 700; font-size: 0.88rem; color: #1B2A49; }
.testi-role { font-size: 0.8rem; color: #888; margin-top: 2px; }

/* ---------- Careers ---------- */
#careers {
  padding: 96px 0;
  background: #1B2A49;
}
#careers .section-heading { color: #fff; }
#careers .section-sub { color: rgba(255,255,255,0.72); }
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: center;
}
.career-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 22px;
}
.pillar-title { font-weight: 700; color: #2EB2C1; margin-bottom: 6px; }
.pillar-sub { font-size: 0.85rem; color: rgba(255,255,255,0.68); }
.careers-cta { background: rgba(255,255,255,0.06); border-radius: 16px; padding: 36px; border: 1px solid rgba(255,255,255,0.1); }
.careers-cta h3 { color: #fff; font-size: 1.3rem; margin-bottom: 16px; }
.careers-cta p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; }
.careers-btns { display: flex; flex-direction: column; gap: 12px; }

/* ---------- Contact / CTA ---------- */
#contact {
  padding: 96px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-left h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: #1B2A49; font-weight: 700; margin-bottom: 16px; }
.contact-left p { color: #555; line-height: 1.7; margin-bottom: 28px; }
.trust-list { margin-bottom: 36px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: #444;
  padding: 8px 0;
}
.trust-item::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2EB2C1;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-details { display: grid; gap: 16px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
}
.cd-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(46,178,193,0.1);
  color: #2EB2C1;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-label { font-size: 0.75rem; color: #888; }
.cd-val { font-weight: 700; color: #1B2A49; }

/* Contact Form */
.contact-form-wrap {
  background: #F4F6F8;
  border-radius: 16px;
  padding: 40px 36px;
}
.contact-form-wrap h3 { font-size: 1.2rem; color: #1B2A49; margin-bottom: 8px; }
.contact-form-wrap p { font-size: 0.88rem; color: #888; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 700; color: #1B2A49; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4dae6;
  border-radius: 8px;
  font-size: 0.92rem;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2EB2C1;
  box-shadow: 0 0 0 3px rgba(46,178,193,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-disclaimer { font-size: 0.78rem; color: #aaa; margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: rgba(46,178,193,0.08);
  border-radius: 10px;
  border: 1px solid rgba(46,178,193,0.2);
}
.form-success h4 { color: #1B2A49; font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { color: #555; font-size: 0.92rem; }

/* ---------- Footer ---------- */
#footer {
  background: #0e1b30;
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: #2EB2C1; color: #fff; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #2EB2C1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: #2EB2C1; }

/* ---------- Mobile Nav ---------- */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a { padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
  .dropdown {
    display: none !important;
    position: static;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    padding: 0;
    min-width: 0;
    flex-direction: column;
    background: #F4F6F8;
    border-radius: 8px;
    padding: 8px;
    margin: 4px 0 8px;
  }
  .mobile-dropdown-open .dropdown { display: flex !important; }
  .nav-links li.nav-phone { margin: 0; }
  .nav-links li.nav-phone .nav-phone-link {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    padding: 12px 0;
    color: #1B2A49;
    background: none;
    font-weight: 600;
    width: 100%;
  }
  .nav-links li.nav-phone .nav-phone-link:hover { background: none; color: #2EB2C1; }
  .nav-links li.nav-cta { margin: 0; }
  .nav-links li.nav-cta .nav-cta-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 0 !important;
    background: none;
    color: #2EB2C1;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    font-size: 1rem;
    font-weight: 700;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .advisory-cards { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: 1fr; }
  .value-banner-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards { grid-template-columns: 1fr; }
  .advisory-cards { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .careers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .career-pillars { grid-template-columns: 1fr; }
}

/* ---------- Coming Soon Modal ---------- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff;
  border-radius: 16px;
  padding: 48px 40px 40px;
  text-align: center;
  max-width: 420px;
  width: calc(100% - 48px);
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
  animation: modalIn 0.22s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}
.modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1B2A49;
  margin-bottom: 12px;
}
.modal-sub {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
.modal-close:hover { color: #1B2A49; }

/* ---------- Scroll Animation ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
