/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #2a4e8b;
  --yellow: #ffdc40;
  --green: #06a455;
  --light-blue: #cfe2f3;
  --light-yellow: #fff2cc;
  --light-green: #b6d7a8;
  --orange: #eb9530;
  --white: #ffffff;
  --off-white: #f9fafb;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--gray-900); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p { color: var(--gray-600); font-size: 1.05rem; line-height: 1.75; }

.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--orange); margin-bottom: 10px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { max-width: 640px; margin: 0 auto 48px; text-align: center; color: var(--gray-600); font-size: 1.1rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px;
  border-radius: 12px; font-size: 1rem; font-weight: 600; cursor: pointer;
  border: none; transition: var(--transition); font-family: inherit;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: #1e3a66; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-gold { background: var(--yellow); color: var(--gray-900); }
.btn-gold:hover { background: #e5c738; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--gray-50); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===== NAVIGATION ===== */
.nav { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 800; color: var(--gray-900); }
.nav-logo .logo-icon { width: 34px; height: 34px; background: var(--yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-weight: 900; font-size: 1rem; }
.nav-logo .logo-img { height: 32px; width: auto; }
.footer-inner .logo-img { height: 28px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--gray-600); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--light-blue); }
.nav-cta { margin-left: 8px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-600); margin: 6px 0; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 24px; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 0; font-size: 1.05rem; font-weight: 500; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px; background: var(--white); position: relative; overflow: hidden;
  background-image: linear-gradient(to right, rgba(207,226,243,0.3) 1px, transparent 1px), linear-gradient(to bottom, rgba(207,226,243,0.3) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero::before { content: ''; position: absolute; top: 0; left: 0; width: 24rem; height: 24rem; border-radius: 50%; background: linear-gradient(to bottom-right, var(--light-blue), transparent); transform: translate(-50%, -50%); opacity: 0.5; }
.hero::after { content: ''; position: absolute; bottom: 0; right: 0; width: 20rem; height: 20rem; border-radius: 50%; background: linear-gradient(to top-left, var(--light-yellow), transparent); transform: translate(33%, 33%); opacity: 0.5; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .highlight { color: var(--blue); }
.hero p { color: var(--gray-600); font-size: 1.15rem; margin-bottom: 24px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 32px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--light-blue); border: 1px solid rgba(42,78,139,0.15); border-radius: 50px; font-size: 0.85rem; color: var(--gray-700); }
.hero-badge svg { width: 16px; height: 16px; color: var(--blue); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.paid-banner {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light-yellow); border: 1px solid var(--orange);
  padding: 10px 20px; border-radius: 50px; font-size: 0.95rem; font-weight: 700;
  color: var(--orange); margin-bottom: 28px;
}
.paid-banner svg { flex-shrink: 0; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-alt { background: var(--light-blue); }
.section-navy { background: var(--blue); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,0.8); }
.section-navy .section-label { color: var(--yellow); }
.text-center { text-align: center; }

/* ===== QUOTE BOXES ===== */
.quotes-stacked {
  display: flex; flex-direction: column; gap: 40px;
  max-width: 860px; margin: 0 auto;
}

.quote-box {
  background: var(--blue); color: var(--white); border-radius: 20px;
  padding: 36px 40px; max-width: 580px;
  box-shadow: var(--shadow-lg);
}

.quote-box-left { align-self: flex-start; }
.quote-box-right { align-self: flex-end; }

.quote-box p {
  font-size: 1.05rem; font-style: italic; color: var(--white);
  line-height: 1.75; margin: 0 0 16px;
}

.quote-box-author {
  font-size: 0.9rem; font-weight: 700; color: var(--yellow);
  font-style: italic;
}
.quote-box-author span { font-weight: 400; color: rgba(255,255,255,0.6); font-style: normal; }

@media (max-width: 768px) {
  .quote-box { max-width: 100%; }
  .quote-box-left, .quote-box-right { align-self: center; }
}

/* ===== IMPACT ===== */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.impact-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--gray-100); }
.impact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.impact-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.impact-icon.blue { background: var(--light-blue); }
.impact-icon.gold { background: var(--light-yellow); }
.impact-icon.green { background: var(--light-green); }
.impact-card h3 { margin-bottom: 10px; }
.impact-card p { font-size: 0.95rem; }

