/* ═══════════════════════════════════════════
   Acacia Web — Global Stylesheet
   Shared across all pages
═══════════════════════════════════════════ */

:root {
  --navy:        #050d1f;
  --navy-mid:    #0a1a3a;
  --blue-dark:   #0f3460;
  --blue:        #1a56db;
  --blue-mid:    #3b82f6;
  --blue-light:  #60a5fa;
  --blue-pale:   #eff6ff;
  --cyan:        #06b6d4;
  --indigo:      #4338ca;
  --white:       #ffffff;
  --off-white:   #f8faff;ƒ
  --slate:       #64748b;
  --charcoal:    #0f172a;
  --mid:         #334155;

  --grad-main:   linear-gradient(135deg, #1a56db 0%, #06b6d4 100%);
  --grad-deep:   linear-gradient(135deg, #050d1f 0%, #0f3460 60%, #1a56db 100%);
  --grad-soft:   linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);

  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 4px 24px rgba(26,86,219,0.1);
  --shadow-lg:   0 16px 60px rgba(26,86,219,0.18);
  --shadow-blue: 0 8px 32px rgba(26,86,219,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ─────────────────────────────── */
.navbar {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,86,219,0.08);
  padding: .9rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(26,86,219,0.12);
  background: rgba(255,255,255,0.97);
}
.navbar-brand {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--charcoal) !important;
  display: flex; align-items: center; gap: .3rem;
  text-decoration: none;
}
.navbar-brand img {
  height: 36px; width: auto;
  margin-right: .4rem;
  vertical-align: middle;
}
.navbar-brand .accent { color: var(--blue); }
.navbar-brand .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg,#1a56db,#06b6d4);
  margin-bottom: 2px; margin-left: 2px;
}
.nav-link {
  color: var(--mid) !important;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: -.1px;
  padding: .4rem .85rem !important;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--blue-pale); color: var(--blue) !important; }
.nav-link.active { color: var(--blue) !important; font-weight: 600; background: var(--blue-pale); }
.btn-nav {
  background: var(--grad-main);
  color: var(--white) !important;
  border-radius: 50px;
  padding: .5rem 1.4rem !important;
  font-weight: 600;
  font-size: .875rem;
  box-shadow: var(--shadow-blue);
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.btn-nav:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 12px 36px rgba(26,86,219,0.45); }

/* ── PAGE HERO (inner pages) ─────────────── */
.page-hero {
  background: var(--grad-deep);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero .orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.page-hero .orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.45) 0%, transparent 70%);
  top: -150px; right: -100px;
}
.page-hero .orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(6,182,212,0.3) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.page-hero .eyebrow i { color: var(--cyan); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-hero h1 .grad {
  background: linear-gradient(90deg, #60a5fa, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem; line-height: 1.75;
  font-weight: 300; max-width: 520px;
}
.breadcrumb-nav {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.6rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav i { font-size: .6rem; }

/* ── SECTION SHARED ──────────────────────── */
section { padding: 96px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--blue-pale); color: var(--blue);
  border-radius: 50px; padding: .28rem .9rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .9px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -1.5px; color: var(--charcoal); margin-bottom: 1rem;
}
.section-sub {
  color: var(--slate); font-size: .98rem;
  line-height: 1.78; font-weight: 300; max-width: 540px;
}

/* ── BUTTONS ─────────────────────────────── */
.btn-primary-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--grad-main);
  color: white; border: none; border-radius: 50px;
  padding: .85rem 2rem; font-weight: 700; font-size: .92rem;
  font-family: 'Sora', sans-serif; text-decoration: none;
  box-shadow: var(--shadow-blue); letter-spacing: -.2px;
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.btn-primary-blue:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 12px 36px rgba(26,86,219,0.45); color: white; }

.btn-outline-blue {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--blue);
  border: 2px solid rgba(26,86,219,0.25); border-radius: 50px;
  padding: .85rem 2rem; font-weight: 600; font-size: .92rem;
  font-family: 'Sora', sans-serif; text-decoration: none;
  letter-spacing: -.2px; transition: border-color .2s, background .2s, transform .2s;
}
.btn-outline-blue:hover { border-color: var(--blue); background: var(--blue-pale); transform: translateY(-2px); color: var(--blue); }

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
  background: var(--grad-deep);
  padding: 90px 0; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.cta-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(6,182,212,0.2) 0%, transparent 70%); top: -200px; right: -100px; }
