/* ==========================================
   RESET
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  background: #ffffff;
  color: #1f2340;
  line-height: 1.6;
}

/* ==========================================
   VARIABLES
========================================== */

:root {
  --primary: #221c63;
  --primary-light: #6f5cff;

  --pink: #ff7eb6;
  --peach: #ffbb91;
  --lavender: #cdbfff;

  --white: #ffffff;

  --dark: #17172c;
  --dark-2: #25253e;

  --text: #23243a;
  --text-light: #6f7287;

  --border: rgba(255, 255, 255, 0.2);

  --shadow-lg: 0 30px 80px rgba(34, 28, 99, 0.12);

  --shadow-md: 0 15px 40px rgba(34, 28, 99, 0.08);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

/* ==========================================
   CONTAINER
========================================== */

.container {
  width: min(1720px, 95%);
  margin: auto;
}

/* ==========================================
   SECTION
========================================== */

section {
  position: relative;
}

.section-tag {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 10px 18px;

  border-radius: 999px;

  background: rgba(111, 92, 255, 0.08);

  color: var(--primary);

  font-size: 0.85rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.section-tag.dark {
  background: rgba(255, 255, 255, 0.1);

  color: white;
}

.section-heading {
  margin-bottom: 60px;
}

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

.section-heading h2 {
  margin-top: 18px;

  font-size: clamp(2rem, 5vw, 4rem);

  line-height: 1.1;

  font-weight: 800;
}

.section-heading p {
  margin-top: 18px;

  color: var(--text-light);

  max-width: 700px;

  margin-inline: auto;
}

/* ==========================================
   BUTTONS
========================================== */

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  text-decoration: none;

  border: none;

  cursor: pointer;

  transition: 0.35s ease;

  font-weight: 700;
}

.btn-primary {
  background: #d12984;
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(209, 41, 132, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: #bf2176;
  box-shadow: 0 14px 30px rgba(209, 41, 132, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(23, 21, 58, 0.1);
  color: #17153a;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(23, 21, 58, 0.04);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(23, 21, 58, 0.2);
  color: #17153a;
  box-shadow: 0 8px 20px rgba(23, 21, 58, 0.08);
}

.btn-outline {
  color: #17153a;
  border: 1px solid rgba(23, 21, 58, 0.12);
  background: transparent;
  padding: 14px 24px;
  border-radius: 999px;
}

.btn-outline:hover {
  background: rgba(23, 21, 58, 0.04);
  border-color: rgba(23, 21, 58, 0.25);
  /* transform: translateY(-2px); */
}

.btn-large {
  padding: 18px 32px;
}

/* ==========================================
   GRADIENT BLOBS
========================================== */

.gradient-blob {
  position: absolute;

  border-radius: 50%;

  filter: blur(100px);

  opacity: 0.65;

  z-index: -1;
}

.blob-2 {
  width: 500px;
  height: 500px;

  background: #ffd2e8;

  right: -180px;
  top: 380px;
}

.blob-3 {
  width: 400px;
  height: 400px;

  background: #ffd8b7;

  bottom: 0;
  left: 35%;
}

/* ==========================================
   NAVBAR
========================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding-top: 16px;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding-top: 10px;
}

.navbar.container {
  width: min(1580px, 95%);
  max-width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 28px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(23, 21, 58, 0.03);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header.scrolled .navbar.container {
  width: min(1720px, 95%);
}

.header.scrolled .navbar {
  box-shadow: 0 10px 30px rgba(23, 21, 58, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 36px;
}

.navbar .btn-primary {
  box-shadow: none;
}

.navbar .btn-primary:hover {
  transform: none;
  box-shadow: 0 6px 16px rgba(209, 41, 132, 0.2);
}

.logo {
  display: flex;

  align-items: center;

  gap: 12px;

  text-decoration: none;

  color: #141236;

  font-weight: 800;

  font-size: 1.15rem;
}

.logo-icon {
  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: #fffaf3;

  color: #b95f41;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(185, 95, 65, 0.22);

  box-shadow: inset 0 0 0 6px rgba(255, 236, 218, 0.8);
}

.nav-links {
  display: flex;

  align-items: center;

  gap: 28px;

  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: var(--text);

  font-weight: 600;

  transition: 0.3s;
}

.nav-links a:hover {
  color: #b95f41;
}

.nav-actions {
  display: flex;

  align-items: center;

  gap: 12px;
}

.mobile-menu-btn {
  display: none;

  border: none;

  background: transparent;

  font-size: 1.3rem;

  cursor: pointer;

  color: var(--primary);
}

/* ==========================================
   HERO (ARCADE STYLE REDESIGN)
========================================== */

.hero-arcade {
  padding-top: 180px;
  padding-bottom: 80px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Blend overlays to prevent sharp seams at top/bottom boundaries */
.hero-arcade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, #ffffff 20%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-arcade::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, #ffffff 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* Blurry Gradient Blobs (Mangomint Style) */
.hero-blur-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.blob-left {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(111, 92, 255, 0.5) 0%,
    rgba(34, 28, 99, 0.08) 70%,
    transparent 100%
  );
  left: -50px;
  bottom: -30px;
}

.blob-middle {
  width: 750px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(255, 187, 145, 0.55) 0%,
    /* Peach */ rgba(255, 126, 182, 0.4) 40%,
    /* Pink */ rgba(111, 92, 255, 0.15) 75%,
    /* Lavender/Purple */ transparent 100%
  );
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
}

.blob-right {
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(255, 126, 182, 0.45) 0%,
    rgba(209, 41, 132, 0.08) 70%,
    transparent 100%
  );
  right: -50px;
  bottom: -50px;
}

.hero-arcade-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin-inline: auto;
  padding-inline: 24px;
}

.hero-arcade-title {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.1;
  font-weight: 800;
  color: #17153a;
  max-width: 850px;
  margin-inline: auto;
  margin-bottom: 22px;
  letter-spacing: -0.025em;
}

.hero-arcade-description {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  line-height: 1.6;
  color: #555273;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 36px;
}

/* Hero Action Buttons */
.hero-arcade-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 74px;
  flex-wrap: wrap;
}

/* Trust Footer */
.hero-arcade-trust-footer {
  width: 100%;
  border-top: 1px solid rgba(23, 21, 58, 0.06);
  padding-top: 36px;
  text-align: center;
}

