/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0A0A0F;
  --ink-soft: #1A1A24;
  --gold: #C8A96E;
  --gold-light: #E2C98A;
  --gold-dim: rgba(200,169,110,0.15);
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --text-body: #D4D0C8;
  --text-muted: #7A7870;
  --border: rgba(200,169,110,0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--ink); color: var(--text-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; color: var(--white); line-height: 1.15; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: .85rem; color: var(--text-muted); flex: 1; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-accept {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: .5rem 1.5rem;
  border-radius: 4px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  cursor: pointer;
  transition: background .2s;
}
.cookie-accept:hover { background: var(--gold-light); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .875rem 2rem; border-radius: 6px; font-family: 'Syne', sans-serif; font-weight: 600; font-size: .9rem; letter-spacing: .04em; transition: all .25s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); padding: .7rem 1.5rem; font-size: .85rem; }
.btn-outline:hover { background: var(--gold); color: var(--ink); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; transition: all .3s ease; }
.nav.scrolled { background: rgba(10,10,15,0.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--text-body); transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-family: 'Syne', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); border: 1.5px solid var(--gold); padding: .5rem 1.25rem; border-radius: 4px; transition: all .2s; white-space: nowrap; }
.nav-cta:hover { background: var(--gold); color: var(--ink); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 4rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,169,110,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,169,110,0.06) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(200,169,110,0.18) 0%, transparent 70%); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%); bottom: 100px; left: -100px; }

.hero-container { position: relative; z-index: 1; width: 100%; }
.hero-content { max-width: 760px; }

.hero-eyebrow { display: flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.5rem; animation: fadeUp .8s ease both; }
.dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s ease infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.5)} }

.hero-title { font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.5rem; animation: fadeUp .8s .15s ease both; }
.hero-title em { font-style: normal; color: var(--gold); }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-body); max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; animation: fadeUp .8s .3s ease both; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }

.hero-stat-strip { display: flex; align-items: center; gap: 3rem; margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid var(--border); animation: fadeUp .8s .6s ease both; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: .25rem; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: .8rem; color: var(--text-muted); max-width: 140px; }
.stat-divider { width: 1px; height: 50px; background: var(--border); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; padding: 10rem 0 5rem; overflow: hidden; }
.page-hero-content { position: relative; z-index: 1; max-width: 720px; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; margin: 1rem 0 1.25rem; }
.page-hero-content h1 em { font-style: normal; color: var(--gold); }
.page-hero-content p { font-size: clamp(.95rem, 2vw, 1.1rem); color: var(--text-body); font-weight: 300; max-width: 560px; }

/* ===== SECTIONS ===== */
.section { padding: 6rem 0; }
.section-tag { font-size: .75rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.75rem); font-weight: 700; margin-bottom: 1.5rem; }

/* ===== PROBLEM ===== */
.problem { background: var(--ink-soft); }
.problem .section-title { margin-bottom: 3rem; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.problem-card { background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color .3s, transform .3s; }
.problem-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.problem-icon { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(200,169,110,0.2); margin-bottom: 1rem; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.problem-card p { font-size: .9rem; color: var(--text-muted); }

/* ===== ADEO ===== */
.adeo-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.adeo-desc { margin-bottom: 2rem; font-weight: 300; }
.adeo-steps { display: flex; flex-direction: column; gap: 1.25rem; }
.adeo-step { display: flex; align-items: flex-start; gap: 1rem; }
.adeo-letter { flex-shrink: 0; width: 36px; height: 36px; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--gold); font-size: .9rem; }
.adeo-step strong { display: block; color: var(--white); margin-bottom: .25rem; font-size: .95rem; }
.adeo-step p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.adeo-visual { display: flex; align-items: center; justify-content: center; }
.adeo-diagram { position: relative; width: 280px; height: 280px; }
.adeo-ring { position: absolute; border-radius: 50%; border: 1px solid var(--border); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.adeo-ring-outer { width: 280px; height: 280px; border-color: rgba(200,169,110,0.15); animation: spin 20s linear infinite; }
.adeo-ring-mid { width: 180px; height: 180px; border-color: rgba(200,169,110,0.25); animation: spin 15s linear infinite reverse; }
@keyframes spin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }
.adeo-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--gold); z-index: 2; }
.adeo-node { position: absolute; width: 40px; height: 40px; background: var(--ink-soft); border: 1.5px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 700; color: var(--gold); font-size: .9rem; z-index: 2; }
.adeo-node-a { top: -5px; left: 50%; transform: translateX(-50%); }
.adeo-node-d { right: -5px; top: 50%; transform: translateY(-50%); }
.adeo-node-e { bottom: -5px; left: 50%; transform: translateX(-50%); }
.adeo-node-o { left: -5px; top: 50%; transform: translateY(-50%); }

