@font-face {
  font-family: 'Outfit';
  src: url('outfit.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-hero-overlay: rgba(21, 67, 71, 0.4);
  --color-about-bg: #F4FAFA;
  --color-about-text: #091D1F;
  --color-cream: #F5FAF9;
  --color-muted-accent: #225E63;
  --color-muted-hover: #2F7A82;
  --color-dark-hover: #154347;
  --color-accent: #E2F86C;
  --color-live: #FF4D4D;

  font-family: 'Outfit', sans-serif;
  font-feature-settings: 'salt' 1, 'ss01' 1;
  /* fix for Chrome */
  letter-spacing: -0.05em;
}

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

body {
  font-family: 'Outfit', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  background-color: #091D1F;
  color: #fff;
}

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

/* ==========================================================================
   CUSTOM CURSOR
   ========================================================================== */
.cursor-dot {
  width: 10px;
  height: 10px;
  background-color: #E2F86C;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 100000;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid #E2F86C;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
  transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(226, 248, 108, 0.1);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #091D1F;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.preloader-circle-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader-circle-svg {
  transform: rotate(-90deg);
  position: absolute;
  top: 0;
  left: 0;
}

.preloader-circle-progress {
  stroke-dasharray: 477.52; /* 2 * pi * 76 */
  stroke-dashoffset: 477.52;
}

.preloader-percentage {
  font-size: 2rem;
  font-weight: 700;
  color: #E2F86C;
  font-family: 'Outfit', sans-serif;
}

button {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-down {
  animation: fadeInDown 0.2s ease-out;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(1.15);
  }
}

.live-pulse {
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes floatMockup {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-14px) rotate(-4deg);
  }
}

.float-mockup {
  animation: floatMockup 5s ease-in-out infinite;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion) {
  .float-mockup {
    animation: none;
    transform: rotate(-4deg);
  }

  .live-pulse {
    animation: none;
  }

  .ticker-track {
    animation: none !important;
  }
}

/* Fonts */
.serif-italic {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  color: #E2F86C;
}

/* HERO SECTION */
/* HERO SECTION (Shareio-inspired Design) */
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-bottom: -25px;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 23, 16, 0.4) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Radio Tiny Noise Overlay (Optimized for performance) */
.hero-noise-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='radioNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23radioNoise)'/%3E%3C/svg%3E");
}

/* Ticker */
.ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  z-index: 60;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.ticker-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 12px;
}

/* Top Nav Header */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 20px;
  z-index: 50;
  pointer-events: auto;
}

.logo-link {
  display: block;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-link:hover {
  transform: scale(1.06);
}

.standalone-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.6));
  transition: filter 0.4s ease;
}

.logo-link:hover .standalone-logo-img {
  filter: drop-shadow(0 12px 32px rgba(31, 174, 100, 0.4));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-text {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
}

.nav-app-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-accent);
  color: var(--color-dark-hover);
  padding: 14px 20px;
  border-radius: 999px;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  border: none;
}

.nav-app-btn i {
  font-size: 1.5rem;
}

.nav-app-btn .divider {
  width: 1px;
  height: 24px;
  background: rgba(11, 23, 16, 0.2);
}

.nav-app-btn:hover {
  transform: scale(1.05);
  background: var(--color-dark-hover);
  color: var(--color-accent);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px max(24px, 5vw) 80px;
  max-width: 900px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}

.hero-heading {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.line-mask {
  overflow: hidden;
}

.line-content {
  transform: translateY(100%);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 32px;
  text-align: left;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.2em;
    line-height: 1.65;
  }
}

.hero-cta-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
}

.scan-account-box {
  display: flex;
  align-items: center;
  gap: 32px;
}

.scan-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #E2E8F0;
  font-size: 1.125rem;
  line-height: 1.4;
  position: relative;
  font-weight: 400;
}

.hand-drawn-arrow {
  position: absolute;
  top: 100%;
  left: 60%;
  margin-top: -5px;
}

