/* ==========================================================================
   AHOROS - AI Receptionists & Speed-to-Lead Voice Agents
   Design System & Master Stylesheet
   Frameworks: NONE (100% Pure Vanilla CSS)
   Color Theme: Pure White Page Sections, Frosted Glass Navbar, Black Footer
   Corner Geometry: 0px Pointed Corners (Strict Zero Border-Radius)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. FONT IMPORTS & CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Font Family Definition */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Scaled Down Type Scale System */
  --scale-12: 0.70rem;     /* ~10px - 11px */
  --scale-14: 0.80rem;     /* ~11px - 12px */
  --scale-16: 0.90rem;     /* ~13px - 14px */
  --scale-20: 1.10rem;     /* ~15px - 16px */
  --scale-24: 1.30rem;     /* ~18px - 19px */
  --scale-32: 1.65rem;     /* ~23px - 24px */
  --scale-40: 2.10rem;     /* ~29px - 30px */
  --scale-48: 2.50rem;     /* ~35px - 36px */
  --scale-64: 3.20rem;     /* ~45px - 46px */

  /* Typography Scale Specifications */
  --hero-title-size: clamp(2.60rem, 4.2vw, 3.10rem);
  --hero-title-lh: 1.18;
  --hero-title-weight: 300;

  --h2-size: clamp(1.75rem, 2.7vw, 2.05rem);
  --h2-lh: 1.22;
  --h2-weight: 600;

  --h3-size: clamp(1.05rem, 1.5vw, 1.25rem);
  --h3-lh: 1.35;
  --h3-weight: 600;

  --body-size: clamp(0.875rem, 0.95vw, 0.95rem);
  --body-lh: 1.55;
  --body-weight: 400;

  --caption-size: clamp(0.70rem, 0.85vw, 0.78rem);
  --caption-lh: 1.45;

  /* COLOR PALETTE SYSTEM */
  /* White Theme Tokens */
  --bg-white: #FFFFFF;
  --bg-surface-light: #F8FAFC;
  --text-dark: #09090B;
  --text-body-dark: #27272A;
  --text-muted-dark: #71717A;
  --border-light: #E4E4E7;

  /* Black Theme Tokens */
  --bg-black: #09090B;
  --bg-surface-dark: #121215;
  --text-light: #FFFFFF;
  --text-body-light: #E4E4E7;
  --text-muted-light: #A1A1AA;
  --border-dark: #27272A;

  /* TERTIARY TURQUOISE ACCENT COLOR */
  --accent-2percent: #40E0D0;        /* Turquoise */
  --accent-2percent-light: rgba(64, 224, 208, 0.12);

  /* Layout & Spacing - STRICT ZERO CORNER RADII (POINTED CORNERS) */
  --container-max: 1440px;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-full: 0px;

  --shadow-card-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-card-dark: 0 15px 35px rgba(0, 0, 0, 0.4);

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

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important; /* Global Pointed Corners Enforcement */
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
  background-color: var(--bg-white);
  color: var(--text-dark);
}

