:root {
  --navy: #0b2240;
  --navy-mid: #123460;
  --blue: #1a5fa8;
  --blue-light: #2d8dd9;
  --sky: #e8f4ff;
  --sky-mid: #d0e8fa;
  --gold: #f5a623;
  --gold-light: #fef3dc;
  --green: #16a96b;
  --green-light: #d4f5e8;
  --red: #e84040;
  --red-light: #fde8e8;
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --bg: #f4f8fd;
  --bg2: #edf3fb;
  --card-bg: #ffffff;
  --text: #0d1f35;
  --muted: #5a7490;
  --border: rgba(11, 34, 64, 0.09);
  --border2: rgba(11, 34, 64, 0.14);
  --shadow-soft: 0 2px 12px rgba(11, 34, 64, 0.07);
  --shadow-hover: 0 10px 36px rgba(11, 34, 64, 0.14);
  --shadow-lg: 0 16px 56px rgba(11, 34, 64, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --input-bg: #f4f8fd;
  --input-border: #c8d8ea;
  --input-color: #0d1f35;
  --lbl-color: #123460;
}

:root[data-theme="dark"] {
  --navy: #b8d0ee;
  --navy-mid: #a5c5f0;
  --blue: #5ba8f5;
  --blue-light: #7dbfff;
  --sky: #1a2a3f;
  --sky-mid: #1e3250;
  --gold: #f5a623;
  --gold-light: #2e2000;
  --green: #2fd98a;
  --green-light: #0a2a1c;
  --red: #ff6b6b;
  --red-light: #2a0a0a;
  --purple: #a78bfa;
  --purple-light: #1e1040;
  --bg: #0d1826;
  --bg2: #111f33;
  --card-bg: #152035;
  --text: #dce8f8;
  --muted: #7a9bbb;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.13);
  --shadow-soft: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 10px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.5);
  --input-bg: #0a1525;
  --input-border: rgba(255, 255, 255, 0.15);
  --input-color: #dce8f8;
  --lbl-color: #7dbfff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease, background-color 0.35s ease, color 0.2s ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* AUTOFILL FIX */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--input-bg) inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

body.loaded {
  opacity: 1;
}

*,
*::before,
*::after {
  transition: background-color 0.35s ease, border-color 0.35s ease, color 0.2s ease;
}

/* ─── LOADER ─── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #123460;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15);
  padding: 4px;
  margin: 0 auto 1rem;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.loader-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0.8rem auto 0;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: loadBar 1.1s ease forwards;
}

@keyframes loadBar {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--card-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--sky-mid);
}

.nav-brand span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

[data-theme="dark"] .nav-brand span {
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.2rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: var(--sky);
  color: var(--blue);
}

[data-theme="dark"] .nav-links a:hover {
  background: var(--sky-mid);
  color: var(--blue-light);
}

.nav-links a.active {
  background: var(--sky);
  color: var(--blue);
  font-weight: 700;
}

[data-theme="dark"] .nav-links a.active {
  background: var(--sky-mid);
  color: var(--blue-light);
}

.nav-cta a {
  background: #0b2240 !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
}

.nav-cta a:hover {
  background: var(--blue) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--text);
  cursor: pointer;
}

.nav-theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sky);
  border: 1.5px solid var(--border2);
  color: var(--blue);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  flex-shrink: 0;
}

[data-theme="dark"] .nav-theme-toggle {
  background: var(--sky-mid);
  color: var(--gold);
}

.nav-theme-toggle:hover {
  transform: rotate(20deg) scale(1.1);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0b2240 0%, #123460 55%, #0f4d8a 100%);
  color: #fff;
  padding: 90px 1.5rem 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(45, 141, 217, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 15%, rgba(245, 166, 35, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-dots span {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatDot 8s ease-in-out infinite;
}

.hero-dots span:nth-child(1) {
  width: 180px;
  height: 180px;
  background: var(--blue-light, #2d8dd9);
  top: -60px;
  right: 10%;
  animation-delay: 0s;
}

.hero-dots span:nth-child(2) {
  width: 90px;
  height: 90px;
  background: var(--gold);
  bottom: 30px;
  left: 8%;
  animation-delay: 2s;
}

.hero-dots span:nth-child(3) {
  width: 60px;
  height: 60px;
  background: #fff;
  top: 40%;
  left: 3%;
  animation-delay: 4s;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-18px) scale(1.05)
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-badge i {
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.hero-social-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.social-btn.whatsapp {
  background: #25d366;
  color: #fff;
}

.social-btn.linkedin {
  background: #0077b5;
  color: #fff;
}

.social-btn.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 1.6rem 1rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

[data-theme="dark"] .stat-num {
  color: var(--blue-light);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ─── NOTES BANNER ─── */
.notes-highlight-banner {
  background: linear-gradient(135deg, #0b2240 0%, #123460 60%, #1a5fa8 100%);
  padding: 2.8rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.notes-highlight-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(45, 141, 217, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(245, 166, 35, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.notes-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.notes-new-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: #f4d98a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  animation: notespulse 2.2s ease-in-out infinite;
}

@keyframes notespulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.3)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(245, 166, 35, 0)
  }
}

.notes-highlight-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: #fff;
  margin: 0 0 0.6rem;
  line-height: 1.25;
}