/* ===== OPPORTUNITIES ===== */
.opp-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.opp-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 32px; transition: var(--transition); backdrop-filter: blur(8px); }
.opp-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.opp-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,220,64,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 1.3rem; }
.opp-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.opp-tag { display: inline-block; margin-top: 12px; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; background: rgba(255,220,64,0.2); color: var(--yellow); }
.opp-bonus { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 14px; background: rgba(255,220,64,0.12); border: 1px solid rgba(255,220,64,0.3); border-radius: 10px; font-size: 0.85rem; font-weight: 700; color: var(--yellow); }
.opp-bonus svg { flex-shrink: 0; }

.role-entails {
  max-width: 480px; margin: 0 auto 40px; text-align: left;
}
.role-entails h4 {
  font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 10px;
}
.role-entails ul {
  list-style: none; padding: 0; margin: 0;
}
.role-entails li {
  font-size: 0.95rem; color: var(--gray-600); padding: 5px 0 5px 20px; position: relative;
}
.role-entails li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

.opp-card-flat {
  background: var(--gray-50); border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column;
}
.opp-card-flat h3 { color: var(--gray-900); margin-bottom: 8px; }
.opp-card-flat > p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 16px; min-height: 3.3em; }

.opp-options { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }

.opp-pill {
  display: inline-block; padding: 6px 16px; border-radius: 50px;
  background: var(--yellow); color: var(--gray-900);
  font-size: 0.85rem; font-weight: 700;
}

.opp-bullets {
  list-style: none; padding: 0; margin: 0 0 16px; flex: 1;
}
.opp-bullets li {
  font-size: 0.9rem; color: var(--gray-600); line-height: 1.6;
  padding: 6px 0 6px 20px; position: relative;
}
.opp-bullets li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

.opp-bonus-flat {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--green);
  margin-top: auto; padding-top: 48px;
}
.opp-bonus-flat svg { flex-shrink: 0; }

.opp-card-light {
  background: var(--light-blue); border: 1px solid rgba(42,78,139,0.15);
}
.opp-card-light:hover { background: #c0d8ee; }
.opp-card-light h3 { color: var(--blue); }
.opp-card-light > p { color: var(--gray-600); }
.opp-card-light .opp-card-icon { background: rgba(42,78,139,0.12); }
.opp-card-light .opp-tag { background: var(--yellow); color: var(--gray-900); font-weight: 700; }
.opp-card-light .opp-sub { background: rgba(255,255,255,0.6); border-color: rgba(42,78,139,0.1); }
.opp-card-light .opp-sub p { color: var(--gray-600); }
.opp-card-light .opp-bonus { background: var(--light-green); border-color: rgba(6,164,85,0.25); color: var(--green); }
.opp-card-light .opp-bonus svg { stroke: var(--green); }

.opp-sub-options {
  display: flex; flex-direction: column; gap: 16px; margin-top: 16px;
}

.opp-sub {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 14px 16px;
}

.opp-sub p {
  font-size: 0.85rem; color: rgba(255,255,255,0.7); margin: 8px 0 0; line-height: 1.5;
}

.opp-sub .opp-bonus { margin-top: 10px; font-size: 0.8rem; }

/* ===== URGENCY CARDS ===== */
.urgency-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 760px; margin: 0 auto; }
.urgency-card { display: flex; align-items: flex-start; gap: 16px; padding: 24px; border-radius: var(--radius); text-align: left; }
.urgency-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.urgency-card p { font-size: 0.92rem; margin: 0; }
.urgency-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.urgency-now { background: var(--light-green); border: 1px solid rgba(6,164,85,0.3); }
.urgency-now .urgency-icon { background: rgba(6,164,85,0.2); color: var(--green); }
.urgency-soon { background: var(--light-blue); border: 1px solid rgba(42,78,139,0.2); }
.urgency-soon .urgency-icon { background: rgba(42,78,139,0.15); color: var(--blue); }

/* ===== AUTHORS ===== */
.authors-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 700;
  color: var(--blue); margin-bottom: 16px;
}

.authors-divider {
  width: 80px; height: 2px; background: var(--blue); margin: 0 auto 40px; opacity: 0.3;
}

.authors-card {
  max-width: 820px; margin: 0 auto; background: var(--white);
  border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 48px 56px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}