.qr-code-box.dark-bg {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code-box.dark-bg img {
  width: 96px;
  height: 96px;
}

.hero-mockup-wrapper {
  position: absolute;
  right: max(24px, 5vw);
  top: 50%;
  margin-top: -300px;
  z-index: 2;
  display: none;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
}

@media (min-width: 1024px) {
  .hero-mockup-wrapper {
    display: block;
  }
}

/* ABOUT SECTION */
#about {
  background: var(--color-about-bg);
  border-radius: 25px 25px 0 0;
  position: relative;
  z-index: 10;
  padding: 80px 24px;
}

@media (min-width: 768px) {
  #about {
    padding: 128px 24px;
  }
}

.about-top {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.about-top p {
  color: var(--color-about-text);
  font-size: 1.5rem;
  line-height: 2;
  max-width: 32rem;
  margin: 0 auto 32px;
}

@media (min-width: 768px) {
  .about-top p {
    font-size: 1.5rem;
  }
}

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

.btn-hello,
.btn-notify {
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 12px 24px 12px 12px;
  font-size: 0.875rem;
  gap: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hello {
  background: var(--color-dark-hover);
  color: #FFFFFF;
}

.btn-hello:hover {
  background: var(--color-accent);
  color: var(--color-dark-hover);
}

.btn-notify {
  background: var(--color-accent);
  color: var(--color-dark-hover);
}

.btn-notify:hover {
  background: var(--color-dark-hover);
  color: var(--color-accent);
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-about-text);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-hello:hover .icon-circle,
.btn-notify:hover .icon-circle {
  background: var(--color-accent);
  color: var(--color-dark-hover);
}

.btn-notify .icon-circle {
  background: var(--color-dark-hover);
  color: var(--color-accent);
}

.about-divider {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 64px 0;
}

.about-divider .circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-muted-accent);
}

.about-divider .line {
  flex: 1;
  height: 2px;
  background: var(--color-muted-accent);
}

.about-bottom {
  max-width: 1152px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.about-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-about-text);
}

.about-bottom-right {
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
  line-height: 1.65;
  font-weight: 500;
  color: var(--color-about-text);
  flex: 1;
  letter-spacing: -2%;
}

/* FEATURES SECTION */
/* FEATURES SCROLL SECTION */
#features-wrapper {
  position: relative;
  background-color: #E5D9E5;
  transition: background-color 0.5s ease;
}

.features-pinned-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.feature-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 40px 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
}

/* Individual Panel Theme Colors */
.panel-1 {
  background-color: #D8F0EC;
  color: #154347;
}

.panel-1 .btn-panel-cta {
  background-color: #154347;
  color: #D8F0EC;
}

.panel-2 {
  background-color: #FFF1E5;
  color: #D95D2E;
}

.panel-2 .btn-panel-cta {
  background-color: #D95D2E;
  color: #FFF1E5;
}

.panel-3 {
  background-color: #18181b;
  color: #E2F86C;
}

.panel-3 .btn-panel-cta {
  background-color: #E2F86C;
  color: #18181b;
}

.panel-4 {
  background-color: #E5F0FF;
  color: #1A56DB;
}

.panel-4 .btn-panel-cta {
  background-color: #1A56DB;
  color: #E5F0FF;
}

.panel-5 {
  background-color: #F3E8FF;
  color: #7E22CE;
}

.panel-5 .btn-panel-cta {
  background-color: #7E22CE;
  color: #F3E8FF;
}

.panel-6 {
  background-color: #0f172a;
  color: #F472B6;
}

.panel-6 .btn-panel-cta {
  background-color: #F472B6;
  color: #0f172a;
}

.panel-7 {
  background-color: #064E3B;
  color: #10B981;
}

.panel-7 .btn-panel-cta {
  background-color: #10B981;
  color: #064E3B;
}

.panel-8 {
  background-color: #4C0519;
  color: #FB7185;
}

.panel-8 .btn-panel-cta {
  background-color: #FB7185;
  color: #4C0519;
}

.panel-9 {
  background-color: #0F172A;
  color: #22D3EE;
}

.panel-9 .btn-panel-cta {
  background-color: #22D3EE;
  color: #0F172A;
}

@media (min-width: 1024px) {
  .feature-panel {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 80px;
    gap: 0;
  }
}

.feature-panel-left,
.feature-panel-center,
.feature-panel-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-panel-left,
.feature-panel-right {
  z-index: 2;
}