body {
  font-family: var(--font-primary);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  font-weight: var(--body-weight);
  background: var(--bg-white);
  color: var(--text-body-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select {
  font-family: inherit;
  font-size: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 0.85rem;
  position: relative;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY CLASSES & ALTERNATING SECTION THEMES
   -------------------------------------------------------------------------- */
.display-hero {
  font-size: var(--hero-title-size);
  line-height: var(--hero-title-lh);
  font-weight: var(--hero-title-weight);
  letter-spacing: -0.01em;
}

.heading-section {
  font-size: var(--h2-size);
  line-height: var(--h2-lh);
  font-weight: var(--h2-weight);
  letter-spacing: -0.02em;
}

.heading-card {
  font-size: var(--h3-size);
  line-height: var(--h3-lh);
  font-weight: var(--h3-weight);
}

.body-standard {
  font-size: var(--body-size);
  line-height: var(--body-lh);
}

.text-small {
  font-size: var(--caption-size);
  line-height: var(--caption-lh);
}

.text-accent-2pct {
  color: var(--accent-2percent) !important;
  font-weight: 500;
}

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

.section-padding {
  padding: 5.5rem 0;
  position: relative;
}

.theme-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
}
.theme-white .heading-section,
.theme-white .heading-card { color: var(--text-dark); }
.theme-white .body-standard { color: var(--text-muted-dark); }
.theme-white .text-small { color: var(--text-muted-dark); }

.theme-black {
  background-color: var(--bg-black);
  color: var(--text-light);
}
.theme-black .heading-section,
.theme-black .heading-card { color: var(--text-light); }
.theme-black .body-standard { color: var(--text-muted-light); }
.theme-black .text-small { color: var(--text-muted-light); }

/* --------------------------------------------------------------------------
   4. FROSTED GLASS (GLASSMORPHISM) NAVIGATION BAR SYSTEM (POINTED EDGES)
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper.scrolled {
  top: 0;
}

.navbar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40%;
  min-width: 320px;
  padding: 0.625rem 1.4rem;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(255, 255, 255, 0.5) inset;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-wrapper:not(.scrolled) .nav-left {
  display: none;
}

.navbar-wrapper:not(.scrolled) .nav-link-pricing-pill {
  display: inline-block;
}

.brand-logo-full {
  height: 26px;
  max-height: 26px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-logo-expanded {
  height: 28px;
  max-height: 28px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  flex-shrink: 0;
}

.navbar-wrapper:not(.scrolled) .brand-logo-full {
  display: block;
  filter: none;
}

.navbar-wrapper:not(.scrolled) .brand-logo-expanded {
  display: none;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-pill-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: #09090B;
  transition: var(--transition-fast);
}

.nav-pill-link:hover {
  color: var(--accent-2percent);
  opacity: 0.85;
}

/* Scrolled Expanded Frosted Header */
.navbar-wrapper.scrolled .navbar-inner {
  width: 100%;
  max-width: 100%;
  border-radius: 0 !important;
  border-top: none; border-left: none; border-right: none;
  border-bottom: 1px solid rgba(228, 228, 231, 0.7);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-wrapper.scrolled .nav-brand {
  margin: 0;
}

.navbar-wrapper.scrolled .brand-logo-full {
  display: none;
}

.navbar-wrapper.scrolled .brand-logo-expanded {
  display: block;
  filter: none;
}

.navbar-wrapper.scrolled .nav-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Both buttons on right side with pointed corners */
.navbar-wrapper.scrolled #btn-nav-pricing,
.navbar-wrapper.scrolled #btn-nav-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.25rem;
  background: #09090B;
  color: #FFFFFF;
  border: 1px solid #09090B;
  border-radius: 0 !important;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled #btn-nav-pricing:hover,
.navbar-wrapper.scrolled #btn-nav-login:hover {
  background: #18181B;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   5. BUTTONS & BADGES (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0 !important;
  font-size: var(--scale-16);
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--text-dark);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: #18181B;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-white {
  background: #FFFFFF;
  color: var(--text-dark);
}
.btn-white:hover {
  background: #F4F4F5;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover {
  background: var(--bg-surface-light);
  border-color: #D4D4D8;
  transform: translateY(-2px);
}

/* Simple text badge style without round button borders/backgrounds */
.badge-tag {
  display: inline-block;
  background: transparent !important;
  border: none !important;
  padding: 0 0 0.25rem 0 !important;
  border-radius: 0 !important;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
}

.theme-white .badge-tag {
  color: var(--text-muted-dark);
}

.theme-black .badge-tag {
  color: var(--text-muted-light);
}

/* --------------------------------------------------------------------------
   6. SECTION 1: HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 20.5rem;
  padding-bottom: 4rem;
  position: relative;
}

.hero-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-rotating-wrapper {
  display: inline-block;
  position: relative;
  text-align: center;
  min-height: 1.25em;
}

.hero-rotating-text {
  display: inline-block;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: translateY(0);
  white-space: nowrap;
}

.hero-rotating-text.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  margin-top: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero-stat-num {
  font-size: var(--scale-32);
  font-weight: 700;
  color: var(--text-dark);
}

.hero-stat-label {
  font-size: var(--scale-12);
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   6B. CLIENT LOGOS CAROUSEL / MARQUEE SECTION
   -------------------------------------------------------------------------- */
.client-carousel-section {
  padding: 2.5rem 0 4.5rem;
  background-color: var(--bg-white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.logo-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  width: max-content;
  animation: marqueeSwipe 35s linear infinite;
}

.logo-marquee-wrapper:hover .logo-marquee-track {
  animation-play-state: paused;
}

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.client-logo-item img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo-item:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.12);
}

@keyframes marqueeSwipe {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   7. SECTION 2: SPEED TO LEAD BENCHMARK (FULL-BLEED BORDERLESS 50/50 SPLIT)
   -------------------------------------------------------------------------- */
.speed-split-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  min-height: 420px;
}