.authors-stripe {
  position: absolute; top: 0; bottom: 0; width: 6px;
}
.authors-stripe-left {
  left: 0;
  background: repeating-linear-gradient(
    to bottom, var(--blue) 0px, var(--blue) 16px,
    transparent 16px, transparent 24px, var(--light-blue) 24px,
    var(--light-blue) 40px, transparent 40px, transparent 48px
  );
  opacity: 0.5; border-radius: 16px 0 0 16px;
}
.authors-stripe-right {
  right: 0;
  background: repeating-linear-gradient(
    to bottom, transparent 0px, transparent 8px,
    var(--light-blue) 8px, var(--light-blue) 24px,
    transparent 24px, transparent 32px, var(--blue) 32px, var(--blue) 48px
  );
  opacity: 0.5; border-radius: 0 16px 16px 0;
}

.authors-inner { position: relative; z-index: 1; }

.author-row {
  display: flex; align-items: center; gap: 36px; margin-bottom: 48px;
}
.author-row:last-child { margin-bottom: 0; }

/* Blue box for author info/quote */
.author-blue-box {
  flex: 1; background: var(--light-blue); color: var(--gray-900);
  border-radius: 16px; padding: 32px; height: 300px;
  display: flex; flex-direction: column;
}

.author-blue-box .author-name-line {
  display: flex; align-items: center; gap: 8px; margin-bottom: 2px;
}
.author-blue-box .author-name-line h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--blue); margin: 0;
}

.author-role-white {
  font-size: 0.85rem; color: var(--gray-500); font-weight: 400;
  font-style: italic; margin-bottom: 14px; padding-left: 26px;
}

.author-blue-box p {
  font-size: 0.9rem; line-height: 1.7; color: var(--gray-700); margin: 0;
}

.author-slide-quote {
  font-size: 0.95rem; font-style: italic; line-height: 1.75;
  color: var(--blue); margin: 0;
}

.author-slide-attrib {
  margin-top: 12px; font-size: 0.9rem; font-weight: 600;
  font-style: italic; color: var(--blue);
  font-family: 'Georgia', 'Times New Roman', serif;
}

.author-photo { flex-shrink: 0; position: relative; }

.author-photo-frame {
  width: 200px; height: 240px; border-radius: 10px;
  overflow: hidden; border: none;
  background: linear-gradient(135deg, #e8eef6, #d0daea);
  display: flex; align-items: center; justify-content: center;
}

.author-photo-frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}

.author-initials {
  font-size: 3rem; font-weight: 700; color: var(--blue); opacity: 0.3;
}

.author-name-tag {
  position: absolute; bottom: 12px; right: -12px;
  background: var(--blue); color: var(--white); font-size: 0.95rem;
  font-weight: 400; font-style: italic; padding: 5px 16px;
  border-radius: 6px;
  font-family: 'Caveat', 'Segoe Script', 'Comic Sans MS', cursive;
  font-size: 1.3rem;
  transform: rotate(-4deg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Author slides */
.author-slide { flex: 1; overflow: hidden; }
.author-slide-hidden { display: none; }

.author-nav {
  display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 14px;
}

.author-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(42,78,139,0.2); display: inline-block; transition: var(--transition);
}
.author-dot-active { background: var(--blue); }

.author-arrow-sketch {
  background: none; border: none; cursor: pointer; padding: 0;
  margin-left: 4px; transition: var(--transition);
  font-size: 1.1rem; color: var(--blue); line-height: 1;
}
.author-arrow-sketch:hover { transform: translateX(3px); color: #1e3a66; }

@media (max-width: 768px) {
  .authors-card { padding: 32px 24px; }
  .author-row { flex-direction: column; align-items: center; text-align: center; gap: 20px; }
  .author-photo-frame { width: 170px; height: 210px; margin: 0 auto; }
  .author-name-tag { right: auto; left: 50%; transform: translateX(-50%) rotate(-4deg); bottom: 8px; }
  .author-name-line { justify-content: center; }
  .author-role { padding-left: 0; }
  .author-nav { justify-content: center; }
  .author-blue-box { height: auto; min-height: 280px; }
}

/* ===== KEY CARDS ===== */
.key-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.key-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
  display: flex; flex-direction: column; text-decoration: none;
}
.key-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.key-card-img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px 14px 0 0;
}

.key-card-label {
  font-size: 0.78rem; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 20px 20px 0;
}

.key-card-title {
  font-size: 1.05rem; font-weight: 600; color: var(--gray-900);
  padding: 4px 20px 0; line-height: 1.4;
}

