/* ============================================================
   VIP LABS — Shared Design System
   Blue & Gold Premium Healthcare UI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  /* Blues */
  --navy-950: #040e1f;
  --navy-900: #071830;
  --navy-800: #0d2548;
  --navy-700: #122f5c;
  --navy-600: #1a3f7a;
  --navy-500: #1e4d96;
  --navy-400: #2563c8;
  --blue-400: #4a8fe8;
  --blue-300: #7ab2f0;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;

  /* Gold */
  --gold-900: #5c2e00;
  --gold-800: #7d3f00;
  --gold-700: #a85400;
  --gold-600: #c96e00;
  --gold-500: #e68a00;
  --gold-400: #f5a800;
  --gold-300: #ffbf00;
  --gold-200: #ffd54f;
  --gold-100: #fff0b3;
  --gold-50:  #fffde7;

  /* Neutrals */
  --white:      #ffffff;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-300:   #cbd5e1;
  --gray-400:   #94a3b8;
  --gray-500:   #64748b;
  --gray-600:   #475569;
  --gray-700:   #334155;
  --gray-800:   #1e293b;
  --gray-900:   #0f172a;

  /* Semantic */
  --color-primary:      var(--navy-600);
  --color-primary-dark: var(--navy-800);
  --color-accent:       var(--gold-400);
  --color-accent-dark:  var(--gold-600);
  --color-text:         var(--navy-900);
  --color-text-soft:    var(--gray-600);
  --color-text-muted:   var(--gray-400);
  --color-bg:           var(--white);
  --color-bg-alt:       #F7F6F3;
  --color-border:       var(--gray-200);

  /* Radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(7,24,48,0.04);
  --shadow-sm:  0 2px 8px rgba(7,24,48,0.06), 0 1px 3px rgba(7,24,48,0.04);
  --shadow-md:  0 8px 24px rgba(7,24,48,0.08), 0 2px 8px rgba(7,24,48,0.05);
  --shadow-lg:  0 20px 48px rgba(7,24,48,0.10), 0 6px 16px rgba(7,24,48,0.06);
  --shadow-xl:  0 32px 72px rgba(7,24,48,0.14), 0 8px 24px rgba(7,24,48,0.08);
  --shadow-gold: 0 8px 28px rgba(245,168,0,0.35), 0 2px 8px rgba(245,168,0,0.20);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-inout: cubic-bezier(0.45, 0, 0.55, 1);
  --t-fast: 0.18s;
  --t-base: 0.3s;
  --t-slow: 0.5s;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-400), var(--gold-600));
  border-radius: 10px;
}

/* ─── TYPOGRAPHY ─── */
.t-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.t-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--navy-900);
}

.t-headline-lg {
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--navy-900);
}

.t-headline-white { color: var(--white); }

.t-body {
  font-size: 17px;
  color: var(--color-text-soft);
  line-height: 1.75;
}

.t-body-sm {
  font-size: 15px;
  color: var(--color-text-soft);
  line-height: 1.65;
}

.t-gradient {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.t-gradient-blue {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--r-sm);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--t-fast) ease;
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.98); }

.btn-gold {
  font-size: 15px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,168,0,0.38), 0 4px 12px rgba(245,168,0,0.2);
}

.btn-gold-lg {
  font-size: 16px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
  border-radius: var(--r-md);
}

.btn-gold-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(245,168,0,0.42);
}

.btn-outline-white {
  font-size: 15px;
  padding: 12px 26px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
}

.btn-outline-white::after { display: none; }

.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  color: white;
  transform: translateY(-2px);
}

.btn-outline-gold {
  font-size: 15px;
  padding: 12px 26px;
  background: transparent;
  color: var(--gold-500);
  border: 1.5px solid var(--gold-400);
}

.btn-outline-gold:hover {
  background: var(--gold-50);
  color: var(--gold-700);
  transform: translateY(-2px);
}

.btn-navy {
  font-size: 15px;
  padding: 13px 28px;
  background: var(--navy-700);
  color: white;
}

.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Icon inside buttons */
.btn i, .btn svg { font-size: 14px; flex-shrink: 0; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  padding: 12px 60px;
  background: rgba(7, 24, 48, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 171, 20, 0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(245,168,0,0.4);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) ease;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: var(--navy-900);
}

.nav-logo:hover .logo-mark {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 24px rgba(245,168,0,0.5);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.logo-name span { color: var(--gold-400); }

.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all var(--t-fast) ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.06);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 8px 12px;
  border-radius: var(--r-sm);
  transition: color var(--t-fast) ease;
}

.nav-phone:hover { color: var(--gold-300); }
.nav-phone i { font-size: 12px; color: var(--gold-400); }

.hamburger {
  display: none;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  cursor: pointer;
  color: white;
  font-size: 15px;
  transition: background var(--t-fast) ease;
}

.hamburger:hover { background: rgba(255,255,255,0.14); }

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-950);
  padding: 72px 0 0;
  border-top: 1px solid rgba(232,171,20,0.08);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}

.footer-cert-badges {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold-300);
  background: rgba(232,171,20,0.08);
  border: 1px solid rgba(232,171,20,0.15);
  border-radius: var(--r-full);
  padding: 5px 10px;
}

