/* ============================================================
 Aetas Wealth, Main stylesheet
 Brand: Deep Blue #00205B, Turquoise #00747E, Gold #896C2E
 Typeface: Open Sans
 ============================================================ */

/* ---------- 1. Design tokens ---------- */
:root {
 /* Brand palette */
 --aetas-blue: #00205B;
 --aetas-blue-dark: #001640;
 --aetas-blue-soft: #f4f6fb;
 --aetas-turquoise: #00747E;
 --aetas-turquoise-dark: #006870;
 --aetas-gold: #896C2E;
 --aetas-gold-soft: #8a6e20;

 /* Neutrals */
 --ink: #1a1f2e;
 --ink-soft: #4a5269;
 --ink-muted: #606882;
 --paper: #ffffff;
 --paper-warm: #fafaf7;
 --line: #e6e8ee;
 --line-soft: #f0f2f6;

 /* Typography */
 --font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
 --tracking-display: -0.01em;
 --tracking-eyebrow: 0.18em;

 /* Layout */
 --container: 1200px;
 --container-narrow: 880px;
 --gutter: clamp(1.25rem, 4vw, 2.5rem);
 --section-y: clamp(4rem, 9vw, 7rem);

 /* Effects */
 --shadow-sm: 0 1px 2px rgba(0, 32, 91, 0.04), 0 2px 6px rgba(0, 32, 91, 0.04);
 --shadow-md: 0 4px 12px rgba(0, 32, 91, 0.06), 0 12px 28px rgba(0, 32, 91, 0.06);
 --shadow-lg: 0 10px 30px rgba(0, 32, 91, 0.08), 0 24px 60px rgba(0, 32, 91, 0.08);
 --radius-sm: 4px;
 --radius: 8px;
 --radius-lg: 14px;

 --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
 margin: 0;
 font-family: var(--font-sans);
 font-weight: 400;
 font-size: 17px;
 line-height: 1.65;
 color: var(--ink);
 background: var(--paper);
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aetas-blue); text-decoration: none; transition: color 200ms var(--ease); }
a:hover { color: var(--aetas-turquoise); }
button { font-family: inherit; cursor: pointer; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-sans);
 color: var(--aetas-blue);
 font-weight: 700;
 line-height: 1.18;
 letter-spacing: var(--tracking-display);
 margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 300; }
h1 strong, h1 .accent { font-weight: 700; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { margin: 0 0 1.1em; color: var(--ink-soft); }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--ink); font-weight: 300; }

.eyebrow {
 display: inline-block;
 font-size: 0.78rem;
 font-weight: 600;
 letter-spacing: var(--tracking-eyebrow);
 text-transform: uppercase;
 color: var(--aetas-gold);
 margin-bottom: 1rem;
}
.eyebrow.turquoise { color: var(--aetas-turquoise); }

.rule {
 width: 60px;
 height: 2px;
 background: var(--aetas-gold);
 border: 0;
 margin: 0 0 1.75rem;
}
.rule.center { margin-left: auto; margin-right: auto; }

