:root {
  --navy: #0B1D2E;
  --navy-light: #132238;
  --gold: #F5A623;
  --gold-light: #FFCE6B;
  --cream: #F5F2EB;
  --white: #FFFFFF;
  --text: #1A2530;
  --text-light: #5A6B7A;
  --border: rgba(255,255,255,0.08);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(11, 29, 46, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

/* HERO */
.hero {
  position: relative;
  padding: 120px 40px 100px;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 0%, rgba(245, 166, 35, 0.12) 0%, transparent 60%),
    linear-gradient(160deg, #0B1D2E 0%, #0E2439 50%, #0B1D2E 100%);
}
.hero__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; align-items: flex-start; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 500px;
}
.hero__actions { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }
.hero__flow {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.flow-icon {
  width: 26px; height: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.flow-arrow {
  width: 28px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0 4px;
}
.hero__visual { display: flex; align-items: center; justify-content: flex-end; }
.hero__img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* SECTION LABELS */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 56px;
}

/* HOW */
.how {
  padding: 100px 40px;
  background: var(--cream);
}
.how__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.how__col-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.how__col-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
}

/* PHONE MOCK */
.phone-mock {
  background: #111;
  border-radius: 28px;
  padding: 3px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  margin-bottom: 28px;
}
.phone-mock .phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #222;
}
.phone-name {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.phone-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: #00E676;
  letter-spacing: 0.05em;
}
.phone-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 85%; }
.msg--incoming { align-self: flex-start; }
.msg--outgoing { align-self: flex-end; }
.msg p {
  background: #2A2A2A;
  color: #E0E0E0;
  font-size: 0.8rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.msg--outgoing p {
  background: var(--gold);
  color: var(--navy);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 4px;
}
.msg__time {
  display: block;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  padding: 0 4px;
}

/* CONTRACT MOCK */
.contract-mock {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
}
.contract-header-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 20px;
}
.contract-lines { padding: 24px; }
.cl {
  height: 8px;
  background: #F0EEE9;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cl--short { width: 50%; }
.cl--long { width: 80%; }
.cl--accent {
  display: flex;
  justify-content: space-between;
  height: auto;
  padding: 10px 14px;
  background: #F8F6F1;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}
.cl--highlight {
  display: flex;
  justify-content: space-between;
  height: auto;
  padding: 12px 14px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}
.stamp {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 0.65rem;
  font-weight: 900;
  color: #00C853;
  border: 2px solid #00C853;
  padding: 4px 10px;
  border-radius: 4px;
  transform: rotate(-8deg);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* STATS */
.stats {
  background: var(--navy);
  padding: 72px 40px;
}
.stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

/* TESTIMONIALS */
.testimonials {
  background: var(--navy);
  padding: 80px 40px 100px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.testimonials__inner { max-width: 1200px; margin: 0 auto; }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-heading { color: var(--white); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: rgba(245,166,35,0.3); }
.tc__icon { margin-bottom: 20px; }
.tc__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 24px;
}
.tc__meta { display: flex; flex-direction: column; gap: 2px; }
.tc__name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.tc__role { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* PROCESS */
.process {
  padding: 100px 40px;
  background: var(--cream);
}
.process__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.process__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(11,29,46,0.1);
  align-items: start;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.ps__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.7;
}
.ps__content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.ps__content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  background: var(--navy);
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
}
.closing__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 56px;
}
.closing__vision {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cv__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,166,35,0.4));
}
.cv__line:last-child {
  background: linear-gradient(to left, transparent, rgba(245,166,35,0.4));
}
.closing__vision p {
  flex: 0 0 340px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* FOOTER */
.footer {
  background: #060F18;
  padding: 48px 40px 32px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}
.footer__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer__links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* =========================================
   NEW LANDING PAGE SECTIONS
   ========================================= */

/* WHO'S IT FOR */
.whos-it-for {
  padding: 100px 40px;
  background: var(--cream);
}
.whos-it-for__inner { max-width: 1200px; margin: 0 auto; }
.whos-it-for__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 60px;
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(11,29,46,0.07);
  border: 1px solid rgba(11,29,46,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.who-card:hover { border-color: rgba(245,166,35,0.4); box-shadow: 0 8px 32px rgba(11,29,46,0.1); }
.who-icon {
  width: 52px; height: 52px;
  background: rgba(11,29,46,0.04);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.who-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.who-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 40px;
  background: var(--navy);
}
.how-it-works__inner { max-width: 1200px; margin: 0 auto; }
.how-it-works .section-label { color: var(--gold); }
.how-it-works .section-heading { color: var(--white); }
.how-it-works__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-top: -40px;
  margin-bottom: 64px;
}
.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.3s;
}
.step-card:hover { border-color: rgba(245,166,35,0.3); }
.step-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(245,166,35,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card__icon {
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.step-card__price,
.step-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(245,166,35,0.15);
  color: var(--gold-light);
}
.step-connector {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.step-connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(245,166,35,0.4), rgba(245,166,35,0.1));
}

/* WHAT YOU GET */
.what-you-get {
  padding: 100px 40px;
  background: var(--cream);
}
.what-you-get__inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* PRICING */
.pricing {
  padding: 100px 40px;
  background: var(--navy);
}
.pricing__inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing .section-label { color: var(--gold); }
.pricing .section-heading { color: var(--white); }
.pricing__card {
  display: inline-block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 24px;
  padding: 56px 64px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  position: relative;
}
.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  margin-bottom: 12px;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  align-self: flex-start;
  margin-top: 8px;
}
.price-value {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--white);
  line-height: 1;
}
.price-cents {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.5);
  line-height: 1;
}
.price-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}
.pricing__tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
}
.pricing__features {
  list-style: none;
  text-align: left;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}
