/* =========================================================
   OVERWATCH STRATEGIC SOLUTIONS — Shared Stylesheet
   ========================================================= */

:root {
  /* --- Navy (primary brand) --- */
  --navy-900: #0A1A2E;
  --navy-800: #11294A;
  --navy-700: #1E3A5F;
  --navy-600: #2C4A73;
  --navy-500: #3D5E88;

  /* --- Orange (accent) --- */
  --orange-600: #D1701F;
  --orange-500: #E8833A;
  --orange-400: #F0A268;
  --orange-100: #FCE8D7;

  /* --- Gold (trust moments) --- */
  --gold-500: #F4C430;
  --gold-400: #F7D45E;

  /* --- Cream (warm neutral) --- */
  --cream-50: #FAF7F2;
  --cream-100: #F4EFE6;
  --cream-200: #EADFCB;

  /* --- Gray (utility) --- */
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --white: #FFFFFF;

  /* --- Typography --- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* --- Radius --- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px rgba(15, 31, 53, 0.06), 0 1px 3px rgba(15, 31, 53, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 31, 53, 0.08), 0 2px 4px -2px rgba(15, 31, 53, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(15, 31, 53, 0.10), 0 8px 10px -6px rgba(15, 31, 53, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(15, 31, 53, 0.18);

  --max-w: 1240px;
  --max-w-prose: 720px;
  --gutter: clamp(20px, 4vw, 48px);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream-50);
  color: var(--navy-900);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.12 0 0 0 0 0.20 0 0 0 0.035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  mix-blend-mode: multiply;
}

img { max-width: 100%; display: block; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy-900);
  font-variation-settings: "opsz" 80, "SOFT" 50;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 500; letter-spacing: -0.035em; line-height: 1; }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); letter-spacing: -0.02em; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; font-family: var(--font-body); }

p { color: var(--gray-700); font-size: 1.05rem; }
.lede { font-size: 1.2rem; color: var(--navy-700); max-width: 56ch; line-height: 1.55; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange-600);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange-500);
}
.eyebrow.no-line::before { display: none; }
.eyebrow.centered { justify-content: center; }

em.serif-italic, .serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--orange-500);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
  z-index: 2;
}
.container-narrow { max-width: 920px; }
section { position: relative; z-index: 2; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 31, 53, 0.06);
  transition: all 0.3s ease;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--navy-800);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--cream-100);
  color: var(--navy-900);
}
.nav-links a.active { color: var(--orange-600); }

.nav-cta { display: inline-flex; align-items: center; gap: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  color: var(--navy-800);
}

@media (max-width: 960px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-50);
    flex-direction: column;
    align-items: stretch;
    padding: 16px var(--gutter) 24px;
    gap: 2px;
    border-bottom: 1px solid rgba(15, 31, 53, 0.08);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { padding: 14px 12px; border-radius: var(--radius-sm); }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-primary { background: var(--navy-800); color: var(--cream-50); }
.btn-primary:hover { background: var(--navy-900); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-accent { background: var(--orange-500); color: var(--white); }
.btn-accent:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 10px 20px -5px rgba(232, 131, 58, 0.4); }
.btn-ghost { background: transparent; color: var(--navy-800); border: 1px solid var(--navy-700); }
.btn-ghost:hover { background: var(--navy-800); color: var(--cream-50); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1EB356; transform: translateY(-1px); }
.btn-large { padding: 16px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-800);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.25s ease;
}
.btn-arrow::after { content: '→'; transition: transform 0.25s ease; }
.btn-arrow:hover { gap: 14px; }
.btn-arrow:hover::after { transform: translateX(2px); }

/* =========================================================
   HERO (Homepage)
   ========================================================= */
.hero { padding: 80px 0 120px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 56px 0 80px; }
}

.hero-content .eyebrow { margin-bottom: 32px; }
.hero h1 { margin-bottom: 28px; }
.hero-lede {
  font-size: 1.18rem;
  color: var(--gray-700);
  margin-bottom: 36px;
  max-width: 52ch;
  line-height: 1.55;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(15, 31, 53, 0.1);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--navy-700);
  font-weight: 500;
}
.hero-meta-item svg { flex-shrink: 0; }

