/* ============================================
   INNATO — Design System & Styles
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Colors */
  --navy-dark: #1a1f36;
  --navy: #2d3250;
  --navy-light: #424769;
  --gold: #c8a96e;
  --gold-light: #dfc59b;
  --gold-dark: #a68b4b;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888;
  --gray-700: #555;
  --text: #2c2c2c;
  --text-light: #666;
  --danger: #c0392b;
  --success: #27ae60;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 5rem 0;
  --container-width: 1140px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.12);

  /* Transitions */
  --transition: all .3s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-dark);
}

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); }

p { margin-bottom: 1rem; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  gap: .5rem;
  white-space: nowrap;
}

.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }
.btn-lg { padding: .9rem 2.25rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(200,169,110,.35);
}

.btn-outline {
  background: transparent;
  color: var(--navy-dark);
  border-color: var(--navy-dark);
}
.btn-outline:hover {
  background: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255,255,255,.3);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-tagline {
  font-size: .65rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  transition: var(--transition);
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--gold);
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

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

.mobile-menu a {
  padding: .75rem 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:last-child {
  border-bottom: none;
  margin-top: .5rem;
}

/* ---------- Hero ---------- */
.hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: .4rem 1.25rem;
  background: rgba(200,169,110,.15);
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.trust-icon {
  font-size: 1.1rem;
}

/* ---------- Urgency Bar ---------- */
.urgency-bar {
  background: var(--navy-dark);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(200,169,110,.2);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ---------- Sections ---------- */
.section {
  padding: var(--section-padding);
}

.section-alt {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ---------- Problem Cards ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.problem-card h3 {
  margin-bottom: .75rem;
}

.problem-card p {
  color: var(--text-light);
  font-size: .9rem;
  margin-bottom: 0;
}

/* ---------- Options Grid ---------- */
.options-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.option-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
}

.option-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.option-icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.option-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.option-card p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ---------- Simulator Section ---------- */
.simulator-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.service-zone {
  display: inline-block;
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--white);
  background: var(--navy-light);
  padding: .2rem .6rem;
  border-radius: 3px;
  margin-bottom: .75rem;
}

.service-price-detail {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: -.75rem;
  margin-bottom: 1.25rem;
}

.service-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  position: relative;
}

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

.service-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: .5rem;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1.5rem;
}

.service-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: .5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: .9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-100);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.service-features li:last-child {
  border-bottom: none;
}

/* ---------- Independence ---------- */
.independence {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--gold-light) 0%, #f0e4c8 100%);
}

.indep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.indep-item {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.indep-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.indep-item h3 {
  margin-bottom: .5rem;
}

.indep-item p {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ---------- Blog Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
}

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

.blog-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  background: rgba(200,169,110,.1);
  padding: .25rem .75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  line-height: 1.4;
}

.blog-card p {
  color: var(--text-light);
  font-size: .9rem;
  flex: 1;
}

.blog-date {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: .75rem;
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, #faf6ee 0%, #f5eed9 100%);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 3rem;
}

.highlight-box h3 {
  color: var(--gold-dark);
  font-size: 1rem;
  margin-bottom: .5rem;
}

/* ---------- CTA Final ---------- */
.cta-final {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  color: var(--white);
}

.cta-final h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.cta-final p {
  color: rgba(255,255,255,.75);
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-email {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
}
.cta-email a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.footer-col p {
  font-size: .85rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul a {
  font-size: .85rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--gold-light);
}

/* ---------- Page Header (for secondary pages) ---------- */
.page-header {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: .75rem;
}

.page-header p {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-header .breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.page-header .breadcrumb a {
  color: var(--gold-light);
}

/* ---------- Blog List (blog/index.html) ---------- */
.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-list-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text);
}

.blog-list-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.blog-list-card .blog-tag {
  margin-bottom: .75rem;
}

.blog-list-card h3 {
  font-size: 1.25rem;
  margin-bottom: .75rem;
  line-height: 1.35;
}

.blog-list-card p {
  color: var(--text-light);
  font-size: .9rem;
  flex: 1;
  line-height: 1.7;
}

.blog-list-card .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.blog-read-more {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---------- Article Page ---------- */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article-content h3 {
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.article-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}

.article-content ul,
.article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: .5rem;
  font-size: 1rem;
  line-height: 1.7;
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}

.article-content th,
.article-content td {
  border: 1px solid var(--gray-200);
  padding: .75rem 1rem;
  text-align: left;
}

.article-content th {
  background: var(--navy-dark);
  color: var(--white);
  font-weight: 600;
}

.article-content tr:nth-child(even) {
  background: var(--gray-100);
}

