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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== TYPOGRAPHY ===== */
.serif-italic {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header-logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: #ffffff;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
}

.header-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

/* ===== GRID OVERLAY (subtle dark grid background) ===== */
.grid-bg {
  position: relative;
}

.grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.grid-bg > * {
  position: relative;
  z-index: 1;
}

/* ===== BLUE GLOW at top ===== */
.blue-glow {
  position: relative;
}

.blue-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, #3b82f6, transparent);
  opacity: 0.7;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 5rem 0 3rem;
  text-align: center;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero-heading {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: #ffffff;
}

.hero-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
  display: block;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.2;
}

.hero-subtext {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 2rem;
  background: #ffffff;
  color: #000000;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.btn-secondary:hover {
  color: #ffffff;
}

.hero-note {
  font-size: 0.8125rem;
  color: #64748b;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.stat-item p {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

/* ===== SECTION DIVIDER (Blue glow line) ===== */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
  opacity: 0.5;
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
  padding: 6rem 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.problem-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.problem-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
}

.problem-subtext {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: #ffffff;
}

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

.problem-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.problem-item:first-child {
  padding-top: 0;
}

.problem-item-number {
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.problem-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.problem-item p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.problem-quote {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 3rem;
  margin-top: 1rem;
}

.problem-quote p {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.125rem;
  color: #64748b;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 6rem 0;
}

.about-header {
  margin-bottom: 3rem;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
}

.about-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-info .role {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.about-info .bio {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-info .bio strong {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.engagements-table {
  margin-top: 2rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.engagements-table .table-header {
  padding: 1rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.engagements-table .table-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.engagements-table .table-row:last-child {
  border-bottom: none;
}

.table-row .company {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
}

.table-row .description {
  font-size: 0.8125rem;
  color: #64748b;
}

.about-cta {
  margin-top: 2rem;
}

/* ===== OUTCOMES SECTION ===== */
.outcomes-section {
  padding: 6rem 0;
}

.outcomes-header {
  margin-bottom: 3rem;
}

.outcomes-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.outcomes-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.outcome-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
}

.outcome-card .metric {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.outcome-card .metric-label {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.outcome-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.outcome-card p {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* ===== FRAMEWORK SECTION ===== */
.framework-section {
  padding: 6rem 0;
}

.framework-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.framework-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.framework-heading .serif-italic {
  font-weight: 400;
  color: #94a3b8;
}

.framework-description {
  max-width: 380px;
  text-align: right;
}

.framework-description p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.framework-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.framework-card .letter {
  font-family: 'Instrument Serif', 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 400;
  color: #374151;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.framework-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.framework-card .timeline {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

.framework-card p.desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  flex: 1;
}

.framework-card .card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
  margin-top: 1.25rem;
}

.framework-card .card-number {
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
}

/* ===== BEFORE PACKAGES SECTION ===== */
.before-packages {
  padding: 6rem 0;
}

.before-packages-content {
  max-width: 780px;
  margin: 0 auto;
}

.before-packages-content .bold-text {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.before-packages-content .body-text {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.before-packages-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.before-packages-bottom p {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 320px;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
  padding: 6rem 0;
}

.packages-header {
  margin-bottom: 1rem;
}

.packages-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.packages-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
}

.packages-subtext {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
}

.package-card.featured {
  background: #f5f5f4;
  color: #000000;
  border-color: transparent;
}

.package-card .package-badge {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 0.75rem;
}

.package-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-card .package-tagline {
  font-size: 0.9375rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}

.package-card.featured .package-tagline {
  color: #525252;
}

.package-card .package-for {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.package-card.featured .package-for {
  color: #737373;
}

.package-card .package-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.package-card.featured .package-desc {
  color: #525252;
}

.package-checklist {
  margin-bottom: 2rem;
  flex: 1;
}

.package-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.package-card.featured .package-checklist li {
  color: #525252;
}

.package-checklist li .check {
  color: #64748b;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-card.featured .package-checklist li .check {
  color: #737373;
}

.btn-package {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: transparent;
}

.btn-package:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-package.featured {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-package.featured:hover {
  background: #1a1a1a;
}

.packages-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 6rem 0;
}

.testimonials-header {
  margin-bottom: 3rem;
}

.testimonials-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.testimonials-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
}

.testimonial-card .quote {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.testimonial-card .company {
  font-size: 0.8125rem;
  color: #64748b;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
  padding: 6rem 0;
  text-align: center;
}

.final-cta-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.final-cta-heading .serif-italic {
  color: #94a3b8;
  font-weight: 400;
}

.final-cta-subtext {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

.final-cta-muted {
  font-size: 0.875rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.final-cta .btn-primary {
  margin-bottom: 2rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 10px;
}

.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.final-cta-trust .dot-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #475569;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-copy {
  font-size: 0.8125rem;
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

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

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  font-size: 1.125rem;
  color: #94a3b8;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: #ffffff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .framework-header {
    flex-direction: column;
  }

  .framework-description {
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }

  .header-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 3rem 0 2rem;
    min-height: auto;
  }

  .hero-heading {
    font-size: 2.75rem;
  }

  .hero-heading .serif-italic {
    font-size: 2.75rem;
  }

  .hero-subtext {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
  }

  .framework-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer .container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .before-packages-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .before-packages-bottom p {
    max-width: none;
  }

  .final-cta-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .final-cta-trust .dot-separator {
    display: none;
  }
}
