/* ─── ROOT & RESET ─────────────────────────────────────────────────────────── */
:root {
  --navy:    #0a1628;
  --blue:    #1a4fa0;
  --blue2:   #2563eb;
  --sky:     #38bdf8;
  --teal:    #0ea5e9;
  --white:   #ffffff;
  --offwhite:#f0f6ff;
  --light:   #e8f0fe;
  --grey:    #64748b;
  --dark:    #0f172a;
  --gradient: linear-gradient(135deg, #1a4fa0 0%, #2563eb 50%, #0ea5e9 100%);
  --gradient2: linear-gradient(135deg, #0a1628 0%, #1a4fa0 100%);
  --shadow:  0 4px 24px rgba(26,79,160,.18);
  --shadow-lg: 0 12px 48px rgba(26,79,160,.22);
  --radius:  14px;
  --font-head: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

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

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .8; transform: scale(1.15); }
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity:1; }
  50%      { transform: translateY(8px); opacity:.5; }
}

.animate-fade-up { opacity: 0; animation: fadeUp .8s var(--transition) forwards; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .30s; }
.delay-3 { animation-delay: .45s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,99,235,.45); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover { background: var(--offwhite); transform: translateY(-2px); }

/* ─── NAVBAR ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(10,22,40,.0);
  backdrop-filter: blur(0px);
  transition: background .4s ease, backdrop-filter .4s ease, box-shadow .4s ease, padding .3s ease;
}
.navbar.scrolled {
  background: rgba(10,22,40,.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 32px rgba(0,0,0,.3);
  padding: .75rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}
.logo-icon { font-size: 1.6rem; filter: drop-shadow(0 0 8px rgba(56,189,248,.5)); }
.logo em { font-style: italic; color: var(--sky); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--sky);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: .55rem 1.35rem;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient2);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(56,189,248,.25);
  animation: pulse 3s ease-in-out infinite;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
}
.hero-badge {
  display: inline-block;
  background: rgba(56,189,248,.15);
  border: 1px solid rgba(56,189,248,.3);
  color: var(--sky);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.4rem;
}
.gradient-text {
  background: linear-gradient(135deg, var(--sky), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 2px; height: 40px;
  background: rgba(255,255,255,.3);
  margin: 0 auto;
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(255,255,255,.5);
}

/* ─── TRUST STRIP ────────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 1.4rem 1.5rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem; font-weight: 500;
}
.trust-icon { font-size: 1.2rem; }

/* ─── SECTIONS ───────────────────────────────────────────────────────────────── */
.section { padding: 6rem 1.5rem; }
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .8rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--grey);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 540px;
}
.highlight { color: var(--blue2); font-style: italic; }

/* ─── ABOUT ──────────────────────────────────────────────────────────────────── */
.about-section { background: var(--offwhite); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem,4vw,2.8rem);
  color: var(--navy);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.about-text p { color: var(--grey); margin-bottom: 1rem; }
.about-text .btn { margin-top: .8rem; }
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(26,79,160,.08);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: .3rem;
}
.stat-label { font-size: .85rem; color: var(--grey); font-weight: 500; }

/* ─── SERVICES ───────────────────────────────────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.service-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  border: 1px solid rgba(26,79,160,.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.service-card p { font-size: .95rem; color: var(--grey); }

/* ─── CTA SECTION ────────────────────────────────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  z-index: 0;
}
.cta-inner { position: relative; z-index: 1; max-width: 660px; margin: 0 auto; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem,4vw,2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-inner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  background: var(--gradient2);
  padding: 9rem 1.5rem 5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: clamp(2.2rem,5vw,3.5rem);
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ─── CONTENT PAGES ──────────────────────────────────────────────────────────── */
.content-section { padding: 5rem 1.5rem; }
.content-section .container { max-width: 860px; }
.content-section h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 2.5rem 0 .8rem;
}
.content-section h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--blue);
  margin: 1.8rem 0 .5rem;
}
.content-section p { color: var(--grey); margin-bottom: 1rem; }
.content-section ul { list-style: disc; padding-left: 1.5rem; color: var(--grey); margin-bottom: 1rem; }
.content-section ul li { margin-bottom: .5rem; }
.content-section a { color: var(--blue2); text-decoration: underline; }