.article-cta {
  background: linear-gradient(135deg, #faf6ee 0%, #f5eed9 100%);
  border: 1px solid var(--gold-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}

.article-cta h3 {
  color: var(--navy-dark);
  margin-bottom: .5rem;
}

.article-cta p {
  color: var(--text-light);
  font-size: .95rem;
  margin-bottom: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .options-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 8rem 0 3.5rem; }

  .urgency-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .problems-grid,
  .indep-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-list-grid {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .section { padding: 3.5rem 0; }
  .hero-trust { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .highlight-box {
    padding: 2rem 1.5rem;
  }
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-form-card .form-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: var(--danger);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.4;
}

.form-checkbox label a {
  color: var(--gold-dark);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.sidebar-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar-card .contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.9rem;
}

.contact-item-text strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-item-text span,
.contact-item-text a {
  color: var(--text-light);
}

.contact-item-text a:hover {
  color: var(--gold-dark);
}

.sidebar-card.highlight-sidebar {
  background: var(--navy);
  color: var(--white);
}

.sidebar-card.highlight-sidebar h3 {
  color: var(--gold-light);
}

.sidebar-card.highlight-sidebar p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.sidebar-card.highlight-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}

.sidebar-card.highlight-sidebar ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.sidebar-card.highlight-sidebar ul li::before {
  content: '✓';
  color: var(--gold-light);
  margin-right: 0.5rem;
  font-weight: 700;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--text-light);
}

/* Contact page responsive */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .sidebar-card {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .contact-form-card {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-sidebar {
    flex-direction: column;
  }
  .sidebar-card {
    min-width: unset;
  }
}

/* ============================================
   SIMULATOR PAGE
   ============================================ */

.simulator-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.simulator-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

/* Progress bar */
.sim-progress {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
}

.sim-progress-step {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--gray-200);
  transition: background .4s ease;
}

.sim-progress-step.active {
  background: var(--gold);
}

.sim-progress-step.done {
  background: var(--navy);
}

.sim-step-counter {
  font-family: var(--font-body);
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: .75rem;
}

/* Question */
.sim-question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.sim-hint {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Options */
.sim-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}

.sim-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.sim-option:hover {
  border-color: var(--gold-light);
  background: rgba(200, 169, 110, .04);
}

.sim-option.selected {
  border-color: var(--gold);
  background: rgba(200, 169, 110, .08);
}

.sim-option-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}

.sim-option-content {
  flex: 1;
}

.sim-option-label {
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: .15rem;
}

.sim-option-desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.4;
}

.sim-option-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sim-option.selected .sim-option-check {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.sim-option.selected .sim-option-check::after {
  content: '✓';
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
}

/* Navigation */
.sim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.sim-btn {
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: var(--font-body);
}

.sim-btn-back {
  background: transparent;
  color: var(--text-light);
}

.sim-btn-back:hover {
  color: var(--navy);
}

.sim-btn-next {
  background: var(--navy);
  color: var(--white);
}

.sim-btn-next:hover {
  background: var(--navy-dark);
}

.sim-btn-next:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.sim-btn-next:disabled:hover {
  background: var(--navy);
}

/* Results */
.sim-results {
  text-align: center;
}

.sim-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sim-results-label {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: .5rem;
}

.sim-results-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.sim-results-detail {
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}

.sim-results-detail h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
}

.sim-results-detail p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: .95rem;
}

.sim-results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.sim-results-disclaimer {
  font-size: .8rem;
  color: var(--gray-500);
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* Other options */
.sim-other-options {
  margin-top: 2rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.5rem;
}

.sim-other-options h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
  text-align: center;
}

.sim-alt-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.sim-alt-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.sim-alt-rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}

.sim-alt-name {
  font-weight: 500;
  color: var(--navy-dark);
  flex: 1;
}

.sim-alt-score {
  font-size: .85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Restart */
.sim-restart {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .5rem 1rem;
  background: transparent;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  color: var(--text-light);
  font-size: .85rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}

.sim-restart:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* ============ FOUNDER PROFILE ============ */
.founder-profile {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  border: 4px solid var(--gold);
}

.founder-text {
  flex: 1;
}

.founder-text h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.founder-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.founder-text .highlight-box {
  margin-top: 1.5rem;
}

.founder-text h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

@media (max-width: 768px) {
  .founder-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .founder-photo img {
    width: 200px;
    height: 200px;
  }
  .founder-text h2 {
    font-size: 1.3rem;
  }
}

/* Simulator responsive */
@media (max-width: 768px) {
  .simulator-card {
    padding: 1.5rem;
  }
  .sim-question {
    font-size: 1.25rem;
  }
  .sim-option {
    padding: .85rem 1rem;
  }
  .sim-option-icon {
    font-size: 1.25rem;
    width: 2rem;
  }
  .sim-results-title {
    font-size: 1.4rem;
  }
  .sim-results-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .sim-results-actions .btn {
    text-align: center;
  }
}