/* Hero service card visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.service-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(15, 31, 53, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  z-index: 3;
}
.service-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 20px;
}
.service-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
  margin-bottom: 6px;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #15803D;
  padding: 4px 10px;
  background: #DCFCE7;
  border-radius: 100px;
}
.status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}
.service-row:last-child { border-bottom: none; }
.service-row-label { display: flex; align-items: center; gap: 10px; color: var(--gray-700); }
.service-row-value { color: var(--navy-900); font-weight: 600; }
.service-row-value.accent { color: var(--orange-600); }
.check-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--cream-50);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
}
.hero-badge {
  position: absolute;
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 500;
  z-index: 4;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-1 { top: 4%; left: -6%; transform: rotate(-4deg); }
.hero-badge-2 { bottom: 6%; right: -8%; transform: rotate(3deg); background: var(--orange-500); }
.hero-star {
  position: absolute;
  top: -4%;
  right: 8%;
  font-size: 2.4rem;
  color: var(--gold-500);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}
.hero-blob { position: absolute; width: 110%; height: 110%; top: -5%; left: -5%; z-index: 1; }
.hero-blob::before {
  content: ''; position: absolute;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--orange-100) 0%, transparent 70%);
  top: 30%; left: 10%;
  filter: blur(10px);
}
.hero-blob::after {
  content: ''; position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(30, 58, 95, 0.08) 0%, transparent 70%);
  bottom: 10%; right: 10%;
  filter: blur(10px);
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}

/* =========================================================
   PAGE HERO (for subpages)
   ========================================================= */
.page-hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { max-width: 820px; }
.page-hero .eyebrow { margin-bottom: 24px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 24px;
  line-height: 1.02;
}
.page-hero .lede { font-size: 1.25rem; }

@media (max-width: 640px) {
  .page-hero { padding: 48px 0 40px; }
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 44px 0;
  position: relative;
  z-index: 2;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 200px;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(244, 196, 48, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  display: block;
  margin-bottom: 2px;
}
.trust-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream-50);
  line-height: 1.2;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.problem { padding: 120px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .problem { padding: 80px 0; }
}
.problem-left .eyebrow { margin-bottom: 24px; }
.problem-left h2 { margin-bottom: 24px; }
.problem-left h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-500);
  font-variation-settings: "opsz" 144;
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.problem-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.problem-item:last-child { border-bottom: none; }
.problem-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange-500);
  font-weight: 500;
  padding-top: 4px;
  flex-shrink: 0;
  min-width: 32px;
}
.problem-text {
  font-size: 1.08rem;
  color: var(--navy-800);
  line-height: 1.5;
  font-weight: 500;
}
.problem-text em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--orange-600);
  font-size: 1.1em;
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how { background: var(--cream-100); padding: 120px 0; position: relative; }
.how-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.how-header h2 { max-width: 18ch; }
.how-header p { max-width: 44ch; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) {
  .how-steps { grid-template-columns: 1fr; }
  .how { padding: 80px 0; }
}
.how-step {
  background: var(--cream-50);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.3s ease;
}
.how-step:hover { background: var(--white); }
.how-step-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--orange-500);
  font-variation-settings: "opsz" 144;
  font-style: italic;
  line-height: 1;
}
.how-step h3 { font-size: 1.5rem; font-weight: 600; }
.how-step p { font-size: 1rem; color: var(--gray-700); line-height: 1.55; }
.how-step-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px dashed var(--gray-300);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy-700);
  font-weight: 500;
}

/* =========================================================
   PACKAGES
   ========================================================= */
