/* ==========================================================================
   Ohgood - Overhauled Premium CSS Design System (Apple Vibe)
   ========================================================================== */

:root {
  /* Color System */
  --paper: #FFFFFF;
  --bone: #F5F5F7;             /* Apple light-gray aluminum tone */
  --line: rgba(0, 0, 0, 0.07);  /* Thin gray border line */
  --ink: #1D1D1F;              /* Apple dark charcoal heading black */
  --grey: #86868B;             /* Apple secondary gray description text */
  
  --accent-blue: #0071E3;      /* Apple tech-blue button accent */
  --accent-blue-light: rgba(0, 113, 227, 0.05);
  
  --coral: #FF453A;            /* Apple vibrant red / coral */
  --coral-light: rgba(255, 69, 58, 0.06);
  
  --neon-yellow: #D2F438;      /* Slanted sticker neon highlight */
  --sand: #FFD60A;             /* Warm yellow/gold */
  --cream: #FAF9F6;
  
  /* Fonts */
  --sans: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base Reset & Setup --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--paper);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Selection */
::selection {
  background: rgba(0, 113, 227, 0.15);
  color: var(--accent-blue);
}



/* --- Announcement Bar (White text on black background scroll) --- */
.announcement-bar {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--line);
}

.announcement-track {
  display: inline-flex;
  animation: scrollLeft 35s linear infinite;
  padding: 8px 0;
}

.announcement-item {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.announcement-item b {
  color: var(--neon-yellow);
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Sticky Header (Apple translucent effect) --- */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition-fast);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 48px;
  max-width: 1300px;
  margin: 0 auto;
}

.brand-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}

.brand-logo sup {
  color: var(--accent-blue);
  font-size: 9px;
  font-weight: 700;
  margin-left: 2px;
}

.nav-links-wrapper {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-menu a {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--grey);
  padding: 8px 16px;
  border-radius: 20px;
  transition: color 0.25s, background-color 0.25s;
}

.nav-menu a:hover {
  color: var(--ink);
  background-color: var(--bone);
}

.btn-primary-cta {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 30px;
  transition: var(--transition-fast);
}

.btn-primary-cta:hover {
  background: var(--accent-blue);
  color: #FFFFFF;
}

.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 12px;
  background: none;
  border: none;
  padding: 0;
}

.mobile-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--ink);
  transition: var(--transition-fast);
}

/* --- Mobile Menu Fullscreen Overlay --- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-links a {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  transition: color 0.3s;
}

.mobile-menu-links a:hover {
  color: var(--accent-blue);
}

.mobile-menu-cta {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  background: var(--accent-blue);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  box-shadow: 0 10px 20px rgba(0, 113, 227, 0.15);
}

/* --- Hero Section (Light, Clean, Apple Aesthetic) --- */
.hero-section {
  padding: 100px 48px 100px;
  max-width: 1300px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  display: flex;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 20px;
}

.tag-live {
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-title {
  font-family: var(--sans);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: var(--sans);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--grey);
  margin-bottom: 32px;
}

/* Guarantee pills */
.hero-pill-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bone);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 8px 16px;
  border-radius: 30px;
}

.check-icon {
  width: 15px;
  height: 15px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.hero-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--accent-blue);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  transition: var(--transition-fast);
  box-shadow: 0 10px 20px rgba(0, 113, 227, 0.12);
}

.hero-cta-btn:hover {
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: none;
}

.hero-cta-btn svg {
  width: 14px;
  height: 14px;
}

.hero-secondary-btn {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  transition: var(--transition-fast);
}

.hero-secondary-btn:hover {
  background: var(--bone);
  border-color: rgba(0, 0, 0, 0.25);
}

/* Logo Ticker under hero */
.hero-ticker-wrapper {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  padding: 24px 0;
  animation: scrollLeft 40s linear infinite;
}

.ticker-track span {
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(29, 29, 31, 0.35);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
}

.ticker-track .dot {
  color: var(--accent-blue);
}

/* --- Hero Right: Fanned Card Stack --- */
.hero-cards-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 520px;
  position: relative;
}

.cards-deck {
  width: 280px;
  height: 370px;
  position: relative;
  perspective: 1000px;
}

