@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Instrument+Serif:ital@0;1&family=Caveat:wght@500;700&family=Outfit:wght@600;700;800&display=swap');

/* arbrax.ai Clone Style Sheet */

/* Font Definitions */
:root {
  /* Fonts — keep exactly as is */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body:    'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif:   var(--font-heading);
  --font-mono:    'Fragment Mono', 'Courier New', monospace;

  /* ── COLOR SYSTEM ── */

  /* Backgrounds */
  --color-cream:       #faf9f7;   /* Warm off-white page bg */
  --color-beige:       #ffffff;   /* Pure white surfaces */
  --color-surface:     #faf9f7;   /* Card/section bg */

  /* Dark */
  --color-dark:        #080808;   /* Hero bg, footer */
  --color-dark-light:  #1f1f1f;   /* Secondary dark surface */

  /* ★ ACCENT — Core Arbrax Orange ★ */
  --color-accent:          #ff4500;
  --color-accent-hover:    #e03d00;
  --color-accent-gradient: linear-gradient(135deg, #ff4500, #e03d00);
  --color-accent-alpha:    rgba(255, 69, 0, 0.08);

  /* Border */
  --color-border: rgba(220, 210, 200, 0.40);

  /* Star rating */
  --color-star: #eab308;

  /* Text */
  --color-text-dark:          #080808;
  --color-text-dark-muted:    #706f70;
  --color-text-muted:         #706f70;
  --color-text-light:         #ffffff;
  --color-text-light-muted:   rgba(255, 255, 255, 0.75);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);

  /* Radius */
  --border-radius-lg:   16px;
  --border-radius-md:   12px;
  --border-radius-sm:   8px;
  --border-radius-pill: 9999px;

  /* Transitions */
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast:   all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  overflow-x: hidden;
  font-size: 16px;
}

/* Lenis Smooth Scroll Compatibility */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* Custom Scrollbar styled matching brandhero */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: rgba(9, 9, 11, 0.12);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(9, 9, 11, 0.25);
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Noise overlay background style */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  mix-blend-mode: overlay;
}

.noise-overlay svg {
  width: 100%;
  height: 100%;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-wide {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.max-w-md {
  max-width: 840px;
}

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

.text-left {
  text-align: left;
}

.desktop-only {
  display: none;
}

@media (min-width: 900px) {
  .desktop-only {
    display: block;
  }
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

h1 i, h1 em, h1 span.serif,
h2 i, h2 em, h2 span.serif,
h3 i, h3 em, h3 span.serif,
.section-title i, .section-title em,
.hero-title i, .hero-title em {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  letter-spacing: inherit;
  text-transform: none;
}

/* Fragment Mono Badge/Tag style */
.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  background-color: var(--color-accent-alpha);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 69, 0, 0.15);
  display: inline-block;
  margin-bottom: 12px;
}

/* Button & Interactions */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--color-accent-gradient);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: var(--color-accent-gradient);
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 69, 0, 0.25);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn-secondary:hover {
  background-color: rgba(255, 69, 0, 0.08);
  color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

/* Header style */
.header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  z-index: 100;
  padding-top: 24px;
  padding-bottom: 24px;
  background-color: transparent;
  opacity: 1;
  visibility: visible;
  border: 1px solid transparent;
  border-radius: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, visibility 0.2s ease, background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, max-width 0.3s ease, border-radius 0.3s ease, border-color 0.3s ease, top 0.3s ease;
}

/* Sticky Scrolled State (floating glassmorphism navbar matching brandhero) */
.header.scrolled {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding-top: 12px;
  padding-bottom: 12px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease, visibility 0.2s ease, background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, max-width 0.3s ease, border-radius 0.3s ease, border-color 0.3s ease, top 0.3s ease;
}