.cta-orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(26,86,219,0.4) 0%, transparent 70%); bottom: -100px; left: 0; }
.cta-section h2 { color: white; letter-spacing: -2px; }
.cta-section p { color: rgba(255,255,255,0.6); font-weight: 300; font-size: 1.03rem; }
.btn-cta-white {
  background: white; color: var(--blue); border-radius: 50px;
  padding: .95rem 2.3rem; font-weight: 700; font-size: .95rem;
  font-family: 'Sora', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2); letter-spacing: -.2px;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.28); color: var(--blue-dark); }
.btn-cta-glass {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: 50px;
  padding: .95rem 2.3rem; font-weight: 600; font-size: .95rem;
  font-family: 'Sora', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s, transform .2s; letter-spacing: -.2px;
}
.btn-cta-glass:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.13); color: white; transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.55);
}
.footer-brand {
  font-size: 1.45rem; font-weight: 800; color: white;
  letter-spacing: -1px; margin-bottom: 1rem;
  display: flex; align-items: center; gap: .3rem;
}
.footer-brand img { height: 32px; width: auto; filter: brightness(0) invert(1); margin-right: .4rem; }
.footer-brand .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg,#1a56db,#06b6d4); margin-bottom: 2px; margin-left: 2px; }
footer h6 { font-family: 'Sora',sans-serif; font-size: .69rem; letter-spacing: 1.3px; text-transform: uppercase; color: rgba(255,255,255,0.28); font-weight: 700; margin-bottom: 1rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: .84rem; display: block; margin-bottom: .5rem; transition: color .2s; }
footer a:hover { color: var(--blue-light); }
.footer-contact-item { display: flex; align-items: center; gap: .6rem; font-size: .84rem; margin-bottom: .6rem; color: rgba(255,255,255,0.5); }
.footer-contact-item i { color: var(--blue-mid); }
.footer-divider { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 52px; padding: 1.4rem 0; }
.footer-copy { font-size: .77rem; color: rgba(255,255,255,0.26); }