.notes-highlight-banner h2 em {
  font-style: italic;
  color: var(--gold);
}

.notes-highlight-banner p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.notes-highlights-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.notes-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.notes-pill i {
  color: var(--gold);
  font-size: 0.78rem;
}

.notes-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--gold);
  color: #0b2240;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.78rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}

.notes-banner-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(245, 166, 35, 0.5);
}

/* ─── SECTION WRAPPER ─── */
.section {
  padding: 80px 1.5rem;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.8rem;
}

[data-theme="dark"] .section-eyebrow {
  color: var(--gold);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.7rem;
}

[data-theme="dark"] .section-heading {
  color: var(--text);
}

.section-sub {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.72;
}

.section-header {
  margin-bottom: 2.8rem;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ─── QUERY SECTION ─── */
.query-section {
  background: var(--card-bg);
}

.query-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.query-form-wrap {
  background: var(--bg2);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.query-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

[data-theme="dark"] .query-form-wrap h3 {
  color: var(--text);
}

.query-form-wrap>p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lbl-color);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--input-color);
  background: var(--input-bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(45, 141, 217, 0.12);
  background: var(--card-bg);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0b2240;
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.8rem;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

[data-theme="dark"] .submit-btn {
  background: var(--gold);
  color: #0b2240;
}

[data-theme="dark"] .submit-btn:hover {
  background: #e09318;
}

#askQuerySuccess {
  display: none;
  background: var(--green-light);
  color: var(--green);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* FAQ */
.faq-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

[data-theme="dark"] .faq-wrap h3 {
  color: var(--text);
}

.faq-wrap>p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

[data-theme="dark"] .faq-q {
  color: var(--text);
}

.faq-q::before {
  content: 'Q';
  color: var(--blue-light);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.faq-a {
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 500;
  padding-left: 1.3rem;
  line-height: 1.6;
}

.see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.2s;
}

[data-theme="dark"] .see-all-btn {
  color: var(--blue-light);
}

.see-all-btn:hover {
  gap: 0.7rem;
}

/* ─── QUICK LINKS ─── */
.quick-section {
  background: #07162a;
}

.quick-section .section-heading {
  color: #fff;
}

.quick-section .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.quick-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.qc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.quick-card h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.quick-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.quick-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--blue-light);
  transition: gap 0.2s;
}

.quick-card:hover .arrow-link {
  gap: 0.7rem;
}

/* ─── ROADMAP ─── */
.roadmap-section {
  background: var(--bg);
}

.roadmap-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabs-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1.5px solid var(--border2);
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: #1a5fa8;
  border-color: #1a5fa8;
  color: #fff;
}

.tab-pane {
  display: none;
  width: 100%;
  text-align: center;
}

.tab-pane.active {
  display: block;
  animation: panelIn 0.3s ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.year-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 1.8rem;
  text-align: center;
}

[data-theme="dark"] .year-title {
  color: var(--text);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.roadmap-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.roadmap-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.roadmap-card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
  margin: 0 auto 1rem;
}