.pricing__features li svg { color: var(--gold); flex-shrink: 0; }
.pricing__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.pricing__cta .btn--lg { padding: 14px 40px; font-size: 1rem; }
.pricing__guarantee {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.pricing__guarantee a { color: var(--gold); text-decoration: none; }

/* CONTACT */
.contact-section {
  padding: 100px 40px;
  background: var(--cream);
}
.contact-section__inner { max-width: 1200px; margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(11,29,46,0.06);
  border: 1px solid rgba(11,29,46,0.06);
  transition: all 0.2s;
}
.contact-method:hover { border-color: rgba(245,166,35,0.4); box-shadow: 0 4px 20px rgba(11,29,46,0.1); }
.cm__icon {
  width: 44px; height: 44px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cm__label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); margin-bottom: 2px; }
.cm__value { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(11,29,46,0.08);
}
.cf__header { margin-bottom: 28px; }
.cf__header h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.cf__header p { font-size: 0.875rem; color: var(--text-light); }
.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  box-sizing: border-box;
}
.contact-form .btn { width: 100%; justify-content: center; }

/* FOOTER UPDATES */
.footer__contact { margin-top: 16px; }
.footer__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer__email:hover { color: var(--gold-light); }

/* BUTTONS - Large + Light variants */
.btn--lg { padding: 14px 32px; font-size: 0.95rem; }
.btn--outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
  transition: all 0.2s;
}
.btn--outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .how__columns { grid-template-columns: 1fr; gap: 60px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .stats__inner { justify-content: center; }
  .stat-divider { display: none; }
  .hero { padding-top: 120px; }
  .nav { padding: 0 20px; }
  .nav__links { gap: 20px; }
  .closing__vision { flex-direction: column; gap: 16px; }
  .cv__line { display: none; }
  .closing__vision p { flex: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; gap: 20px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pricing__card { padding: 48px 32px; }
}
@media (max-width: 600px) {
  .hero__flow { gap: 8px; }
  .flow-arrow { display: none; }
  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .ps__num { font-size: 2rem; }
  .who-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}

/* =========================================
   CRM APP SHELL
   ========================================= */

.app-shell {
  padding: 100px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 100vh;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}
.app-header__left { display: flex; align-items: center; gap: 20px; }
.app-header__right { display: flex; align-items: center; gap: 12px; }

.app-page-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
}

.back-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.back-link:hover { color: var(--navy); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn--primary { background: var(--gold); color: var(--navy); }
.btn--primary:hover { background: var(--gold-light); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid rgba(11,29,46,0.15); }
.btn--ghost:hover { background: rgba(11,29,46,0.05); }
.btn--outline { background: transparent; color: var(--navy); border: 1px solid rgba(11,29,46,0.2); padding: 6px 14px; font-size: 0.8rem; }
.btn--outline:hover { background: rgba(11,29,46,0.05); }
.btn--danger { background: #EF4444; color: white; }
.btn--danger:hover { background: #DC2626; }
.btn--sm { padding: 6px 14px; font-size: 0.8rem; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(11,29,46,0.1);
  padding-bottom: 0;
}
.filter-tab {
  padding: 8px 16px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  margin-bottom: -1px;
}
.filter-tab:hover { color: var(--navy); }
.filter-tab--active { color: var(--navy); border-bottom-color: var(--gold); }

/* Table */
.leads-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(11,29,46,0.08);
}
.leads-table {
  width: 100%;
  border-collapse: collapse;
}
.leads-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid rgba(11,29,46,0.08);
  background: var(--cream);
}
.leads-table td {
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text);
  border-bottom: 1px solid rgba(11,29,46,0.05);
  vertical-align: top;
}
.leads-table tr:last-child td { border-bottom: none; }
.leads-table tr:hover td { background: rgba(245,166,35,0.04); }

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Follow-up */
.follow-up { font-size: 0.8rem; color: var(--text-light); }
.follow-up--overdue { color: #EF4444; font-weight: 600; }
.text-muted { color: rgba(90,107,122,0.6); font-size: 0.8rem; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-light);
  font-size: 1rem;
}
.empty-state a { color: var(--gold); font-weight: 600; text-decoration: none; }

/* Forms */
.lead-form { max-width: 680px; }
.form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: 0.875rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid rgba(11,29,46,0.15);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.danger-zone {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(11,29,46,0.1);
}

/* Dashboard */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(11,29,46,0.08);
}
.stat-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.stat-card__value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}
.stat-card--gold { border-left: 4px solid #F5A623; }
.stat-card--blue { border-left: 4px solid #3B82F6; }
.stat-card--green { border-left: 4px solid #22C55E; }
.stat-card--gray { border-left: 4px solid #9CA3AF; }
.stat-card--highlight { background: var(--navy); }
.stat-card--highlight .stat-card__label { color: rgba(255,255,255,0.5); }
.stat-card--highlight .stat-card__value { color: var(--gold); }

.pipeline-bar-wrap { margin-top: 8px; }
.section-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.pipeline-bar {
  display: flex;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
  background: #F0EEE9;
  margin-bottom: 16px;
}
.pipeline-bar__segment { height: 100%; transition: width 0.3s; }
.pipeline-bar__segment--new { background: #F5A623; }
.pipeline-bar__segment--contacted { background: #3B82F6; }
.pipeline-bar__segment--contracted { background: #22C55E; }
.pipeline-bar__segment--dead { background: #9CA3AF; }
.pipeline-legend { display: flex; gap: 20px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

@media (max-width: 900px) {
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .app-shell { padding: 90px 20px 60px; }
}