/* Hide header when scrolling down */
.header.scrolled.header-hidden {
  transform: translate(-50%, -10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header.header-hidden:not(.scrolled) {
  transform: translate(-50%, -10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Adjust navigation links in sticky floating header */
.header.scrolled .nav-link {
  color: var(--color-text-dark-muted);
}

.header.scrolled .nav-link:hover {
  color: var(--color-text-dark);
}

.header.scrolled .nav-link.active {
  color: var(--color-accent) !important;
}

/* Light header variations */
.header-light .nav-link {
  color: var(--color-text-dark-muted);
}

.header-light .nav-link:hover {
  color: var(--color-text-dark);
}

.header-light .nav-link.active {
  color: var(--color-accent);
}

.header-light .logo-text {
  color: var(--color-text-dark) !important;
}

/* Global Nav active state */
.nav-link.active {
  color: var(--color-accent) !important;
}

.header.scrolled .logo-dot-ai {
  color: var(--color-text-dark-muted);
}

.header.scrolled .logo-text {
  color: #000000 !important;
}

.mobile-menu-header .logo-text {
  color: #000000 !important;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.logo-img:hover {
  transform: scale(1.02);
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  width: 28px;
  height: 28px;
  stroke-width: 2.8;
  color: var(--color-accent);
  filter: drop-shadow(0 2px 8px rgba(255, 69, 0, 0.3));
}

.logo-text {
  font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
  transition: var(--transition-fast);
}

.logo-dot-ai {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  vertical-align: super;
  margin-top: -2px;
  margin-left: 1px;
}

/* Nav Menu Base */
.header-nav {
  display: none;
}

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

@media (max-width: 767px) {
  .desktop-hidden {
    display: flex !important;
  }
  
  .header-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 16px;
    left: 50%;
    width: calc(100vw - 32px);
    max-width: 500px;
    height: auto;
    border-radius: 24px;
    background-color: rgba(245, 245, 245, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    gap: 0;
    z-index: 1000;
    transform: translate(-50%, -20px) scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
  }

  .header.scrolled .header-nav {
    top: 16px;
    left: 50%;
  }

  .header-nav.active {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
  }
  
  .mobile-menu-header .logo-img {
    height: 28px;
  }

  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .theme-toggle, .menu-close {
    background: none;
    border: none;
    color: #09090b;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #09090b !important;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }

  .status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
    width: 100%;
  }

  .header-nav .nav-link {
    font-size: 1.15rem !important;
    color: #09090b !important;
    width: 100%;
    justify-content: flex-start;
    padding: 4px 0;
    border-bottom: none;
    font-weight: 500;
  }

  .mobile-menu-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 69, 0, 0.25));
    pointer-events: none;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
  .header-nav {
    display: flex;
  }
}

/* Hamburger Toggle Button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  outline: none;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .menu-toggle span {
  background-color: var(--color-text-dark);
}

.menu-toggle.active span {
  background-color: #ffffff !important;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Header CTA Hide & Scroll Lock */
@media (max-width: 767px) {
  .header-cta {
    display: none !important;
  }
}

body.menu-open {
  overflow: hidden !important;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.937rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

/* Dropdown styling */
.nav-dropdown {
  position: relative;
}

.dropdown-trigger {
  cursor: pointer;
}

.chevron-icon {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: var(--color-dark-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

/* Header CTA toggle styling */
.header-cta {
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: var(--color-dark) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 9999px !important;
  width: 196px;
  height: 46px;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
  padding: 0 !important;
}

.header-cta:hover {
  border-color: var(--color-accent) !important;
  box-shadow: 0 4px 20px rgba(255, 69, 0, 0.2);
  transform: none !important;
}

.header-cta .btn-circle {
  position: absolute;
  left: 4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 2;
}

.header-cta .btn-circle svg {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.header-cta .btn-text {
  position: absolute;
  left: 48px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
  z-index: 1;
}

.header-cta:hover .btn-circle {
  transform: translateX(148px);
}

.header-cta:hover .btn-text {
  transform: translateX(-38px);
}

/* Hero Section */
.hero-section {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 69, 0, 0.06),
    transparent 40%
  );
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 540px;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-text-light-muted);
  margin-bottom: 24px;
}

/* CTA Input Styles */
.hero-cta-form {
  width: 100%;
}

.cta-input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  border-radius: var(--border-radius-md);
}

.cta-input {
  background: transparent;
  border: none;
  color: var(--color-text-light);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  outline: none;
}

/* Onboarding Wizard Form Steps */
.form-step {
  animation: step-fade 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes step-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 6px;
  text-align: left;
  line-height: 1.25;
}

.step-subtitle {
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 0.937rem;
  color: var(--color-text-light-muted);
  margin-bottom: 20px !important;
  text-align: left;
}

.step-description {
  font-size: 0.812rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.step-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  text-align: left;
}

.field-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

.step-field {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  width: 100%;
  color: var(--color-text-light);
  font-family: var(--font-body);
}

.step-field:focus {
  border-color: var(--color-accent) !important;
  background-color: rgba(255, 255, 255, 0.06) !important;
}

.step-consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  text-align: left;
}

.step-consent-checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.consent-text {
  font-size: 0.7rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.consent-link {
  color: var(--color-accent);
  text-decoration: none;
}

.consent-link:hover {
  text-decoration: underline;
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cta-btn {
  border-radius: var(--border-radius-sm);
  padding: 12px 24px;
  font-size: 1rem;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

/* Showcase Animations */
.hero-showcase {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.22;
  z-index: 1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(8, 8, 10, 0.55) 0%, rgba(8, 8, 10, 0.9) 100%);
  z-index: 2;
  pointer-events: none;
}

.showcase-fade-top, .showcase-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 10;
  pointer-events: none;
}

.showcase-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--color-dark) 0%, transparent 100%);
}