/* ─── APPLY PAGE ─────────────────────────────────────────────────────────────── */
.apply-section { padding: 5rem 1.5rem; background: var(--offwhite); }
.apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.apply-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.apply-info p { color: var(--grey); margin-bottom: 1.2rem; }
.step-list { list-style: none; }
.step-list li {
  display: flex; gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.step-num {
  min-width: 32px; height: 32px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.step-text strong { display: block; color: var(--navy); margin-bottom: .2rem; }
.step-text span { font-size: .9rem; color: var(--grey); }

/* ─── FORM ───────────────────────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,79,160,.08);
}
.form-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 1.8rem;
  text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid #dde6f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--offwhite);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue2);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--gradient);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .03em;
  margin-top: .5rem;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,99,235,.38); }
.form-note { text-align: center; font-size: .8rem; color: var(--grey); margin-top: .8rem; }
.success-msg {
  display: none;
  background: #ecfdf5;
  border: 1px solid #34d399;
  color: #065f46;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 500;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────────── */
.contact-section { padding: 5rem 1.5rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info p { color: var(--grey); margin-bottom: 2rem; }
.contact-detail {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  font-size: 1.5rem;
  background: var(--light);
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--navy); font-size: .9rem; }
.contact-detail span { color: var(--grey); font-size: .95rem; }

/* ─── MAP EMBED ─────────────────────────────────────────────────────────────── */
.map-section { padding: 0 1.5rem 5rem; }
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame iframe { display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-top { padding: 4rem 1.5rem 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.6; margin-bottom: 1.2rem; }
.footer-address { font-size: .85rem; line-height: 1.8; }
.footer-address a { color: var(--sky); }
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .6rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--sky); }
.footer-reg { font-size: .82rem; margin-bottom: .5rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.5); }
.footer-check { font-size: .82rem; }
.footer-check a { color: var(--sky); text-decoration: underline; margin: 0 .3rem; }

/* ─── COOKIE BANNER ──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--blue2);
  padding: 1.4rem 1.5rem;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a { color: var(--sky); text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; flex-wrap: wrap; flex-shrink: 0; }
.cookie-btn {
  padding: .65rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--gradient);
  color: var(--white);
}
.cookie-btn-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,.4); }
.cookie-btn-essential {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.3);
}
.cookie-btn-essential:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ─── MOBILE ─────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right .35s ease;
    box-shadow: -4px 0 32px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1rem; }
  .about-grid, .apply-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .about-cards { grid-template-columns: 1fr; }
  .trust-inner { gap: 1rem; }
  .trust-item span { font-size: .8rem; }
}

/* ─── COOKIE BANNER ──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--blue2);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a { color: var(--sky); text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cookie-btn {
  padding: .65rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--gradient);
  color: var(--white);
}
.cookie-btn-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,.4); }
.cookie-btn-essential {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
}
.cookie-btn-essential:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ─── COOKIE BANNER ──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--navy);
  border-top: 3px solid var(--blue2);
  padding: 1.4rem 1.5rem;
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p {
  color: rgba(255,255,255,.82);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}
.cookie-text a { color: var(--sky); text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept {
  background: var(--gradient);
  color: var(--white);
  border: none;
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(37,99,235,.4); }
.cookie-essential {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: .7rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-essential:hover { border-color: rgba(255,255,255,.6); color: var(--white); }

@media (max-width: 600px) {
  .cookie-inner { flex-direction: column; gap: 1rem; }
  .cookie-actions { width: 100%; justify-content: center; }
}
