/* ==========================================================
   CloudAIcon Healthcare IT — Elegant International Theme
   ========================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1E3A5F;
  --gold: #C9A84C;
  --gold-light: #E2C47A;
  --gold-pale: #F5E6C0;
  --ivory: #FAF8F3;
  --white: #FFFFFF;
  --slate: #4A5568;
  --slate-light: #718096;
  --border: rgba(201, 168, 76, 0.25);
  --shadow-sm: 0 2px 12px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.18);
  --radius: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

/* --- Global Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.75em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  color: var(--slate);
  margin-bottom: 1rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* --- Layout Utilities --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 24px;
}

.section-sm {
  padding: 60px 24px;
}

/* --- Gold Divider --- */
.gold-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 28px;
  border-radius: 2px;
}

.gold-divider.center {
  margin: 16px auto 28px;
}

/* --- Section Labels --- */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  color: var(--navy);
  margin-bottom: 0;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--slate-light);
  max-width: 680px;
  margin: 0 auto;
}

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
.hc-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.hc-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

/* Logo */
.hc-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hc-logo img {
  height: 44px;
  width: auto;
  /* Make dark logo visible on dark navy header */
  filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255, 255, 255, 0.1));
  transition: filter 0.3s ease;
}

.hc-logo:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(201, 168, 76, 0.5));
}

.hc-logo-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
}

.hc-logo-text span {
  color: var(--gold);
}

/* Nav */
.hc-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.hc-nav a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.hc-nav a:hover,
.hc-nav a.active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
}

.hc-nav .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 9px 20px;
}

.hc-nav .nav-cta:hover,
.hc-nav .nav-cta.active {
  background: var(--gold-light);
  color: var(--navy) !important;
}

/* Dropdown styling */
.hc-nav .has-dropdown {
  position: relative;
}

.hc-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 0;
  display: flex !important;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.hc-nav .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hc-nav .dropdown-menu a {
  padding: 10px 16px;
  border-radius: 0;
  font-weight: 400;
}

.hc-nav .dropdown-menu a:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

/* Mobile toggle */
.hc-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hc-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 900px) {
  .hc-nav-toggle {
    display: flex;
  }

  .hc-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    border-top: 1px solid var(--border);
  }

  .hc-nav.open {
    display: block;
  }

  .hc-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .hc-nav a {
    display: block;
  }

  .hc-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--border);
    padding: 0 0 0 16px;
    margin-top: 4px;
    margin-left: 12px;
  }
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hc-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(30, 58, 95, 0.6) 0%, transparent 60%),
    linear-gradient(135deg, #0A1628 0%, #112240 50%, #0E1C34 100%);
}

.hc-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hc-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hc-hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hc-hero h1 .accent {
  color: var(--gold);
}

.hc-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hc-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}

/* Hero visual panel */
.hc-hero-visual {
  position: relative;
}

.hc-hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.hc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.hc-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.hc-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hc-stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  line-height: 1.4;
}

.hc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hc-tag {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
}

@media (max-width: 900px) {
  .hc-hero-content {
    grid-template-columns: 1fr;
  }

  .hc-hero-visual {
    display: none;
  }
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item-icon {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ================================================================
   CAPABILITIES SECTION
   ================================================================ */
.capabilities-section {
  background: var(--ivory);
  padding: 100px 24px;
}

.cap-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.cap-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.cap-card {
  background: var(--white);
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cap-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 168, 76, 0.3);
}

.cap-card:hover::before {
  transform: scaleX(1);
}

.cap-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 12px;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cap-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.cap-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.cap-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.cap-bullets li {
  font-size: 0.85rem;
  color: var(--slate);
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
}

.cap-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 6px;
}

.cap-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.cap-link:hover {
  color: var(--gold);
  gap: 10px;
}

/* ================================================================
   WHY CLOUDAICON
   ================================================================ */
.why-section {
  background: var(--navy);
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.why-section .section-label {
  color: var(--gold);
}

.why-section .section-title {
  color: var(--white);
}

.why-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-3px);
}

.why-card-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.why-card h4 {
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

.why-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
}

.why-tagline strong {
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   DIALIVE SHOWCASE
   ================================================================ */
.dialive-section {
  background: var(--ivory);
  padding: 100px 24px;
}

.dialive-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.dialive-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.dialive-feat {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.dialive-feat:hover {
  transform: scale(1.03);
}

.dialive-feat-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.dialive-feat h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.dialive-feat p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.5;
}

.dialive-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.dialive-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent 70%);
}

.dialive-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.dialive-visual h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.dialive-visual p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.dialive-visual .btn-primary {
  background: var(--gold);
  color: var(--navy);
}

@media (max-width: 900px) {
  .dialive-inner {
    grid-template-columns: 1fr;
  }

  .dialive-visual {
    margin-top: 40px;
  }
}

/* ================================================================
   FOOTER
   ================================================================ */
.hc-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  color: rgba(255, 255, 255, 0.65);
}

.hc-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
}

.hc-footer-brand h3 {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hc-footer-brand h3 span {
  color: var(--gold);
}

.hc-footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
}

.hc-footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hc-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hc-footer-col li {
  margin-bottom: 10px;
}

.hc-footer-col a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.hc-footer-col a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.hc-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 24px;
  text-align: center;
}

.hc-footer-bottom p {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .hc-footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hc-footer-top {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   GENERAL PAGE HERO (interior pages)
   ================================================================ */
.page-hero {
  background: var(--navy);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
}

.page-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .section-label {
  display: block;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ================================================================
   DETAIL CAPABILITY SECTION (healthcare-it.html)
   ================================================================ */
.detail-section {
  padding: 90px 24px;
}

.detail-section:nth-child(even) {
  background: var(--white);
}

.detail-section:nth-child(odd) {
  background: var(--ivory);
}

.detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.detail-inner.reverse {
  direction: rtl;
}

.detail-inner.reverse>* {
  direction: ltr;
}

.detail-content {
  max-width: 560px;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.detail-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--slate);
  border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.detail-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 13px;
}

.detail-panel {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.detail-panel::before {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
}

.detail-panel-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  font-size: 2rem;
  margin-bottom: 24px;
}

.detail-panel h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.detail-panel p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

.detail-panel-bullets {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.detail-panel-bullets li {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  padding: 7px 0;
  padding-left: 20px;
  position: relative;
}

.detail-panel-bullets li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 900px) {
  .detail-inner {
    grid-template-columns: 1fr;
  }

  .detail-inner.reverse {
    direction: ltr;
  }
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
}

.cta-band-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  margin-bottom: 36px;
}

.cta-band .btn-primary {
  font-size: 1rem;
  padding: 16px 36px;
}

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.7s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* --- Certifications Section --- */
.certifications-section {
  padding: 100px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.cert-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--gold);
}

.cert-icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.1);
}

.cert-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
  color: var(--navy);
}

.cert-card p {
  font-size: 0.9rem;
  color: var(--slate-light);
  margin-bottom: 24px;
  min-height: 4.5em;
}

.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cert-link:hover {
  color: var(--navy);
}

.text-center {
  text-align: center;
}

/* --- Footer Badges --- */
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(201, 168, 76, 0.05);
}

@media (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}