.showcase-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--color-dark) 0%, transparent 100%);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  height: 100%;
}

.showcase-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Scrolling Animation classes */
.col-scroll-up {
  animation: scroll-up 20s linear infinite;
}

.col-scroll-down {
  animation: scroll-down 20s linear infinite;
}

@keyframes scroll-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(-33.333%); }
}

@keyframes scroll-down {
  0% { transform: translateY(-33.333%); }
  100% { transform: translateY(0); }
}

.showcase-card {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.72) saturate(0.85);
}

.card-details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.95) 0%, rgba(8, 8, 10, 0) 100%);
  color: var(--color-text-light);
}

.card-tag {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.card-title {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
}

/* Pain Points Section */
.pain-stories-section {
  background-color: var(--color-beige);
  padding: 80px 0;
  border-top: 1px solid rgba(9, 9, 11, 0.05);
  border-bottom: 1px solid rgba(9, 9, 11, 0.05);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.section-subtitle {
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 500;
  font-size: 1.062rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

/* Compare Card Section Layout */
.compare-container-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 40px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  transition: var(--transition-smooth);
}

.compare-container-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

@media (min-width: 1024px) {
  .compare-container-card {
    grid-template-columns: 1.25fr 48px 1.25fr 1.15fr;
    gap: 48px;
    padding: 64px 48px;
  }
}

.compare-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.compare-col h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.compare-arrow-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.compare-arrow-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f7f7f7;
  border: 1px solid rgba(9, 9, 11, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark-muted);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

@media (max-width: 1023px) {
  .compare-arrow-wrapper {
    transform: rotate(90deg);
  }
}

.pricing-highlight-card {
  background-color: #ffffff;
  border: 1.5px solid var(--color-accent);
  border-radius: var(--border-radius-lg);
  padding: 40px 28px;
  box-shadow: 0 16px 32px rgba(255, 69, 0, 0.04), 0 4px 12px rgba(255, 69, 0, 0.01);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  text-align: left;
}

.pricing-highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.03), transparent 70%);
  pointer-events: none;
}

.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pricing-card-top svg {
  color: var(--color-accent);
}

.pricing-card-top span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark-muted);
}

.pricing-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}

.pricing-card-price .price-num {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-heading);
  line-height: 1;
}

.pricing-card-price .price-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dark-muted);
}

.pricing-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.compare-features-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid rgba(9, 9, 11, 0.06);
  border-radius: var(--border-radius-pill);
  padding: 16px 32px;
  margin-top: 32px;
  box-shadow: 0 4px 20px rgba(9, 9, 11, 0.01);
  gap: 20px;
}

.features-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.features-bar-item svg {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .compare-features-bar {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--border-radius-lg);
    padding: 24px;
  }
}

/* Upgrade Path Section */
.upgrade-path-section {
  padding: 64px 0;
}

.upgrade-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.column-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  text-align: left;
}

.channels-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius-md);
  text-align: left;
}

.channel-badge {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.channel-details h5 {
  font-size: 0.875rem;
  font-weight: 700;
}

.channel-details p {
  font-size: 0.75rem;
  color: var(--color-text-dark-muted);
}

.upgrade-plus-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-pill);
  background-color: rgba(255, 69, 0, 0.08);
  border: 1px solid rgba(255, 69, 0, 0.25);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 16px auto;
}

/* arbrax path card style */
.arbrax-path-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.arbrax-path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.new-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background-color: rgba(255, 69, 0, 0.08);
  color: var(--color-accent);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.arbrax-badge-circle {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 69, 0, 0.08);
  color: var(--color-accent);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

.arbrax-path-card p {
  font-size: 0.937rem;
  color: var(--color-text-dark-muted);
}

/* Outcomes Column styling */
.outcomes-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.outcome-pill {
  background-color: rgba(255, 69, 0, 0.04);
  border: 1px solid rgba(255, 69, 0, 0.12);
  border-left: 3px solid var(--color-accent);
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  text-align: left;
}

.outcome-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.outcome-label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.812rem;
  font-weight: 700;
  margin-top: 2px;
}

.trend-icon {
  color: rgba(255, 69, 0, 0.7);
}

.outcome-pill.plain-pill {
  background-color: rgba(0, 0, 0, 0.015);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: none;
}

.outcome-pill.plain-pill h5 {
  font-size: 0.875rem;
  font-weight: 700;
}

.outcome-pill.plain-pill p {
  font-size: 0.75rem;
  color: var(--color-text-dark-muted);
  margin-top: 2px;
}