.feature-panel-left {
  align-items: flex-start;
}

.feature-panel-right {
  align-items: flex-end;
  text-align: right;
}

.feature-panel-right .panel-description {
  max-width: 400px;
}

.feature-panel-center {
  align-items: center;
  z-index: 1;
}

.panel-heading {
  text-transform: capitalize;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 64px;
}

.phone-shadow-wrapper {
  /* No shadows, let layout and color do the work */
}

.panel-phone {
  width: 100%;
  max-width: 320px; /* Reduced from 320px */
  height: auto;
  border-radius: 36px;
  margin: 0 auto;
}

.panel-phone-img {
  width: 100%;
  height: auto;
  border-radius: 36px;
  display: block;
}

.panel-description {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 32px;
  opacity: 0.9;
}

.btn-panel-cta {
  background: white;
  color: var(--color-live, #E85A3B);
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==========================================================================
   STANDALONE 3D TROPHY SHOWCASE
   ========================================================================== */
#trophy-showcase {
  background: #000;
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  #trophy-showcase {
    padding: 140px 24px;
  }
}

.trophy-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.trophy-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 174, 100, 0.15);
  color: var(--color-accent);
  border: 1px solid rgba(31, 174, 100, 0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.trophy-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.trophy-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 48px;
}

.trophy-3d-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ambient Radial Glow Aura */
.trophy-glow-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle,
      rgba(31, 174, 100, 0.25) 0%,
      rgba(207, 232, 216, 0.05) 45%,
      transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.standalone-trophy-viewer {
  width: 100%;
  height: 100%;
  background: transparent;
  --poster-color: transparent;
  cursor: grab;
  position: relative;
  z-index: 2;
}

.standalone-trophy-viewer:active {
  cursor: grabbing;
}

/* Floating Stat Badges */
.trophy-stat-badge {
  position: absolute;
  z-index: 10;
  background: rgba(20, 26, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.5s ease;
}

.trophy-stat-badge:hover {
  border-color: rgba(31, 174, 100, 0.4);
  transform: translateY(-2px);
}

.badge-left {
  top: 25%;
  left: 5%;
}

.badge-right {
  bottom: 25%;
  right: 5%;
}

@media (max-width: 768px) {

  .badge-left,
  .badge-right {
    position: static;
    margin: 8px auto;
    width: max-content;
  }

  .trophy-3d-stage {
    height: 400px;
    flex-direction: column;
  }
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31, 174, 100, 0.2);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.stat-text {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.stat-text strong {
  font-size: 0.875rem;
  color: white;
  font-weight: 600;
}

.stat-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.card-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 500;
}

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

.card-description {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .card-description {
    font-size: 1rem;
  }
}

/* Phone Mockup */
.phone-mockup {
  aspect-ratio: 9/19.5;
  position: relative;
  border-radius: 40px;
  border: 6px solid black;
  background: black;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  max-width: 280px;
  margin: auto;
  width: 100%;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  border-radius: 999px;
  background: black;
  z-index: 10;
}

.phone-side-button {
  position: absolute;
  right: -6px;
  top: 96px;
  width: 4px;
  height: 32px;
  background: black;
}

.phone-screen {
  position: absolute;
  inset: 6px;
  border-radius: 32px;
  overflow: hidden;
  background: #0B1710;
}

.phone-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(31, 174, 100, 0.08), transparent 70%);
}

.phone-placeholder svg {
  opacity: 0.4;
  width: 40px;
  height: 40px;
}

.phone-placeholder-label {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* Live Dot Component */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-live);
}

.live-dot.pulse {
  animation: livePulse 1.6s ease-in-out infinite;
}

.live-label {
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--color-live);
  margin-left: 6px;
}