.cert-badge i { font-size: 10px; }

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: all var(--t-fast) ease;
}

.social-link:hover {
  background: rgba(232,171,20,0.12);
  border-color: rgba(232,171,20,0.25);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  transition: color var(--t-fast) ease;
  display: flex;
  align-items: center;
  gap: 7px;
}

.footer-col ul li a:hover { color: var(--gold-300); }
.footer-col ul li a i { font-size: 11px; color: var(--gold-600); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  font-size: 13px;
  color: var(--gold-500);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

.footer-contact-item strong {
  display: block;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
  transition: color var(--t-fast) ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ─── SECTION WRAPPER ─── */
.section-wrap {
  padding: 96px 0;
}

.section-wrap.alt {
  background: var(--color-bg-alt);
}

.section-wrap.dark {
  background: var(--navy-900);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-header {
  margin-bottom: 60px;
}

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

.section-header.center .t-body {
  max-width: 520px;
  margin: 12px auto 0;
}

/* ─── GOLD DIVIDER ─── */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,171,20,0.25) 30%,
    rgba(232,171,20,0.25) 70%,
    transparent 100%
  );
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ─── STAT COUNTER ─── */
.stat-number {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PAGE HERO ─── */
.page-hero {
  background: #FAFAF8;
  border-top: 3px solid var(--gold-400);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,168,0,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,168,0,0.2) 50%, transparent 100%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.page-hero-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.page-hero-label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-600);
}

.page-hero-label i { font-size: 11px; color: var(--gold-500); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.breadcrumb a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color var(--t-fast) ease;
}

.breadcrumb a:hover { color: var(--gold-600); }

.breadcrumb i {
  font-size: 10px;
  color: var(--gray-300);
}

.breadcrumb span {
  font-size: 13px;
  color: var(--gold-600);
}

.page-hero-title {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: var(--navy-900);
  margin-bottom: 18px;
}

.page-hero-desc {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.65;
}

/* ─── CARD COMPONENTS ─── */
.card {
  background: white;
  border-radius: var(--r-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(232,171,20,0.2);
  transform: translateY(-4px);
}

.card-navy {
  background: var(--navy-800);
  border-color: rgba(255,255,255,0.06);
  box-shadow: none;
}

.card-navy:hover {
  border-color: rgba(232,171,20,0.15);
  box-shadow: var(--shadow-lg);
}

/* Icon wrapper */
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrap-gold {
  background: linear-gradient(135deg, var(--gold-100), var(--gold-50));
  border: 1px solid rgba(245,168,0,0.15);
}

.icon-wrap-gold i { font-size: 20px; color: var(--gold-600); }

.icon-wrap-blue {
  background: linear-gradient(135deg, var(--gold-50), #faf8f2);
  border: 1px solid rgba(245,168,0,0.12);
}

.icon-wrap-blue i { font-size: 20px; color: var(--gold-700); }

.icon-wrap-dark {
  background: rgba(232,171,20,0.1);
  border: 1px solid rgba(232,171,20,0.15);
}

.icon-wrap-dark i { font-size: 20px; color: var(--gold-400); }

/* ─── FORM ELEMENTS ─── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}

.form-label.white { color: rgba(255,255,255,0.8); }

.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--navy-900);
  background: white;
  transition: all var(--t-fast) ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(232,171,20,0.12);
}

.form-input::placeholder { color: var(--gray-400); }

.form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--navy-900);
  background: white;
  transition: all var(--t-fast) ease;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(232,171,20,0.12);
}

.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 15px;
  color: var(--navy-900);
  background: white;
  transition: all var(--t-fast) ease;
  outline: none;
  resize: vertical;
  min-height: 120px;
}

.form-textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(232,171,20,0.12);
}

/* ─── BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.badge-gold {
  background: rgba(232,171,20,0.1);
  color: var(--gold-600);
  border: 1px solid rgba(232,171,20,0.2);
}

.badge-navy {
  background: rgba(26,63,122,0.08);
  color: var(--navy-700);
  border: 1px solid rgba(26,63,122,0.12);
}

.badge-green {
  background: rgba(5,150,105,0.08);
  color: #047857;
  border: 1px solid rgba(5,150,105,0.15);
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
  background: var(--navy-950);
  border-top: 1px solid rgba(232,171,20,0.15);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}

.mobile-cta button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes ripple {
  to { transform: scale(1); opacity: 0; }
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex  { display: flex; }
.items-center { align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .navbar         { padding: 16px 32px; }
  .navbar.scrolled { padding: 12px 32px; }
  .container      { padding: 0 32px; }
  .footer-inner   { padding: 0 32px; }
  .footer-top     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .page-hero-inner { padding: 0 32px; }
}

@media (max-width: 768px) {
  .navbar          { padding: 12px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links       { display: none; }
  .nav-phone       { display: none; }
  .hamburger       { display: block; }
  .container       { padding: 0 20px; }
  .footer-inner    { padding: 0 20px; }
  .footer-top      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom   { flex-direction: column; gap: 12px; text-align: center; }
  .section-wrap    { padding: 64px 0; }
  .page-hero       { padding: 130px 0 72px; }
  .page-hero-inner { padding: 0 20px; }
  .mobile-cta      { display: block; }
}