.speed-split-half {
  flex: 1;
  width: 50%;
  padding: 4.5rem 3rem;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 0 !important;
  box-shadow: none;
}

.speed-split-half.old-way {
  background: var(--bg-surface-light);
  justify-content: flex-end;
}

.speed-split-half.ahoros-way {
  background: var(--bg-black);
  justify-content: flex-start;
  color: #FFFFFF;
}

.speed-split-inner {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.speed-split-half.old-way .speed-split-inner {
  padding-right: 2.5rem;
}

.speed-split-half.ahoros-way .speed-split-inner {
  padding-left: 2.5rem;
}

.old-way .comp-metric {
  color: #09090B;
  font-size: var(--scale-48);
  font-weight: 700;
}

.ahoros-way .comp-metric {
  color: var(--accent-2percent);
  font-size: var(--scale-48);
  font-weight: 700;
}

.comp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: var(--scale-14);
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   7B. FOCUS-SCALING TALL VERTICAL CAROUSEL (SIDE ARROWS)
   -------------------------------------------------------------------------- */
.receptionist-carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 3rem 0 3.5rem;
}

/* Minimal Pure Side Navigation Arrows (No Box Container) */
.carousel-side-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  z-index: 30;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--text-dark);
  padding: 0.5rem;
  cursor: pointer;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.75;
}

.carousel-side-arrow.prev-btn {
  left: 2.5rem;
}

.carousel-side-arrow.next-btn {
  right: 2.5rem;
}

.carousel-side-arrow:hover {
  color: var(--accent-2percent);
  opacity: 1;
  transform: translateY(-50%) scale(1.25);
}

.receptionist-carousel-track {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Vertically Tall Portrait Card Dimensions */
.receptionist-card-item {
  flex: 0 0 340px;
  max-width: 340px;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.45;
  transform: scale(0.85);
  cursor: pointer;
  filter: blur(1px);
}

.receptionist-card-item.active {
  opacity: 1;
  transform: scale(1.08);
  filter: blur(0);
  z-index: 10;
}

.receptionist-card-item.prev-item,
.receptionist-card-item.next-item {
  opacity: 0.7;
  transform: scale(0.92);
  filter: blur(0);
}

.receptionist-card-inner {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 2.75rem 2.25rem;
  height: 520px; /* Expanded Vertically Tall Height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.receptionist-card-item.active .receptionist-card-inner {
  background: var(--bg-black);
  color: #FFFFFF;
  border-color: var(--text-dark);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.receptionist-card-item.active .feature-icon {
  background: var(--accent-2percent);
  color: #09090B;
  border-color: var(--accent-2percent);
}

.receptionist-card-item.active .heading-card {
  color: #FFFFFF;
}

.receptionist-card-item.active .body-standard {
  color: #E4E4E7;
}

.card-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted-dark);
}

.card-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}

.card-bullet-list li svg {
  color: var(--text-dark);
  flex-shrink: 0;
}

.receptionist-card-item.active .card-bullet-list {
  color: #D4D4D8;
}

.receptionist-card-item.active .card-bullet-list li svg {
  color: var(--accent-2percent);
}

.card-feature-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-dark);
  border-top: 1px solid var(--border-light);
  padding-top: 1.25rem;
  width: 100%;
}

.receptionist-card-item.active .card-feature-tag {
  color: var(--accent-2percent);
  border-top-color: var(--border-dark);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  background: var(--border-light);
  border-radius: 0 !important;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dots .dot.active {
  background: var(--text-dark);
  width: 24px;
}

/* --------------------------------------------------------------------------
   8. SECTION 3: INDUSTRY USE-CASES (POINTED CORNERS & CENTERED DISPLAY)
   -------------------------------------------------------------------------- */
.usecase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.25rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted-dark);
  padding: 0.65rem 1.35rem;
  border-radius: 0 !important;
  font-size: var(--scale-14);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--text-dark);
  color: #FFFFFF;
  border-color: var(--text-dark);
}

.usecase-display {
  margin-top: 2.5rem;
  background: var(--bg-surface-light);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-card-light);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.usecase-metrics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.metric-pill {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 0.85rem 1.75rem;
  border-radius: 0 !important;
  text-align: center;
}

.metric-pill span {
  display: block;
  font-size: var(--scale-24);
  font-weight: 700;
  color: var(--text-dark);
}

.metric-pill small {
  font-size: var(--scale-12);
  color: var(--text-muted-dark);
}