.packages { padding: 120px 0; }
.packages-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.packages-header .eyebrow { justify-content: center; margin-bottom: 24px; }
.packages-header .eyebrow::before { display: none; }
.packages-header h2 { margin-bottom: 20px; }
.packages-header p { font-size: 1.1rem; max-width: 52ch; margin: 0 auto; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .packages { padding: 80px 0; }
}
.package {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}
.package:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-featured {
  background: var(--navy-900);
  color: var(--cream-50);
  border-color: var(--navy-900);
  transform: scale(1.02);
}
.package-featured:hover { transform: scale(1.02) translateY(-4px); }
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-500);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.package-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream-100);
  color: var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.package-featured .package-icon {
  background: rgba(244, 196, 48, 0.15);
  color: var(--gold-500);
}
.package-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  color: inherit;
}
.package-for {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.45;
}
.package-featured .package-for { color: rgba(250, 247, 242, 0.65); }
.package-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.package-featured .package-price { border-bottom-color: rgba(250, 247, 242, 0.15); }
.package-price-prefix {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}
.package-featured .package-price-prefix { color: rgba(250, 247, 242, 0.65); }
.package-price-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.package-featured .package-price-amount { color: var(--cream-50); }
.package-price-period {
  font-size: 0.9rem;
  color: var(--gray-500);
  font-weight: 500;
}
.package-featured .package-price-period { color: rgba(250, 247, 242, 0.65); }
.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.package-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--gray-700);
  line-height: 1.45;
}
.package-featured .package-features li { color: rgba(250, 247, 242, 0.85); }
.feat-check { color: var(--orange-500); flex-shrink: 0; margin-top: 3px; }
.package-featured .feat-check { color: var(--gold-500); }
.package .btn { width: 100%; justify-content: center; }
.package-featured .btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.package-featured .btn-primary:hover { background: var(--gold-400); }
.packages-footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.packages-footnote a {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   WHY OSS
   ========================================================= */
.why {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 131, 58, 0.12) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.why .container { position: relative; z-index: 2; }
.why-header { margin-bottom: 72px; max-width: 680px; }
.why-header .eyebrow { color: var(--gold-500); margin-bottom: 24px; }
.why-header .eyebrow::before { background: var(--gold-500); }
.why-header h2 { color: var(--cream-50); margin-bottom: 24px; }
.why-header h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-500);
  font-variation-settings: "opsz" 144;
}
.why-header p { color: rgba(250, 247, 242, 0.75); font-size: 1.15rem; max-width: 52ch; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(250, 247, 242, 0.1);
  border: 1px solid rgba(250, 247, 242, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .why { padding: 80px 0; }
}
.why-cell {
  background: var(--navy-900);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.3s ease;
}
.why-cell:hover { background: var(--navy-800); }
.why-cell-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 6px;
}
.why-cell h3 {
  color: var(--cream-50);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.15;
  margin-bottom: 8px;
}
.why-cell h3 em {
  font-style: italic;
  color: var(--orange-400);
}
.why-cell p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* =========================================================
   PHILOSOPHY
   ========================================================= */
.philosophy {
  padding: 140px 0;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.philosophy-star {
  position: absolute;
  font-size: 12rem;
  color: var(--gold-500);
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.philosophy-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.philosophy .eyebrow {
  justify-content: center;
  margin-bottom: 32px;
}
.philosophy .eyebrow::before { display: none; }
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--navy-900);
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 144;
}
.philosophy-quote em {
  font-style: italic;
  color: var(--orange-500);
  font-weight: 400;
}
.philosophy-text {
  font-size: 1.1rem;
  color: var(--navy-700);
  line-height: 1.65;
  max-width: 58ch;
  margin: 0 auto;
}

/* =========================================================
   BLOG TEASER / LISTING / ARTICLE
   ========================================================= */
.blog-teaser { padding: 120px 0; }
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-teaser { padding: 80px 0; }
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-700);
}
.blog-card-image {
  aspect-ratio: 16 / 10;
  background: var(--cream-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card-image.bg-1 { background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-900) 100%); }
