/* =============================================
   LEGACY PEAK INVESTMENTS — Design System
   ============================================= */

/* --- Design Tokens --- */
:root {
  --bg-deep: #1a1d23;
  --bg-card: #22262e;
  --bg-input: #2a2e37;
  --accent: #a8d4e6;
  --accent-hover: #c2e4f2;
  --accent-glow: rgba(168, 212, 230, 0.25);
  --text-primary: #ffffff;
  --text-body: #c5c9d1;
  --text-muted: #7a7f8a;
  --border-subtle: #3a3e48;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg-deep);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent);
  color: var(--bg-deep);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.3s ease;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
  outline: none;
  box-shadow: 0 4px 12px var(--accent-glow);
}

/* --- Typography --- */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  font-weight: 300;
  font-size: 1.02rem;
}

/* --- Scroll Animations --- */
/* Elements are visible by default. Only hidden once JS confirms it's loaded. */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

body.js-ready .animate-on-scroll {
  opacity: 0;
  transform: translateY(36px);
}

body.js-ready .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.process-grid .animate-on-scroll:nth-child(2) {
  transition-delay: 0.15s;
}

.process-grid .animate-on-scroll:nth-child(3) {
  transition-delay: 0.30s;
}

/* =============================================
   1. HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bg-deep);
  overflow: hidden;
}

/* --- Hero Video Background --- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  pointer-events: none;
}

.hero-video.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(26, 29, 35, 0.82) 0%,
      rgba(26, 29, 35, 0.70) 50%,
      rgba(26, 29, 35, 0.90) 100%);
  z-index: 1;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  z-index: 100;
  background: rgba(26, 29, 35, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(168, 212, 230, 0.08);
  transition: background 0.4s ease;
}

.navbar.is-scrolled {
  background: rgba(26, 29, 35, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #A39669;
  /* Gold/Earth tone from reference */
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-text::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #9FCBE3;
  /* Light blue from reference */
  margin-top: 6px;
  border-radius: 2px;
}

/* --- Logo Image --- */
.logo-icon {
  width: 55px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform var(--transition);
}

.logo-link:hover .logo-icon {
  transform: scale(1.05);
}



.nav-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.phone-number {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.03em;
  padding: 6px 16px;
  border: 1px solid rgba(168, 212, 230, 0.25);
  border-radius: 24px;
  transition: all var(--transition);
}

.phone-number:hover {
  background: rgba(168, 212, 230, 0.1);
  border-color: var(--accent);
}

/* --- Utility Link (Ghost Button) --- */
.utility-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  padding: 6px 16px;
  border: 1px solid transparent;
  border-radius: 24px;
  transition: all var(--transition);
  text-transform: uppercase;
  margin-left: 8px;
}

.utility-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
}

/* --- Hero Content --- */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 24px;
}

.hero-headline {
  font-size: clamp(1.92rem, 4.2vw, 2.88rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border-radius: 50px;
  padding: 6px 6px 6px 24px;
  border: 1px solid var(--border-subtle);
  max-width: 560px;
  margin: 0 auto;
  transition: border-color var(--transition);
}

.hero-cta-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.hero-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 14px 0;
}

.hero-input::placeholder {
  color: var(--text-muted);
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 24px var(--accent-glow);
  transform: translateY(-1px);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.is-success {
  background: #6bbf8a !important;
  /* Prioritize success state */
  pointer-events: none;
  cursor: default;
}

#hero-btn {
  border: 4px solid #36454F;
}

.btn-wide {
  width: 100%;
  padding: 16px 28px;
  font-size: 1rem;
  margin-top: 10px;
}

/* --- Secondary Button (CTA Pivot) --- */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--accent);
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(168, 212, 230, 0.1);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.story-pivot {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
}

.cta-pivot {
  margin-top: 16px;
}





/* =============================================
   2. DIGITAL HANDSHAKE
   ============================================= */
.handshake {
  padding: 100px 0;
}

.handshake-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.handshake-photo img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(168, 212, 230, 0.08);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.handshake-quote {
  margin-top: 24px;
  max-width: 380px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-body);
  text-align: center;
  line-height: 1.6;
}

.handshake-quote span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.handshake-text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.handshake-text p {
  font-size: 1.05rem;
  line-height: 1.85;
}

.handshake-text em {
  font-style: italic;
  color: var(--accent);
}

/* =============================================
   3. INQUIRY FORM
   ============================================= */
.inquiry {
  padding: 100px 0;
}

.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  max-width: 640px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.form-title {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 8px;
}

.form-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-input);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a8d4e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

.form-group select:invalid {
  color: var(--text-muted);
}