.hero-arcade-trust-footer .trust-title {
  font-size: 0.7rem;
  color: #8c88ad;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #555273;
  opacity: 0.65;
  display: flex;
  align-items: center;
  gap: 6px;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.trust-logos span:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.trust-logos i {
  color: #d12984;
}

/* ==========================================
   INTERACTIVE MOCKUPS
========================================== */

.hero-mockups {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 520px;
  margin-inline: auto;
  margin-top: 20px;
}

/* Browser Mockup */
.mockup-main-browser {
  width: min(780px, 95vw);
  height: 500px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 35px 90px rgba(26, 23, 56, 0.12);
  z-index: 10;
  overflow: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.browser-header {
  height: 44px;
  background: #f6f5f8;
  border-bottom: 1px solid #e8e7ec;
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

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

.browser-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) {
  background: #ff5f56;
}
.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}
.browser-dots span:nth-child(3) {
  background: #27c93f;
}

.browser-address {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #eae9ee;
  color: #686578;
  font-size: 0.7rem;
  padding: 5px 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  width: 250px;
  justify-content: center;
}

.browser-body {
  display: flex;
  height: calc(100% - 44px);
  background: #fffdfb;
}

/* Side Navigation Inside Dashboard Mockup */
.dashboard-nav-sidebar {
  width: 170px;
  background: #17153a;
  color: #9ca3af;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-logo {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 8px;
}

.sidebar-logo i {
  color: #d12984;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-links span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #8c88ad;
}

.sidebar-links span i {
  font-size: 0.8rem;
  width: 14px;
}

.sidebar-links span.active,
.sidebar-links span:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-tab-content {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
  height: 100%;
  text-align: left;
}

.tab-panel {
  display: none;
  height: 100%;
}

.tab-panel.active {
  display: block;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.panel-header h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #17153a;
  margin: 0;
  line-height: 1.2;
}

.panel-header p {
  font-size: 0.75rem;
  color: #7c798e;
  margin: 2px 0 0;
}

.btn-add-appt {
  background: #17153a;
  color: white;
  border: none;
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.btn-add-appt:hover {
  background: #d12984;
}

/* Calendar View Mockup */
.calendar-grid-mock {
  display: flex;
  gap: 10px;
  height: 290px;
  border: 1px solid #eae7ef;
  border-radius: 10px;
  padding: 10px;
  background: #faf9fc;
  position: relative;
}

.time-column {
  width: 58px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #9c99b8;
  font-weight: 600;
  height: 100%;
  padding-top: 36px;
  padding-bottom: 6px;
}

.staff-columns {
  flex: 1;
  display: flex;
  gap: 8px;
  height: 100%;
}

.staff-col {
  flex: 1;
  background: white;
  border: 1px solid #eeecef;
  border-radius: 6px;
  position: relative;
  height: 100%;
}

.staff-header-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-bottom: 1px solid #eeecef;
  background: #fbfbfd;
  border-radius: 6px 6px 0 0;
}

.staff-header-card img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.staff-header-card span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #17153a;
}

.appt-block {
  position: absolute;
  left: 5px;
  right: 5px;
  border-radius: 5px;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid;
  font-size: 0.6rem;
  line-height: 1.2;
}

.appt-block strong {
  display: block;
  font-weight: 700;
}

.appt-block span {
  font-size: 0.55rem;
  opacity: 0.85;
}

.appt-purple {
  background: #f3efff;
  color: #5b21b6;
  border-left-color: #7c3aed;
}

.appt-pink {
  background: #fdf2f8;
  color: #9d174d;
  border-left-color: #db2777;
}

.appt-blue {
  background: #eff6ff;
  color: #1e40af;
  border-left-color: #2563eb;
}

.appt-green {
  background: #ecfdf5;
  color: #065f46;
  border-left-color: #059669;
}

.appt-yellow {
  background: #fffbeb;
  color: #92400e;
  border-left-color: #d97706;
}

/* Online Booking Setup Mockup */
.booking-flow-setup {
  display: flex;
  gap: 14px;
  height: calc(100% - 48px);
}

.preview-section {
  flex: 1.2;
  background: #fcfbfe;
  border: 1px solid #eae7ef;
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
}

.booking-widget-mock {
  background: white;
  border: 1px solid #eeecef;
  border-radius: 6px;
  padding: 8px;
}

.widget-step {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  color: #9ca3af;
  margin-right: 5px;
}

.widget-step.active {
  color: #d12984;
}

.widget-services-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 8px;
}

.widget-service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px;
  background: #faf9fb;
  border-radius: 5px;
  border: 1px solid #f2f0f4;
}

.widget-service-row strong {
  display: block;
  font-size: 0.7rem;
  color: #17153a;
}

.widget-service-row p {
  font-size: 0.55rem;
  color: #7c798e;
  margin: 0;
}

.btn-widget-select {
  background: #d12984;
  color: white;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  cursor: pointer;
}

.btn-widget-select.active {
  background: #fdf2f8;
  color: #d12984;
  border: 1px solid rgba(209, 41, 132, 0.2);
}

.options-section {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: #f6f5f8;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #4a4768;
}

/* Sales & Payments Mockup */
.payments-split {
  display: flex;
  gap: 14px;
  height: 290px;
}

.cart-items {
  flex: 1.1;
  background: #faf9fc;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #eae7ef;
  display: flex;
  flex-direction: column;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1px solid #eeecef;
  font-size: 0.7rem;
  margin-bottom: 6px;
}

.cart-item-row strong {
  color: #17153a;
}

.cart-item-row span {
  display: block;
  font-size: 0.55rem;
  color: #7c798e;
}

.cart-totals {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
  border-top: 1.5px dashed #eae7ef;
}

.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: #4a4768;
}

.total-row.grand {
  font-size: 0.75rem;
  font-weight: 800;
  color: #17153a;
}

.checkout-actions {
  flex: 0.9;
  display: flex;
  flex-direction: column;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pay-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: white;
  border: 1px solid #eae7ef;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  color: #4a4768;
  cursor: pointer;
}

.pay-method i {
  color: #8c88ad;
}

.pay-method.active {
  border-color: #d12984;
  background: #fdf2f8;
  color: #d12984;
}

.pay-method.active i {
  color: #d12984;
}

/* Client CRM Mockup */
.crm-content {
  height: 290px;
}

.client-detail-card {
  background: #faf9fc;
  border: 1px solid #eae7ef;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.client-profile-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-profile-top img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.badge-tag-vip {
  background: #fef3c7;
  color: #d97706;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.55rem;
  display: inline-block;
}

.client-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
  background: white;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #eeecef;
}