[data-theme="dark"] .roadmap-card .icon {
  background: var(--sky-mid);
  color: var(--blue-light);
}

.roadmap-card h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-align: center;
}

[data-theme="dark"] .roadmap-card h4 {
  color: var(--text);
}

.roadmap-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
}

/* ─── FEATURES ─── */
.features-section {
  background: var(--card-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.feature-card-top {
  padding: 2rem 1.8rem 1.5rem;
  background: var(--bg2);
}

.fc-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: #0b2240;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

[data-theme="dark"] .fc-icon {
  background: var(--blue);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .feature-card h3 {
  color: var(--text);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.feature-card-bot {
  padding: 1.2rem 1.8rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: gap 0.2s;
}

[data-theme="dark"] .feature-link {
  color: var(--blue-light);
}

.feature-link:hover {
  gap: 0.7rem;
}

/* ─── MODAL ─── */
#year-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(11, 37, 69, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}

#year-modal.open {
  display: flex;
}

.modal-box {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

[data-theme="dark"] .modal-box h3 {
  color: var(--text);
}

.modal-box p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.year-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.year-btn {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border2);
  background: transparent;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}

.year-btn:hover {
  background: #1a5fa8;
  color: #fff;
  border-color: #1a5fa8;
}

.modal-cancel {
  color: var(--muted);
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.modal-cancel:hover {
  color: var(--text);
}

/* ─── ANNOUNCEMENT POPUP ─── */
#ann-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 37, 69, 0.6);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

#ann-popup .ann-box {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  animation: annPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

@keyframes annPop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* Image banner — full width, no gaps */
#ann-img-wrap {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  line-height: 0;
}

#ann-img-wrap img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  margin: 0;
}

/* Close button */
#ann-popup .ann-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#ann-popup .ann-close:hover {
  background: var(--red);
}

/* Icon */
#ann-icon {
  font-size: 2.2rem;
  display: block;
  padding: 1.6rem 2rem 0.4rem;
}

/* Title & message — centered */
#ann-popup-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  padding: 0 1.5rem;
  line-height: 1.3;
}

[data-theme="dark"] #ann-popup-title {
  color: var(--text);
}

#ann-popup-msg {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  padding: 0 1.5rem;
  margin-bottom: 0;
}

/* Button row — centered, auto-width */
.ann-btn-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.4rem 2rem 1.8rem;
}

.ann-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 0.76rem 2.2rem;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(26, 95, 168, 0.35);
}

.ann-cta-btn:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

[data-theme="dark"] .ann-cta-btn {
  background: var(--blue-light);
}

.ann-ok-btn {
  background: rgba(11, 34, 64, 0.08);
  color: var(--muted);
  border: 1.5px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 0.6rem 2.5rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: background 0.2s, color 0.2s;
}

.ann-ok-btn:hover {
  background: var(--sky);
  color: var(--navy);
}

/* When no CTA: ok btn becomes the primary gold button */
.ann-btn-row:not(:has(.ann-cta-btn[style*="inline-flex"])) .ann-ok-btn {
  background: var(--gold);
  color: #0b2240;
  border-color: var(--gold);
  font-weight: 700;
  padding: 0.76rem 3rem;
  font-size: 0.92rem;
}

[data-theme="dark"] .ann-ok-btn {
  border-color: var(--border2);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

[data-theme="dark"] .ann-btn-row:not(:has(.ann-cta-btn[style*="inline-flex"])) .ann-ok-btn {
  background: var(--gold);
  color: #0b2240;
  border-color: var(--gold);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

/* ─── FOOTER ─── */
footer {
  background: #07162a;
  color: rgba(255, 255, 255, 0.5);
  padding: 2.2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-contact {
  margin-bottom: 1rem;
}

.footer-contact span {
  margin: 0 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

footer a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--gold);
}

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--card-bg);
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    gap: 0.2rem;
    z-index: 199;
    list-style: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .query-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .roadmap-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 600px;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 1.2rem 56px;
  }

  .section {
    padding: 56px 1.2rem;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    max-width: 90%;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .query-form-wrap {
    padding: 1.5rem;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}