@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --gold-pale: #FFF8DC;
  --gold-muted: rgba(184,134,11,.12);
  --navy: #1A1A2E;
  --navy-mid: #16213E;
  --cream: #FFFDF7;
  --warm-gray: #F5F3EE;
  --text: #2C2C2C;
  --text-light: #6B6B6B;
  --white: #FFFFFF;
  --green: #2D6A4F;
  --border: rgba(0,0,0,.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --radius: 8px;
  --radius-lg: 14px;
  --ease: .3s cubic-bezier(.4, 0, .2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.12rem;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html, body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2.44rem, 5vw, 4.04rem); font-weight: 300; }
h2 { font-size: clamp(1.94rem, 3.5vw, 2.84rem); font-weight: 400; }
h3 { font-size: clamp(1.34rem, 2.5vw, 1.74rem); font-weight: 600; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 28px; }

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 3px;
  transition: var(--ease);
  white-space: nowrap;

  max-width: 100%;
  box-sizing: border-box;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(184,134,11,.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,11,.4);
}

.btn-ghost { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-ghost-dark { border: 1.5px solid var(--gold); color: var(--gold); }
.btn-ghost-dark:hover { background: var(--gold-muted); }

.btn-text {
  color: var(--gold);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--ease);
}

.btn-text:hover { gap: 12px; }
.btn-text::after { content: '→'; }

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--ease);
}

.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.1;
}

.nav-logo small {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav-link {
  font-size: .90rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.72);
  padding: 8px 13px;
  border-radius: 4px;
  transition: var(--ease);
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.07); }

.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--ease);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 99;
  flex-direction: column;
  padding: 32px 28px;
  gap: 4px;
  overflow-y: auto;
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 1.22rem;
  color: rgba(255,255,255,.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: block;
}

/* HERO */
.hero {
  background: var(--navy);
  padding-top: 70px;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0, transparent 60px, rgba(184,134,11,.018) 60px, rgba(184,134,11,.018) 61px);
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: linear-gradient(160deg, rgba(184,134,11,.18) 0%, rgba(184,134,11,.04) 60%, transparent 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 620px;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  font-size: 1.17rem;
  color: rgba(255,255,255,.68);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .90rem;
  color: rgba(255,255,255,.55);
}

.trust-check { color: var(--gold); }

/* STATS */
.stats-strip {
  background: var(--navy-mid);
  border-top: 2px solid rgba(184,134,11,.35);
}

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }

.stat-item {
  padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.06);
}

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

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.04rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  padding: calc(70px + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0, transparent 60px, rgba(184,134,11,.018) 60px, rgba(184,134,11,.018) 61px);
}

.page-hero-content { position: relative; z-index: 1; max-width: 640px; }

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  font-size: clamp(2.04rem, 4vw, 3.24rem);
}

.page-hero h1 em { color: var(--gold); font-style: italic; }

.page-hero p {
  color: rgba(255,255,255,.68);
  font-size: 1.17rem;
  line-height: 1.75;
}

/* SECTION HEADER */
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.12rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.75;
}

.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* CARDS */
.card-grid { display: grid; gap: 24px; }
.card-3 { grid-template-columns: repeat(3,1fr); }
.card-2 { grid-template-columns: repeat(2,1fr); }
.card-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-gold { border-top: 3px solid var(--gold); }

.card-icon { font-size: 1.8rem; margin-bottom: 18px; }

.card h3 { font-size: 1.27rem; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 1.12rem; color: var(--text-light); line-height: 1.75; }