.placeholder-live-indicator {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   BOTTOM CTA SECTION
   ========================================================================== */
#bottom-cta {
  padding: 40px 20px 120px 20px;
  background-color: var(#091D1F);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px;
  background-image: url('../assets/images/cta-bg.webp');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #fff;
}

.cta-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cta-content p {
  font-size: 1.125rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 560px;
}

.cta-download-btn {
  display: flex;
  align-items: center;
  background-color: #ff6b00;
  border-radius: 12px;
  padding: 8px;
  gap: 16px;
  margin-top: 16px;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-download-btn:hover {
  transform: translateY(-2px);
  background-color: #e66000;
}

.cta-btn-left {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 1rem;
}

.cta-btn-left i {
  font-size: 1.25rem;
}

.cta-pipe {
  opacity: 0.5;
  font-weight: 400;
}

.cta-qr-box {
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-qr-box img {
  width: 50px;
  height: 50px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
#faq {
  padding: 120px 40px;
  background-color: var(#0B1710);
  color: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (min-width: 768px) {
  .faq-container {
    flex-direction: row;
    gap: 80px;
  }
}

.faq-left {
  flex: 0 0 35%;
}

.faq-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.faq-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-item.active {
  background: #FFF4ED;
  color: #141A12;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  color: #ff6b00;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #4A1525;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}

/* ==========================================================================
   FOOTER (Akis Studio-inspired Design)
   ========================================================================== */
#footer {
  background-color: #091D1F;
  color: #a3a3a3;
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}

.footer-video-text {
  position: relative;
  width: 100%;
  height: clamp(200px, 50vw, 500px);
  overflow: hidden;
}

.footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.footer-svg-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.footer-bottom-content {
  padding: 60px 40px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-links-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-locations {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  align-self: flex-end;
}

.footer-locations span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-locations i {
  font-size: 1rem;
  opacity: 0.6;
}

.footer-nav-columns {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.nav-col h4 {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.nav-col a {
  display: block;
  color: #a3a3a3;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.nav-col a:hover {
  color: #fff
}

/* --- New Footer Layout Styles --- */
.new-footer-layout {
  padding: 60px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 80px;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #EAE5D9;
  max-width: 400px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #EAE5D9;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-social-link i {
  font-size: 24px;
  color: #EAE5D9;
}

.footer-social-link:hover,
.footer-social-link:hover i {
  color: #F06A33;
  /* Orange highlight */
}

.footer-grid-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.footer-action-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 12px 12px 12px 24px;
  background-color: rgba(255, 255, 255, 0.03);
  min-width: 500px;
}

.action-box-left {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #EAE5D9;
  font-weight: 600;
  font-size: 1.1rem;
}

.action-mini-logo {
  height: 32px;
  width: auto;
}

.btn-action {
  background-color: #E2F86C;
  /* Brand Accent */
  color: #154347;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}

.btn-action:hover {
  background-color: #CBE14F;
}

.footer-micro-copy {
  display: flex;
  gap: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  color: rgba(234, 229, 217, 0.5);
  letter-spacing: 0.05em;
}

.madeby-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.madeby-link:hover {
  color: #FFF;
  opacity: 0.8;
}

.madeby-icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .footer-grid-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .footer-action-box {
    width: 100%;
    min-width: 100%;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
  }
}

.btn-panel-cta {
  transition: all 0.3s ease;
}

.feature-panel .btn-panel-cta:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Pagination */
.features-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: color 0.3s ease;
}

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

.page-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.page-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.5;
  transition: all 0.3s ease;
  position: relative;
}

.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-ring-circle {
  stroke-dasharray: 88;
  stroke-dashoffset: 88;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-label {
  display: none;
  font-weight: 600;
  font-size: 1rem;
  padding-right: 8px;
  white-space: nowrap;
}

.page-indicator.active .page-num {
  opacity: 1;
}

.page-indicator.active .progress-ring-circle {
  stroke-dashoffset: 0;
}

.page-indicator.active .page-label {
  display: block;
}


/* Specific button hovers */
.panel-1 .btn-panel-cta:hover,
.panel-2 .btn-panel-cta:hover,
.panel-4 .btn-panel-cta:hover,
.panel-5 .btn-panel-cta:hover,
.panel-6 .btn-panel-cta:hover,
.panel-7 .btn-panel-cta:hover,
.panel-8 .btn-panel-cta:hover,
.panel-9 .btn-panel-cta:hover {
  background-color: #E2F86C !important;
  color: #154347 !important;
}

.panel-3 .btn-panel-cta:hover {
  background-color: #154347 !important;
  color: #E2F86C !important;
}