/* Shared styles across all pages — same token system as index */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue:      #0C507D;
  --blue-dark: #08273D;
  --teal:      #16959A;
  --teal-light:#1BB4BA;
  --off-white: #F7F9FB;
  --surface:   #E8F4F8;
  --text:      #111820;
  --muted:     #4A5D6B;
  --border:    #D0E3EC;
  --white:     #FFFFFF;
  --radius:    6px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-family: var(--font-display); font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: filter .2s, transform .15s; }
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
h1 { font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; line-height: 1.1; }
h2 { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 700; letter-spacing: -.02em; line-height: 1.15; }
h3 { font-family: var(--font-display); font-weight: 700; }
.hex-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: var(--surface); clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%); color: var(--teal); flex-shrink: 0; }
.hex-icon svg { width: 24px; height: 24px; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: var(--blue-dark); border-bottom: 1px solid rgba(255,255,255,.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; display: block; border-radius: 4px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 8px; padding: 9px 18px; font-size: 14px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

/* PAGE HERO */
.page-hero { background: var(--blue-dark); padding: 72px 0 88px; position: relative; overflow: hidden; }
.page-hero-hexgrid { position: absolute; inset: 0; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 76,22 76,62 40,82 4,62 4,22' fill='none' stroke='%2316959A' stroke-width='1.5'/%3E%3C/svg%3E"); background-size: 80px 92px; }
.page-hero::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 48px; background: var(--white); clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.page-hero-content { position: relative; max-width: 680px; }
.page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(22,149,154,.18); border: 1px solid rgba(22,149,154,.3); color: var(--teal-light); font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
.page-hero-eyebrow::before { content: ''; display: block; width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); color: var(--white); margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.65); margin-bottom: 32px; max-width: 540px; line-height: 1.65; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb span { margin: 0 6px; }

/* SECTIONS */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--blue-dark); }
.section-dark h2, .section-dark h3, .section-dark .tag { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.6); }
.section-header { margin-bottom: 48px; }
.section-header p { color: var(--muted); margin-top: 10px; font-size: 17px; max-width: 560px; }

/* FEATURE GRID */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px; }
.feature-card h3 { font-size: 17px; margin: 14px 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* TWO COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col-text h2 { margin-bottom: 16px; }
.two-col-text p { color: var(--muted); font-size: 16px; margin-bottom: 20px; line-height: 1.7; }
.two-col-visual { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; min-height: 320px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; flex-direction: column; gap: 10px; }
.two-col-visual svg { color: var(--teal); opacity: .4; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%); padding: 64px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; font-size: clamp(24px, 3vw, 36px); }
.cta-band p { color: rgba(255,255,255,.65); font-size: 17px; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* FOOTER */
footer { background: var(--blue-dark); padding: 56px 0 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-img { height: 36px; width: auto; border-radius: 3px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.45); max-width: 280px; line-height: 1.6; }
.footer-col h5 { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.3); }

/* CHECKLIST */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); line-height: 1.5; }
.checklist li::before { content: ''; display: block; width: 8px; height: 8px; background: var(--teal); clip-path: polygon(50% 0%,93% 25%,93% 75%,50% 100%,7% 75%,7% 25%); flex-shrink: 0; margin-top: 6px; }

/* FAQ ACCORDION */
.faq { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: var(--white); border: none; padding: 18px 20px; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: background .15s; }
.faq-q:hover { background: var(--off-white); }
.faq-q svg { flex-shrink: 0; transition: transform .25s; color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* MATERIAL TABLE */
.mat-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.mat-table th { background: var(--blue-dark); color: rgba(255,255,255,.7); font-family: var(--font-display); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 12px 16px; text-align: left; }
.mat-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5; }
.mat-table tr:last-child td { border-bottom: none; }
.mat-table tr:nth-child(even) td { background: var(--off-white); }
.mat-tag { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 11px; font-weight: 600; font-family: var(--font-display); background: var(--surface); color: var(--teal); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .mat-table { font-size: 13px; }
}