/* ===== SERVICES PREVIEW ===== */
.services-preview { background: var(--ink-soft); }
.services-preview .section-title { margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.service-card { background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; gap: .75rem; transition: border-color .3s, transform .3s; }
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-num { font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; }
.service-card h3 { font-size: 1rem; }
.service-card p { font-size: .875rem; color: var(--text-muted); flex: 1; }
.service-link { font-size: .85rem; color: var(--gold); font-weight: 500; margin-top: .5rem; }

/* ===== FAQ ===== */
.faq { background: var(--ink-soft); }
.faq .section-title { margin-bottom: 3rem; }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.faq-item { background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.faq-item h3 { font-size: 1rem; margin-bottom: .75rem; color: var(--gold); }
.faq-item p { font-size: .9rem; color: var(--text-muted); }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 6rem 0; background: var(--ink-soft); overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; }
.orb-cta { width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,169,110,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-inner p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
.footer { padding: 4rem 0 0; background: var(--ink-soft); border-top: 1px solid var(--border); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-img { height: 48px; width: auto; object-fit: contain; margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); max-width: 260px; }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; padding-top: .25rem; }
.footer-contact p, .footer-contact a { font-size: .9rem; color: var(--text-muted); }
.footer-contact a:hover { color: var(--gold); }
.footer-links { display: flex; flex-direction: column; gap: .75rem; padding-top: .25rem; align-items: flex-start; }
.footer-links a { font-size: .9rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 0; text-align: center; }
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.founder { background: var(--ink-soft); }
.founder-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.founder-card { background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: center; overflow: hidden; }
.founder-photo { width: 100%; max-width: 280px; height: 320px; object-fit: cover; object-position: center top; border-radius: var(--radius); margin: 0 auto 1.25rem; display: block; }
.founder-name { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: .25rem; }
.founder-tag { font-size: .8rem; color: var(--text-muted); letter-spacing: .08em; }
.founder-text p { margin-bottom: 1rem; font-weight: 300; }
.founder-values { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.value { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { color: var(--gold); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }
.value strong { display: block; color: var(--white); margin-bottom: .25rem; }
.value p { font-size: .875rem; color: var(--text-muted); margin: 0; }

.adeo-intro-text { max-width: 600px; margin-bottom: 3rem; font-weight: 300; }
.adeo-deep-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.adeo-deep-card { background: var(--ink-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; transition: border-color .3s, transform .3s; }
.adeo-deep-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.adeo-deep-letter { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--gold); margin-bottom: 1rem; opacity: .4; }
.adeo-deep-card h3 { font-size: 1rem; margin-bottom: .75rem; }
.adeo-deep-card p { font-size: .875rem; color: var(--text-muted); }

/* ===== SERVICES PAGE ===== */
.service-feature { background: var(--ink-soft); }
.featured-tag { display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--gold); padding: .3rem .9rem; border-radius: 4px; font-weight: 700; margin-bottom: 2.5rem; }
.service-feature-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }
.service-feature-text h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 1.25rem; }
.service-lead { font-size: 1.1rem; font-weight: 500; color: var(--white); margin-bottom: 1rem; }
.service-feature-text p { font-weight: 300; margin-bottom: .75rem; }
.service-phases { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.phase { background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.5rem; }
.phase-num { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: block; margin-bottom: .4rem; }
.phase strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .4rem; }
.phase p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.aside-card { background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; }
.aside-card-alt { background: var(--gold-dim); }
.aside-label { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.25rem; display: block; }
.deliverables, .suited { display: flex; flex-direction: column; gap: .75rem; }
.deliverables li, .suited li { font-size: .9rem; color: var(--text-body); }
.other-services .section-title { margin-bottom: 3rem; }
.other-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.other-services-grid-3 { grid-template-columns: repeat(3, 1fr); }
.other-service-card { background: var(--ink-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color .3s; }
.other-service-card:hover { border-color: var(--gold); }
.other-service-card h3 { font-size: 1.1rem; margin: 1rem 0 .75rem; }
.other-service-card p { font-size: .875rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 300; }
.service-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.service-tags span { font-size: .72rem; letter-spacing: .08em; color: var(--gold); border: 1px solid var(--border); padding: .25rem .75rem; border-radius: 100px; }
.process { background: var(--ink-soft); }
.process .section-title { margin-bottom: 3.5rem; }
.process-steps { display: flex; align-items: flex-start; gap: 1rem; }
.process-step { flex: 1; background: var(--ink); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; }
.process-num { font-family: 'Syne', sans-serif; font-size: .75rem; font-weight: 700; color: var(--gold); letter-spacing: .1em; margin-bottom: 1rem; }
.process-step h3 { font-size: 1rem; margin-bottom: .75rem; }
.process-step p { font-size: .875rem; color: var(--text-muted); }
.process-arrow { color: var(--gold); font-size: 1.5rem; margin-top: 2.5rem; flex-shrink: 0; opacity: .5; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-size: 1.5rem; margin-bottom: 2rem; }
.expect-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.expect-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.expect-num { flex-shrink: 0; width: 32px; height: 32px; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-size: .72rem; font-weight: 700; color: var(--gold); }
.expect-item strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: .3rem; }
.expect-item p { font-size: .875rem; color: var(--text-muted); margin: 0; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.contact-detail { display: flex; flex-direction: column; gap: .2rem; }
.detail-label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.contact-detail span, .contact-detail a { font-size: .9rem; color: var(--text-body); }
.contact-detail a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--ink-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--white); letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea { background: var(--ink); border: 1px solid var(--border); border-radius: 8px; padding: .875rem 1.1rem; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .9rem; transition: border-color .2s; outline: none; resize: vertical; -webkit-appearance: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--ink); }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .5rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.success-icon { width: 60px; height: 60px; background: var(--gold-dim); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--gold); margin: 0 auto 1.5rem; }
.form-success h3 { font-size: 1.4rem; margin-bottom: .75rem; }
.form-success p { color: var(--text-muted); font-weight: 300; }

