
:root {
  --navy: #0A2540;
  --sapphire-1: #0A2C6B;
  --sapphire-2: #13438F;
  --sapphire-3: #2E6BE0;
  --sapphire-sheen: #7AA6FF;
  --gold: #E3A33C;
  --gold-dark: #C7872A;
  --ink: #152042;
  --slate: #5C6B85;
  --slate-light: #8C99B3;
  --line: #E4E9F2;
  --surface: #F6F8FC;
  --white: #FFFFFF;
  --success: #1E8E5A;
  --error: #C0392B;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 10px 30px rgba(10,37,80,0.08);
  --shadow-card: 0 20px 50px rgba(10,37,80,0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; color: var(--navy); line-height: 1.25; }
.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: var(--navy);
  text-decoration: none;
}
.brand .bi { color: var(--sapphire-3); }
.brand .accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate);
  padding: 8px 2px;
  text-decoration: none;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.nav-toggle .bi { font-size: 28px; }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-links.is-open { max-height: 500px; }
  .nav-links a { width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--line); }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--sapphire-1) 0%, var(--sapphire-2) 55%, var(--sapphire-3) 100%);
  padding: 40px 0;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; align-items: center; }
.hero-left .eyebrow { color: var(--sapphire-sheen); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; }
.hero-left h1 { color: var(--white); font-size: 42px; font-weight: 700; margin-bottom: 18px; }
.hero-left p { color: rgba(255,255,255,0.86); font-size: 16.5px; line-height: 1.7; margin-bottom: 28px; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; }
.stat-chip {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 9px 16px; border-radius: 999px;
  color: var(--white); font-size: 13px; font-weight: 600;
}
.stat-chip .bi { color: var(--gold); }

/* SEARCH CARD */
.search-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #E7F6EE;
  color: var(--success);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.live-dot {
  width: 7px;
  height: 7px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-live 1.2s infinite ease-in-out;
}
@keyframes pulse-live {
  0% { transform: scale(0.85); opacity: 0.4; }
  50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 8px rgba(30, 142, 90, 0.6); }
  100% { transform: scale(0.85); opacity: 0.4; }
}

.search-card h2 { font-size: 21px; margin-bottom: 6px; }
.search-card .sub { color: var(--slate); font-size: 13.5px; margin-bottom: 22px; }
.pin-field { position: relative; margin-bottom: 14px; }
.pin-field input {
  width: 100%; font-family: 'JetBrains Mono', monospace; font-size: 18px; font-weight: 600;
  color: var(--navy); padding: 16px 16px 16px 50px;
  border: 2px solid var(--line); border-radius: var(--radius-sm); outline: none;
  background: var(--surface); text-transform: uppercase;
  transition: border-color .2s ease;
}
.pin-field input:focus { border-color: var(--sapphire-3); background: var(--white); }
.pin-field .bi { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--slate-light); font-size: 22px; }

/* Adjusted for execution logic mapping */
.result.error { font-size: 12.5px; color: var(--error); font-weight: 600; margin: -4px 0 12px; display: none; }

.search-btn {
  width: 100%; position: relative;
  background: linear-gradient(135deg, var(--sapphire-3) 0%, var(--sapphire-2) 55%, var(--navy) 100%);
  color: var(--white); font-weight: 700; font-size: 15.5px; padding: 15px 0;
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 14px 28px rgba(10,37,80,0.38); transition: transform .15s ease;
}
.search-btn:hover { transform: translateY(-2px); }