/* --------------------------------------------------------------------------
   9. SECTION 4: INTERACTIVE ROI CALCULATOR (UNBOXED PURE BLACK THEME)
   -------------------------------------------------------------------------- */
.calculator-box {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: none;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.input-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-header label {
  font-size: var(--scale-16);
  font-weight: 500;
  color: #FFFFFF;
}

.input-header .value-val {
  font-size: var(--scale-18);
  font-weight: 700;
  color: #FFFFFF;
}

.custom-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 7px;
  border-radius: 0 !important;
  background: #27272A;
  outline: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 0 !important; /* Pointed Square Thumb Handle */
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-slider::-webkit-slider-thumb:hover {
  background: #40E0D0;
  border-color: #40E0D0;
  transform: scale(1.18);
  box-shadow: 0 0 12px rgba(64, 224, 208, 0.5);
}

.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 0 !important;
  background: #FFFFFF;
  cursor: pointer;
  border: 1px solid #FFFFFF;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-slider::-moz-range-thumb:hover {
  background: #40E0D0;
  border-color: #40E0D0;
  transform: scale(1.18);
}

.calc-results {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.result-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 0 !important;
}

.calc-metric-label {
  font-size: 0.92rem !important;
  font-weight: 500;
  color: #A1A1AA;
  line-height: 1.4;
}

.result-card.highlight .result-amount {
  font-size: var(--scale-48);
  font-weight: 700;
  color: var(--accent-2percent);
}