.blog-card-image.bg-2 { background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%); }
.blog-card-image.bg-3 { background: linear-gradient(135deg, var(--cream-200) 0%, var(--gold-400) 100%); }
.blog-card-image-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.blog-card-icon {
  font-size: 2.2rem;
  color: var(--cream-50);
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
}
.blog-card-image.bg-3 .blog-card-icon { color: var(--navy-900); }
.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}
.blog-card-tag { color: var(--orange-600); font-weight: 500; }
.blog-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-900);
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.55;
  flex-grow: 1;
}
.blog-card-footer {
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid var(--gray-200);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Blog article layout */
.article { padding: 40px 0 96px; }
.article-hero { max-width: var(--max-w-prose); margin: 0 auto; padding-bottom: 40px; }
.article-hero .eyebrow { margin-bottom: 20px; }
.article-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 20px;
  line-height: 1.08;
}
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--gray-200);
}
.article-meta .dot { color: var(--gray-400); }
.article-feature-image {
  max-width: var(--max-w);
  margin: 0 auto 64px;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-body {
  max-width: var(--max-w-prose);
  margin: 0 auto;
}
.article-body > * { margin-bottom: 24px; }
.article-body p {
  font-size: 1.13rem;
  line-height: 1.7;
  color: var(--gray-700);
}
.article-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--navy-900);
}
.article-body h3 {
  font-size: 1.35rem;
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 600;
}
.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 28px;
}
.article-body ul li, .article-body ol li {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.article-body strong { color: var(--navy-900); font-weight: 600; }
.article-body a {
  color: var(--orange-600);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.article-body a:hover { color: var(--navy-900); }
.article-body blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--orange-500);
  background: var(--cream-100);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--navy-800);
}
.article-body .callout {
  background: var(--navy-900);
  color: var(--cream-50);
  padding: 32px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.article-body .callout-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.article-body .callout p {
  color: rgba(250, 247, 242, 0.85);
  font-size: 1rem;
  margin-bottom: 16px;
}
.article-body .callout .btn-arrow {
  color: var(--gold-500);
}

.article-footer-cta {
  max-width: var(--max-w-prose);
  margin: 64px auto 0;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}
.article-footer-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-weight: 500;
}
.article-footer-cta p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   FINAL CTA (homepage + some subpages)
   ========================================================= */