.card {
  width: 270px;
  height: 360px;
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: bottom left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
  overflow: hidden;
  color: var(--ink);
}

.card-border-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bone);
  transition: background-color 0.3s;
}

.card:hover .card-border-line {
  background: var(--accent-blue);
}

.card-inner-content {
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-kicker {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
}

.card-metric {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 12px 0 6px;
}

.card-description {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.card-tag {
  align-self: flex-start;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--bone);
  border-radius: 4px;
  color: var(--ink);
}

.card-tag.highlight {
  background: var(--accent-blue-light);
  color: var(--accent-blue);
}

/* Fan positioning coordinates */
.card-1 { transform: rotate(-9deg) translate(-20px, 6px); z-index: 1; }
.card-2 { transform: rotate(-3deg) translate(-7px, 2px); z-index: 2; }
.card-3 { transform: rotate(3deg) translate(7px, 2px); z-index: 3; }
.card-4 { transform: rotate(9deg) translate(20px, 6px); z-index: 4; }

/* Deck hover */
.cards-deck:hover .card-1 { transform: rotate(-21deg) translate(-90px, -12px); }
.cards-deck:hover .card-2 { transform: rotate(-7deg) translate(-30px, -6px); }
.cards-deck:hover .card-3 { transform: rotate(7deg) translate(30px, -6px); }
.cards-deck:hover .card-4 { transform: rotate(21deg) translate(90px, -12px); }

/* Card Hover */
.cards-deck .card:hover {
  transform: scale(1.05) rotate(0deg) translate(0, -25px) !important;
  z-index: 20 !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 113, 227, 0.3);
}

/* Sibling Shifts */
.cards-deck .card:has(~ .card:hover) {
  transform: rotate(-25deg) translate(-125px, -12px);
}
.cards-deck .card:hover ~ .card {
  transform: rotate(25deg) translate(125px, -12px);
}

/* --- Section Formatting --- */
.section {
  padding: 90px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 60px;
}

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

.section-index {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

.section-subtitle-large {
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.4;
  color: var(--grey);
  margin-top: 10px;
}

.section-meta-text {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  max-width: 320px;
  text-align: right;
}

@media (max-width: 768px) {
  .section-meta-text {
    text-align: left;
    max-width: 100%;
  }
}

/* --- Slanted Highlighter badge (Modern Polish) --- */
.sticker-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--neon-yellow);
  color: var(--ink) !important;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  transform: rotate(-3deg) translateY(-4px);
  margin-left: 10px;
  vertical-align: middle;
  box-shadow: 0 4px 8px rgba(0,0,0,0.03);
}

/* --- Why Us Section (Apple Bento Style Grid) --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--bone);
  border: 1px solid rgba(0, 0, 0, 0.01);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: scale(1.015);
  background: var(--paper);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.bento-card.col-span-2 {
  grid-column: span 2;
}

.bento-kicker {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.bento-card h3 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}

.bento-metric-badge {
  align-self: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 24px;
}

/* Profile Card Mockup */
.bento-profile-mockup {
  display: inline-flex;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 18px;
  gap: 12px;
  margin-top: 24px;
  width: fit-content;
}

.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-blue);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-meta {
  display: flex;
  flex-direction: column;
}

.profile-meta strong {
  font-size: 13.5px;
  font-weight: 700;
}

.profile-meta span {
  font-size: 11px;
  color: var(--grey);
}

.profile-status-dot {
  font-size: 9px;
  color: #34C759;
  font-weight: 700;
  margin-left: 20px;
}

/* Speed Bar Mockup */
.bento-speed-mockup {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 12px;
  max-width: 340px;
}

.speed-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
}

.speed-bar {
  width: 100%;
  height: 6px;
  background: var(--bone);
  border-radius: 3px;
  overflow: hidden;
}

.speed-fill {
  width: 99%;
  height: 100%;
  background: #34C759;
}

.speed-metric {
  font-size: 11px;
  color: #34C759;
  font-weight: 700;
}

