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

:root {
  color-scheme: light;
  --teal:        #2A8B8A;
  --teal-mid:    #3BA3A2;
  --teal-light:  #EBF6F6;
  --teal-border: #C5E8E8;
  --amber:       #D97706;
  --ink:         #0F1923;
  --ink-2:       #1E2B38;
  --muted:       #536472;
  --subtle:      #8A9BAA;
  --border:      #E2E8EE;
  --border-2:    #CBD5DE;
  --bg:          #FFFFFF;
  --bg-2:        #F6F8FA;
  --bg-3:        #EEF2F5;
  --sans:        'Plus Jakarta Sans', system-ui, sans-serif;
  --mono:        'JetBrains Mono', monospace;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 4px rgba(15,25,35,0.06), 0 2px 8px rgba(15,25,35,0.04);
  --shadow-md:   0 4px 16px rgba(15,25,35,0.08), 0 2px 6px rgba(15,25,35,0.05);
  --shadow-lg:   0 8px 32px rgba(15,25,35,0.10), 0 2px 8px rgba(15,25,35,0.06);
  --max-w:       1160px;
}

html { scroll-behavior: smooth; background: #ffffff; }
body { font-family: var(--sans); background: #ffffff; color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.55rem 1.1rem; border-radius: var(--radius); font-family: var(--sans); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.15s; text-decoration: none; border: none; white-space: nowrap; }
.btn-primary { background: var(--teal); color: #ffffff; }
.btn-primary:hover { background: var(--teal-mid); box-shadow: 0 4px 14px rgba(42,139,138,0.3); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--border-2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.btn-lg { padding: 0.75rem 1.5rem; font-size: 0.9rem; }

/* ── NAV ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.95); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); height: 60px; display: flex; align-items: center; padding: 0 2rem; gap: 2rem; }
.nav-logo { font-size: 0.95rem; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -0.02em; display: flex; align-items: center; gap: 0.5rem; margin-right: auto; }
.nav-logo-mark { width: 28px; height: 28px; background: var(--teal); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 0.6rem; font-weight: 600; color: white; letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--muted); text-decoration: none; transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* ── SHARED SECTION ── */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
section { padding: 90px 0; }
.section-kicker { font-family: var(--mono); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.85rem; }
.section-h { font-size: clamp(1.85rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; color: var(--ink); margin-bottom: 1rem; }
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; line-height: 1.75; }
.page-header { padding: 120px 0 60px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.page-header .section-inner { max-width: 800px; }

/* ── HERO ── */
.hero { padding: 110px 2rem 80px; max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 480px; gap: 5rem; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--teal-light); border: 1px solid var(--teal-border); color: var(--teal); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; margin-bottom: 1.5rem; }
.hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
.hero h1 { font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 1.4rem; }
.hero h1 .accent { color: var(--teal); }
.hero-sub { font-size: 1.05rem; color: var(--muted); line-height: 1.75; margin-bottom: 2.25rem; max-width: 460px; }
.hero-actions { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-trust { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--subtle); font-weight: 500; }
.hero-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-2); }

/* SCORE CARD */
.score-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.75rem; box-shadow: var(--shadow-lg); position: relative; }
.score-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.score-company { font-size: 0.78rem; font-weight: 700; color: var(--ink-2); }
.score-domain { font-family: var(--mono); font-size: 0.65rem; color: var(--subtle); margin-top: 3px; }
.score-num { font-size: 2.75rem; font-weight: 800; line-height: 1; color: var(--teal); letter-spacing: -0.04em; text-align: right; }
.score-label { font-family: var(--mono); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); text-align: right; margin-top: 2px; }
.radar-wrap { width: 100%; max-width: 260px; margin: 0 auto 1.25rem; }
.metric-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.metric-chip { font-family: var(--mono); font-size: 0.65rem; font-weight: 500; padding: 3px 8px; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--border); color: var(--muted); }
.floating-tag { position: absolute; background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius); padding: 7px 12px; box-shadow: var(--shadow-md); font-size: 0.75rem; font-weight: 600; color: var(--ink-2); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.floating-tag-tl { top: -14px; right: 20px; }
.floating-tag-bl { bottom: -14px; left: 20px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* LOGOS */
.logos-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); padding: 1.25rem 2rem; }
.logos-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.logos-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); }
.logo-text { font-size: 0.82rem; font-weight: 600; color: var(--border-2); }