/* ===== RESOURCES PAGE ===== */
.resources-coming { max-width: 860px; margin: 0 auto; text-align: center; }
.coming-icon { width: 80px; height: 80px; background: var(--gold-dim); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.resources-coming h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.resources-coming > p { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto 3rem; font-weight: 300; }
.resources-preview-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 3rem; text-align: left; }
.resource-preview-card { background: var(--ink-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.resource-type { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.resource-preview-card h3 { font-size: 1rem; color: var(--white); }
.resource-preview-card p { font-size: .85rem; color: var(--text-muted); flex: 1; }
.resource-status { display: inline-block; font-size: .72rem; color: var(--text-muted); border: 1px solid var(--border); padding: .2rem .75rem; border-radius: 100px; margin-top: .5rem; }
.notify-form-wrap { max-width: 480px; margin: 0 auto; }
.notify-label { font-size: .9rem; color: var(--text-body); margin-bottom: 1rem; font-weight: 500; }
.notify-form { display: flex; gap: .75rem; }
.notify-form input { flex: 1; background: var(--ink-soft); border: 1px solid var(--border); border-radius: 6px; padding: .875rem 1rem; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: .9rem; outline: none; transition: border-color .2s; min-width: 0; }
.notify-form input:focus { border-color: var(--gold); }
.notify-form input::placeholder { color: var(--text-muted); }
.notify-consent { font-size: .75rem; color: var(--text-muted); margin-top: 1rem; max-width: 420px; margin-left: auto; margin-right: auto; }
.notify-success { font-size: .9rem; color: var(--gold); margin-top: 1rem; }
.notify-error { font-size: .9rem; color: #e05c5c; margin-top: 1rem; }

/* ===== PRIVACY PAGE ===== */
.privacy-content { max-width: 800px; }
.privacy-block { margin-bottom: 3rem; }
.privacy-block h2 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--gold); }
.privacy-block p { margin-bottom: .75rem; font-weight: 300; font-size: .95rem; }
.privacy-block a { color: var(--gold); text-decoration: underline; }
.privacy-list { display: flex; flex-direction: column; gap: .5rem; margin: .75rem 0; padding-left: 1.5rem; }
.privacy-list li { font-size: .95rem; color: var(--text-body); font-weight: 300; list-style: disc; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1100px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid-3 { grid-template-columns: 1fr 1fr; }
  .adeo-deep-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .nav { padding: 1rem 2rem; }
  .adeo-container, .founder-grid, .service-feature-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .adeo-visual { display: none; }
  .process-steps { flex-wrap: wrap; }
  .process-arrow { display: none; }
  .process-step { min-width: calc(50% - .5rem); flex: none; }
  .resources-preview-cards { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: .875rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--ink); align-items: center; justify-content: center; gap: 2.5rem; z-index: 99; }
  .nav-links.open a { font-size: 1.4rem; }
  .nav-logo-img { height: 40px; }

  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-stat-strip { gap: 1.5rem; margin-top: 3rem; padding-top: 2rem; }
  .stat-divider { display: none; }
  .stat-num { font-size: 1.3rem; }

  .page-hero { padding: 8rem 0 3rem; }

  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }

  .problem-grid { grid-template-columns: 1fr; }
  .services-grid, .services-grid-4 { grid-template-columns: 1fr; }
  .other-services-grid, .other-services-grid-3 { grid-template-columns: 1fr; }
  .adeo-deep-grid { grid-template-columns: 1fr; }
  .resources-preview-cards { grid-template-columns: 1fr; }
  .process-step { min-width: 100%; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .notify-form { flex-direction: column; }
  .notify-form input, .notify-form .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo-img { height: 40px; }

  .cookie-banner { flex-direction: column; align-items: flex-start; gap: .75rem; padding: 1rem 1.25rem; }
  .cookie-accept { width: 100%; text-align: center; }

  .cta-banner { padding: 4rem 0; }
  .cta-inner .btn { width: 100%; justify-content: center; }

  .service-feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2.2rem; }
  .nav-logo-img { height: 36px; }
}