/* TWO COL */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.img-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #C8A84B 0%, #8B6914 50%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* FOUNDERS */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.founder-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.founder-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(255,255,255,.45);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.founder-img-1 { background: linear-gradient(160deg, #2C5364, #203A43, #0F2027); }
.founder-img-2 { background: linear-gradient(160deg, #1A1A2E, #16213E, #614385); }

.founder-body { padding: 28px; }

.founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.founder-role {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.founder-bio {
  font-size: 1.12rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-quote {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.6;
}

/* TESTIMONIAL */
.testimonial {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  color: var(--gold);
  opacity: .12;
  position: absolute;
  top: -20px;
  left: 16px;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.32rem;
  color: #fff;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name { font-size: 1.12rem; font-weight: 600; color: #fff; }
.author-detail { font-size: .90rem; color: rgba(255,255,255,.5); }

/* TIMELINE */
.timeline { display: flex; flex-direction: column; }

.timeline-item { display: flex; gap: 24px; }

.timeline-item {
  width: 100%;
  gap: 16px;
}

.timeline-content {
  width: 100%;
  min-width: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-line {
  width: 2px;
  flex: 1;
  min-height: 20px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,134,11,.1));
  margin-top: 4px;
}

.timeline-item:last-child .timeline-line { display: none; }

.timeline-content {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  flex: 1;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.timeline-content h4 { font-size: 1.12rem; color: var(--navy); margin-bottom: 6px; }
.timeline-content p { font-size: 1.12rem; color: var(--text-light); line-height: 1.7; }

.timeline-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(184,134,11,.3);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: .84rem;
  font-weight: 600;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}

.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 40px rgba(184,134,11,.2);
  transform: scale(1.03);
}

.pricing-head {
  padding: 28px 24px;
  background: var(--warm-gray);
  border-bottom: 1px solid var(--border);
}

.pricing-card.featured .pricing-head { background: var(--navy); }

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.52rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-card.featured .pricing-name { color: #fff; }

.pricing-price {
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--gold);
  margin: 10px 0 4px;
}

.pricing-desc { font-size: 1.12rem; color: var(--text-light); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.5); }

.pricing-features { padding: 24px; }

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.12rem;
  padding: 8px 0;
  border-bottom: 1px solid #F0F0F0;
}

.pricing-feature:last-child { border-bottom: none; }

.f-check { color: var(--green); font-weight: 700; flex-shrink: 0; }
.f-dash { color: #CCC; flex-shrink: 0; }

.pricing-cta { padding: 0 24px 24px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  background: none;
  cursor: pointer;
  transition: color var(--ease);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--ease);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 1.12rem;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.open .faq-answer { display: block; }

/* FORMS */
.form-group { margin-bottom: 20px; }

label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E0DDD8;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.12rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 3px rgba(184,134,11,.1);
}

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

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* HIGHLIGHT BOX */
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
}

.highlight-box p { font-size: 1.12rem; color: var(--navy); line-height: 1.75; }

/* TABS */
.tab-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.tab-btn {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 600;
  background: var(--warm-gray);
  color: var(--text-light);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--ease);
}

.tab-btn.active { background: var(--navy); color: #fff; }
.tab-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* BLOG */
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--ease);
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.blog-img {
  height: 160px;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.blog-body { padding: 22px; }

.blog-tag {
  font-size: .80rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.27rem;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog-excerpt { font-size: 1.12rem; color: var(--text-light); line-height: 1.7; }
.blog-meta { font-size: .87rem; color: var(--text-light); margin-top: 14px; }

/* CALLOUT */
.callout-strip { background: var(--navy); padding: 72px 0; text-align: center; }
.callout-strip h2 { color: #fff; margin-bottom: 14px; }
.callout-strip p {
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1.12rem;
  line-height: 1.75;
}

.callout-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* BENEFITS */
.benefit-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.benefit-item:last-child { border-bottom: none; }
.benefit-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.benefit-title { font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.benefit-desc { font-size: 1.12rem; color: var(--text-light); line-height: 1.7; }

/* CHECKLIST */
.checklist { list-style: none; }

.checklist li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  font-size: 1.12rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* FOOTER */
.footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  font-weight: 600;
}

.footer-about {
  font-size: 1.12rem;
  color: rgba(255,255,255,.5);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: var(--ease);
}

.footer-social:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 2px; }

.footer-links a {
  font-size: 1.12rem;
  color: rgba(255,255,255,.52);
  padding: 5px 0;
  display: block;
  transition: color var(--ease);
}

.footer-links a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1.12rem;
  color: rgba(255,255,255,.52);
  line-height: 1.6;
}

.footer-contact-item a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .90rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: rgba(255,255,255,.3);
  transition: color var(--ease);
}

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

/* WHATSAPP BUTTON */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: var(--ease);
}

.wa-btn:hover { transform: scale(1.1); }

.process-layout {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0 16px;   /* reduce padding */
  box-sizing: border-box;  /* VERY IMPORTANT */
}
.timeline {
  width: 100%;
  display: block;
 max-width: 900px;
  margin: 0 auto;
padding: 0 4px;   /* 👈 YE ADD KARNA HAI */
}
.timeline-item {
  display: flex;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-1 { animation: fadeUp .7s .1s both; }
.animate-2 { animation: fadeUp .7s .25s both; }
.animate-3 { animation: fadeUp .7s .4s both; }
.animate-4 { animation: fadeUp .7s .55s both; }

.timeline-content h4 {
  font-size: 1.4rem;   /* 🔥 title bigger */
  font-weight: 600;
  color: var(--navy);
}

.timeline-content h4 span {
  background: var(--navy);  /* 🔥 same dark background */
  color: #fff;              /* 🔥 white text */
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .9rem;         /* 🔥 bigger */
  font-weight: 500;
  margin-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-item a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* optional */
  text-decoration: underline;
}

/* Error styles */
.inq-input.error {
  border-color: #e74c3c !important;
  background: #fff6f6;
}

.inq-error-text {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
}


/* FAQ MOBILE FIX */
@media (max-width: 640px) {

  /* grid ko single column karo */
  .section .container > div {
    display: block !important;
  }

  /* sidebar ko normal karo */
  .faq-sidebar {
    position: static !important;
    margin-bottom: 24px;
  }

  /* categories ko horizontal scroll bana do */
  .faq-sidebar > div:nth-child(2) {
    flex-direction: row !important;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
  }

  /* links ko chips bana do */
  .faq-sidebar a {
    white-space: nowrap;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 20px;
    background: #fff;
    font-size: .85rem;
  }

  /* card ko neeche rakho */
  .faq-sidebar .card {
    margin-top: 20px;
  }  
}

/* FAQ TABS */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.faq-tab {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .8rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--ease);
}