/* HOW IT WORKS */
.how-section { background: var(--bg-2); }
.steps-wrap { margin-top: 3.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step { background: #ffffff; padding: 2.25rem; }
.step-num { font-family: var(--mono); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; color: var(--teal); background: var(--teal-light); border: 1px solid var(--teal-border); border-radius: var(--radius-sm); display: inline-block; padding: 3px 9px; margin-bottom: 1.25rem; }
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.step p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* METRICS */
.metrics-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.metric-card { background: #ffffff; padding: 2rem; transition: background 0.15s; }
.metric-card:hover { background: var(--bg-2); }
.metric-abbr { font-family: var(--mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; color: var(--teal); background: var(--teal-light); border: 1px solid var(--teal-border); border-radius: var(--radius-sm); display: inline-block; padding: 2px 8px; margin-bottom: 0.85rem; }
.metric-name { font-size: 0.95rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.metric-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.metric-bar-row { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.metric-bar-track { flex: 1; height: 4px; background: var(--bg-3); border-radius: 2px; overflow: hidden; }
.metric-bar-fill { height: 100%; background: var(--teal); border-radius: 2px; width: 0%; transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1); }
.metric-bar-val { font-family: var(--mono); font-size: 0.68rem; font-weight: 600; color: var(--subtle); width: 24px; text-align: right; flex-shrink: 0; }

/* REPORT */
.report-section { background: var(--bg-2); }
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3.5rem; }
.report-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; box-shadow: var(--shadow-md); }
.report-card-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
.report-company { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.report-url { font-family: var(--mono); font-size: 0.65rem; color: var(--subtle); margin-top: 3px; }
.report-score-big { font-size: 3rem; font-weight: 800; line-height: 1; color: var(--teal); letter-spacing: -0.05em; text-align: right; }
.report-score-sub { font-family: var(--mono); font-size: 0.6rem; color: var(--subtle); letter-spacing: 0.08em; text-transform: uppercase; text-align: right; margin-top: 3px; }
.report-radar-wrap { width: 100%; max-width: 240px; margin: 0 auto 1.5rem; }
.report-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.report-row { display: flex; align-items: center; gap: 0.75rem; }
.report-row-label { font-family: var(--mono); font-size: 0.65rem; font-weight: 600; color: var(--muted); width: 32px; flex-shrink: 0; }
.report-row-track { flex: 1; height: 5px; background: var(--bg-3); border-radius: 3px; overflow: hidden; }
.report-row-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--teal-mid)); border-radius: 3px; }
.report-row-val { font-family: var(--mono); font-size: 0.65rem; font-weight: 600; color: var(--muted); width: 24px; text-align: right; flex-shrink: 0; }
.report-details h3 { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 1rem; }
.report-details p { font-size: 0.9rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.5rem; }
.report-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.report-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--ink-2); font-weight: 500; }
.check-icon { width: 18px; height: 18px; border-radius: 5px; background: var(--teal-light); border: 1px solid var(--teal-border); flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 0.65rem; font-weight: 700; }