.example-row { margin-top: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.example-row span { font-size: 12.5px; color: var(--slate); font-weight: 600; }
.example-pin {
  background: var(--surface); border: 1px solid var(--line); color: var(--sapphire-3);
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 13px;
  padding: 6px 12px; border-radius: 999px; transition: background .2s ease;
}
.example-pin:hover { background: #EAF0FF; }

/* KNOWLEDGE BASE CARDS & STRUCTURAL OVERFLOW FIXES */
.kb-section { padding: 20px 0 !important; }
.kb-section .main-title { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 14px; text-align: center; }
.kb-section .main-desc { font-size: 16px; color: var(--slate); text-align: center; max-width: 720px; margin: 0 auto 50px; line-height: 1.6; }

.kb-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 10px !important; }

@media (max-width: 860px) { 
  .kb-cards-grid { 
    grid-template-columns: 1fr; 
  } 
  .kb-cards-grid .kb-card {
    grid-column: span 1 !important;
  }
}

.kb-card { 
  background: var(--white); 
  border: 1px solid var(--line); 
  border-radius: var(--radius-md); 
  padding: 32px; 
  box-shadow: var(--shadow-soft); 
  transition: transform .2s ease, box-shadow .2s ease; 
  max-width: 100%;
  word-wrap: break-word;
  overflow: hidden;
}
.kb-card:hover { transform: translateY(-2px); box-shadow: 0 14px 35px rgba(10,37,80,0.06); }
.kb-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.kb-card-header .icon-box { width: 44px; height: 44px; border-radius: 10px; background: #EAF0FF; color: var(--sapphire-3); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.kb-card-header h2 { font-size: 20px; font-weight: 700; }

.kb-card p { font-size: 14.5px; color: #334155; line-height: 1.7; margin-bottom: 16px; text-align: justify; }
.kb-card p:last-of-type { margin-bottom: 0; }
.kb-card ul, .kb-card ol { margin: 0 0 16px 20px; }
.kb-card li { font-size: 14px; color: #334155; margin-bottom: 6px; line-height: 1.6; }

.kb-callout { background: var(--surface); border-left: 4px solid var(--gold); padding: 20px; border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 24px; }
.kb-callout p { margin-bottom: 0; font-style: italic; color: var(--navy); font-weight: 500; font-size: 14px; text-align: left; }

.kb-table-wrap { 
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
  margin: 24px 0; 
  border: 1px solid var(--line); 
  border-radius: var(--radius-sm); 
  width: 100%;
}
.kb-table { 
  width: 100%; 
  border-collapse: separate; 
  border-spacing: 0; 
  font-size: 14px; 
  min-width: 500px;
}

.kb-table th { 
  background: var(--navy); 
  color: var(--white); 
  font-weight: 600; 
  padding: 16px; 
  text-align: left; 
}

.kb-table th:first-child { border-top-left-radius: 8px; }
.kb-table th:last-child { border-top-right-radius: 8px; }

.kb-table td { 
  padding: 16px; 
  border-bottom: 1px solid var(--line); 
  color: #334155; 
}

.kb-table tr:last-child td { border-bottom: none; }
.kb-table tr:nth-child(even) { background: #F8FAFC; }
.kb-table td:first-child span { font-weight: 700; margin-right: 4px; }

/* Word Sequence Colors */
.word-color-0 { color: #0A2C6B; } 
.word-color-1 { color: #13438F; } 
.word-color-2 { color: #E3A33C; } 
.word-color-3 { color: #1E8E5A; } 
.word-color-4 { color: #C0392B; } 

/* GRID LAYOUTS */
.grid-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.grid-section:nth-of-type(even) { background: rgba(15, 23, 42, 0.03); }

.feature-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 980px) {
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feature-grid-4, .feature-grid-3, .feature-grid-2 { grid-template-columns: 1fr; }
}

/* WORKFLOW SECTION */
.section-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.section-head .eyebrow { color: var(--sapphire-3); margin-bottom: 10px; display: block; }
.section-head h2 { font-size: 30px; margin-bottom: 10px; }
.section-head p { color: var(--slate); font-size: 15px; line-height: 1.6; }
.how-to { padding: 40px 0; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.how-step { text-align: center; }
.step-icon-wrap { position: relative; width: 64px; height: 64px; margin: 0 auto 22px; }
.icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sapphire-2), var(--sapphire-3));
  display: flex; align-items: center; justify-content: center;
}
.icon-circle .bi { color: var(--white); font-size: 28px; }
.step-num {
  position: absolute; top: -6px; right: -6px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); color: var(--sapphire-3); font-family: 'JetBrains Mono', monospace;
  font-weight: 700; font-size: 11px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--sapphire-3);
}
.how-step h3 { font-size: 17px; margin-bottom: 8px; }
.how-step p { color: var(--slate); font-size: 14px; line-height: 1.65; max-width: 260px; margin: 0 auto; }

/* ANATOMY & FEATURES - CONTAINER SECURED */
.pin-meaning {
  padding: 20px 0 !important; /* Cut down from 90px */
  margin-bottom: 0 !important;
}
.pin-meaning { background: #F8FAFC; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.meaning-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.meaning-text .eyebrow { color: var(--sapphire-3); font-size: 13px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; display: inline-block; margin-bottom: 12px; }
.meaning-text h2 { font-size: 34px; font-weight: 700; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.meaning-text p { color: var(--slate); font-size: 15.5px; line-height: 1.75; margin-bottom: 16px; }
.meaning-text p:last-child { margin-bottom: 0; }

.digit-anatomy-modern { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 40px 32px; box-shadow: var(--shadow-soft); max-width: 100%; }
.digit-anatomy-modern .syntax-title { color: var(--slate-light); font-size: 11px; display: block; margin-bottom: 24px; text-align: center; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.modern-anatomy-wrapper { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: stretch; margin-bottom: 28px; }
.anatomy-card { border-radius: var(--radius-sm); padding: 16px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.anatomy-card .card-value { font-family: 'JetBrains Mono', monospace; font-size: 26px; font-weight: 700; line-height: 1; }
.anatomy-card .card-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--slate); margin-top: 10px; letter-spacing: 0.05em; line-height: 1.2; }

.anatomy-card.prefix { background: #EAF0FF; border: 2px solid var(--sapphire-3); min-width: 80px; }
.anatomy-card.prefix .card-value { color: var(--sapphire-3); }
.anatomy-card.sequence { background: #FBF1DF; border: 2px solid var(--gold); }
.anatomy-card.sequence .card-value { color: var(--gold-dark); letter-spacing: 2px; }
.anatomy-card.country { background: #E7F6EE; border: 2px solid var(--success); min-width: 80px; }
.anatomy-card.country .card-value { color: var(--success); }

.anatomy-caption-modern { background: var(--surface); padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; color: var(--slate); text-align: center; border: 1px dashed var(--line); }

.features { background: rgba(15, 23, 42, 0.02); padding: 72px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 26px; border: 1px solid var(--line); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sapphire-2), var(--sapphire-3));
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-icon .bi { color: var(--white); font-size: 26px; }
.feature-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.feature-card p { color: var(--slate); font-size: 14px; line-height: 1.65; }

/* FAQ */
.faq { padding: 72px 0 84px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); background: var(--white); margin-bottom: 10px; border-radius: var(--radius-sm); padding: 0 16px; border: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 4px;
  text-align: left; font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy);
}
.faq-q .bi { color: var(--sapphire-3); transition: transform .25s ease; }
.faq-item.is-open .faq-q .bi { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--slate); font-size: 14.5px; line-height: 1.7; padding: 0 4px 20px; }

/* FOOTER & BUTTONS */
footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: 56px 0 28px; width: 100%; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-brand .brand { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-col .col-heading { color: var(--white); font-size: 13.5px; font-weight: 700; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 11px; list-style: none; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; }

.footer-bottom { 
  border-top: 1px solid rgba(255,255,255,0.12); 
  padding-top: 22px; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  flex-wrap: wrap; 
  gap: 20px; 
  font-size: 13px; 
}
.footer-bottom-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-bottom-left a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom-right { color: rgba(255,255,255,0.5); }

/* Scroll Top Button */
.scroll-top-btn {
  position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--sapphire-3); color: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(46, 107, 224, 0.3); z-index: 1000; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: all 0.3s ease;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn .bi { font-size: 22px; }

/* IMAGE REPLICATION STYLING */
.img-timeline-container {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  margin: 10px 0 !important;
}
.img-timeline-title {
  text-align: center;
  color: #C0392B;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}
.img-timeline-subtitle {
  text-align: center;
  background: #0A2C6B;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 6px;
  max-width: 420px;
  margin: 0 auto 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.img-timeline-desc {
  text-align: center;
  color: #334155;
  font-size: 15px;
  margin-bottom: 35px;
  font-weight: 500;
}
.img-step-list {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}
.img-step-list::before {
  content: '';
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 25px;
  width: 4px;
  background: linear-gradient(to bottom, #0A2C6B, #13438F, #E3A33C, #8C99B3, #1E8E5A);
}
.img-step-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 30px;
  position: relative;
}
.img-step-badge {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #0A2C6B;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.img-step-item:nth-child(2) .img-step-badge { background: #1E8E5A; }
.img-step-item:nth-child(3) .img-step-badge { background: #D97706; }
.img-step-item:nth-child(4) .img-step-badge { background: #6B21A8; }
.img-step-item:nth-child(5) .img-step-badge { background: #0891B2; }
.img-step-item:nth-child(6) .img-step-badge { background: #EA580C; }
.img-step-item:nth-child(7) .img-step-badge { background: #16A34A; }

.img-step-card {
  background: #F8FAFC;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  flex-grow: 1;
  border-left: 5px solid #0A2C6B;
}
.img-step-item:nth-child(1) .img-step-card { border-left-color: #0A2C6B; background: #F0F4FF; }
.img-step-item:nth-child(2) .img-step-card { border-left-color: #1E8E5A; background: #F0FDF4; }
.img-step-item:nth-child(3) .img-step-card { border-left-color: #D97706; background: #FFFBEB; }
.img-step-item:nth-child(4) .img-step-card { border-left-color: #6B21A8; background: #FDF4FF; }
.img-step-item:nth-child(5) .img-step-card { border-left-color: #0891B2; background: #ECFEFF; }
.img-step-item:nth-child(6) .img-step-card { border-left-color: #EA580C; background: #FFF7ED; }
.img-step-item:nth-child(7) .img-step-card { border-left-color: #16A34A; background: #F0FDF4; }

.img-step-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.img-step-item:nth-child(1) .img-step-heading { color: #0A2C6B; }
.img-step-item:nth-child(2) .img-step-heading { color: #1E8E5A; }
.img-step-item:nth-child(3) .img-step-heading { color: #D97706; }
.img-step-item:nth-child(4) .img-step-heading { color: #6B21A8; }
.img-step-item:nth-child(5) .img-step-heading { color: #0891B2; }
.img-step-item:nth-child(6) .img-step-heading { color: #EA580C; }
.img-step-item:nth-child(7) .img-step-heading { color: #16A34A; }

.img-step-text {
  font-size: 14px;
  color: #334155;
  line-height: 1.5;
  margin-bottom: 8px;
}
.img-step-status-box {
  background: #FFFFFF;
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13.5px;
  color: #475569;
  display: inline-block;
}
.img-step-status-box strong {
  font-weight: 700;
}
.img-step-item:nth-child(1) .img-step-status-box strong { color: #0A2C6B; }
.img-step-item:nth-child(2) .img-step-status-box strong { color: #1E8E5A; }
.img-step-item:nth-child(3) .img-step-status-box strong { color: #D97706; }
.img-step-item:nth-child(4) .img-step-status-box strong { color: #6B21A8; }
.img-step-item:nth-child(5) .img-step-status-box strong { color: #0891B2; }
.img-step-item:nth-child(6) .img-step-status-box strong { color: #EA580C; }
.img-step-item:nth-child(7) .img-step-status-box strong { color: #16A34A; }

.img-note-box {
  background: #F8FAFC;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 40px;
}
.img-note-title {
  font-size: 16px;
  font-weight: 700;
  color: #0A2C6B;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.img-note-list {
  margin-left: 20px;
}
.img-note-list li {
  font-size: 13.5px;
  color: #334155;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 980px) {
  .meaning-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; gap: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { 
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    gap: 14px; 
  }
  .footer-bottom-left {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .modern-anatomy-wrapper { grid-template-columns: 1fr; gap: 10px; }
  .anatomy-card.prefix, .anatomy-card.country { min-width: 100%; }
  .hero-left h1 { font-size: 32px; }
  .search-card { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .kb-card { padding: 22px 16px; }
  .img-step-list::before { left: 18px; }
  .img-step-badge { width: 40px; height: 40px; font-size: 16px; }
  .img-step-item { gap: 15px; }
}

/* Center Aligned Responsive Image Rule */
.responsive-center-img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto; /* Centers the block horizontally and adds top/bottom spacing */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

/* HERO SECTION */
.a-hero {
  background: linear-gradient(135deg, var(--sapphire-1) 0%, var(--sapphire-2) 55%, var(--sapphire-3) 100%);
  padding: 70px 0;
  text-align: center;
}
.a-hero .eyebrow { color: var(--sapphire-sheen); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 8px; }
.a-hero h1 { color: var(--white); font-size: 42px; font-weight: 700; margin-bottom: 18px; }
.a-hero p { color: rgba(255,255,255,0.86); font-size: 17px; line-height: 1.7; max-width: 700px; margin: 0 auto; }