.client-stats-row small {
  font-size: 0.55rem;
  color: #7c798e;
  display: block;
}

.client-stats-row strong {
  font-size: 0.8rem;
  color: #17153a;
  display: block;
}

.client-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.65rem;
}

.client-meta strong {
  color: #17153a;
}

.client-meta span {
  color: #4a4768;
}

/* Marketing Automation Mockup */
.marketing-designer {
  display: flex;
  gap: 14px;
  height: 290px;
}

.campaign-builder-preview {
  flex: 1.2;
  background: white;
  border: 1px solid #eae7ef;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campaign-header {
  background: #faf9fc;
  padding: 5px 8px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 0.55rem;
  color: #7c798e;
  border-bottom: 1px solid #eeecef;
}

.campaign-email-body {
  border: 1px solid #eeecef;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
}

.email-banner {
  background: #fdf2f8;
  width: 100%;
  padding: 8px 4px;
  border-radius: 5px;
  color: #9d174d;
}

.campaign-stats-sidebar {
  flex: 0.8;
  display: flex;
  flex-direction: column;
}

.stat-circle-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mini-stat-box {
  background: #faf9fc;
  border: 1px solid #eae7ef;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-stat-box strong {
  font-size: 0.85rem;
  color: #d12984;
}

.mini-stat-box small {
  font-size: 0.55rem;
  color: #7c798e;
}

/* ==========================================
   SIDE OVERLAPPING MOCKUPS
========================================== */

.mockup-side {
  position: absolute;
  bottom: 20px;
  height: 380px;
  background: white;
  border-radius: 20px;
  border: 5px solid #2d2948; /* Phone Bezel styling */
  box-shadow: 0 20px 60px rgba(26, 23, 56, 0.08);
  z-index: 5;
  overflow: hidden;
}

/* Left panel (Online Booking flow on mobile phone) */
.mockup-left-panel {
  width: 230px;
  left: 0px;
  transform: rotate(-5deg) translateY(15px);
  transition:
    transform 0.4s ease,
    z-index 0.4s ease;
}

.device-notch {
  width: 70px;
  height: 10px;
  background: #2d2948;
  border-radius: 0 0 7px 7px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 20;
}

.mockup-header {
  height: 34px;
  background: #faf9fc;
  border-bottom: 1px solid #eeecef;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
}

.mockup-domain {
  font-size: 0.55rem;
  color: #9ca3af;
  font-weight: 500;
}

.mockup-body {
  height: calc(100% - 34px);
  padding: 8px;
  background: #fff;
  text-align: left;
}

.booking-mobile-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  overflow: hidden;
}

.booking-mobile-barber {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #eeecef;
  padding-bottom: 6px;
}

.booking-mobile-barber img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.booking-mobile-barber strong {
  display: block;
  font-size: 0.65rem;
  color: #17153a;
}

.booking-mobile-barber small {
  display: block;
  font-size: 0.5rem;
  color: #10b981;
  font-weight: 600;
}