.final-cta { padding: 40px 0 120px; }
.final-cta-inner {
  background: var(--navy-900);
  color: var(--cream-50);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 860px) {
  .final-cta-inner { grid-template-columns: 1fr; padding: 48px 32px; gap: 36px; }
  .final-cta { padding: 20px 0 80px; }
}
.final-cta-inner::before {
  content: '★';
  position: absolute;
  font-size: 24rem;
  color: var(--orange-500);
  opacity: 0.08;
  bottom: -80px;
  right: -40px;
  line-height: 1;
  pointer-events: none;
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta-content .eyebrow { color: var(--gold-500); margin-bottom: 20px; }
.final-cta-content .eyebrow::before { background: var(--gold-500); }
.final-cta-content h2 {
  color: var(--cream-50);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.05;
}
.final-cta-content h2 em {
  font-style: italic;
  color: var(--orange-400);
  font-weight: 400;
}
.final-cta-content p {
  color: rgba(250, 247, 242, 0.75);
  font-size: 1.08rem;
  max-width: 44ch;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}
.final-cta-actions .btn { padding: 16px 28px; font-size: 1rem; }
.final-cta-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.6);
  padding-top: 8px;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--gray-200);
}
.service-row-item {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
@media (max-width: 860px) {
  .service-row-item { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
}
.service-row-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--orange-500);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 16px;
}
.service-row-item h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
  line-height: 1.1;
}
.service-row-item h3 em {
  font-style: italic;
  color: var(--orange-500);
  font-weight: 400;
}
.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.service-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  background: var(--cream-100);
  color: var(--navy-700);
  border-radius: 100px;
  font-weight: 500;
}
.service-tag.featured {
  background: var(--orange-500);
  color: white;
}
.service-row-content p { font-size: 1.05rem; line-height: 1.65; margin-bottom: 16px; }
.service-row-content ul {
  list-style: none;
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
@media (max-width: 620px) {
  .service-row-content ul { grid-template-columns: 1fr; }
}
.service-row-content ul li {
  font-size: 0.95rem;
  color: var(--gray-700);
  display: flex;
  gap: 10px;
  line-height: 1.4;
}
.service-row-content ul li::before {
  content: '✓';
  color: var(--orange-500);
  font-weight: bold;
  flex-shrink: 0;
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.compare-wrap {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.15rem;
  padding: 28px 20px;
  border-bottom: 2px solid var(--gray-300);
  vertical-align: top;
}
.compare-table thead th.featured {
  background: var(--navy-900);
  color: var(--cream-50);
  position: relative;
}
.compare-table thead th.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  background: rgba(244, 196, 48, 0.12);
  padding: 3px 7px;
  border-radius: 4px;
}
.compare-table thead .th-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
  margin-top: 8px;
  color: var(--navy-900);
}
.compare-table thead .featured .th-price { color: var(--cream-50); }
.compare-table thead .th-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 4px;
}
.compare-table thead .featured .th-price small { color: rgba(250, 247, 242, 0.6); }
.compare-table thead .th-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 400;
  margin-top: 8px;
  line-height: 1.4;
}
.compare-table thead .featured .th-desc { color: rgba(250, 247, 242, 0.65); }
.compare-table tbody tr.group-header td {
  background: var(--cream-100);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--navy-800);
  font-weight: 500;
  padding: 14px 20px;
}
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--navy-900);
}
.compare-table tbody td { color: var(--gray-700); }
.compare-table .check { color: var(--orange-500); font-weight: bold; font-size: 1.1rem; }
.compare-table .dash { color: var(--gray-400); }
.compare-table tfoot td {
  padding: 20px;
  background: var(--cream-50);
  border-top: 2px solid var(--gray-300);
  border-bottom: none;
}
.compare-table tfoot .btn { width: 100%; justify-content: center; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
@media (max-width: 520px) { .contact-form { padding: 28px; } }

.contact-form h3 { margin-bottom: 24px; font-size: 1.4rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream-50);
  color: var(--navy-900);
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232, 131, 58, 0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.form-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 10px;
  line-height: 1.4;
}
.form-submit { margin-top: 8px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  background: var(--cream-100);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}
.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-600);
  margin-bottom: 12px;
  display: block;
}
.contact-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-card p { font-size: 0.95rem; line-height: 1.55; margin-bottom: 16px; }
.contact-card a {
  color: var(--navy-900);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-card a:hover { color: var(--orange-600); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 100px 0; background: var(--cream-100); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .eyebrow { justify-content: center; margin-bottom: 20px; }
.faq-header .eyebrow::before { display: none; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: 24px 28px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--orange-500);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--cream-50); }
.faq-item-content {
  padding: 0 28px 24px;
  color: var(--gray-700);
  line-height: 1.65;
  font-size: 1rem;
}

/* =========================================================
   ABOUT / WHY PAGE SPECIFIC
   ========================================================= */
.story {
  padding: 100px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 48px; } }
.story-sidebar h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.story-sidebar p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.story-credentials {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.story-credentials h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-600);
  margin-bottom: 16px;
}
.cred-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cred-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
}
.cred-icon {
  width: 28px;
  height: 28px;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.cred-item strong { color: var(--navy-900); display: block; }
.cred-item span { color: var(--gray-500); font-size: 0.85rem; }

.story-body h2 { margin-bottom: 24px; }
.story-body p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.story-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--orange-500);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: var(--cream-100);
  padding: 72px 0 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  height: 44px;
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold-500);
  margin-bottom: 16px;
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}
.footer-about {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.6);
  max-width: 34ch;
  line-height: 1.55;
  margin-bottom: 16px;
}
.footer-uen {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.5);
  letter-spacing: 0.05em;
}
.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-500);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream-50); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--cream-50); }
.footer-contact-item svg { margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}
.footer-credentials {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-credential {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 242, 0.7);
  padding: 6px 12px;
  border: 1px solid rgba(250, 247, 242, 0.15);
  border-radius: 6px;
}

/* =========================================================
   REVEALS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE POLISH
   ========================================================= */
@media (max-width: 640px) {
  .hero-visual { max-width: 360px; }
  .hero-badge-1 { left: -2%; }
  .hero-badge-2 { right: -2%; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; }
  .trust-item { min-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
