/* =============================================================
   GATE & GUIDE — HOMEPAGE SPECIFIC STYLES
   ============================================================= */

/* -------------------------------------------------------------
   SECTION 1 — HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px; /* Offset for absolute header */
  padding-bottom: var(--space-xl); /* Add space below trust section */
  z-index: 1;
}

/* Background Atmosphere Dot-Grid Pattern */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

/* Background Atmosphere Faded "GG" Text */
.hero-bg-text {
  font-family: var(--font-display);
  font-size: 32vw;
  font-weight: 800;
  color: rgba(249, 123, 61, 0.02);
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

/* Hero background gradients */
.hero-glow-tr {
  background: radial-gradient(ellipse 600px 500px at 85% 20%, rgba(249, 123, 61, 0.06) 0%, transparent 70%);
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-glow-bl {
  background: radial-gradient(ellipse 400px 400px at 10% 90%, rgba(0, 192, 96, 0.04) 0%, transparent 70%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Badge Refinement */
.hero-badge .badge {
  background: rgba(249, 123, 61, 0.12);
  border: 1px solid rgba(249, 123, 61, 0.35);
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-green);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 rgba(0, 192, 96, 0.4);
  animation: badgePulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes badgePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 192, 96, 0.6);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(0, 192, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 192, 96, 0);
  }
}

.hero-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
  align-items: center;
  width: 100%;
}

/* Hero Left Text Column */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-top: 1rem;
}
.hero-title .italic {
  font-style: italic;
}
.hero-title .line-orange {
  color: var(--color-orange);
}
.hero-title span {
  display: block;
}

.hero-rule {
  width: 40px;
  height: 1.5px;
  background-color: var(--color-orange);
  margin: 2rem 0 2.25rem 0;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 244, 240, 0.75);
  max-width: 440px;
  line-height: 1.95;
}

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-btns .btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}
.hero-btns .btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}
.hero-btns .btn-play-icon {
  color: var(--color-green);
  font-size: 0.7rem;
  margin-right: 0.3rem;
}

/* Trust Indicator row */
.hero-trust-block {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.trust-rating {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-rating span {
  color: var(--color-orange);
  letter-spacing: 0.1em;
}
.trust-separator {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.trust-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.trust-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* Hero Right Visual Column (Floating Dashboard Card) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px; /* For mouse parallax tilt */
}

/* Float wrapper for separating parallax tilt from floating keyframes */
.hero-card-float-wrap {
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: dashboardFloat 6s ease-in-out infinite alternate;
}

/* Dashboard Mockup styling */
.dashboard-card {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #1A1A1A;
  border: 1px solid rgba(249, 123, 61, 0.15);
  border-radius: 16px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-lg), 0 24px 64px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}

/* CSS Float Animation */
@keyframes dashboardFloat {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #282828;
  padding-bottom: 1rem;
}
.dashboard-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-green);
  font-weight: 500;
}
.status-live-label {
  color: var(--color-green);
  font-size: 0.75rem;
  font-weight: 500;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-green);
  box-shadow: 0 0 0 rgba(0, 192, 96, 0.4);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 192, 96, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(0, 192, 96, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 192, 96, 0);
  }
}

/* Stat Widgets row */
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.db-stat-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.db-stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.db-stat-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}
.db-stat-val.orange { color: var(--color-orange); }
.db-stat-val.green { color: var(--color-green); }

/* Mini Database log */
.dashboard-log-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}
.db-log-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}
.db-log-table {
  width: 100%;
  border-collapse: collapse;
}
.db-log-table th {
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  padding: 0.5rem 0;
  border-bottom: 1px solid #2A2A2A;
}
.db-log-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid #2A2A2A;
}
.db-log-table td:nth-child(1) {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.db-log-table td:nth-child(2),
.db-log-table td:nth-child(3) {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}
.db-log-table tr:last-child td {
  border-bottom: none;
}
.status-badge-approved {
  background-color: rgba(0, 192, 96, 0.12);
  color: var(--color-green);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-block;
}
.status-badge-pending {
  background-color: rgba(249, 123, 61, 0.12);
  color: var(--color-orange);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-block;
}

.db-log-footer {
  margin-top: auto;
  align-self: flex-start;
}
.db-log-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-orange);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.db-log-link:hover {
  color: var(--color-orange-light);
  text-decoration: underline;
}