/* Outcomes Grid / Feature List */
.outcomes-grid-section {
  background-color: var(--color-beige);
  padding: 64px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.feature-item {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  text-align: left;
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: rgba(255, 69, 0, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 69, 0, 0.08);
  color: var(--color-accent);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-item h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
}

/* Unlimited Edits Chat Mockup Section */
.edits-chat-section {
  padding: 64px 0;
  background-color: var(--color-cream);
}

.chat-container-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.chat-text {
  max-width: 500px;
}

.chat-mockup {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  justify-self: center;
  transition: var(--transition-smooth);
}

.chat-mockup:hover {
  transform: translateY(-4px);
}

.chat-header {
  background-color: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-pill);
  background-color: var(--color-accent);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header h6 {
  font-size: 0.875rem;
  font-weight: 700;
}

.chat-status {
  font-size: 0.687rem;
  color: #16A34A;
}

.chat-messages {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 0.937rem;
  position: relative;
  /* Animation handles entrance in production, static is fallback */
  animation: bubble-entrance 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
}

@keyframes bubble-entrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bubble-left {
  align-self: flex-start;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-text-dark);
  border-radius: 20px 20px 20px 6px;
}

.bubble-right {
  align-self: flex-end;
  background-color: var(--color-accent);
  color: #ffffff;
  border-radius: 20px 20px 6px 20px;
}

.bubble-time {
  display: block;
  font-size: 0.65rem;
  margin-top: 4px;
  opacity: 0.5;
  text-align: right;
}

.bubble-right .bubble-time {
  color: rgba(255, 255, 255, 0.8);
}

/* Built By & Team Section */
.team-founder-section {
  background-color: var(--color-beige);
  padding: 64px 0;
}

.founder-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.founder-img-wrapper {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-pill);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.founder-role {
  font-size: 0.687rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-text-dark-muted);
  margin-bottom: 12px;
}

.founder-bio {
  font-size: 0.937rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  white-space: pre-line;
  margin-bottom: 16px;
}

.founder-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.founder-badges .badge {
  background-color: var(--color-accent-alpha);
  color: var(--color-accent);
  padding: 4px 10px;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.linkedin-link:hover {
  text-decoration: underline;
}

/* Star Testimonials & Outcomes */
.real-outcomes-section {
  background-color: var(--color-cream);
  padding: 64px 0;
}

.section-tagline {
  font-size: 0.687rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
}

.outcomes-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.featured-outcome-card, .side-outcome-card {
  background-color: var(--color-beige);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px 24px;
  position: relative;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.featured-outcome-card:hover, .side-outcome-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.featured-outcome-card {
  background-color: var(--color-accent-alpha);
  border-color: var(--color-border);
}

.featured-outcome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(80% 55% at 0% 0%, rgba(255, 69, 0, 0.08) 0%, transparent 65%);
}

.large-quote {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(255, 69, 0, 0.08);
  position: absolute;
  top: -10px;
  right: 24px;
  line-height: 1;
}

.stars {
  color: var(--color-star);
  font-size: 0.875rem;
  margin-bottom: 12px;
}

.outcome-quote {
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.1);
}

.client-details h6 {
  font-size: 0.812rem;
  font-weight: 700;
}

.client-details span {
  font-size: 0.687rem;
  color: var(--color-text-dark-muted);
}

.card-divider {
  margin: 16px 0;
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.card-metric h3 {
  font-size: 1.75rem;
  color: var(--color-accent);
  font-weight: 900;
}

.card-metric h4 {
  font-size: 1.125rem;
  color: var(--color-accent);
}

.card-metric p {
  font-size: 0.75rem;
  color: var(--color-text-dark-muted);
  font-style: italic;
}

.side-outcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--color-beige);
  padding: 64px 0;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
}

.accordion-item:not(:first-child) {
  border-top: none;
}

.accordion-item.expanded {
  background-color: #ffffff;
  border-left-color: var(--color-accent);
  padding-left: 16px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-text-dark);
}

.accordion-trigger h3 {
  font-size: 1rem;
  font-weight: 600;
  padding-right: 16px;
  line-height: 1.4;
}

.accordion-trigger:hover h3 {
  color: var(--color-accent);
}

.accordion-chevron {
  color: rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-item.expanded .accordion-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.expanded .accordion-content {
  max-height: 200px; /* arbitrary height to slide down */
  padding-bottom: 16px;
}

.accordion-content p {
  font-size: 0.937rem;
  color: var(--color-text-muted);
}

/* Footer Section */
/* Brandhero-style Bento Footer */
.footer {
  background-color: var(--color-cream);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(9, 9, 11, 0.06);
}

.footer-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-bento-grid {
    grid-template-columns: 1.2fr 1.5fr 1fr;
  }
}

.bento-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual Bento Cards */
.bento-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 32px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.bento-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Card custom styles */
.bento-card.need-hand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  background-color: #ffffff;
}