.form-group select option {
  color: var(--text-primary);
  background: var(--bg-input);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

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

/* =============================================
   4. VALIDATION / TESTIMONIAL
   ============================================= */
.validation {
  padding: 120px 0 130px;
  text-align: center;
  min-height: 480px;
  /* Ensure stable height for varying testimonial lengths */
}

.testimonial-quote {
  max-width: 800px;
  margin: 0 auto 24px;
  border: none;
  transition: opacity 0.8s ease-in-out;
}

.testimonial-quote.fading {
  opacity: 0;
}

.testimonial-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.45;
  margin: 0;
}

.testimonial-author {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: opacity 0.8s ease-in-out;
}

.testimonial-author.fading {
  opacity: 0;
}

/* =============================================
   5. STEWARDSHIP PROCESS
   ============================================= */
.process {
  padding: 100px 0 120px;
  background: linear-gradient(180deg,
      var(--bg-deep) 0%,
      rgba(34, 38, 46, 0.5) 50%,
      var(--bg-deep) 100%);
}

.section-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 60px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 36px;
  justify-content: center;
}

/* Default card spanning */
.process-grid .process-card {
  grid-column: span 2;
  width: 100%;
}

/* Explicit placement for the 5 cards */
.process-grid .process-card:nth-child(1) {
  grid-column: 1 / 3;
}

.process-grid .process-card:nth-child(2) {
  grid-column: 3 / 5;
}

.process-grid .process-card:nth-child(3) {
  grid-column: 5 / 7;
}

.process-grid .process-card:nth-child(4) {
  grid-column: 2 / 4;
}

.process-grid .process-card:nth-child(5) {
  grid-column: 4 / 6;
}

/* Responsive fallback */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-grid .process-card,
  .process-grid .process-card:nth-child(n) {
    grid-column: 1 / -1;
  }
}

.process-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-card:hover {
  background: rgba(34, 38, 46, 0.6);
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.process-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.process-icon svg {
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition);
}

.process-card:hover .process-icon svg {
  opacity: 1;
  transform: scale(1.08);
}

.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
}

.process-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: auto;
  /* Push learn more to bottom */
}

/* --- Learn More Button --- */
.learn-more-btn {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
  transition: color var(--transition), transform var(--transition);
}

.process-card:hover .learn-more-btn {
  color: var(--accent-hover);
  transform: translateX(4px);
}

/* =============================================
   6. FOOTER
   ============================================= */
.site-footer {
  background: #15171c;
  padding: 48px 0 36px;
  border-top: 1px solid rgba(168, 212, 230, 0.06);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}



.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-divider {
  color: var(--border-subtle);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 8px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px;
  }

  .nav-phone {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-headline {
    font-size: 2.16rem;
  }

  .hero-cta-row {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 16px;
    gap: 12px;
  }

  .hero-input {
    width: 100%;
    text-align: center;
    padding: 12px 0;
  }

  .btn-primary {
    width: 100%;
  }

  .handshake-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .handshake-photo img {
    margin: 0 auto;
  }

  .form-card {
    padding: 36px 24px;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.5rem;
  }

  .testimonial-quote p {
    font-size: 1.3rem;
  }
}

/* =============================================
   7. MODAL & UTILITIES
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-overlay.is-open .modal-content {
  transform: translateY(0);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.modal-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.modal-address-box {
  background: var(--bg-input);
  border: 1px solid var(--accent-glow);
  padding: 16px;
  border-radius: var(--radius);
  margin-bottom: 32px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1.1rem;
  word-break: break-word;
}

.modal-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background: transparent;
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}


/* --- Storyline Info Modal Specifics --- */
.process-card {
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.read-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}

.process-card:hover .read-more {
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-modal-content {
  max-width: 680px;
  /* Wider for text content */
  text-align: left;
  /* Easier reading for paragraphs */
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.modal-close-btn:hover {
  color: var(--accent);
}

#info-modal-body p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

#info-modal-body p:last-child {
  margin-bottom: 0;
}

/* --- Modal Testimonial --- */
.modal-testimonial {
  margin-top: 32px;
  padding: 24px;
  background: rgba(168, 212, 230, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}

.modal-testimonial p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem !important;
  color: var(--text-primary) !important;
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
}

.modal-testimonial cite {
  display: block;
  font-size: 0.9rem;
  color: var(--accent);
  text-align: right;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =============================================
   NEW SECTIONS: STRATEGY & BENEFITS
   ============================================= */
.bg-light {
  background: var(--bg-card);
}

.strategy-content {
  max-width: 800px;
  margin: 0 auto;
}

.lead-text {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(even, minmax(300px, 1fr));
  gap: 36px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-glow);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(168, 212, 230, 0.05);
  margin-bottom: 24px;
}

/* --- Process Grid 5 Items --- */
.process-grid-5 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  padding: 24px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  /* Hide default arrow */
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: rgba(168, 212, 230, 0.02);
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-body);
  border-top: 1px solid var(--border-subtle);
  margin-top: 16px;
  padding-top: 16px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}