.booking-mobile-services {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.booking-mobile-services .service-pill {
  font-size: 0.5rem;
  padding: 3px 6px;
  background: #f3f4f6;
  border-radius: 99px;
  color: #4b5563;
  font-weight: 600;
}

.booking-mobile-services .service-pill.active {
  background: #fdf2f8;
  color: #d12984;
  border: 0.5px solid rgba(209, 41, 132, 0.2);
}

.booking-mobile-calendar-view {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendar-days {
  display: flex;
  justify-content: space-between;
}

.calendar-days .day {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3px;
  width: 24px;
  border-radius: 4px;
  background: #faf9fb;
}

.calendar-days .day.active {
  background: #d12984;
  color: white;
}

.calendar-days .day span {
  font-size: 0.45rem;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
}

.calendar-days .day.active span {
  color: rgba(255, 255, 255, 0.8);
}

.calendar-days .day strong {
  font-size: 0.55rem;
  font-weight: 700;
}

.booking-mobile-calendar-view .time-slots {
  display: flex;
  gap: 4px;
}

.booking-mobile-calendar-view .time-slot {
  flex: 1;
  text-align: center;
  font-size: 0.5rem;
  padding: 4px 0;
  background: #f3f4f6;
  border-radius: 3px;
  font-weight: 600;
  color: #4b5563;
}

.booking-mobile-calendar-view .time-slot.active {
  background: #10b981;
  color: white;
}

/* Right panel (Checkout Success on mobile phone) */
.mockup-right-panel {
  width: 230px;
  right: 0px;
  transform: rotate(5deg) translateY(15px);
  transition:
    transform 0.4s ease,
    z-index 0.4s ease;
}

.success-card-body {
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.payment-success-check {
  color: #10b981;
  font-size: 2rem;
  margin-bottom: 4px;
  animation: pulseSuccess 2s infinite;
}

@keyframes pulseSuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-amount {
  font-size: 1.35rem;
  font-weight: 800;
  color: #10b981;
}

.success-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f9fafb;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 0.55rem;
  border: 1px solid #f3f4f6;
}

.success-details div {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
}

.success-details div strong {
  color: #111827;
}

/* Bring mockup forward on hover or interactions */
.mockup-side:hover {
  transform: rotate(0deg) scale(1.03) translateY(0);
  z-index: 12;
  box-shadow: 0 25px 70px rgba(26, 23, 56, 0.16);
}
/* ==========================================
   TRUSTED BRANDS
========================================== */

.trusted-section {
  padding: 60px 0;
  overflow: hidden;
}

.trusted-section .container {
  position: relative;
  width: min(1720px, 95%);
  max-width: 100%;
  padding: 80px 60px;
}

.trusted-section .container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 247, 238, 0.75)
    ),
    radial-gradient(
      circle at 10% 20%,
      rgba(255, 187, 145, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 90% 30%,
      rgba(205, 191, 255, 0.16),
      transparent 35%
    );
  border: 1px solid rgba(23, 21, 58, 0.05);
  box-shadow: 0 30px 90px rgba(23, 21, 58, 0.04);
  z-index: -1;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.brand-card {
  min-height: 140px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  text-align: left;
  font-weight: 700;
  border: 1px solid rgba(23, 21, 58, 0.06);
  box-shadow: 0 10px 30px rgba(23, 21, 58, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(209, 41, 132, 0.2);
  box-shadow: 0 20px 40px rgba(209, 41, 132, 0.08);
}

.brand-card i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(209, 41, 132, 0.06);
  color: #d12984;
  margin-bottom: 20px;
  font-size: 1rem;
  border: 1px solid rgba(209, 41, 132, 0.1);
  transition: all 0.3s ease;
}

.brand-card:hover i {
  background: #d12984;
  color: white;
  transform: scale(1.05);
}

.brand-card strong,
.brand-card span {
  display: block;
}

.brand-card strong {
  color: #17153a;
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-card span {
  margin-top: 3px;
  color: #8c88ad;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ==========================================
   STATS
========================================== */

.stats-section {
  padding: 50px 0 100px;
}

.stats-section .container {
  width: min(1720px, 95%);
  max-width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  row-gap: 40px;
  border-top: 1px solid rgba(23, 21, 58, 0.06);
  padding-top: 50px;
}

.stat-card {
  position: relative;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  min-height: auto;
  text-align: center;
}

.stat-card.hover-ready {
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-card::before {
  display: none;
}

.stat-card > i {
  display: none;
}

.stat-card h2 {
  font-size: clamp(2.4rem, 4.2vw, 3.5rem);
  color: #17153a;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.stat-card p {
  color: #8c88ad;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================
   FEATURES
========================================== */

.features-section {
  padding: 60px 0;
}

.features-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

.feature-card {
  background: white;

  border-radius: 28px;

  padding: 35px;

  transition: 0.4s ease;

  box-shadow: var(--shadow-md);
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 72px;
  height: 72px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 24px;

  background: linear-gradient(135deg, var(--primary-light), var(--pink));

  color: white;

  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 14px;

  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text-light);
}

/* ==========================================
   BENEFITS
========================================== */

.benefits-section {
  padding: 60px 0;
}

.benefits-wrapper {
  background: var(--dark);

  border-radius: 40px;

  padding: 80px;

  color: white;

  margin: 0 auto;
}

@media (min-width: 1025px) {
  .benefits-wrapper {
    width: 80%; /* Starts narrow, GSAP will animate to 100% */
  }
}

.benefits-header {
  margin-bottom: 60px;
}

.benefits-header h2 {
  margin-top: 20px;

  font-size: clamp(2rem, 5vw, 4rem);

  line-height: 1.1;
}

.benefits-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;
}

.benefit-item {
  position: relative;
  background: #1e1e35; /* Opaque solid dark background (not gradient) */
  border-radius: 28px;
  padding: 40px 35px;
  z-index: 1;
  overflow: hidden; /* prevents watermark overflow */
}

/* Premium Masked animated gradient border - leaves inner card opaque! */
.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  padding: 2px; /* Border thickness */
  background: linear-gradient(135deg, var(--primary-light), var(--pink), var(--lavender), var(--primary-light));
  background-size: 300% 300%;
  animation: borderGradient 6s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 1; /* Always active and clean */
}

.benefit-icon {
  width: 210px; /* Big icons as requested */
  height: 210px;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

.benefit-item span {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 6.5rem; /* Large watermark numbers */
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05); /* Low opacity */
  line-height: 1;
  pointer-events: none;
  z-index: -1; /* Layered behind headers but above card background */
  font-family: inherit;
}

.benefit-item h3 {
  margin-bottom: 12px;
  font-size: 2.4rem;
  position: relative;
  z-index: 1;
}

.benefit-item p {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

@keyframes borderGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ==========================================
   SHOWCASE SECTION
========================================== */

.showcase-section {
  padding: 140px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-content h2 {
  margin: 20px 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
}

.showcase-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.showcase-list {
  list-style: none;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-weight: 600;
}

.showcase-list i {
  color: #16a34a;
}

.dashboard-window {
  background: white;
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.window-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.window-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
}

.dashboard-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(23, 21, 58, 0.05);
  display: block;
  object-fit: cover;
}

/* ==========================================
   WORKFLOW
========================================== */

.workflow-section {
  padding: 140px 0;
}

.workflow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.workflow-step {
  width: 200px;
  text-align: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  margin: auto auto 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--pink));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.workflow-step h4 {
  margin-bottom: 10px;
}

.workflow-step p {
  color: var(--text-light);
}

.workflow-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--pink));
}

/* ==========================================
   MOBILE SECTION
========================================== */

.mobile-section {
  padding: 140px 0;
}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.phone {
  width: 320px;
  height: 650px;
  background: #181a31;
  border-radius: 40px;
  padding: 18px;
  margin: auto;
}

.phone-header {
  height: 30px;
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-card {
  height: 90px;
  border-radius: 18px;
  background: white;
}

.mobile-content h2 {
  margin: 20px 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.mobile-content p {
  color: var(--text-light);
}

.mobile-features {
  margin-top: 35px;
}

.mobile-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.mobile-feature i {
  font-size: 1.4rem;
  color: var(--primary);
}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials-section {
  padding: 140px 0;
}

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

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--text-light);
  margin-bottom: 25px;
}

.author {
  display: flex;
  gap: 14px;
  align-items: center;
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--pink));
}

/* ==========================================
   PRICING
========================================== */

.pricing-section {
  padding: 100px 0 140px;
}