/* --- Services Section (Clean 4-column Apple layout) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 30px;
  background: var(--paper);
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: rgba(0, 113, 227, 0.3);
  box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--accent-blue);
}

/* --- Expertise Accordion Matrix --- */
.accordion-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.matrix-column-header {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.matrix-list {
  display: flex;
  flex-direction: column;
}

.matrix-item {
  border-bottom: 1px solid var(--line);
}

.matrix-trigger {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  outline: none;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s;
}

.matrix-trigger:hover {
  color: var(--accent-blue);
}

.plus-symbol {
  font-size: 15px;
  font-weight: 400;
  color: var(--grey);
  transition: transform 0.4s;
}

.matrix-item.active .plus-symbol {
  transform: rotate(45deg);
  color: var(--accent-blue);
}

.matrix-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.matrix-content p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  padding-bottom: 16px;
}

/* --- Roadmap Section (Apple-style Grey background) --- */
/* --- AI Video Section (Apple Innovation block) --- */
.ai-video-section.grey-bg {
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.ai-video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.ai-video-content {
  display: flex;
  flex-direction: column;
}

.ai-video-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin-top: 16px;
  margin-bottom: 24px;
}

.ai-video-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.ai-video-features li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-video-features li::before {
  content: "✦";
  color: var(--coral);
  font-size: 12px;
}

/* AI Video Card CTA */
.ai-cta-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.ai-cta-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.ai-cta-card .card-kicker {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ai-cta-card h3 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}

.ai-cta-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--grey);
  margin-bottom: 24px;
}

.ai-cta-btn {
  background: var(--accent-blue);
  color: #FFFFFF;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 30px;
  text-align: center;
  align-self: flex-start;
  transition: var(--transition-fast);
  display: inline-block;
  text-decoration: none;
}

.ai-cta-btn:hover {
  background: #0066CC;
  transform: scale(1.02);
}

/* --- Outcomes Section (Grid of Case Cards with stats footer) --- */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.outcome-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.outcome-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 113, 227, 0.2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
}

.outcome-card-top {
  padding: 30px 28px 16px;
}

.outcome-number {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--grey);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.outcome-card-top h4 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
}