.result-amount {
  font-size: var(--scale-32);
  font-weight: 700;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   10. SECTION 5: FEATURES GRID (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.feature-card:hover {
  border-color: #A1A1AA;
  box-shadow: var(--shadow-card-light);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 0 !important;
  background: var(--bg-surface-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.feature-card:hover .feature-icon {
  background: var(--text-dark);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   11. SECTION 6: VOICE PLAYGROUND (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.voice-sample-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  box-shadow: var(--shadow-card-light);
}

.voice-player-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-surface-light);
  padding: 0.75rem 1.15rem;
  border-radius: 0 !important;
  border: 1px solid var(--border-light);
}

.play-sample-btn {
  width: 36px;
  height: 36px;
  border-radius: 0 !important;
  background: var(--text-dark);
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.play-sample-btn:hover {
  transform: scale(1.08);
  background: #18181B;
}

/* --------------------------------------------------------------------------
   12. SECTION 7: PRICING SECTION (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.pricing-toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.pricing-switch {
  position: relative;
  width: 52px;
  height: 26px;
}

.pricing-switch input {
  opacity: 0; width: 0; height: 0;
}

.slider-toggle {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--border-light);
  transition: var(--transition-fast);
  border-radius: 0 !important;
}

.slider-toggle:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 4px; bottom: 4px;
  background-color: var(--text-dark);
  transition: var(--transition-fast);
  border-radius: 0 !important;
}

input:checked + .slider-toggle:before {
  transform: translateX(26px);
  background-color: var(--text-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.popular {
  background: var(--bg-black);
  color: #FFFFFF;
  border-color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}

.pricing-card.popular .heading-card,
.pricing-card.popular .price-amount {
  color: #FFFFFF;
}

.pricing-card.popular .body-standard {
  color: var(--text-muted-light);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  color: var(--text-dark);
  font-size: var(--scale-12);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 0 !important;
}

.price-amount {
  font-size: var(--scale-48);
  font-weight: 700;
  color: var(--text-dark);
}

.price-period {
  font-size: var(--scale-16);
  color: var(--text-muted-dark);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: var(--scale-14);
}

.pricing-card:not(.popular) .pricing-features { color: var(--text-body-dark); }
.pricing-card.popular .pricing-features { color: #E4E4E7; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pricing-features li svg {
  color: var(--text-dark);
  flex-shrink: 0;
}
.pricing-card.popular .pricing-features li svg {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   13. SECTION 8: TESTIMONIALS (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: var(--shadow-card-light);
  color: var(--text-body-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 0 !important;
  background: var(--bg-surface-light);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   14. MODAL DIALOG (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-muted-dark);
  font-size: 1.35rem;
  cursor: pointer;
}

.modal-close:hover { color: var(--text-dark); }

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-top: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-field label {
  font-size: var(--scale-14);
  font-weight: 500;
  color: var(--text-dark);
}

.form-input {
  background: var(--bg-surface-light);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  padding: 0.75rem 0.9rem;
  color: var(--text-dark);
  outline: none;
}

.form-input:focus {
  border-color: var(--text-dark);
  box-shadow: 0 0 0 2px var(--border-light);
}

/* --------------------------------------------------------------------------
   15. FOOTER (PERMANENT BLACK THEME)
   -------------------------------------------------------------------------- */
.footer {
  background: #040508;
  color: #FFFFFF;
  padding-top: 4.5rem;
  padding-bottom: 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.footer-col h4 {
  font-size: var(--scale-16);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: var(--scale-14);
  color: var(--text-muted-light);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--caption-size);
  color: var(--text-muted-light);
}

.footer-logo-white {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Gigantic White Logo at Extreme Bottom of Footer */
.footer-gigantic-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 0;
  margin-bottom: -1rem;
  overflow: hidden;
}

.footer-gigantic-logo img {
  width: 100%;
  max-width: 1350px;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
}

/* --------------------------------------------------------------------------
   15B. DEDICATED PRICING MATRIX TABLE & FAQ ACCORDION (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.matrix-scroll-hint {
  display: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-2percent);
  background: #09090B;
  padding: 0.45rem 1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.pricing-matrix-wrapper {
  margin-top: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-light);
}

.matrix-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
  border-radius: 0 !important;
  background: var(--bg-white);
}

.matrix-table th,
.matrix-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  border-radius: 0 !important;
  vertical-align: middle;
}

.matrix-table th {
  background: var(--bg-surface-light);
  font-size: var(--scale-16);
  font-weight: 600;
  color: var(--text-dark);
}

.matrix-table th.col-popular {
  background: var(--bg-black);
  color: #FFFFFF;
  border-bottom-color: var(--border-dark);
}

.matrix-table tr.category-row td {
  background: #09090B;
  font-weight: 700;
  font-size: var(--scale-12);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-2percent);
  padding: 0.75rem 1.25rem;
}

.matrix-table td.col-popular {
  background: rgba(9, 9, 11, 0.03);
  font-weight: 600;
}

.matrix-table svg.check-icon {
  color: var(--accent-2percent);
}

.matrix-table svg.dash-icon {
  color: #D4D4D8;
}

/* FAQ Accordion */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--scale-18);
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--text-dark);
  box-shadow: var(--shadow-card-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-icon-toggle {
  transition: transform 0.35s ease;
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   15C. DEDICATED SPLIT LOGIN & SIGN-UP PAGE (POINTED CORNERS)
   -------------------------------------------------------------------------- */
.login-split-page {
  min-height: 100vh;
  width: 100vw;
  display: flex;
  background: var(--bg-white);
  overflow-x: hidden;
}

.login-left-col {
  flex: 1.1;
  background: var(--bg-white);
  padding: 3.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.login-right-col {
  flex: 0.9;
  background: #040508;
  color: #FFFFFF;
  padding: 4.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border-left: 1px solid var(--border-dark);
}

.login-form-box {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.social-login-grid {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 0 !important;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-social:hover {
  background: var(--bg-surface-light);
  border-color: #A1A1AA;
}

.divider-row {
  display: flex;
  align-items: center;
  margin: 1.75rem 0;
  color: var(--text-muted-dark);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.divider-row::before,
.divider-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-light);
}

.divider-row span {
  padding: 0 1rem;
}

.random-service-box {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.random-service-card {
  background: #09090B;
  border: 1px solid var(--border-dark);
  border-radius: 0 !important;
  padding: 2.5rem 2rem;
  width: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  text-align: center;
}

/* --------------------------------------------------------------------------
   16. RESPONSIVE BREAKPOINTS & MOBILE-FIRST RATIOS
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .navbar-inner {
    width: 65%;
  }
  .navbar-wrapper.scrolled .navbar-inner {
    padding: 0.75rem 1.5rem;
  }
  .calculator-box {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .features-grid, .pricing-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  /* Dedicated Split Login Page Mobile Layout */
  .login-split-page {
    flex-direction: column;
    min-height: auto;
    width: 100vw;
    overflow-x: hidden;
  }
  .login-left-col {
    flex: none;
    width: 100%;
    min-height: auto;
    padding: 2.5rem 1.75rem 3rem;
  }
  .login-right-col {
    flex: none;
    width: 100%;
    padding: 3.5rem 1.75rem;
    border-left: none;
    border-top: 1px solid var(--border-dark);
  }

  /* 50/50 Split Speed Benchmark */
  .speed-split-wrapper {
    flex-direction: column;
    width: 100%;
    left: 0; right: 0; margin: 0;
    min-height: auto;
  }
  .speed-split-half {
    width: 100%;
    padding: 3rem 1.5rem;
  }
  .speed-split-half.old-way .speed-split-inner,
  .speed-split-half.ahoros-way .speed-split-inner {
    padding: 0;
    max-width: 100%;
  }
}

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

  /* Navbar System */
  .navbar-inner {
    width: 90%;
    padding: 0.5rem 1rem;
    min-width: auto;
  }
  .navbar-wrapper.scrolled .navbar-inner {
    padding: 0.5rem 1rem;
  }
  .brand-logo-full,
  .brand-logo-expanded {
    max-width: 135px;
    height: 22px;
  }

  /* Hero Section Ratios */
  .hero {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .hero-rotating-text {
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
  .hero-rotating-wrapper {
    min-height: auto;
    width: 100%;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 1.5rem;
    margin-top: 1.25rem;
  }

  /* Grids to 1 Column */
  .features-grid, .pricing-grid, .testimonials-grid, .voice-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.popular {
    transform: none;
  }

  /* Receptionist Vertical Carousel Mobile Touch Scaling */
  .receptionist-carousel-container {
    padding: 2rem 0 4.5rem;
  }
  .receptionist-carousel-track {
    gap: 1.25rem;
  }
  .receptionist-card-item {
    flex: 0 0 calc(100vw - 3rem);
    max-width: calc(100vw - 3rem);
    opacity: 0.5;
    transform: scale(0.92);
  }
  .receptionist-card-item.active {
    opacity: 1;
    transform: scale(1.0);
  }
  .receptionist-card-inner {
    height: auto;
    min-height: 480px;
    padding: 2rem 1.4rem;
  }
  .carousel-side-arrow {
    top: auto;
    bottom: 0.75rem;
    transform: none;
    background: #09090B !important;
    color: #FFFFFF !important;
    border: 1px solid var(--border-dark) !important;
    padding: 0.4rem 0.75rem;
    z-index: 50;
  }
  .carousel-side-arrow:hover {
    transform: scale(1.1);
    color: var(--accent-2percent) !important;
  }
  .carousel-side-arrow.prev-btn {
    left: calc(50% - 3.75rem);
  }
  .carousel-side-arrow.next-btn {
    right: calc(50% - 3.75rem);
  }

  /* Industry Use-Cases */
  .usecase-display {
    padding: 2rem 1.25rem;
  }
  .usecase-tabs {
    gap: 0.5rem;
  }
  .tab-btn {
    padding: 0.5rem 0.95rem;
    font-size: var(--scale-14);
  }

  /* Pricing Matrix Table Mobile Alignment */
  .matrix-scroll-hint {
    display: block;
  }
  .pricing-matrix-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 1.25rem;
  }
  .matrix-table {
    min-width: 740px;
  }
  .matrix-table th,
  .matrix-table td {
    padding: 0.85rem 1rem;
    font-size: 0.82rem;
  }

  /* Trust Badges */
  .pricing-trust-badges {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem !important;
  }

  /* Footer */
  .footer {
    padding-top: 3.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-gigantic-logo {
    padding-top: 2.5rem;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 2.75rem 0;
  }
  .container {
    padding: 0 1rem;
  }

  /* Navbar */
  .navbar-inner {
    width: 94%;
    padding: 0.45rem 0.75rem;
  }
  .navbar-wrapper.scrolled #btn-nav-pricing,
  .navbar-wrapper.scrolled #btn-nav-login {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
  }

  /* Hero CTAs */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-cta-group .btn {
    width: 100%;
    padding: 0.85rem 1rem;
  }

  /* Login Form Mobile */
  .login-left-col {
    padding: 1.75rem 1rem 2.25rem;
  }
  .login-right-col {
    padding: 2.25rem 1rem;
  }
  .social-login-grid {
    flex-direction: column;
    gap: 0.65rem;
  }

  /* Receptionist Carousel Mobile 480px */
  .receptionist-card-item {
    flex: 0 0 calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
  }
  .receptionist-card-inner {
    padding: 1.6rem 1.15rem;
    min-height: 440px;
  }
  .card-bullet-list {
    font-size: 0.78rem;
    gap: 0.5rem;
  }

  /* Use-Cases Metrics */
  .usecase-metrics {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .metric-pill {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  /* ROI Calculator Results */
  .result-card.highlight .result-amount {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
  }
  .result-amount {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .footer-gigantic-logo {
    padding-top: 1.5rem;
  }
}