/* ---------- 4. Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(2.5rem, 6vw, 4rem); }
.section-soft { background: var(--paper-warm); }
.section-blue { background: var(--aetas-blue); color: #ffffff; }
.section-blue h1.section-blue h2.section-blue h3 { color: #ffffff; }
.section-blue p { color: rgba(255, 255, 255, 0.82); }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

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

/* ---------- 5. Header / nav ---------- */
.site-header {
 position: sticky;
 top: 0;
 z-index: 100;
 background: rgba(255, 255, 255, 0.96);
 backdrop-filter: saturate(180%) blur(8px);
 -webkit-backdrop-filter: saturate(180%) blur(8px);
 border-bottom: 1px solid var(--line);
}
.nav-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding-block: 1.1rem;
}
.brand {
 display: flex;
 align-items: center;
 gap: 0.7rem;
 font-size: 1.1rem;
 font-weight: 700;
 letter-spacing: 0.02em;
 color: var(--aetas-blue);
}
.brand-mark {
 width: 56px;
 height: 56px;
 display: grid;
 place-items: center;
 position: relative;
 flex-shrink: 0;
}
.brand-mark img {
 width: 100%;
 height: 100%;
 object-fit: contain;
 display: block;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
/* brand-text last-child removed, replaced by .brand-division */

.nav-links {
 display: flex;
 align-items: center;
 gap: 1.5rem;
 list-style: none;
 margin: 0;
 padding: 0;
}
.nav-links a {
 font-size: 0.9rem;
 font-weight: 500;
 color: var(--ink);
 position: relative;
 padding-block: 6px;
 white-space: nowrap;
}
.nav-links a:hover.nav-links a.is-active { color: var(--aetas-blue); }
.nav-links a.is-active::after {
 content: '';
 position: absolute;
 inset: auto 0 -2px 0;
 height: 2px;
 background: var(--aetas-gold);
}
.nav-cta {
 background: var(--aetas-blue);
 color: #fff !important;
 padding: 0.65rem 1.25rem !important;
 border-radius: 2px;
 white-space: nowrap;
 transition: background 200ms var(--ease);
}
.nav-cta:hover { background: var(--aetas-turquoise) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
 display: none;
 background: transparent;
 border: 0;
 width: 40px;
 height: 40px;
 position: relative;
}
.nav-toggle span {
 position: absolute;
 left: 8px;
 right: 8px;
 height: 2px;
 background: var(--aetas-blue);
 transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1024px) {
 .nav-toggle { display: block; }
 .nav-links {
 position: absolute;
 top: 100%;
 inset-inline: 0;
 flex-direction: column;
 gap: 0;
 background: #fff;
 border-bottom: 1px solid var(--line);
 padding: 0.5rem 0 1rem;
 transform: translateY(-12px);
 opacity: 0;
 pointer-events: none;
 transition: transform 200ms var(--ease), opacity 200ms var(--ease);
 }
 .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
 .nav-links li { width: 100%; }
 .nav-links a {
 display: block;
 padding: 0.85rem var(--gutter);
 border-bottom: 1px solid var(--line-soft);
 }
 .nav-cta {
 margin: 0.75rem var(--gutter) 0;
 text-align: center;
 border-radius: 2px;
 }
}

/* ---------- 6. Buttons ---------- */
.btn {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.85rem 1.6rem;
 font-size: 0.95rem;
 font-weight: 600;
 letter-spacing: 0.02em;
 border-radius: 2px;
 border: 1px solid transparent;
 transition: all 220ms var(--ease);
 cursor: pointer;
}
.btn-primary { background: var(--aetas-blue); color: #fff; }
.btn-primary:hover { background: var(--aetas-turquoise); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--aetas-blue); border-color: var(--aetas-blue); }
.btn-ghost:hover { background: var(--aetas-blue); color: #fff; }
.btn-gold { background: var(--aetas-gold); color: #fff; }
.btn-gold:hover { background: var(--aetas-blue); color: #fff; }
.btn-arrow::after {
 content: '→';
 transition: transform 200ms var(--ease);
}
.btn:hover .btn-arrow::after.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- 7. Hero ---------- */
.hero {
 position: relative;
 padding-block: clamp(5rem, 11vw, 9rem);
 background: linear-gradient(180deg, #fafaf7 0%, #ffffff 100%);
 overflow: hidden;
}
.hero::before {
 content: '';
 position: absolute;
 top: 0;
 right: 0;
 width: 50%;
 height: 100%;
 background:
 radial-gradient(circle at 70% 30%, rgba(0, 156, 166, 0.06) 0%, transparent 50%),
 radial-gradient(circle at 90% 70%, rgba(154, 123, 58, 0.04) 0%, transparent 50%);
 pointer-events: none;
}
.hero-grid {
 display: grid;
 grid-template-columns: 1.2fr 1fr;
 gap: 4rem;
 align-items: center;
 position: relative;
}
.hero-eyebrow {
 display: flex;
 align-items: center;
 gap: 0.85rem;
 font-size: 0.78rem;
 font-weight: 600;
 letter-spacing: var(--tracking-eyebrow);
 text-transform: uppercase;
 color: var(--aetas-turquoise);
 margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
 content: '';
 width: 32px;
 height: 1px;
 background: var(--aetas-gold);
}
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.18rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-aside {
 background: #fff;
 padding: 2.5rem;
 border-radius: var(--radius);
 box-shadow: var(--shadow-lg);
 border-top: 3px solid var(--aetas-gold);
 position: relative;
}
.hero-aside h3 { color: var(--aetas-blue); }
.hero-aside ul { list-style: none; padding: 0; margin: 1rem 0 0; }
.hero-aside li {
 position: relative;
 padding: 0.6rem 0 0.6rem 1.5rem;
 font-size: 0.95rem;
 color: var(--ink-soft);
 border-bottom: 1px solid var(--line-soft);
}
.hero-aside li:last-child { border-bottom: 0; }
.hero-aside li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 1.05rem;
 width: 6px;
 height: 6px;
 background: var(--aetas-turquoise);
 border-radius: 50%;
}
@media (max-width: 880px) {
 .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
 .hero::before { display: none; }
}

/* ---------- 8. Service / feature cards ---------- */
.card {
 background: #fff;
 padding: 2rem;
 border: 1px solid var(--line);
 border-radius: var(--radius);
 transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
 position: relative;
 overflow: hidden;
}
.card::before {
 content: '';
 position: absolute;
 inset: auto 0 0 0;
 height: 2px;
 background: var(--aetas-turquoise);
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 280ms var(--ease);
}
.card:hover {
 transform: translateY(-3px);
 box-shadow: var(--shadow-md);
 border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
 width: 44px;
 height: 44px;
 display: grid;
 place-items: center;
 background: var(--aetas-blue-soft);
 color: var(--aetas-blue);
 border-radius: 2px;
 margin-bottom: 1.25rem;
 font-size: 1.25rem;
 font-weight: 700;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; margin-bottom: 1rem; }
.card-link {
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--aetas-turquoise);
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
}
.card-link::after { content: '→'; transition: transform 200ms var(--ease); }
.card:hover .card-link::after { transform: translateX(3px); }

/* ---------- 9. Process steps ---------- */
.process {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 gap: 0;
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
}
.process-step {
 padding: 2.5rem 1.75rem;
 border-right: 1px solid var(--line);
 position: relative;
}
.process-step:last-child { border-right: 0; }
.process-num {
 font-size: 0.75rem;
 letter-spacing: var(--tracking-eyebrow);
 font-weight: 600;
 color: var(--aetas-gold);
 margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.92rem; margin: 0; }
@media (max-width: 720px) {
 .process-step { border-right: 0; border-bottom: 1px solid var(--line); }
 .process-step:last-child { border-bottom: 0; }
}

/* ---------- 10. Quote / testimonial ---------- */
.quote {
 position: relative;
 padding: 2.5rem;
 background: var(--paper-warm);
 border-radius: var(--radius);
 border-left: 3px solid var(--aetas-gold);
}
.quote-text {
 font-size: 1.05rem;
 font-style: italic;
 color: var(--ink);
 line-height: 1.6;
 margin-bottom: 1.25rem;
}
.quote-attr { font-size: 0.85rem; color: var(--ink-muted); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- 11. Section header ---------- */
.section-head {
 max-width: 720px;
 margin: 0 auto 3.5rem;
 text-align: center;
}
.section-head.left { text-align: left; margin-inline: 0; }

/* ---------- 12. Page banner (sub-pages) ---------- */
.page-banner {
 background: var(--aetas-blue);
 color: #fff;
 padding-block: clamp(3.5rem, 8vw, 5.5rem);
 position: relative;
 overflow: hidden;
}
.page-banner::before {
 content: '';
 position: absolute;
 top: -50%;
 right: -10%;
 width: 600px;
 height: 600px;
 background: radial-gradient(circle, rgba(0, 156, 166, 0.18) 0%, transparent 60%);
 pointer-events: none;
}
.page-banner::after {
 content: '';
 position: absolute;
 inset: auto 0 0 0;
 height: 4px;
 background: linear-gradient(90deg, var(--aetas-turquoise) 0%, var(--aetas-gold) 100%);
}
.page-banner h1 { color: #fff; max-width: 720px; position: relative; }
.page-banner .lead { color: rgba(255, 255, 255, 0.85); max-width: 640px; position: relative; font-weight: 300; }
.breadcrumbs {
 font-size: 0.85rem;
 color: rgba(255, 255, 255, 0.65);
 margin-bottom: 1.25rem;
 position: relative;
}
.breadcrumbs a { color: rgba(255, 255, 255, 0.85); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { margin-inline: 0.5rem; opacity: 0.5; }

/* ---------- 13. Insights / blog ---------- */
.post-list { list-style: none; padding: 0; margin: 0; }
.post-card {
 display: grid;
 grid-template-columns: 1fr;
 padding: 2rem 0;
 border-bottom: 1px solid var(--line);
 transition: padding-left 200ms var(--ease);
}
.post-card:hover { padding-left: 0.75rem; }
.post-meta {
 font-size: 0.78rem;
 letter-spacing: var(--tracking-eyebrow);
 text-transform: uppercase;
 color: var(--aetas-gold);
 font-weight: 600;
 margin-bottom: 0.75rem;
}
.post-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--aetas-blue); }
.post-card p { font-size: 1rem; margin-bottom: 0.75rem; }

article.post .post-body { max-width: 720px; margin: 0 auto; }
article.post h2 { margin-top: 2.5rem; }
article.post h3 { margin-top: 2rem; }
article.post p { font-size: 1.05rem; line-height: 1.75; }
article.post blockquote {
 margin: 2rem 0;
 padding: 1.25rem 1.75rem;
 border-left: 3px solid var(--aetas-gold);
 background: var(--paper-warm);
 font-style: italic;
 color: var(--ink);
}

/* ---------- 14. Forms ---------- */
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label {
 font-size: 0.82rem;
 font-weight: 600;
 color: var(--aetas-blue);
 letter-spacing: 0.04em;
 margin-bottom: 0.45rem;
}
.form-field input.form-field select.form-field textarea {
 font-family: inherit;
 font-size: 1rem;
 padding: 0.85rem 1rem;
 background: #fff;
 border: 1px solid var(--line);
 border-radius: 2px;
 color: var(--ink);
 transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.form-field input:focus.form-field select:focus.form-field textarea:focus {
 outline: 0;
 border-color: var(--aetas-turquoise);
 box-shadow: 0 0 0 3px rgba(0, 156, 166, 0.12);
}

/* ---------- 15. Contact details strip ---------- */
.contact-strip {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 2rem;
 padding: 2.5rem;
 background: var(--paper-warm);
 border-radius: var(--radius);
}
.contact-strip h4 {
 color: var(--aetas-blue);
 font-size: 0.78rem;
 letter-spacing: var(--tracking-eyebrow);
 text-transform: uppercase;
 margin-bottom: 0.75rem;
}
.contact-strip p { font-size: 0.95rem; margin: 0; }

/* ---------- 16. Footer ---------- */
.site-footer {
 background: var(--aetas-blue-dark);
 color: rgba(255, 255, 255, 0.7);
 padding-block: 4rem 2rem;
 position: relative;
}
.site-footer::before {
 content: '';
 position: absolute;
 inset: 0 0 auto 0;
 height: 3px;
 background: linear-gradient(90deg, var(--aetas-gold) 0%, var(--aetas-turquoise) 100%);
}
.footer-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 2.5rem;
 margin-bottom: 3rem;
}
@media (max-width: 880px) {
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
 .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
 color: #fff;
 font-size: 0.78rem;
 letter-spacing: var(--tracking-eyebrow);
 text-transform: uppercase;
 margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a {
 color: rgba(255, 255, 255, 0.7);
 font-size: 0.92rem;
 transition: color 180ms var(--ease);
}
.footer-grid a:hover { color: #fff; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; margin-top: 1rem; }
.footer-bottom {
 padding-top: 2rem;
 border-top: 1px solid rgba(255, 255, 255, 0.12);
 font-size: 0.78rem;
 color: rgba(255, 255, 255, 0.55);
 line-height: 1.7;
}
.footer-bottom p { margin: 0 0 0.5rem; color: inherit; }
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }

/* ---------- 17. Stats / pull-out ---------- */
.stats {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
 gap: 0;
}
.stat {
 padding: 2rem;
 border-right: 1px solid rgba(255, 255, 255, 0.15);
 text-align: center;
}
.stat:last-child { border-right: 0; }
.stat-num {
 font-size: clamp(2rem, 4vw, 2.75rem);
 font-weight: 300;
 color: #fff;
 line-height: 1;
 margin-bottom: 0.5rem;
}
.stat-num strong { color: var(--aetas-gold-soft); font-weight: 600; }
.stat-label {
 font-size: 0.78rem;
 letter-spacing: var(--tracking-eyebrow);
 text-transform: uppercase;
 color: rgba(255, 255, 255, 0.7);
}

/* ---------- 18. Misc ---------- */
.checklist { list-style: none; padding: 0; margin: 1.5rem 0; }
.checklist li {
 position: relative;
 padding: 0.5rem 0 0.5rem 2rem;
 font-size: 0.98rem;
 color: var(--ink-soft);
}
.checklist li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 0.85rem;
 width: 14px;
 height: 8px;
 border-left: 2px solid var(--aetas-turquoise);
 border-bottom: 2px solid var(--aetas-turquoise);
 transform: rotate(-45deg);
}

.disclaimer {
 font-size: 0.78rem;
 color: var(--ink-muted);
 line-height: 1.6;
 padding: 1.5rem;
 background: var(--paper-warm);
 border-left: 2px solid var(--aetas-gold);
 border-radius: 2px;
}

/* ---------- 19. Reveal-on-scroll (light touch) ---------- */
@media (prefers-reduced-motion: no-preference) {
 .reveal {
 opacity: 0;
 transform: translateY(16px);
 transition: opacity 600ms var(--ease), transform 600ms var(--ease);
 }
 .reveal.is-visible { opacity: 1; transform: translateY(0); }
}

/* ---------- 20. Print ---------- */
@media print {
 .site-header.site-footer.nav-toggle.hero-actions.btn { display: none !important; }
 body { color: #000; background: #fff; }
}

/* ============================================================
 FILTER PILLS (Insights category filter)
 ============================================================ */
.filter-pill {
 display: inline-block;
 padding: 0.42rem 0.95rem;
 font-family: inherit;
 font-size: 0.82rem;
 font-weight: 500;
 color: var(--ink);
 background: var(--paper-warm);
 border: 1px solid var(--line);
 border-radius: 999px;
 cursor: pointer;
 transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
 letter-spacing: 0.01em;
 white-space: nowrap;
}
.filter-pill:hover {
 background: #fff;
 border-color: var(--aetas-gold);
 color: var(--aetas-navy);
}
.filter-pill.is-active {
 background: var(--aetas-gold);
 color: #fff;
 border-color: var(--aetas-gold);
}
.filter-pill.is-active:hover {
 background: var(--aetas-gold);
 color: #fff;
 border-color: var(--aetas-gold);
}
@media (max-width: 600px) {
 .filter-pill { font-size: 0.78rem; padding: 0.38rem 0.8rem; }
}



/* ITW sub-page extras */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 2rem; }
.faq-item {
 border: 1px solid var(--line);
 border-radius: 8px;
 background: #fff;
 overflow: hidden;
}
.faq-item summary {
 list-style: none;
 cursor: pointer;
 padding: 1.25rem 1.5rem;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 1rem;
 font-weight: 600;
 color: var(--aetas-blue);
 font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
 content: '+';
 font-size: 1.5rem;
 font-weight: 300;
 color: var(--aetas-turquoise);
 transition: transform 220ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid var(--line); }
.faq-item .faq-body { padding: 1.25rem 1.5rem 1.5rem; }
.faq-item .faq-body p { font-size: 0.97rem; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-cat {
 margin-top: 3rem;
 padding-bottom: 1rem;
 border-bottom: 2px solid var(--aetas-gold);
}
.faq-cat:first-child { margin-top: 0; }
.faq-cat .eyebrow { display: block; }
.faq-cat h2 { margin: 0.25rem 0 0; font-size: 1.5rem; }

/* Pricing band */
.price-band {
 padding: 2rem;
 background: rgba(255,255,255,0.05);
 border: 1px solid rgba(255,255,255,0.12);
 border-radius: 8px;
 display: flex;
 flex-direction: column;
}
.price-band.featured { background: rgba(255,255,255,0.10); border-color: var(--aetas-gold-soft); }
.price-band-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aetas-gold-soft); margin-bottom: 0.25rem; }
.price-band-size { font-size: 1rem; color: rgba(255,255,255,0.78); margin-bottom: 1.5rem; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; }
.price-row:last-of-type { border-bottom: none; }
.price-row .label { color: rgba(255,255,255,0.7); }
.price-row .val { color: #fff; font-weight: 500; }
.price-row .val.free { color: var(--aetas-gold-soft); }
.price-total { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--aetas-gold-soft); display: flex; justify-content: space-between; }
.price-total .label { color: rgba(255,255,255,0.85); font-weight: 600; }
.price-total .val { color: var(--aetas-gold-soft); font-size: 1.2rem; font-weight: 600; }

/* Article grid */
.article-card {
 background: #fff;
 border: 1px solid var(--line);
 border-radius: 8px;
 padding: 1.75rem;
 display: flex;
 flex-direction: column;
 transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.article-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aetas-turquoise); margin-bottom: 0.75rem; }
.article-meta { font-size: 0.82rem; color: var(--ink-muted); margin-bottom: 0.75rem; }
.article-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.article-card p { font-size: 0.92rem; margin-bottom: 1.25rem; flex: 1; }
.article-card .card-link { margin-top: auto; }
.article-card.coming-soon { border-style: dashed; opacity: 0.6; }

/* Diagnostic form */
.q-block { padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 8px; margin-bottom: 1rem; }
.q-block legend { font-weight: 600; color: var(--aetas-blue); font-size: 1rem; margin-bottom: 1rem; padding: 0; }
.q-options { display: flex; flex-direction: column; gap: 0.6rem; }
.q-option { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; padding: 0.75rem; border: 1px solid var(--line); border-radius: 6px; transition: border-color 180ms, background 180ms; font-size: 0.95rem; color: var(--ink-soft); }
.q-option:hover { border-color: var(--aetas-turquoise); background: rgba(0,156,166,0.03); }
.q-option input[type="radio"] { margin-top: 4px; flex-shrink: 0; accent-color: var(--aetas-blue); }
.q-option input[type="radio"]:checked + span { color: var(--aetas-blue); font-weight: 500; }
.q-category-header { background: var(--aetas-blue); color: #fff; padding: 1rem 1.5rem; border-radius: 8px; margin: 2.5rem 0 1.5rem; }
.q-category-header:first-of-type { margin-top: 0; }
.q-category-header .eyebrow { color: var(--aetas-gold-soft); margin-bottom: 0.25rem; display: block; }
.q-category-header h2 { color: #fff; margin: 0; font-size: 1.35rem; }

/* Calculator inputs */
.calc-form { display: grid; gap: 1.5rem; max-width: 600px; }
.calc-field { display: flex; flex-direction: column; gap: 0.5rem; }
.calc-field label { font-size: 0.9rem; font-weight: 600; color: var(--aetas-blue); }
.calc-field input.calc-field select { font-family: inherit; font-size: 1rem; padding: 0.85rem 1rem; background: #fff; border: 1px solid var(--line); border-radius: 4px; color: var(--ink); }
.calc-field input:focus.calc-field select:focus { outline: 0; border-color: var(--aetas-turquoise); box-shadow: 0 0 0 3px rgba(0,156,166,0.12); }
.calc-result-card { background: var(--aetas-blue); color: #fff; padding: 2rem; border-radius: 8px; margin-top: 2rem; }
.calc-result-card h2 { color: #fff; }
.calc-result-card p { color: rgba(255,255,255,0.82); }
.calc-result-num { font-size: 3rem; font-weight: 300; color: var(--aetas-gold-soft); line-height: 1; margin: 0.5rem 0 1rem; }

/* Case study card */
.case-card { background: var(--paper-warm); padding: 2.5rem; border-radius: 8px; border-left: 3px solid var(--aetas-gold); }
.case-card .eyebrow { display: block; margin-bottom: 0.5rem; }
.case-card h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.case-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; margin: 1.5rem 0; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-stat .case-stat-num { font-size: 1.75rem; font-weight: 300; color: var(--aetas-blue); line-height: 1; }
.case-stat .case-stat-label { font-size: 0.82rem; color: var(--ink-muted); margin-top: 4px; }

 
/* ---- Nav dropdown ---- */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
 display: none;
 position: absolute;
 top: calc(100% + 0.5rem);
 left: 0;
 background: var(--aetas-blue);
 border: 1px solid rgba(255,255,255,0.12);
 border-radius: var(--radius);
 min-width: 220px;
 padding: 0.5rem 0;
 list-style: none;
 z-index: 200;
 box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.nav-dropdown-menu li a {
 display: block;
 padding: 0.6rem 1.25rem;
 color: rgba(255,255,255,0.85);
 font-size: 0.9rem;
 text-decoration: none;
 transition: color 0.15s, background 0.15s;
}
.nav-dropdown-menu li a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover { display: block; }
/* invisible bridge across the top gap so the menu doesn't close mid-hover (desktop only) */
@media (min-width: 769px) { .nav-dropdown-menu::before { content: ''; position: absolute; top: -0.6rem; left: 0; right: 0; height: 0.6rem; background: transparent; } }
.nav-caret { font-size: 0.6rem; margin-left: 0.3rem; vertical-align: middle; }
@media (max-width: 768px) {
 .nav-dropdown-menu { position: static; box-shadow: none; border: none; background: transparent; padding: 0 0 0 1rem; }
 .nav-dropdown-menu li a { color: rgba(255,255,255,0.7); padding: 0.4rem 0; }
 .nav-dropdown:hover .nav-dropdown-menu { display: none; }
 .nav-dropdown.is-open .nav-dropdown-menu { display: block; }
}


/* ---- Master brand hierarchy ---- */
.brand {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 text-decoration: none;
}
.brand-mark {
 width: 56px;
 height: 56px;
 display: grid;
 place-items: center;
 flex-shrink: 0;
}
.brand-mark img {
 width: 100%;
 height: 100%;
 object-fit: contain;
 display: block;
}
.brand-text {
 display: flex;
 flex-direction: column;
 line-height: 1;
 gap: 3px;
}
.brand-name {
 font-size: 1.45rem;
 font-weight: 800;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--aetas-blue);
 line-height: 1;
}
.brand-text .brand-division {
 font-size: 0.84rem;
 font-weight: 500;
 letter-spacing: 0.1em;
 font-style: italic;
 text-transform: none;
 color: var(--aetas-turquoise);
 line-height: 1;
}
.brand-tagline { font-family:"Cormorant Garamond",Georgia,serif; font-style:italic; font-weight:600; font-size:0.96rem; letter-spacing:0.01em; color:#00205B; line-height:1.15; margin-top:3px; white-space:nowrap; }

/* pillar pages: tighter section rhythm */
.section{padding-block:clamp(1.6rem,3.4vw,2.6rem)}
.section .section-head{margin-bottom:1rem}

/* pillar page: two-column hero with media */
.ph-hero{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(1.5rem,4vw,3rem);align-items:center}
.ph-hero-media img{width:100%;height:auto;aspect-ratio:3/2;object-fit:cover;border-radius:10px;box-shadow:var(--shadow-md);display:block}
@media(max-width:820px){.ph-hero{grid-template-columns:1fr}.ph-hero-media{order:-1;margin-bottom:1rem}}