.bento-card.need-hand h3 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--color-text-dark);
}

.bento-card.need-hand p {
  font-size: 0.937rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: auto;
}

/* Social icons layout */
.social-icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.social-icon-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon-card:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.social-icon-card svg {
  width: 24px;
  height: 24px;
}

/* Newsletter card */
.bento-card.newsletter {
  padding: 24px 32px;
}

.newsletter-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark-muted);
  margin-bottom: 16px;
}

.newsletter-title-wrapper svg {
  color: var(--color-accent);
  transform: rotate(-15deg);
}

.newsletter-form-row {
  display: flex;
  background-color: #f7f7f7;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 6px;
  align-items: center;
  gap: 8px;
}

.newsletter-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 10px 12px;
  color: var(--color-text-dark);
  width: 100%;
}

.newsletter-submit-btn {
  background-color: var(--color-dark);
  color: #ffffff;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background-color: var(--color-accent);
}

/* Globe Card */
.bento-card.globe-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  overflow: hidden;
  background-color: #ffffff;
}

.bento-card.globe-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
}

.bento-card.globe-card p {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  margin-top: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.globe-graphic {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.85;
}

/* Write to us card */
.bento-card.write-us {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #ffffff;
}

.bento-card.write-us h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.email-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f7f7f7;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: var(--border-radius-sm);
  padding: 10px 14px;
  gap: 12px;
}

.email-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
}

.copy-btn {
  background-color: #ffffff;
  border: 1px solid rgba(9, 9, 11, 0.08);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--color-text-dark-muted);
}

.copy-btn:hover {
  background-color: var(--color-accent);
  color: #ffffff;
  border-color: var(--color-accent);
}

/* arbrax Stats Cards (replacing 95% and 40% stats) */
.bento-card.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  padding: 24px 32px;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.812rem;
  color: var(--color-text-dark-muted);
  line-height: 1.4;
}

/* Footer bottom row with branding & copyright */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(9, 9, 11, 0.06);
  padding-top: 32px;
  margin-top: 40px;
  gap: 20px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom .logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
}

.logo-img:hover {
  transform: scale(1.02);
}

.logo {
  color: var(--color-accent);
}

.footer-bottom .logo-text {
  color: #000000 !important;
  font-size: 1.7rem;
}

.footer-bottom .copyright {
  color: var(--color-text-dark-muted);
  font-size: 0.812rem;
}

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

.footer-legal-links a {
  font-size: 0.812rem;
  color: var(--color-text-dark-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--color-accent);
}

/* ==========================================================================
   Media Queries & Responsiveness (Tablet & Desktop scales)
   ========================================================================== */

@media (min-width: 600px) {
  .hero-title {
    font-size: 2.75rem;
  }
  
  .btn-sm {
    padding: 10px 20px;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .upgrade-grid {
    display: grid;
    grid-template-columns: 2fr 40px 3fr 2fr;
    align-items: center;
  }
  
  .upgrade-plus-icon {
    margin: 0 auto;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .side-outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr auto;
    gap: 64px;
  }
}

@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    min-height: 80vh;
    height: auto;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 3.5rem;
  }
  
  .cta-input-group {
    flex-direction: row;
  }
  
  .cta-input {
    flex-grow: 1;
  }

  .showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .upgrade-grid {
    grid-template-columns: 200px 60px minmax(240px, 340px) 200px;
    column-gap: 40px;
  }

  .outcomes-container {
    grid-template-columns: 3fr 2fr;
    gap: 24px;
  }

  .side-outcome-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .chat-container-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
  
  .chat-mockup {
    justify-self: end;
  }
  
  .founder-card {
    flex-direction: row;
    padding: 32px;
    gap: 40px;
    align-items: center;
  }
  
  .founder-img-wrapper {
    width: 180px;
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

/* Left-to-Right reveal transition */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

/* Right-to-Left reveal transition */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay classes for lists */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }
.delay-600 { transition-delay: 0.6s !important; }

/* Custom Warning Toast Popup */
.custom-toast {
  position: fixed;
  top: 24px;
  right: 24px;
  background-color: var(--color-dark-light);
  border: 1px solid var(--color-accent);
  color: var(--color-text-light);
  padding: 16px 24px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.2), opacity 0.3s ease;
}

.custom-toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}

.toast-icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Shake Animation for inputs */
.cta-input.input-error {
  border-color: var(--color-accent) !important;
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* Lenis Smooth Scroll Compatibility */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* Background Grid System (Exact brandhero style layout) */
.grid-bg-dark {
  position: relative;
}
.grid-bg-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  pointer-events: none;
  z-index: 1;
}