/* -------------------------------------------------------------
   SECTION 2 — MARQUEE TRUST BAR
   ------------------------------------------------------------- */
.marquee-bar {
  background-color: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-container {
  display: flex;
  width: 100%;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: scrollMarquee 35s linear infinite;
  gap: 3rem;
  padding-right: 3rem;
}

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee-item::after {
  content: '●';
  color: var(--color-orange);
  font-size: 0.65rem;
}

.statement-section {
  background-color: var(--color-bg-primary);
  text-align: center;
}
.statement-section .section-label {
  text-align: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.statement-container {
  max-width: 960px;
  margin: 0 auto;
}

.statement-headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}
.statement-headline span {
  display: block;
  font-style: normal;
}
.statement-headline .text-orange {
  color: var(--color-orange);
  font-style: italic;
}
.statement-headline .text-green {
  color: var(--color-green);
  font-style: italic;
}

.statement-separator {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: left;
}

.statement-col {
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-orange);
}
.statement-col.col-green {
  border-left-color: var(--color-green);
}
.statement-col-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}
.statement-col-label .label-dot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.statement-col-label .label-dot.dot-orange {
  background-color: var(--color-orange);
}
.statement-col-label .label-dot.dot-green {
  background-color: var(--color-green);
}
.statement-col-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-secondary);
  line-height: 1.9;
}

/* -------------------------------------------------------------
   SECTION 4 — FEATURES SHOWCASE
   ------------------------------------------------------------- */
.features-showcase {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  overflow: hidden;
}
.features-showcase.section-padding {
  padding-top: var(--space-2xl);
}

.features-showcase .section-title {
  color: var(--color-text-light);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.feature-row:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.feature-row:last-child {
  padding-bottom: 0;
}

/* Reversing alternate rows on desktop */
.feature-row.row-reverse {
  direction: ltr;
}
@media (min-width: 1025px) {
  .feature-row.row-reverse > .feature-visual {
    grid-column: 2;
  }
  .feature-row.row-reverse > .feature-info {
    grid-column: 1;
    grid-row: 1;
  }
}

/* Card Mockup styling */
.feature-mockup {
  width: 100%;
  background-color: #1E1E1E;
  border: 1px solid rgba(249, 123, 61, 0.18);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.feature-mockup:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.6);
  border-color: var(--color-orange);
}
.feature-mockup.border-green {
  border: 1px solid rgba(0, 192, 96, 0.18);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.feature-mockup.border-green:hover {
  border-color: var(--color-green);
}

.helpdesk-mockup {
  min-height: 280px;
}

.mockup-summary-bar {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.feature-visual {
  position: relative;
  z-index: 1;
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: transparent;
  box-shadow: 0 0 80px 8px rgba(249,123,61,0.10),
              0 0 140px 20px rgba(249,123,61,0.05);
  z-index: -1;
  pointer-events: none;
}
.feature-visual.glow-green::before {
  box-shadow: 0 0 80px 8px rgba(0,192,96,0.10),
              0 0 140px 20px rgba(0,192,96,0.05);
}

/* Mockup inner UI states */
.mockup-ui {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #2C2C2C;
  padding-bottom: 0.75rem;
}
.mockup-header-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Table layout inside mockup */
.mockup-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mockup-item {
  background-color: #262626;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mockup-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-orange);
}
.mockup-avatar.green {
  color: var(--color-green);
}
.mockup-details {
  display: flex;
  flex-direction: column;
}
.mockup-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
}
.mockup-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--color-text-muted);
}
.mockup-status-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}
.status-tag-green {
  background-color: rgba(0, 192, 96, 0.1);
  color: var(--color-green-light);
}
.status-tag-orange {
  background-color: rgba(249, 123, 61, 0.1);
  color: var(--color-orange-light);
}

/* Info row inside invoice mockup */
.invoice-card {
  background-color: #262626;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 320px;
}
.invoice-amount {
  font-family: var(--font-body);
  font-size: var(--text-2xl);
  font-weight: 600;
}
.invoice-payments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #333;
}
.payment-row:last-child {
  border-bottom: none;
}

.invoice-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 0.75rem 0;
}