.key-card-link {
  font-size: 1rem; color: var(--blue); font-weight: 800;
  padding: 12px 20px 20px; margin-top: auto;
  text-decoration: underline; text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .key-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ===== ABOUT ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text .section-label { margin-bottom: 10px; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { margin-bottom: 14px; }
.about-visual { background: linear-gradient(135deg, var(--blue), #1e3a66); border-radius: var(--radius); padding: 40px; color: var(--white); position: relative; overflow: hidden; }
.about-visual::before { content: ''; position: absolute; top: -20%; right: -20%; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,220,64,0.1); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; position: relative; z-index: 1; }
.about-stat { text-align: center; }
.about-stat .number { font-size: 2.2rem; font-weight: 800; color: var(--yellow); display: block; line-height: 1; margin-bottom: 6px; }
.about-stat .label { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--gray-900); text-align: left; transition: var(--transition); }
.faq-question:hover { color: var(--blue); }
.faq-question .icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gray-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-left: 16px; transition: var(--transition); font-size: 1.1rem; color: var(--gray-500); }
.faq-item.open .faq-question .icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 22px; }
.faq-answer p { font-size: 0.98rem; color: var(--gray-600); }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--blue), #1e3a66); border-radius: 24px; padding: 56px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -40%; right: -10%; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,220,64,0.08); }
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ===== SIGNUP BANNER ===== */
.signup-banner {
  display: flex; align-items: center; gap: 40px;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 40px 48px;
  box-shadow: var(--shadow);
}

.signup-text { flex: 1; }
.signup-text h3 {
  font-weight: 400; color: var(--gray-900);
  font-size: 1.3rem; line-height: 1.5; margin: 0;
}

.signup-photo {
  flex-shrink: 0; width: 180px; height: 180px;
  border-radius: 50%; overflow: hidden;
}
.signup-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .signup-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .signup-photo { width: 100px; height: 100px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--white); border-top: 1px solid var(--gray-200); background-image: linear-gradient(to right, rgba(207,226,243,0.3) 1px, transparent 1px), linear-gradient(to bottom, rgba(207,226,243,0.3) 1px, transparent 1px); background-size: 80px 80px; padding: 48px 0 24px; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-inner p { font-size: 0.85rem; color: var(--blue); }

/* ===== CONTACT BAR ===== */
.contact-bar { text-align: center; padding: 40px 0; }
.contact-bar p { font-size: 1rem; }
.contact-bar a { color: var(--blue); font-weight: 600; border-bottom: 2px solid var(--yellow); transition: var(--transition); }
.contact-bar a:hover { color: #1e3a66; border-color: var(--blue); }

/* ===== PAGE HEADER ===== */
.page-header { padding: 100px 0 50px; background: linear-gradient(to bottom-right, var(--light-blue), var(--white), var(--light-blue)); text-align: center; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { color: var(--gray-600); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

/* ===== ROLES GRID ===== */
.roles-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 680px; margin: 0 auto; }
.role-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 50px; font-size: 0.92rem; font-weight: 600; color: var(--gray-800); box-shadow: var(--shadow-sm); }
.role-chip svg { color: var(--green); flex-shrink: 0; }

/* ===== REFER FORM ===== */
.refer-form { max-width: 520px; margin: 0 auto; }
.refer-form .form-group { margin-bottom: 20px; }
.refer-form label { display: block; font-size: 0.9rem; font-weight: 700; color: var(--gray-800); margin-bottom: 6px; }
.refer-form input {
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--gray-200);
  font-family: inherit; font-size: 1rem; color: var(--gray-900); transition: var(--transition);
  background: var(--white);
}
.refer-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(42,78,139,0.15); }
.refer-form .form-status { text-align: center; margin-top: 16px; font-size: 0.95rem; font-weight: 600; }
.refer-form .form-status.success { color: var(--green); }
.refer-form .form-status.error { color: #e53935; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .impact-grid, .leads-grid { grid-template-columns: repeat(2, 1fr); }
  .about-content { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  section { padding: 56px 0; }
  .hero { padding: 80px 0 56px; }
  .impact-grid, .opp-grid, .urgency-cards { grid-template-columns: 1fr; }
  .leads-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .cta-banner { padding: 36px 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .note-from-sam { padding: 28px 24px; }
}