.outcome-card-stats-strip {
  border-top: 1px solid var(--line);
  background: var(--bone);
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.outcome-stat-block span {
  display: block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.outcome-stat-block strong {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
}

.outcome-stat-block strong.highlight-stat {
  color: var(--accent-blue);
}

.outcome-stat-block.text-right {
  text-align: right;
}

/* Image Card visual showcase */
.outcome-card.visual-card {
  padding: 0;
  border: none;
  position: relative;
  min-height: 300px;
  grid-column: span 2;
}

.outcome-image-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.outcome-card.visual-card:hover .outcome-image-background {
  transform: scale(1.06);
}

.outcome-overlay {
  position: relative;
  z-index: 2;
  padding: 28px;
  background: linear-gradient(to top, rgba(29,29,31,0.95) 0%, rgba(29,29,31,0.4) 60%, rgba(29,29,31,0) 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* --- Engagement Packages --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  transition: var(--transition-smooth);
  position: relative;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
}

.package-card.featured {
  background: var(--ink);
  color: #FFFFFF;
  border-color: var(--ink);
}

.package-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--coral);
  color: #FFFFFF;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.package-header {
  margin-bottom: 24px;
}

.package-tier {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.package-card.featured .package-tier {
  color: var(--sand);
}

.package-header h3 {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 10px;
}

.package-subtitle {
  font-size: 12.5px;
  color: var(--grey);
  line-height: 1.5;
}

.package-card.featured .package-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.package-price {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.package-card.featured .package-price {
  border-color: rgba(255, 255, 255, 0.1);
}

.price-val {
  display: block;
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.price-period {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
}

.package-card.featured .price-period {
  color: rgba(255, 255, 255, 0.4);
}

.package-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.package-features-list li {
  font-size: 13.5px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.package-card.featured .package-features-list li {
  color: rgba(255, 255, 255, 0.85);
}

.package-features-list li::before {
  content: '→';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
}

.package-card.featured .package-features-list li::before {
  color: var(--sand);
}

.package-cta-btn {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  border-radius: 24px;
  transition: var(--transition-fast);
}

.package-card.featured .package-cta-btn {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #FFFFFF;
  box-shadow: 0 8px 15px rgba(0, 113, 227, 0.15);
}

.package-cta-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.package-card.featured .package-cta-btn:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: var(--ink);
  box-shadow: none;
}



/* --- FAQ accordion & CTA Section (Split grid layout) --- */
.faq-cta-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.faq-cta-title {
  font-family: var(--sans);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 16px 0 24px;
}

.faq-cta-desc {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 40px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 600;
  background: var(--accent-blue);
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 30px;
  transition: var(--transition-fast);
  box-shadow: 0 10px 20px rgba(0, 113, 227, 0.12);
}

.btn-hero-cta:hover {
  background: var(--ink);
  color: #FFFFFF;
  box-shadow: none;
}

.faq-accordion-wrapper {
  border-top: 1px solid var(--line);
}

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

.faq-trigger {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
}

.faq-trigger span {
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  padding-right: 24px;
  transition: color 0.3s;
}

.faq-trigger:hover span {
  color: var(--accent-blue);
}

.faq-arrow-icon {
  width: 18px;
  height: 18px;
  color: var(--grey);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-trigger[aria-expanded="true"] .faq-arrow-icon {
  transform: rotate(180deg);
  color: var(--accent-blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
  padding-bottom: 20px;
}

.faq-content-inner p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

/* --- Consultation Contact Section --- */
.contact-section {
  padding: 100px 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
}

.contact-title {
  font-family: var(--sans);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 16px 0 24px;
}

.contact-description {
  font-size: 16px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 40px;
}

.contact-channels {
  margin-bottom: 48px;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 4px;
  transition: var(--transition-fast);
}

.contact-email-link:hover {
  color: var(--accent-blue);
  border-color: var(--accent-blue);
  gap: 18px;
}

.contact-office {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
}

.office-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--coral);
}

.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulseAnimation 1.5s infinite;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

/* Contact Form */
.inquire-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  width: 100%;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C5C5C7;
  opacity: 0.8;
}

.input-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-blue);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-group input:focus ~ .input-line,
.form-group textarea:focus ~ .input-line {
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: transparent;
}

.form-group.full-width {
  margin-bottom: 40px;
}

.btn-luxury-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  border-radius: 24px;
  transition: var(--transition-fast);
}

.btn-luxury-submit:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #FFFFFF;
}

.form-feedback {
  margin-top: 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  min-height: 20px;
  text-transform: uppercase;
}

.form-feedback.success {
  color: #2E7D32;
}

.form-feedback.error {
  color: #C62828;
}

/* --- Footer --- */
.footer-wrapper {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 48px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.footer-logo sup {
  color: var(--accent-blue);
  font-size: 10px;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 320px;
}

.footer-heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.footer-links-column a {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-links-column a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  font-family: var(--sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Reveal Scroll Helper --- */
.rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.rv.in {
  opacity: 1;
  transform: none;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1120px) {
  .hero-section {
    padding: 80px 32px 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-cards-wrapper {
    height: 480px;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card.col-span-2 {
    grid-column: span 2;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .accordion-matrix-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ai-video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .package-card {
    min-height: auto;
  }
}

@media (max-width: 980px) {
  .navbar-container {
    padding: 16px 24px;
  }
  .section {
    padding: 80px 24px;
  }
  .contact-section {
    padding: 80px 24px;
  }
  .footer-wrapper {
    padding: 60px 24px 30px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .faq-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* Mobile Menu overlay button */
  .mobile-toggle-btn {
    display: flex;
    cursor: pointer;
    z-index: 999;
  }
  
  .mobile-toggle-btn.open span:first-child {
    transform: translateY(5px) rotate(45deg);
    background-color: var(--ink);
  }
  .mobile-toggle-btn.open span:last-child {
    transform: translateY(-5px) rotate(-45deg);
    background-color: var(--ink);
  }
  
  .nav-links-wrapper {
    display: none;
  }
  
  /* Journey Section Tab Layout */
  .journey-tabs-wrapper {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 60px 16px 40px;
  }
  .section {
    padding: 60px 16px;
  }
  .contact-section {
    padding: 60px 16px;
  }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card.col-span-2 {
    grid-column: span 1;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