.faq-tab.active {
  background: var(--navy);
  color: #fff;
}

.faq-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FAQ GROUP */
.faq-group {
  display: block;
}
.faq-tab.active {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(184,134,11,.25);
}

/* .faq-group {
  display: block;
  opacity: 1;
  transform: none;
  scroll-margin-top: 100px;
} */

/* FAQ categories multi-row */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;   /* 👈 IMPORTANT */
  gap: 10px;
  margin-bottom: 24px;
}

.faq-tab {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .8rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--ease);
}

.faq-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

h3 {
  scroll-margin-top: 100px;
}

/* DESKTOP SIDEBAR */
@media (min-width: 641px) {
  .faq-tabs {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .faq-tab {
    display: block;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none;
    text-align: left;
  }
}

/* MOBILE IMPROVEMENT */
@media (max-width: 640px) {
  .faq-tabs {
    flex-wrap: wrap;
    overflow: visible;
    gap: 10px;
  }

  .faq-tab {
    white-space: normal;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .card-3, .card-4 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .founders-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .card-3, .card-2, .card-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns, .callout-btns { flex-direction: column; align-items: center; }
  .section { padding: 56px 0; }

  .nav-inner {
    position: relative;
    justify-content: center;
  }

  .nav-logo-img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

.hero-accent {
    display: none;
  }

}

/* LOGO IMAGE */


.nav-logo-img img {
  height: 68px;
  width: auto;
  display: block;
  transition: opacity .25s;
}

.nav-logo-img:hover img { opacity: .85; }

.footer-logo-img {
  height: 94px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .nav-logo-img {
    justify-content: center;
    flex: 1;
    margin: 0 auto;
  }
  .nav-inner { justify-content: center; }

 /* 👇 ADD THIS */
  .nav-inner {
    overflow: hidden;
  }

/* TIMELINE MOBILE FIX */
.timeline-item {
  gap: 14px;
}

.timeline-marker {
  width: 28px;   /* small kar diya */
}

.timeline-dot {
  width: 28px;
  height: 28px;
  font-size: .7rem;
}

.timeline-line {
  width: 2px;
}

.timeline-content {
  padding: 18px 16px;
  font-size: 1rem;
}

 .timeline-content .btn {
    font-size: .8rem;
    padding: 12px;
  }
 .btn {
   white-space: normal;
    text-align: center;
    justify-content: center;
    line-height: 1.4;
    padding: 12px 16px;
  }

  
  .callout-strip {
    text-align: center;
  }

  .hero-btns,
  .callout-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .callout-btns .btn,
  .hero-btns .btn {
    display: inline-flex;
    justify-content: center;
  }

  
  .footer-contact-item {
    display: flex !important;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  /* icon fix */
  .footer-contact-item span,
  .footer-contact-item i {
    flex-shrink: 0 !important;
  }

  /* 🔥 MAIN FIX */
  .footer-contact-item a {
    flex: 1 1 auto !important;
    min-width: 0 !important;

    display: block !important;
    max-width: 100% !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;

    word-break: normal !important;
    overflow-wrap: normal !important;
  }
  .two-col > div:first-child ul {
    margin-bottom: 24px;   /* 🔥 space add */
  }
}

@media (min-width: 641px) {

  .faq-tab {
    font-size: 1.1rem;
    padding: 16px 0;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

}


/* ===== PROGRESS BAR ===== */
.progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.progress-step .circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--warm-gray);
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-step.active .circle {
  background: var(--gold);
  color: var(--navy);
}

.progress-step span {
  font-size: 1.1rem;
  color: var(--text-light);
  white-space: nowrap;
}

.progress-step.active span {
  color: var(--navy);
  font-weight: 600;
}

.progress .line {
  height: 2px;
  background: var(--border);
  flex: 1;
}

@media (max-width: 768px) {
  .progress {
    flex-wrap: wrap;
    gap: 16px;
  }

  .progress .line {
    display: none;
  }

  .progress-step {
    width: 48%;
  }
}