.grid-bg-light {
  position: relative;
}
.grid-bg-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(9, 9, 11, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 11, 0.012) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center top;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Glow Orbs */
.ambient-glow-orb {
  position: absolute;
  width: 450px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.08) 0%, rgba(255, 69, 0, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.ambient-glow-orb.red {
  background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, rgba(239, 68, 68, 0) 70%);
}

/* Why arbrax Section Layout */
.why-arbrax-section {
  padding: 80px 0;
  background-color: var(--color-cream);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(9, 9, 11, 0.05);
}

.why-arbrax-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-arbrax-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
  }
}

.why-arbrax-content {
  text-align: left;
}

.why-arbrax-content .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.why-arbrax-content .section-desc {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.why-arbrax-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.why-arbrax-feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.why-arbrax-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-accent-alpha);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-arbrax-feature-icon svg {
  width: 20px;
  height: 20px;
}

.why-arbrax-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.why-arbrax-feature-desc {
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
  line-height: 1.4;
}

/* Browser Mockup Styling */
.browser-mockup {
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.browser-header {
  height: 40px;
  background-color: #f7f7f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 0 16px;
  justify-content: space-between;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e5e5e5;
}

.browser-dot.red { background-color: #ef4444; }
.browser-dot.yellow { background-color: #f59e0b; }
.browser-dot.green { background-color: #10b981; }

.browser-address-bar {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  height: 24px;
  width: 60%;
  font-size: 0.7rem;
  color: var(--color-text-dark-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.browser-body {
  padding: 16px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Internal website preview card inside browser body */
.preview-site-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  background-color: #ffffff;
}

.preview-site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.preview-site-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.preview-site-logo span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background-color: var(--color-accent);
  display: inline-block;
}

.preview-site-nav {
  display: flex;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-text-dark-muted);
}

.preview-site-cta {
  background-color: var(--color-dark);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
}

.preview-site-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 12px;
  padding: 16px 12px;
  background-color: #fcfbfa;
}

.preview-site-hero-content {
  text-align: left;
}

.preview-site-hero-tag {
  font-size: 0.5rem;
  font-weight: 700;
  background-color: rgba(9, 9, 11, 0.05);
  padding: 2px 4px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 4px;
  color: var(--color-text-dark-muted);
}

.preview-site-hero-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.preview-site-hero-desc {
  font-size: 0.625rem;
  color: var(--color-text-dark-muted);
  line-height: 1.3;
  margin-bottom: 8px;
}

.preview-site-hero-btn {
  background-color: var(--color-dark);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
}

.preview-site-hero-img-wrapper {
  width: 100%;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.preview-site-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-site-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.preview-site-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2px;
}

.preview-site-feature-card svg {
  color: var(--color-accent);
  margin-bottom: 2px;
}

.preview-site-feature-card h5 {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.preview-site-feature-card p {
  font-size: 0.55rem;
  color: var(--color-text-dark-muted);
  line-height: 1.2;
}

/* Trust stats underneath mockup */
.mockup-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  gap: 12px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -6px;
  object-fit: cover;
}

.trust-avatar:first-child {
  margin-left: 0;
}

.trust-avatar-plus {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background-color: #f1f1f1;
  color: var(--color-text-dark);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
}

.trust-rating-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.trust-stars {
  color: #f59e0b;
  font-size: 0.75rem;
}

.trust-rating-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-dark-muted);
}

/* Mobile Responsiveness Overrides for Why arbrax and Mockups */
@media (max-width: 768px) {
  .why-arbrax-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .why-arbrax-content .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .preview-site-nav {
    display: none;
  }
  .preview-site-hero {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .preview-site-hero-img-wrapper {
    height: 120px;
  }
  .preview-site-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pricing-highlight-card {
    padding: 24px 16px;
  }
  .pricing-card-price .price-num {
    font-size: 2.25rem;
  }
}

/* Bottom Support Bar Layout */
.bottom-support-bar {
  background-color: #fffaf7;
  border: 1px solid rgba(255, 69, 0, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 24px 32px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 32px;
  box-shadow: 0 4px 20px rgba(9, 9, 11, 0.01);
}

@media (min-width: 1024px) {
  .bottom-support-bar {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    padding: 32px 40px;
  }
}

/* Bottom Support Bar Inner Elements */
.support-bar-promise {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.promise-icon-circle {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 69, 0, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.promise-text-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.promise-text-top {
  font-weight: 700;
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.3;
}

.promise-text-bottom {
  font-weight: 700;
  color: var(--color-accent);
  font-size: 0.95rem;
  line-height: 1.3;
}

.support-bar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.support-item-icon-circle {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 69, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.support-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-item-title {
  font-weight: 700;
  color: var(--color-text-dark);
  font-size: 0.875rem;
  line-height: 1.2;
}

.support-item-desc {
  color: var(--color-text-dark-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

/* Modern outcomes grid header badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ff4500;
  background-color: rgba(255, 69, 0, 0.06);
  border: 1px solid rgba(107, 33, 168, 0.15);
  padding: 6px 14px;
  border-radius: var(--border-radius-pill);
  margin-bottom: 20px;
}

/* Feature Item updates for header layout */
.feature-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.feature-item-header .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feature-item-header h4 {
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-divider {
  border: none;
  border-top: 1px solid rgba(9, 9, 11, 0.06);
  margin: 20px 0;
}

.feature-checkmark-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark-muted);
}

.feature-checkmark-row svg {
  flex-shrink: 0;
}

/* Premium Founder Section */
.arbrax-founder-section {
  background-color: #FAFAF8;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arbrax-founder-card {
  background-color: #ffffff;
  border: 1px solid rgba(255, 90, 44, 0.12);
  border-radius: 32px;
  padding: 48px 64px;
  max-width: 960px;
  width: calc(100% - 40px);
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(255, 90, 44, 0.08), 0 4px 16px rgba(9, 9, 11, 0.02);
  box-sizing: border-box;
  text-align: center;
}

.arbrax-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-text-dark);
  background-color: rgba(9, 9, 11, 0.04);
  border: 1px solid rgba(9, 9, 11, 0.1);
  padding: 6px 14px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  margin: 0 auto 16px auto;
}

.arbrax-founder-heading {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-dark);
  margin-top: 16px;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.arbrax-founder-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.arbrax-founder-subtitle-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
  gap: 8px;
}

.arbrax-founder-avatar-wrapper {
  display: block;
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.arbrax-founder-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.08);
  cursor: pointer;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: transform 350ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arbrax-founder-avatar-wrapper:hover .arbrax-founder-avatar {
  transform: scale(1.08);
}

/* Floating Icons */
.arbrax-founder-badge-link {
  position: absolute;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(9, 9, 11, 0.12);
  color: var(--color-text-dark);
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 300ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s, color 0.2s;
}

.arbrax-founder-badge-link svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.x-link {
  top: -8px;
  left: -8px;
  transform: translate(12px, 12px) scale(0) rotate(-45deg);
}

.instagram-link {
  top: -8px;
  right: -8px;
  transform: translate(-12px, 12px) scale(0) rotate(45deg);
}

.arbrax-founder-avatar-wrapper:hover .arbrax-founder-badge-link {
  opacity: 1;
  pointer-events: auto;
}

.arbrax-founder-avatar-wrapper:hover .x-link {
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.arbrax-founder-avatar-wrapper:hover .instagram-link {
  transform: translate(0, 0) scale(1) rotate(0deg);
}

.arbrax-founder-badge-link:hover {
  transform: scale(1.15) !important;
  color: #ff4500;
  box-shadow: 0 6px 14px rgba(255, 90, 44, 0.18);
}

/* Handwritten Note */
.arbrax-founder-handwritten-note {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff4500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 300ms cubic-bezier(0.34, 1.56, 0.64, 1), transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.arbrax-founder-avatar-wrapper:hover .arbrax-founder-handwritten-note {
  opacity: 1;
  transform: translateX(-50%) translateY(0) rotate(-6deg);
}

.arbrax-founder-heading .sub-heading {
  display: block;
  font-size: 3rem;
  color: var(--color-text-dark-muted);
  margin-top: 0;
}

.arbrax-founder-message {
  max-width: 760px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.arbrax-founder-body-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-text-dark);
  font-weight: 500;
  margin-bottom: 20px;
}

.arbrax-founder-promise-block {
  margin-bottom: 20px;
}

.promise-line {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-dark-muted);
  margin-bottom: 8px;
}

.promise-line.highlight {
  color: #ff4500;
}

.arbrax-founder-card-divider {
  border: none;
  border-top: 1px solid rgba(9, 9, 11, 0.06);
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
}

.arbrax-founder-signature {
  font-size: 1.2rem;
  line-height: 1.4;
}

.signature-line {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.signature-title {
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 4px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .arbrax-founder-row {
    gap: 12px;
    flex-wrap: wrap;
  }
  .arbrax-founder-section {
    padding: 60px 0;
  }
  .arbrax-founder-card {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .arbrax-founder-heading {
    font-size: 2.25rem;
    margin-bottom: 20px;
  }
  .arbrax-founder-heading .sub-heading {
    font-size: 1.85rem;
  }
  .arbrax-founder-body-text {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
  .promise-line {
    font-size: 1.4rem;
  }
}

/* Legal page hero section */
.legal-hero {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(255, 69, 0, 0.06),
    transparent 60%
  );
  pointer-events: none;
}

/* Legal/Content Page Styles */
.legal-section {
  padding-top: 160px; /* Offset for sticky header */
  padding-bottom: 100px;
  background-color: var(--color-cream);
  color: var(--color-text-dark);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-header {
  margin-bottom: 56px;
  text-align: center;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--color-text-dark);
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
}

@media (max-width: 768px) {
  .legal-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .legal-title {
    font-size: 2.5rem;
  }
  .legal-content {
    padding: 24px;
  }
}

.legal-content section {
  margin-bottom: 40px;
}

.legal-content section:last-child {
  margin-bottom: 0;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--color-text-dark);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 8px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-dark-muted);
  margin-bottom: 20px;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-dark-muted);
  margin-bottom: 10px;
}

.legal-content strong {
  color: var(--color-text-dark);
}

.logo-text span {
  color: var(--color-accent) !important;
}

/* Onboarding Process Section CSS */
.process-section {
  padding: 100px 0;
  background-color: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Timeline Vertical Line */
.timeline-line-bg {
  position: absolute;
  left: 20%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: rgba(9, 9, 11, 0.05);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-line-fill {
  position: absolute;
  left: 20%;
  top: 0;
  height: 0%; /* Dynamic fill */
  width: 4px;
  background: var(--color-accent-gradient);
  transform: translateX(-50%);
  border-radius: 2px;
  transition: height 0.1s linear;
}

/* Moving Indicator */
.timeline-indicator-node {
  position: absolute;
  left: 20%;
  top: 0; /* Dynamic top location */
  width: 44px;
  height: 44px;
  background-color: var(--color-accent);
  border: 4px solid var(--color-cream);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  z-index: 5;
  transition: top 0.1s linear;
  color: #ffffff;
}

.indicator-arrow {
  transition: transform 0.2s ease;
}

/* Steps Rows */
.timeline-row {
  display: flex;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

/* Left Label Col */
.timeline-left {
  width: 20%;
  padding-right: 40px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.step-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background-color: rgba(9, 9, 11, 0.04);
  padding: 4px 12px;
  border-radius: var(--border-radius-pill);
  color: var(--color-text-dark-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.step-giant-text {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.1;
  margin-top: 8px;
  transform: rotate(-5deg);
}

/* Center circle Node */
.timeline-center {
  width: 1px; /* The line is behind it, we just need the spacer */
  position: relative;
}

.timeline-node {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  background-color: var(--color-cream);
  border: 4px solid rgba(9, 9, 11, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.timeline-row.active-step .timeline-node {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.15);
}

/* Right Content Col */
.timeline-right {
  width: 80%;
  padding-left: 60px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.step-card-content {
  opacity: 0.5;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.timeline-row.active-step .step-card-content {
  opacity: 1;
  transform: translateY(0);
}

.step-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.step-card-desc {
  font-size: 1.05rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

/* Mockup styles */
.step-card-mockup {
  opacity: 0.5;
  transform: scale(0.95);
  transition: all 0.5s ease;
}

.timeline-row.active-step .step-card-mockup {
  opacity: 1;
  transform: scale(1);
}

.mockup-frame {
  background-color: #ffffff;
  border: 8px solid var(--color-dark-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
}

.mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Process timeline */
@media (max-width: 991px) {
  .timeline-right {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .timeline-line-bg,
  .timeline-line-fill,
  .timeline-indicator-node {
    left: 24px;
  }
  
  .timeline-row {
    flex-direction: column;
    padding-left: 56px;
    margin-bottom: 80px;
  }
  
  .timeline-left {
    width: 100%;
    text-align: left;
    align-items: flex-start;
    padding-right: 0;
    margin-bottom: 16px;
  }
  
  .step-giant-text {
    font-size: 2.5rem;
    transform: none;
    margin-top: 4px;
  }
  
  .timeline-node {
    left: -32px;
    top: 24px;
  }
  
  .timeline-right {
    width: 100%;
    padding-left: 0;
    gap: 20px;
  }
}

/* SaaS Multi-Colored Badges & Highlights */
.badge-green, .badge-orange, .badge-purple, .badge-blue {
  background-color: var(--color-accent-alpha) !important;
  color: var(--color-accent) !important;
  border: 1px solid var(--color-border) !important;
}

/* Timeline specific updates for the Clean Blue SaaS theme */
.timeline-line-fill {
  background: var(--color-accent) !important;
}
.timeline-indicator-node {
  background: var(--color-accent) !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 6px rgba(255, 69, 0, 0.15) !important;
}
.timeline-node.active {
  background-color: var(--color-accent) !important;
  box-shadow: 0 0 0 6px rgba(255, 69, 0, 0.15) !important;
}
.step-pill {
  background-color: rgba(255, 69, 0, 0.06) !important;
  color: #e03d00 !important;
  border: 1px solid rgba(255, 69, 0, 0.15) !important;
}