.pricing-section .container {
  width: min(1720px, 95%);
  max-width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  padding: 50px 40px;
  border-radius: 28px;
  box-shadow: 0 10px 40px rgba(23, 21, 58, 0.02);
  border: 1px solid rgba(23, 21, 58, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card.hover-ready {
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(23, 21, 58, 0.08);
  border-color: rgba(23, 21, 58, 0.12);
}

.pricing-card.featured {
  border: 1.5px solid #d12984;
  box-shadow: 0 20px 50px rgba(209, 41, 132, 0.08);
  transform: scale(1.04);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 30px 70px rgba(209, 41, 132, 0.15);
}

.pricing-card h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.plan-desc {
  font-size: 0.88rem;
  color: #8c88ad;
  line-height: 1.45;
  margin-bottom: 12px;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #d12984;
  color: white;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(209, 41, 132, 0.3);
}

.price {
  font-size: 3.25rem;
  font-weight: 800;
  color: #17153a;
  letter-spacing: -0.03em;
  margin: 15px 0 25px;
  display: flex;
  align-items: baseline;
}

.price span {
  font-size: 0.95rem;
  color: #8c88ad;
  font-weight: 600;
  margin-left: 4px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 35px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card li {
  font-size: 0.92rem;
  color: #555273;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.pricing-card li i {
  color: #6f5cff;
  font-size: 0.95rem;
}

.pricing-card .btn {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

/* ==========================================
   FAQ
========================================== */

.faq-section {
  padding: 140px 0;
}

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: white;
  border-radius: 24px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 28px;
  border: none;
  background: white;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  padding: 0 28px 28px;
  color: var(--text-light);
}

/* ==========================================
   CTA
========================================== */

.cta-section {
  padding: 60px 0;
}

.cta-box {
  padding: 90px;
  text-align: center;
  border-radius: 40px;
  background: linear-gradient(135deg, #201b63, #6f5cff, #ff7eb6);
  color: white;
}

.cta-box h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.cta-box p {
  max-width: 700px;
  margin: auto auto 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ==========================================
   FOOTER
========================================== */

.footer {
  padding: 10px 0 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: transparent;
}

/* Background blob inside footer-container to make it feel rich/glowing */
.footer-container::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(111, 92, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 100%;
  width: min(1720px, 95%);
  margin: 0 auto;
  background: #0f0d26;
  color: #aaa9c4;
  padding: 80px 48px 40px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 13, 38, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.footer-logo .logo-icon {
  background: linear-gradient(135deg, #6f5cff, #d12984);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #8c88ad;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-socials .social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #aaa9c4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-socials .social-link:hover {
  background: linear-gradient(135deg, #6f5cff, #d12984);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul li a {
  color: #8c88ad;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s, padding-left 0.25s;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0));
  margin: 40px 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  text-align: center;
}

.footer-big-brand {
  font-size: clamp(3.5rem, 13vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-align: center;
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
  width: 100%;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(90deg, #6f5cff 0%, #d12984 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #1e1b38;
  -webkit-text-stroke: 1.5px transparent;
  margin-bottom: 5px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: #666385;
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 60px 24px 30px;
  }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {
  .hero-container-centered,
  .showcase-grid,
  .mobile-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-description,
  .hero-title {
    margin-inline: auto;
  }

  /* Responsive mockup styling */
  .hero-mockups {
    height: 450px;
    max-width: 700px;
  }

  .mockup-main-browser {
    width: min(680px, 90vw);
    height: 430px;
  }

  .browser-address {
    width: 200px;
    padding: 4px 12px;
  }

  .dashboard-nav-sidebar {
    width: 130px;
    padding: 15px 8px;
  }

  .sidebar-logo span {
    display: none;
  }

  .sidebar-links span span {
    display: none;
  }

  .calendar-grid-mock {
    height: 230px;
  }

  .appt-block {
    padding: 3px;
  }

  .appt-block strong {
    font-size: 0.55rem;
  }

  .appt-block span {
    font-size: 0.5rem;
  }

  .features-grid,
  .pricing-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trusted-section .container {
    padding: 60px 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .header {
    padding-top: 10px;
  }

  .navbar {
    padding: 14px 18px;
  }

  .header.scrolled .navbar {
    padding: 10px 20px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .hero-arcade {
    padding-top: 130px;
    padding-bottom: 50px;
    min-height: auto;
  }

  .hero-arcade-title {
    font-size: clamp(2rem, 8.5vw, 3.2rem);
    margin-bottom: 16px;
  }

  .hero-arcade-description {
    margin-bottom: 28px;
    font-size: 0.95rem;
  }

  .hero-arcade-actions {
    margin-bottom: 50px;
    gap: 12px;
  }

  .hero-arcade-actions .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .hero-arcade-trust-footer {
    padding-top: 28px;
  }

  .trust-logos {
    gap: 20px 24px;
  }

  .trust-logos span {
    font-size: 0.78rem;
  }

  .trusted-section {
    padding: 40px 0;
  }

  .trusted-section .container {
    padding: 50px 24px;
  }

  .mockup-side {
    display: none !important; /* Hide side mockups on mobile to avoid clutter */
  }

  .mockup-main-browser {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    height: 340px;
  }

  .dashboard-nav-sidebar {
    width: 50px;
    padding: 12px 6px;
    align-items: center;
  }

  .sidebar-logo {
    padding-left: 0;
  }

  .sidebar-logo span {
    display: none;
  }

  .sidebar-links {
    align-items: center;
  }

  .sidebar-links span {
    padding: 8px;
    justify-content: center;
  }

  .sidebar-links span i {
    font-size: 1rem;
    width: auto;
    margin: 0;
  }

  .dashboard-tab-content {
    padding: 12px 14px;
  }

  .panel-header {
    margin-bottom: 12px;
  }

  .panel-header h2 {
    font-size: 0.95rem;
  }

  .panel-header p {
    font-size: 0.65rem;
  }

  .btn-add-appt {
    padding: 5px 8px;
    font-size: 0.65rem;
  }

  .calendar-grid-mock {
    height: 190px;
    padding: 6px;
    gap: 6px;
  }

  .time-column {
    width: 46px;
    font-size: 0.55rem;
    padding-top: 28px;
  }

  .staff-columns {
    gap: 5px;
  }

  .staff-header-card {
    padding: 4px;
    gap: 4px;
  }

  .staff-header-card img {
    width: 16px;
    height: 16px;
  }

  .staff-header-card span {
    font-size: 0.6rem;
  }

  .appt-block {
    left: 3px;
    right: 3px;
    padding: 3px 4px;
  }

  .appt-block strong {
    font-size: 0.5rem;
  }

  .appt-block span {
    display: none;
  }

  .widget-service-row {
    padding: 4px;
  }

  .widget-service-row strong {
    font-size: 0.6rem;
  }

  .widget-service-row p {
    display: none;
  }

  .btn-widget-select {
    padding: 3px 6px;
    font-size: 0.55rem;
  }

  .booking-flow-setup {
    flex-direction: column;
    gap: 8px;
    height: auto;
  }

  .preview-section {
    padding: 6px;
  }

  .options-section {
    flex-direction: row;
    gap: 6px;
  }

  .option-row {
    flex: 1;
    padding: 6px;
    font-size: 0.6rem;
    justify-content: center;
    gap: 6px;
  }

  .option-row i {
    font-size: 1rem;
  }

  .payments-split {
    flex-direction: column;
    gap: 8px;
    height: auto;
  }

  .cart-items {
    padding: 8px;
  }

  .cart-item-row {
    padding-bottom: 4px;
    margin-bottom: 4px;
    font-size: 0.6rem;
  }

  .cart-totals {
    padding-top: 4px;
  }

  .checkout-actions {
    display: none; /* Hide actions panel inside browser on mobile to save vertical space */
  }

  .client-detail-card {
    padding: 8px;
    gap: 8px;
  }

  .client-profile-top {
    gap: 8px;
  }

  .client-profile-top img {
    width: 32px;
    height: 32px;
  }

  .client-stats-row {
    padding: 4px;
  }

  .client-stats-row strong {
    font-size: 0.7rem;
  }

  .client-meta {
    font-size: 0.55rem;
    gap: 4px;
  }

  .marketing-designer {
    flex-direction: column;
    gap: 8px;
    height: auto;
  }

  .campaign-builder-preview {
    padding: 6px;
  }

  .campaign-stats-sidebar {
    display: none;
  }

  .brand-card {
    min-height: auto;
    padding: 20px;
  }

  .stats-section {
    padding: 30px 0 60px;
  }

  .stat-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
  }

  .mobile-menu-btn {
    display: block;
    order: 2;
  }

  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0 16px;
    border-top: 1px solid rgba(23, 21, 58, 0.08);
    margin-top: 16px;
  }

  .nav-actions {
    display: none;
    order: 4;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(23, 21, 58, 0.08);
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .navbar.active .nav-links {
    display: flex;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 8px;
    animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .navbar.active .nav-links::-webkit-scrollbar {
    width: 4px;
  }
  .navbar.active .nav-links::-webkit-scrollbar-track {
    background: transparent;
  }
  .navbar.active .nav-links::-webkit-scrollbar-thumb {
    background: rgba(111, 92, 255, 0.2);
    border-radius: 4px;
  }

  .navbar.active .nav-actions {
    display: flex;
    animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .features-grid,
  .pricing-grid,
  .testimonials-grid,
  .stats-grid,
  .benefits-grid,
  .brand-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .workflow {
    flex-direction: column;
    gap: 25px;
  }

  .workflow-line {
    width: 3px;
    height: 60px;
  }

  .featured {
    transform: none;
  }

  .cta-box {
    padding: 50px 30px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .phone {
    width: 100%;
    max-width: 320px;
  }

  .benefits-wrapper {
    padding: 40px 25px;
  }
}

/* Fix sticky header overlap on scroll anchor targets */
#solutions,
#pricing,
#faq {
  scroll-margin-top: 90px;
}

/* ==========================================
   VIDEO CLIENT STORIES (REELS CAROUSEL)
========================================== */

.stories-section {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.stories-title-block h2 {
  margin-top: 15px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: #17153a;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.carousel-controls {
  display: flex;
  gap: 16px;
}

.control-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(23, 21, 58, 0.12);
  background: #ffffff;
  color: #17153a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 12px rgba(23, 21, 58, 0.03);
}

.control-btn:hover {
  background: #17153a;
  color: #ffffff;
  border-color: #17153a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 21, 58, 0.12);
}

.stories-carousel-container {
  position: relative;
  width: 100%;
}

.stories-carousel-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 30px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stories-carousel-track::-webkit-scrollbar {
  display: none;
}

.reel-card {
  flex: 0 0 calc(25% - 22.5px);
  min-width: 270px;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  background: #17172c;
  box-shadow: 0 15px 35px rgba(23, 21, 58, 0.08);
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(23, 21, 58, 0.06);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

@media (max-width: 1200px) {
  .reel-card {
    flex: 0 0 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .reel-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 480px) {
  .reel-card {
    flex: 0 0 100%;
  }
}

.reel-card:hover {
  transform: none;
  box-shadow: 0 20px 40px rgba(23, 21, 58, 0.12);
}

.reel-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.reel-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reel-card:hover .reel-poster {
  transform: none;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.reel-card.video-playing .reel-video {
  opacity: 1;
}

.reel-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
  background: rgba(23, 21, 58, 0.15);
  transition: opacity 0.3s ease, background 0.3s ease;
}

.reel-card:hover .reel-play-overlay {
  opacity: 0;
  background: transparent;
}

.play-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(0.9);
  opacity: 0.8;
}

.reel-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(23, 21, 58, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.reel-card:hover .reel-badge {
  opacity: 0;
}

.reel-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 80px 24px 30px;
  background: linear-gradient(to top, rgba(23, 21, 58, 0.95) 0%, rgba(23, 21, 58, 0.75) 45%, rgba(23, 21, 58, 0) 100%);
  color: #ffffff;
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.reel-meta h4 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.reel-meta .designation {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.reel-meta .company {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}


/* ==========================================
   MINIMAL FANCY FAQ SECTION
========================================== */
.why-faq-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.faq-split-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-left-col {
  position: sticky;
  top: 120px;
}

.faq-left-col h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #17153a;
  line-height: 1.25;
  margin-top: 15px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.faq-left-col p {
  font-size: 1.05rem;
  color: #555273;
  line-height: 1.65;
  margin-bottom: 30px;
}

.btn-contact {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 99px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.faq-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 1.5px solid rgba(23, 21, 58, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 20px rgba(23, 21, 58, 0.01);
}

.faq-accordion-item:hover {
  border-color: rgba(111, 92, 255, 0.2);
  box-shadow: 0 10px 30px rgba(111, 92, 255, 0.04);
  transform: translateY(-2px);
}

.faq-accordion-item.active {
  border-color: #6f5cff;
  box-shadow: 0 15px 40px rgba(111, 92, 255, 0.08);
}

.faq-accordion-header {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  color: #17153a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header {
  color: #6f5cff;
}

.faq-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(23, 21, 58, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17153a;
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.faq-icon-box i {
  display: inline-block;
  line-height: 1;
  transform: translateY(1px);
}

.faq-accordion-item:hover .faq-icon-box {
  background: rgba(111, 92, 255, 0.08);
  color: #6f5cff;
}

.faq-accordion-item.active .faq-icon-box {
  background: #6f5cff;
  color: #ffffff;
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0 30px;
}

.faq-accordion-body p {
  color: #555273;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  padding-top: 8px;
  padding-bottom: 32px;
}

@media (max-width: 992px) {
  .faq-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-left-col {
    position: static;
  }
}

/* ==========================================
   MEGA MENU & DROPDOWN STYLES
========================================== */

.nav-links a.active {
  color: #d12984 !important;
}

.dropdown {
  position: static;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1320px, 95vw);
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(34, 28, 99, 0.15);
  border: 1px solid rgba(23, 21, 58, 0.08);
  padding: 26px 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

/* Mega Menu Arrow */
.mega-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 12%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}

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

.mega-menu-tabs-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.mega-tabs-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid rgba(23, 21, 58, 0.06);
  padding-right: 30px;
}

.mega-tab-item {
  padding: 14px 20px;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-align: left;
}

.mega-tab-item .tab-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #17153a;
  transition: color 0.2s ease;
}

.mega-tab-item .tab-desc {
  font-size: 0.8rem;
  color: #8c88ad;
  margin-top: 4px;
}

.mega-tab-item .tab-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  font-size: 0.85rem;
  color: #6f5cff;
  opacity: 0;
  transition: all 0.25s ease;
}

.mega-tab-item:hover,
.mega-tab-item.active {
  background: rgba(111, 92, 255, 0.06);
  border-color: rgba(111, 92, 255, 0.1);
}

.mega-tab-item:hover .tab-title,
.mega-tab-item.active .tab-title {
  color: #6f5cff;
}

.mega-tab-item:hover .tab-arrow,
.mega-tab-item.active .tab-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Right Content Area */
.mega-panes-content {
  position: relative;
  min-height: 380px;
}

.mega-pane {
  display: none;
  animation: fadeInPane 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  text-align: left;
}

.mega-pane.active {
  display: block;
}

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

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

.pane-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 6px;
}

.pane-header p {
  font-size: 0.95rem;
  color: #555273;
}

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

.pane-links-grid li {
  margin: 0;
}

.pane-links-grid a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
}

.pane-links-grid a:hover {
  background: #faf9ff;
  border-color: rgba(111, 92, 255, 0.08);
  transform: translateY(-2px);
}

.pane-links-grid .link-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(111, 92, 255, 0.08);
  color: #6f5cff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.pane-links-grid a:hover .link-icon-box {
  background: #d12984;
  color: #ffffff;
}

.pane-links-grid .link-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pane-links-grid .link-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #17153a;
  transition: color 0.2s ease;
}

.pane-links-grid a:hover .link-title {
  color: #d12984;
}

.pane-links-grid .link-desc {
  font-size: 0.82rem;
  color: #555273;
  line-height: 1.4;
}

/* Mobile styles for mega menu */
@media (max-width: 1024px) {
  .dropdown {
    position: relative;
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-trigger i {
    font-size: 0.8rem;
  }

  .dropdown .mega-menu {
    position: relative;
    top: 0;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 15px 0 5px 10px !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
    background: transparent !important;
  }

  .mega-menu::before {
    display: none !important;
  }

  .dropdown.open .mega-menu {
    display: block !important;
  }

  .dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
  }

  .mega-menu-tabs-container {
    display: block;
  }

  .mega-tabs-sidebar {
    display: none;
  }

  .mega-pane {
    display: block !important;
    margin-bottom: 24px;
    animation: none;
  }

  .pane-header h3 {
    font-size: 0.75rem;
    color: #8c88ad;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(23, 21, 58, 0.05);
    padding-bottom: 6px;
  }

  .pane-header p {
    display: none;
  }

  .pane-links-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pane-links-grid a {
    padding: 8px 0;
    background: transparent !important;
    border: none !important;
    gap: 12px;
  }

  .pane-links-grid a:hover {
    transform: none;
  }

  .pane-links-grid .link-icon-box {
    width: 24px;
    height: 24px;
    background: transparent !important;
    color: #6f5cff;
    font-size: 1rem;
  }

  .pane-links-grid .link-title {
    font-size: 0.85rem;
    color: var(--text);
  }

  .pane-links-grid .link-desc {
    display: none;
  }
}

/* ==========================================================================
   HOMEPAGE PREMIUM COPY SECTIONS
   ========================================================================== */

/* Manifesto / Operating Principles Section */
.principles-section {
  padding: 100px 0;
  background-color: #faf9ff;
  position: relative;
  overflow: hidden;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 50px;
}

/* Screen widths between 991px and 1300px */
@media (max-width: 1300px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* Tablet View override */
@media (min-width: 769px) and (max-width: 991px) {
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .principles-grid > *:nth-child(5) {
    grid-column: span 2 !important;
  }
}

.principle-card {
  background: #ffffff;
  border: 1px solid rgba(23, 21, 58, 0.06);
  border-radius: 20px;
  padding: 35px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(111, 92, 255, 0.08);
  border-color: rgba(111, 92, 255, 0.2);
}

.principle-num {
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #6f5cff, #d12984);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  opacity: 0.85;
}

.principle-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 16px;
  line-height: 1.25;
}

.principle-card p {
  font-size: 0.95rem;
  color: #555273;
  line-height: 1.7;
  margin: 0;
}

/* Problem Section (Dark High-Contrast Mode) */
.problems-section {
  padding: 100px 0;
  background-color: #0d0b25;
  color: #ffffff;
  position: relative;
}

.problems-section .section-tag {
  background: rgba(209, 41, 132, 0.15);
  color: #ff5ba8;
}

.problems-section h2 {
  color: #ffffff;
}

.problems-section p {
  color: rgba(255, 255, 255, 0.7);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .problems-grid {
    grid-template-columns: 1fr;
  }
}

.problem-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.problem-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(209, 41, 132, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.problem-icon {
  width: 64px;
  height: 64px;
  background: rgba(209, 41, 132, 0.12);
  color: #ff5ba8;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
}

.problem-card h3 {
  font-size: 1.35rem;
  font-weight: 750;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.problem-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

/* Value Proposition Section (Staggered Grid) */
.valprop-section {
  padding: 100px 0 140px 0;
  background-color: #ffffff;
}

.valprop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.valprop-card {
  background: #ffffff;
  border: 1px solid rgba(23, 21, 58, 0.08);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.015);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Stagger Offset for 3 Columns */
.valprop-card-1 {
  transform: translateY(0);
}
.valprop-card-2 {
  transform: translateY(30px);
}
.valprop-card-3 {
  transform: translateY(60px);
}

.valprop-card:hover {
  box-shadow: 0 24px 60px rgba(111, 92, 255, 0.09);
  border-color: rgba(111, 92, 255, 0.25);
}
.valprop-card-1:hover {
  transform: translateY(-8px);
}
.valprop-card-2:hover {
  transform: translateY(22px);
}
.valprop-card-3:hover {
  transform: translateY(52px);
}

.valprop-badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.valprop-badge.badge-purple {
  background-color: #f0edff;
  color: #6f5cff;
}

.valprop-badge.badge-pink {
  background-color: #ffeef6;
  color: #d12984;
}

.valprop-badge.badge-peach {
  background-color: #fff4ed;
  color: #f87b33;
}

.valprop-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.valprop-card p {
  font-size: 0.95rem;
  color: #555273;
  line-height: 1.7;
  margin: 0;
}

/* Commitments Section (Asymmetric Side-by-Side) */
.commitments-section {
  padding: 120px 0;
  background-color: #faf9ff;
  border-top: 1px solid rgba(23, 21, 58, 0.04);
}

.commitments-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}

.commitments-left-col {
  position: sticky;
  top: 100px;
}

.commitments-left-col h2 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 850;
  color: #17153a;
  letter-spacing: -0.025em;
  margin-top: 15px;
  margin-bottom: 24px;
  line-height: 1.15;
}

.commitments-lead {
  font-size: 1.15rem;
  color: #555273;
  line-height: 1.75;
}

.commitments-right-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.commitment-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(111, 92, 255, 0.15);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  margin-top: 4px;
}

.commitment-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.commitment-text p {
  font-size: 0.98rem;
  color: #555273;
  line-height: 1.75;
  margin: 0;
}

.commitment-divider {
  height: 1px;
  background: rgba(23, 21, 58, 0.08);
  position: relative;
}

.commitment-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: #6f5cff;
  border-radius: 50%;
}

/* Engineered Results Section */
.results-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 50px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.result-card {
  border: 1px solid rgba(23, 21, 58, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(111, 92, 255, 0.2);
  box-shadow: 0 16px 40px rgba(111, 92, 255, 0.05);
}

.result-value {
  font-size: 1.8rem;
  font-weight: 850;
  background: linear-gradient(135deg, #d12984, #6f5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  line-height: 1.2;
}

.result-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #17153a;
  margin-bottom: 12px;
}

.result-card p {
  font-size: 0.92rem;
  color: #555273;
  line-height: 1.65;
  margin: 0;
}

/* Success Stories / Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: #faf9ff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(23, 21, 58, 0.06);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-stars {
  color: #ffa800;
  font-size: 0.95rem;
  margin-bottom: 24px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: #17153a;
  margin-bottom: 30px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  font-size: 1.05rem;
  color: #17153a;
  font-weight: 750;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: #555273;
}

/* ==========================================================================
   HOMEPAGE MEDIA QUERIES FOR NEW SECTIONS
   ========================================================================== */

@media (max-width: 1024px) {
  .valprop-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 0;
  }
  
  /* Remove translate staggered effect on tablet */
  .valprop-card-1, .valprop-card-2, .valprop-card-3 {
    transform: translateY(0) !important;
  }
  
  .valprop-card-1:hover, .valprop-card-2:hover, .valprop-card-3:hover {
    transform: translateY(-8px) !important;
  }

  .commitments-grid {
    grid-template-columns: 1fr !important;
    gap: 50px;
  }

  .commitments-left-col {
    position: relative;
    top: 0;
    width: 100% !important;
    max-width: 100% !important;
  }

  .commitments-right-col {
    width: 100% !important;
    max-width: 100% !important;
  }

  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .blob-2,
  .blob-3,
  .blob-left,
  .blob-right {
    display: none !important;
  }

  .blob-middle {
    width: 280px !important;
    height: 280px !important;
    filter: blur(80px) !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .principles-section, 
  .problems-section, 
  .valprop-section, 
  .commitments-section, 
  .results-section, 
  .testimonials-section {
    padding: 70px 0;
  }
  
  .valprop-section {
    padding-bottom: 70px;
  }

  .principles-grid, 
  .problems-grid, 
  .results-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .principles-grid > * {
    grid-column: span 1 !important;
    grid-column-start: auto !important;
  }

  .commitment-item {
    gap: 20px;
  }
}

/* ==========================================
   FEATURE OVERVIEW SECTION
   ========================================== */
.features-overview-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.features-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}

@media (max-width: 1200px) {
  .features-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .features-overview-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .features-overview-section {
    padding: 70px 0;
  }
}

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

.feature-category-col h3 {
  font-size: 1.15rem;
  font-weight: 850;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(111, 92, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Category Specific Border Colors */
.feature-category-col:nth-child(1) h3 { border-color: rgba(111, 92, 255, 0.2); color: #6f5cff; }
.feature-category-col:nth-child(2) h3 { border-color: rgba(209, 41, 132, 0.2); color: #d12984; }
.feature-category-col:nth-child(3) h3 { border-color: rgba(248, 123, 51, 0.2); color: #f87b33; }
.feature-category-col:nth-child(4) h3 { border-color: rgba(16, 185, 129, 0.2); color: #10b981; }

.feature-tile-card {
  background: #ffffff;
  border: 1px solid rgba(23, 21, 58, 0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.005);
  display: flex;
  flex-direction: column;
  height: auto;
}

.feature-tile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(23, 21, 58, 0.05);
  border-color: rgba(111, 92, 255, 0.15);
}

.feature-tile-card h4 {
  font-size: 1.05rem;
  font-weight: 750;
  color: #17153a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.feature-tile-card p {
  font-size: 0.88rem;
  color: #555273;
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.feature-tile-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6f5cff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.feature-tile-link:hover {
  color: #d12984;
  gap: 10px;
}

.feature-tile-link i {
  font-size: 0.75rem;
}

/* ==========================================================================
   ULTRA-SMALL MOBILE VIEWPORTS (320px and below)
   ========================================================================== */
@media (max-width: 320px) {
  .hero-arcade-title {
    font-size: 1.75rem !important;
  }
  
  .hero-arcade-description {
    font-size: 0.88rem !important;
    line-height: 1.5;
  }
  
  .container {
    padding-inline: 16px !important;
  }
  
  .navbar.container {
    width: 95% !important;
  }
  
  .navbar {
    padding: 10px 14px !important;
  }
  
  .logo span {
    font-size: 1.15rem !important;
  }
  
  .principle-card, 
  .problem-card, 
  .valprop-card, 
  .result-card, 
  .testimonial-card {
    padding: 24px 18px !important;
  }

  .principle-num {
    font-size: 1.8rem !important;
    margin-bottom: 12px !important;
  }

  .principle-card h3,
  .problem-card h3,
  .valprop-card h3,
  .result-card h3,
  .testimonial-quote {
    font-size: 1.15rem !important;
  }
  
  .hero-arcade-actions .btn-large {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ==========================================================================
   LAPTOP AND DESKTOP LAYOUT MARGINS & SPACING (min-width: 1025px)
   ========================================================================== */
@media (min-width: 1025px) {
  .container,
  .header.scrolled .navbar.container,
  .trusted-section .container,
  .stats-section .container,
  .pricing-section .container,
  .footer-container {
    width: min(1720px, 88%);
  }

  .navbar.container {
    width: min(1580px, 82%);
  }
}