.invoice-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.invoice-total-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
}
.invoice-total-value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.invoice-pay-btn {
  background-color: var(--color-orange);
  color: white;
  border: none;
  border-radius: var(--radius-md); /* 6px */
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1rem;
  width: 100%;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.invoice-pay-btn:hover {
  background-color: var(--color-orange-deep);
  box-shadow: 0 6px 20px rgba(249, 123, 61, 0.3);
}

.invoice-sec-note {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  margin-top: 0.625rem;
}

/* Feature column content */
.feature-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-info .section-label {
  margin-bottom: 0;
}

.feature-info .section-subtitle {
  color: rgba(245, 244, 240, 0.7);
  max-width: 100%;
}

.feature-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0.5rem 0;
}
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(245, 244, 240, 0.8);
}
.checklist-icon {
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-orange);
  font-weight: 500;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.feature-link:hover {
  text-decoration: underline;
}

/* -------------------------------------------------------------
   SECTION 5 — HOW IT WORKS
   ------------------------------------------------------------- */
.onboarding-section {
  background-color: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}
.onboarding-section.section-padding {
  padding-bottom: var(--space-2xl);
}

.onboarding-header {
  text-align: center;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.onboarding-header .section-title {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.onboarding-header .section-subtitle {
  max-width: 480px;
  margin: 1.25rem auto 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

.onboarding-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  z-index: 2;
  margin-top: 4rem;
}

/* Connecting line running through the step numbers */
.onboarding-line {
  position: absolute;
  top: 6.5rem;
  left: 2.5rem;
  right: 23%;
  height: 1.5px;
  border-top: 1.5px dashed rgba(249, 123, 61, 0.25);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover {
  transform: translateY(-6px);
}

.step-micro-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.375rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(249, 123, 61, 0.35);
  letter-spacing: -0.02em;
  margin-bottom: 0;
  background-color: var(--color-bg-secondary);
  display: inline-block;
  align-self: flex-start;
  padding: 0 1rem 0 0.5rem;
  margin-left: -0.5rem;
}
.step-card.step-green .step-number {
  color: rgba(0, 192, 96, 0.35);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: 0.5rem;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.step-body {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.85;
  font-weight: 300;
}

/* -------------------------------------------------------------
   SECTION 6 — APP DOWNLOAD
   ------------------------------------------------------------- */
.app-section {
  background-color: var(--color-bg-primary);
  position: relative;
  overflow: hidden;
}
.app-section.section-padding {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.app-section .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.app-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.app-content .section-label {
  margin-bottom: 0;
}

.app-content .section-title {
  margin-bottom: 0;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

/* Styled App Pills */
.app-store-btn {
  background-color: #111111;
  border-radius: 14px;
  padding: 0.875rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--color-white);
  transition: background-color 0.3s ease, transform 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.app-store-btn:hover {
  background-color: #222222;
  transform: translateY(-3px);
}
.app-store-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: currentColor;
  display: flex;
  align-items: center;
}
.btn-label-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.btn-sub-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.btn-main-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: white;
}

.app-rating-stars {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
  font-weight: 400;
}
.app-rating-stars span {
  color: var(--color-orange);
  letter-spacing: 0.1em;
}
.rating-separator {
  color: var(--color-border);
  font-size: 0.6rem;
  margin: 0 0.5rem;
  vertical-align: middle;
}

/* Phone Mockup Column */
.app-mockups-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
  overflow: visible;
}

/* Glowing Aura Behind Phones */
.phones-aura {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: rgba(249, 123, 61, 0.07);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

/* Twin overlapping phone chassis */
.phone-chassis-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: visible;
}

.phones-container {
  position: relative;
  overflow: visible;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .phones-container {
    min-width: 480px;
  }
}

.phones-container::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(249,123,61,0.12) 0%, 
    rgba(249,123,61,0.05) 40%, 
    transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.phone-device {
  width: 240px;
  height: 480px;
  background-color: #08080a;
  border: 9px solid #1c1c21;
  border-radius: 36px;
  position: absolute;
  outline: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 
              0 16px 32px -16px rgba(0, 0, 0, 0.3),
              inset 0 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Front phone (centered) */
.phone-device-front {
  z-index: 2;
  left: 20px;
  top: 10px;
}

.phone-device-front .phone-badge {
  background-color: rgba(249, 123, 61, 0.12);
  color: var(--color-orange);
  border: 1px solid rgba(249, 123, 61, 0.2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  align-self: flex-start;
  z-index: 5;
}

/* Back phone (rotated and scaled) */
.phone-device-back {
  z-index: 1;
  left: 20px;
  top: 10px;
  transform: scale(0.92) rotate(6deg) translateX(85px) translateY(20px);
  opacity: 0.85;
  filter: blur(0.4px);
  box-shadow: -12px 20px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.phone-device-back .phone-badge {
  background-color: rgba(0, 192, 96, 0.1);
  color: var(--color-green-light);
  border: 1px solid rgba(0, 192, 96, 0.2);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  align-self: flex-start;
  z-index: 5;
}

.phone-fade-overlay {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to right, transparent 0%, rgba(10, 10, 10, 0.85) 100%);
  border-radius: 0 36px 36px 0;
  pointer-events: none;
  z-index: 12;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1rem 1.25rem 1rem;
  gap: 0.875rem;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.phone-device-front .phone-screen {
  background: 
    radial-gradient(circle at 100% 0%, rgba(249, 123, 61, 0.22) 0%, transparent 65%),
    radial-gradient(circle at 0% 100%, rgba(0, 192, 96, 0.12) 0%, transparent 65%),
    #0a0a0c;
}

.phone-device-back .phone-screen {
  background: 
    radial-gradient(circle at 0% 0%, rgba(0, 192, 96, 0.22) 0%, transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(249, 123, 61, 0.12) 0%, transparent 65%),
    #0a0a0c;
}

/* Glass glare gloss overlay */
.phone-gloss-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(255, 255, 255, 0) 65%);
  pointer-events: none;
  z-index: 15;
}

/* Dynamic Island notch */
.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 18px;
  background: #000;
  border-radius: 10px;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
  box-sizing: border-box;
}
.phone-dynamic-island::after {
  content: '';
  width: 3.5px;
  height: 3.5px;
  background: radial-gradient(circle, #255d8f 30%, #0c263c 80%);
  border-radius: 50%;
  opacity: 0.6;
}

/* Phone swipe home indicator bar */
.phone-home-indicator {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 85px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  z-index: 10;
}

/* Phone status bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 10;
  margin-bottom: 0.25rem;
  padding: 0 0.15rem;
  box-sizing: border-box;
}

.status-time {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

.status-indicators {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.95);
}

.status-icon {
  display: block;
  flex-shrink: 0;
}

/* Glassmorphism mini UI cards */
.phone-ui-card {
  background: rgba(20, 20, 22, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.ui-card-title {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-white);
}

.user-avatar {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(249, 123, 61, 0.25);
}

.phone-device-back .user-avatar {
  box-shadow: 0 0 10px rgba(0, 192, 96, 0.25);
}

.ui-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ui-card-row:last-child {
  border-bottom: none;
}

.ui-card-row span:first-child {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  margin-right: 1rem;
}

.ui-card-row span:last-child {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-align: right;
}

.phone-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: auto;
  z-index: 5;
}

.phone-btn {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.65rem 0;
  border-radius: var(--radius-full);
  text-align: center;
  transition: all 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.04em;
  box-sizing: border-box;
}

.phone-btn-outline {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.phone-btn-green {
  background: linear-gradient(135deg, #00C060 0%, #009948 100%);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 192, 96, 0.35);
  border: none;
}

.phone-btn-green:hover {
  box-shadow: 0 8px 22px rgba(0, 192, 96, 0.45);
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
   SECTION 7 — TESTIMONIALS
   ------------------------------------------------------------- */
/* -------------------------------------------------------------
   SECTION 7 — TESTIMONIALS
   ------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--color-bg-primary);
}
.testimonials-section.section-padding {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
}

.testimonials-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.section-label.centered {
  justify-content: center;
  text-align: center;
}
.section-label.centered::before {
  /* Kept visible for side-by-side lines flanking the centered label */
  display: inline-block;
}
.section-label.centered::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--color-orange);
  flex-shrink: 0;
}

.testimonials-section .section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 0;
}

.testimonials-grid {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

/* Testimonial card base (Outer Cards) */
.testimonial-card {
  flex: 1;
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-orange);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: box-shadow 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0;
  color: rgba(249, 123, 61, 0.35);
  margin-bottom: 1.5rem;
  position: static;
  display: block;
}

.testimonial-card .testimonial-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-secondary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  box-sizing: border-box;
}

.avatar-orange {
  background: rgba(249, 123, 61, 0.12);
  color: var(--color-orange);
  border: 1px solid rgba(249, 123, 61, 0.2);
}

.avatar-green {
  background: rgba(0, 192, 96, 0.15);
  color: var(--color-green);
  border: 1px solid rgba(0, 192, 96, 0.25);
}

.avatar-green-deep {
  background: rgba(0, 192, 96, 0.10);
  color: var(--color-green-deep);
  border: 1px solid rgba(0, 192, 96, 0.2);
}

.author-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.author-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Card 2: Elevated Dark Theme (Center Card) */
.testimonial-card.card-featured {
  background: var(--color-bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--color-green);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transform: translateY(-16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.testimonial-card.card-featured .quote-mark {
  color: rgba(0, 192, 96, 0.35);
  position: static;
  font-size: 4rem;
  line-height: 0;
  margin-bottom: 1.5rem;
}

.testimonial-card.card-featured .testimonial-text {
  color: rgba(245, 244, 240, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
}

.testimonial-card.card-featured .testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  margin-top: 1.5rem;
}

.testimonial-card.card-featured .author-name {
  color: var(--color-text-light);
}

.testimonial-card.card-featured .author-role {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* -------------------------------------------------------------
   SECTION 8 — STATS RIBBON
   ------------------------------------------------------------- */
.stats-ribbon {
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 6rem 0;
  position: relative;
  z-index: 2;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

/* Vertical divider lines between stats - Centered vertically */
.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  height: 60px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}
.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 0.5rem;
}

/* -------------------------------------------------------------
   SECTION 9 — FINAL CTA
   ------------------------------------------------------------- */
.final-cta {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta.section-padding {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

/* GG Background Initials */
.final-cta .hero-bg-text {
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 38vw;
  color: rgba(255, 255, 255, 0.012);
}

.cta-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta .section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-weight: 600;
  color: var(--color-text-light);
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  margin-top: 1rem;
}

.final-cta .section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 244, 240, 0.5);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.final-cta .hero-btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0;
}

.final-cta .fine-print {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.04em;
}

/* -------------------------------------------------------------
   RESPONSIVE LAYOUT OVERRIDES (MEDIA QUERIES)
   ------------------------------------------------------------- */

/* Tablet Breakpoint (Max 1024px) */
@media (max-width: 1024px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-rule {
    margin: 2rem auto;
  }
  .hero-title span {
    display: inline;
  }
  .hero-title .line-orange {
    display: inline;
  }
  .hero-btn-row {
    justify-content: center;
  }
  .trust-pills {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 2rem;
  }
  
  .statement-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .statement-col {
    padding: 1rem 0 1rem 1.5rem;
  }

  .testimonials-grid {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xl);
  }
  .testimonial-card.card-featured {
    transform: none !important; /* Overrides GSAP inline transform on mobile stack */
    box-shadow: none !important;
  }

  .app-section .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }
  .app-content {
    align-items: center;
  }
  .app-buttons {
    justify-content: center;
  }
  .app-mockups-col {
    min-height: 420px;
  }
  .phone-chassis-wrap {
    transform: scale(0.85);
    height: 440px;
    width: 320px;
    margin: 0 auto;
  }
  .phone-device-front {
    left: 10px;
    top: 10px;
  }
  .phone-device-back {
    left: 10px;
    top: 10px;
    transform: scale(0.92) rotate(6deg) translateX(75px) translateY(20px);
  }
}

/* Phone Breakpoint (Max 768px) */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 80px;
  }
  .hero-title {
    font-size: 2.8rem;
  }

  .marquee-track {
    animation-duration: 25s; /* Speed up scroll on smaller widths */
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
  }
  .feature-row.row-reverse {
    direction: ltr; /* Reset order on mobile */
  }
  .feature-row.row-reverse > * {
    direction: ltr;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .onboarding-line {
    display: none; /* Hide dashed connector line */
  }
  .step-card {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }
  .step-card:last-child {
    border-bottom: none;
  }
  .step-number {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .stat-item::after {
    display: none; /* Hide separators */
  }
  .stat-number {
    font-size: 3rem;
  }

  .app-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .app-store-btn {
    width: 100%;
    justify-content: center;
  }
  
  .phone-chassis-wrap {
    transform: scale(0.75);
    height: 420px;
    width: 320px;
    margin: 0 auto;
  }
  .phone-device-front {
    left: 10px;
    top: 10px;
  }
  .phone-device-back {
    left: 10px;
    top: 10px;
    transform: scale(0.92) rotate(6deg) translateX(70px) translateY(20px);
  }
}