/* ── ANIMATIONS ──────────────────────────── */
[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ── UTILITY ─────────────────────────────── */
.text-blue { color: var(--blue); }
.text-cyan { color: var(--cyan); }
.grad-text {
  background: linear-gradient(90deg, #1a56db, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── PROSE CONTENT (legal/policy pages) ─── */
.prose h2 { font-size: 1.4rem; font-weight: 700; letter-spacing: -.5px; color: var(--charcoal); margin: 2.5rem 0 .8rem; }
.prose h3 { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); margin: 1.8rem 0 .6rem; }
.prose p { color: var(--slate); font-size: .95rem; line-height: 1.85; font-weight: 300; margin-bottom: 1.1rem; }
.prose ul { color: var(--slate); font-size: .95rem; line-height: 1.85; font-weight: 300; padding-left: 1.4rem; margin-bottom: 1.1rem; }
.prose ul li { margin-bottom: .4rem; }
.prose a { color: var(--blue); text-decoration: underline; display: inline; }
.prose strong { font-weight: 600; color: var(--mid); }
.prose .last-updated { font-size: .8rem; color: var(--slate); font-weight: 500; margin-bottom: 2rem; display: block; }

@media (max-width: 991px) {
  .page-hero { padding: 70px 0 60px; }
}
@media (max-width: 575px) {
  .page-hero h1 { letter-spacing: -1px; }
  .section-title { letter-spacing: -1px; }
}

/* ── COOKIE CONSENT ──────────────────────── */
#aw-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 1.2rem 1rem;
  transform: translateY(110%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
#aw-cookie-banner.aw-cb-visible {
  transform: translateY(0);
  pointer-events: all;
}
.aw-cb-inner {
  max-width: 980px;
  margin: 0 auto;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -4px 40px rgba(5,13,31,0.5), 0 0 0 1px rgba(26,86,219,0.2);
  backdrop-filter: blur(20px);
}
.aw-cb-text { flex: 1; min-width: 0; }
.aw-cb-title {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
  margin-bottom: .4rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.aw-cb-title i { color: #06b6d4; }
.aw-cb-text p {
  font-size: .78rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.aw-cb-text p a { color: #60a5fa; text-decoration: underline; }
.aw-cb-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.aw-btn-accept, .aw-btn-reject, .aw-btn-manage {
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  padding: .55rem 1.2rem;
  white-space: nowrap;
  transition: transform .2s, opacity .2s, box-shadow .2s;
  letter-spacing: -.1px;
}
.aw-btn-accept:hover, .aw-btn-reject:hover, .aw-btn-manage:hover { transform: translateY(-1px); }
.aw-btn-accept {
  background: linear-gradient(135deg, #1a56db, #06b6d4);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,0.4);
}
.aw-btn-accept:hover { box-shadow: 0 8px 24px rgba(26,86,219,0.55); }
.aw-btn-reject {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.15) !important;
}
.aw-btn-reject:hover { background: rgba(255,255,255,0.12); color: #fff; }
.aw-btn-manage {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12) !important;
}
.aw-btn-manage:hover { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3) !important; }
#aw-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
#aw-cookie-modal.aw-modal-visible { opacity: 1; pointer-events: all; }
.aw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,13,31,0.75);
  backdrop-filter: blur(6px);
}
.aw-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 80px rgba(5,13,31,0.4);
  transform: translateY(16px) scale(.98);
  transition: transform .3s ease;
  overflow: hidden;
}
#aw-cookie-modal.aw-modal-visible .aw-modal-box { transform: translateY(0) scale(1); }
.aw-modal-header {
  background: linear-gradient(135deg, #050d1f, #0f3460 60%, #1a56db);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.aw-modal-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: .45rem;
}
.aw-modal-title i { color: #06b6d4; }
.aw-modal-close {
  background: rgba(255,255,255,0.12);
  border: none;
  color: rgba(255,255,255,0.7);
  width: 30px; height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
  font-family: sans-serif;
}
.aw-modal-close:hover { background: rgba(255,255,255,0.22); color: #fff; }
.aw-modal-body { padding: 1.5rem 1.6rem; }
.aw-modal-intro {
  font-size: .83rem;
  color: #64748b;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.4rem;
}
.aw-modal-intro strong { font-weight: 600; color: #334155; }
.aw-pref-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(26,86,219,0.07);
}
.aw-pref-row:first-of-type { border-top: none; }
.aw-pref-info { flex: 1; }
.aw-pref-name {
  font-size: .88rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: .3rem;
  letter-spacing: -.2px;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.aw-pref-required {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  background: #eff6ff;
  color: #1a56db;
  border-radius: 50px;
  padding: .15rem .55rem;
}
.aw-pref-desc { font-size: .78rem; color: #64748b; line-height: 1.6; font-weight: 300; }
.aw-toggle {
  position: relative;
  display: inline-block;
  width: 44px; height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  margin-top: 2px;
}
.aw-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.aw-toggle-track {
  position: absolute;
  inset: 0;
  background: #e2e8f0;
  border-radius: 99px;
  transition: background .25s;
}
.aw-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: transform .25s;
}
.aw-toggle input:checked + .aw-toggle-track { background: linear-gradient(135deg, #1a56db, #06b6d4); }
.aw-toggle input:checked + .aw-toggle-track::after { transform: translateX(20px); }
.aw-toggle-disabled { cursor: not-allowed; opacity: .6; }
.aw-toggle input:focus-visible + .aw-toggle-track { outline: 2px solid #1a56db; outline-offset: 2px; }
.aw-modal-footer {
  padding: 1rem 1.6rem 1.4rem;
  display: flex;
  gap: .6rem;
  justify-content: flex-end;
  border-top: 1px solid rgba(26,86,219,0.07);
}
.aw-modal-footer .aw-btn-reject { background: #f1f5f9; color: #475569; border-color: transparent !important; }
.aw-modal-footer .aw-btn-reject:hover { background: #e2e8f0; color: #0f172a; }
#aw-cookie-reopener {
  position: fixed;
  bottom: 1.2rem; left: 1.2rem;
  z-index: 8900;
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-family: 'Sora', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s, border-color .2s, box-shadow .2s, transform .2s;
  box-shadow: 0 2px 12px rgba(5,13,31,0.3);
}
#aw-cookie-reopener i { color: #06b6d4; font-size: .8rem; }
#aw-cookie-reopener:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 4px 20px rgba(5,13,31,0.45);
  transform: translateY(-1px);
}
body.aw-modal-open { overflow: hidden; }
@media (max-width: 700px) {
  .aw-cb-inner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.2rem; }
  .aw-cb-actions { width: 100%; justify-content: flex-start; }
  .aw-btn-accept, .aw-btn-reject, .aw-btn-manage { flex: 1; text-align: center; justify-content: center; }
  .aw-modal-box { max-width: 100%; }
  .aw-modal-footer { flex-direction: column-reverse; }
  .aw-modal-footer .aw-btn-accept, .aw-modal-footer .aw-btn-reject { width: 100%; text-align: center; }
  #aw-cookie-banner { padding: .8rem; }
}