/* PRICING */
.pricing-header { text-align: center; margin-bottom: 3.5rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.pricing-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-card.featured { border-color: var(--teal); border-width: 2px; position: relative; }
.featured-pill { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: white; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 12px; border-radius: 20px; white-space: nowrap; }
.pricing-tier { font-family: var(--mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); margin-bottom: 0.75rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; color: var(--ink); line-height: 1; margin-bottom: 0.25rem; }
.pricing-card.featured .pricing-price { color: var(--teal); }
.pricing-cadence { font-size: 0.78rem; color: var(--subtle); margin-bottom: 1.25rem; font-weight: 500; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.25rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: var(--ink-2); font-weight: 500; }
.pricing-features li::before { content: '✓'; font-size: 0.7rem; font-weight: 800; color: var(--teal); width: 16px; height: 16px; background: var(--teal-light); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials-section { background: var(--bg-2); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testimonial-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.t-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.t-star { width: 14px; height: 14px; background: var(--amber); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.t-quote { font-size: 0.9rem; color: var(--ink-2); line-height: 1.7; margin-bottom: 1.5rem; }
.t-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.t-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--teal); color: white; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-name { font-size: 0.83rem; font-weight: 700; color: var(--ink); }
.t-title { font-size: 0.75rem; color: var(--subtle); }

/* FAQ */
.faq-wrap { max-width: 680px; margin: 3.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--sans); font-size: 0.925rem; font-weight: 600; color: var(--ink); transition: color 0.15s; }
.faq-btn:hover { color: var(--teal); }
.faq-icon { width: 24px; height: 24px; border: 1.5px solid var(--border-2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; color: var(--subtle); transition: all 0.2s; }
.faq-item.open .faq-icon { background: var(--teal); border-color: var(--teal); color: white; transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height 0.3s ease, padding 0.2s; }
.faq-item.open .faq-body { max-height: 300px; padding-bottom: 1.25rem; }
.faq-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.8; }

/* CTA */
.cta-section { background: var(--teal-light); border-top: 1px solid var(--teal-border); border-bottom: 1px solid var(--teal-border); padding: 80px 2rem; text-align: center; }
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 0.875rem; line-height: 1.15; }
.cta-section p { font-size: 1rem; color: var(--muted); margin-bottom: 2rem; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-note { font-size: 0.78rem; color: var(--subtle); margin-top: 0.75rem; }

/* FOOTER */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-size: 0.875rem; font-weight: 700; color: var(--ink); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: var(--subtle); text-decoration: none; transition: color 0.15s; font-weight: 500; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { width: 100%; text-align: center; font-size: 0.75rem; color: var(--subtle); margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.post-card { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; text-decoration: none; }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-tag { font-family: var(--mono); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 0.75rem; }
.post-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.35; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.post-excerpt { font-size: 0.85rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
.post-meta { font-size: 0.75rem; color: var(--subtle); font-weight: 500; padding-top: 1rem; border-top: 1px solid var(--border); }

/* POST CONTENT */
.post-layout { max-width: 720px; margin: 0 auto; padding: 60px 2rem 100px; }
.post-header { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.post-header .post-tag { display: block; margin-bottom: 1rem; }
.post-header h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; color: var(--ink); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.post-header .post-meta { font-size: 0.8rem; color: var(--subtle); }
.post-content { font-size: 1rem; line-height: 1.85; color: var(--ink-2); }
.post-content h2 { font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.4rem; }
.post-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-content li { margin-bottom: 0.4rem; }
.post-content blockquote { border-left: 3px solid var(--teal); padding: 0.75rem 0 0.75rem 1.25rem; margin: 1.5rem 0; color: var(--muted); font-style: italic; }
.post-content code { font-family: var(--mono); font-size: 0.85em; background: var(--bg-2); border: 1px solid var(--border); padding: 2px 6px; border-radius: 4px; }
.post-content pre { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; overflow-x: auto; margin-bottom: 1.4rem; }
.post-content pre code { background: none; border: none; padding: 0; }

/* GLOSSARY */
.glossary-nav { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 2rem 0 3rem; position: sticky; top: 60px; background: #ffffff; padding: 0.75rem 0; z-index: 10; border-bottom: 1px solid var(--border); }
.glossary-nav a { font-family: var(--mono); font-size: 0.75rem; font-weight: 600; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--muted); text-decoration: none; transition: all 0.15s; }
.glossary-nav a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.glossary-group { margin-bottom: 3rem; }
.glossary-letter { font-family: var(--mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); background: var(--teal-light); border: 1px solid var(--teal-border); display: inline-block; padding: 3px 10px; border-radius: var(--radius-sm); margin-bottom: 1.25rem; }
.glossary-term { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #ffffff; padding: 1.75rem; margin-bottom: 1rem; }
.glossary-term-header { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.75rem; }
.glossary-term-name { font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.glossary-term-abbr { font-family: var(--mono); font-size: 0.65rem; font-weight: 700; color: var(--teal); background: var(--teal-light); border: 1px solid var(--teal-border); padding: 2px 7px; border-radius: 4px; }
.glossary-term-def { font-size: 0.875rem; color: var(--muted); line-height: 1.75; margin-bottom: 0.75rem; }
.glossary-related { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.glossary-related-label { font-size: 0.72rem; font-weight: 600; color: var(--subtle); margin-right: 0.25rem; }
.glossary-related a { font-size: 0.72rem; color: var(--teal); background: var(--teal-light); border: 1px solid var(--teal-border); padding: 2px 8px; border-radius: 20px; text-decoration: none; transition: background 0.15s; }
.glossary-related a:hover { background: var(--teal-border); }

/* ABOUT */
.about-content { max-width: 720px; margin: 0 auto; padding: 60px 2rem 100px; }
.about-content h2 { font-size: 1.5rem; font-weight: 800; color: var(--ink); letter-spacing: -0.025em; margin: 2.5rem 0 1rem; }
.about-content p { font-size: 0.975rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about-content a { color: var(--teal); }
.about-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin: 2rem 0; }
.team-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; }
.team-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--teal); color: white; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-name { font-size: 0.9rem; font-weight: 700; color: var(--ink); margin-bottom: 0.25rem; }
.team-role { font-size: 0.78rem; color: var(--subtle); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fu { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.d1 { animation-delay: 0.08s; } .d2 { animation-delay: 0.18s; } .d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.44s; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 90px 2rem 60px; }
  .steps-wrap { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 580px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* AUDIT FORM */
.audit-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.audit-form-wrap { background: #ffffff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4rem; }
.form-input { width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid var(--border-2); border-radius: var(--radius); font-family: var(--sans); font-size: 0.875rem; color: var(--ink); background: #ffffff; transition: border-color 0.15s, box-shadow 0.15s; outline: none; }
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,139,138,0.1); }
.form-input::placeholder { color: var(--subtle); }
.form-textarea { min-height: 100px; resize: vertical; }
.audit-sidebar-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.timeline { display: flex; flex-direction: column; gap: 1.25rem; }
.timeline-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 4px; }
.timeline-label { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.timeline-sub { font-size: 0.78rem; color: var(--subtle); margin-top: 1px; }
@media (max-width: 760px) { .audit-grid { grid-template-columns: 1fr; } }