/* ===== OUTCOMES SECTION ===== */
.outcomes { background: var(--ink-soft); padding-top: 3rem; }
.outcomes .section-title { margin-bottom: 3rem; }
.founder { padding-bottom: 3rem; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.outcome-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}
.outcome-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.outcome-icon {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
}
.outcome-card h3 { font-size: 1rem; margin-bottom: .75rem; }
.outcome-card p { font-size: .875rem; color: var(--text-muted); }

/* ===== TOOLS IN SERVICE CARDS ===== */
.tools-label {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: .6rem;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.tools-list span {
  font-size: .72rem;
  color: var(--white);
  background: rgba(200,169,110,0.12);
  border: 1px solid rgba(200,169,110,0.3);
  padding: .2rem .7rem;
  border-radius: 100px;
}

/* ===== MOBILE OVERFLOW FIX — SERVICES PAGE ===== */
@media (max-width: 768px) {
  /* Critical overflow fixes */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  .service-feature-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
    overflow: hidden;
  }

  .process-steps {
    flex-direction: column;
    width: 100%;
    overflow: hidden;
  }

  .process-step {
    width: 100% !important;
    min-width: unset !important;
    max-width: 100%;
    box-sizing: border-box;
  }

  .other-services-grid,
  .other-services-grid-3 {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .other-service-card {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .service-feature-text,
  .service-feature-aside {
    width: 100%;
    box-sizing: border-box;
  }

  .phase {
    width: 100%;
    box-sizing: border-box;
  }

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

  .tools-list {
    flex-wrap: wrap;
  }

  /* Ensure all containers don't overflow */
  .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  section {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
}

@media (max-width: 1100px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
