/* ================================================
   PICBOX – Premium Homepage CSS
   Version: 1.1.0 (Cache-Busted)
   ================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Ensure Font Awesome & Icon libraries preserve their font-family */
.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
[class^="fa-"],
[class*=" fa-"] {
  font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;
}

.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
}

.fa::before,
.fas::before,
.far::before,
.fal::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-brands::before,
[class^="fa-"]::before,
[class*=" fa-"]::before,
[class^="fa-"]::after,
[class*=" fa-"]::after {
  font-family: inherit !important;
}

:root {
  --green: #111111;
  --green-dark: #27272a;
  --green-light: #f4f4f5;
  --green-glow: rgba(17, 17, 17, 0.12);
  --black: #111111;
  --dark: #18181b;
  --dark-card: #09090b;
  --cream: #fbfbfb;
  --cream2: #f4f4f5;
  --white: #ffffff;
  --text: #27272a;
  --text-muted: #71717a;
  --text-light: #a1a1aa;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-green: 0 8px 32px rgba(17, 17, 17, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --navbar-h: 72px;
  /* Purple accent for hero */
  --purple: #7c3aed;
  --purple-light: #ede9fe;
  --purple-mid: #8b5cf6;
  --purple-dark: #5b21b6;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: "Outfit", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.mobile-only {
  display: none !important;
}

/* ================================================
   NAVBAR â€“ SolarSphere Reference Light Glass Style
   ================================================ */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 16px 24px 0;
  transition: var(--transition);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 8px 28px;
  max-width: 1260px;
  margin: 0 auto;
  border-radius: 100px;

}

/* ---- Brand Logo ---- */
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}

.logo-img {
  border-radius: 0;
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.brand-name {
  color: #111111;
  font-weight: 800;
  font-size: 1.15rem;
  margin-left: 8px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.nav-brand:hover .logo-img {
  transform: scale(1.05);
}

/* ---- Nav Links ---- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

/* ---- Scrolled State Header Styling ---- */
.navbar-wrapper.scrolled {
  padding-top: 10px;
}

.navbar-wrapper.scrolled .navbar {
  background: #000000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.navbar-wrapper.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.7);
}

.navbar-wrapper.scrolled .nav-link:hover,
.navbar-wrapper.scrolled .nav-link.active {
  color: #ffffff;
}

.navbar-wrapper.scrolled .nav-getstarted-black-btn,
.navbar-wrapper.scrolled .nav-cta {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  color: #000000;
}

.navbar-wrapper.scrolled .hamburger {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-wrapper.scrolled .hamburger span {
  background: #ffffff;
}

/* ---- Nav Actions ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-getstarted-black-btn,
.nav-cta {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfd 100%);
  color: #000000;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.nav-getstarted-black-btn:hover,
.nav-cta:hover {
  background: linear-gradient(180deg, #3a3a3c 0%, #1c1c1e 100%);
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO SECTION â€“ Left Aligned with Video
   ================================================ */
.hero-section {
  min-height: 100vh;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #0b121a;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(12 18 28 / 35%) 0%, rgb(8 14 22 / 27%) 60%, rgba(5, 8, 12, 0.88) 100%);
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: auto auto;
  padding: 100px 40px 40px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  animation: fadeInUp 0.8s ease both;
}

/* Centrilix Title */
.hero-centrilix-title {
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.hero-title-italic {
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.4);
}

/* Subtitle */
.hero-centrilix-sub {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  text-align: left;
}

/* Centrilix Button Group */
.centrilix-btn-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.centrilix-white-btn {
  background: #ffffff;
  color: #111111;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 15px 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.centrilix-white-btn:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.4);
}

.centrilix-dark-btn {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 6px 6px 26px;
  border-radius: 100px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.circle-arrow-white {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #111111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
}

.centrilix-dark-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.centrilix-dark-btn:hover .circle-arrow-white {
  transform: scale(1.08);
}

/* Centrilix Brands Bar */
.centrilix-brands-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px 40px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.centrilix-brands-bar .brand-item {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* highlight-wrapper still accessible */
.highlight-wrapper {
  position: relative;
  display: inline-block;
}

.brush-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 10px;
  pointer-events: none;
}

.app-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.app-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.app-profile .prof-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.avatar-mini {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.user-info .hello {
  font-size: 0.55rem;
  opacity: 0.6;
}

.user-info .name {
  font-size: 0.65rem;
  font-weight: 700;
}

.app-profile i {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Premium dark card template matching the logo monochrome theme */
.app-credit-card {
  background: linear-gradient(135deg, #111111 0%, #2a2a2e 100%);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.app-credit-card .card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-credit-card .brand {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.app-credit-card .card-top i {
  font-size: 0.85rem;
}

.app-credit-card .card-num {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  margin: 2px 0;
  opacity: 0.85;
}

.app-credit-card .card-bottom {
  display: flex;
  justify-content: space-between;
}

.card-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.card-stat .lbl {
  font-size: 0.45rem;
  opacity: 0.7;
}

.card-stat .val {
  font-size: 0.7rem;
  font-weight: 700;
}

/* Actions grid */
.app-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 10px;
}

.action-btn {
  background: #18122b;
  border-radius: 8px;
  padding: 6px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.action-btn i {
  font-size: 0.8rem;
  color: #ffffff;
}

.action-btn span {
  font-size: 0.5rem;
  font-weight: 500;
  opacity: 0.8;
}

/* Upload List section */
.app-transactions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.trans-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 2px;
}

.trans-header a {
  color: #ffffff;
}

.trans-item {
  display: flex;
  align-items: center;
  background: #18122b;
  border-radius: 8px;
  padding: 6px 8px;
  gap: 8px;
}

.trans-item i {
  font-size: 0.8rem;
}

.font-purple {
  color: #ffffff;
}

.font-blue {
  color: #3b82f6;
}

.trans-item .details {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.1;
}

.trans-item .title {
  font-size: 0.6rem;
  font-weight: 700;
}

.trans-item .subtitle {
  font-size: 0.48rem;
  opacity: 0.6;
}

.status-ok {
  font-size: 0.6rem;
  font-weight: 700;
  color: #10b981;
}

/* Floating visual cards */
.visual-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  z-index: 3;
}

/* Card 1: stats */
.floating-stats-card {
  bottom: 8%;
  left: -20px;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
  animation: float-card 6s ease-in-out infinite;
}

.floating-stats-card .stat-top {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.floating-stats-card .lbl {
  font-size: 0.75rem;
  color: #888888;
  font-weight: 500;
}

.floating-stats-card .val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111111;
}

.floating-stats-card .stat-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 6px;
}

.floating-stats-card .date {
  color: #aaaaaa;
}

.floating-stats-card .badge {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 700;
}

/* Card 2: active users stack */
.floating-users-card {
  top: 45%;
  right: -30px;
  align-items: center;
  gap: 12px;
  animation: float-card 6s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  object-fit: cover;
  margin-left: -8px;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.user-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.user-text .num {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111111;
}

.user-text .lbl {
  font-size: 0.7rem;
  color: #888888;
  font-weight: 500;
}

/* ================================================
   FEATURE SECTIONS â€“ SHARED STYLES
   ================================================ */
.feature-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: var(--white);
}

.bg-dark {
  background: linear-gradient(135deg, #09090b 0%, #18181b 50%, #27272a 100%);
}

.feature-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 80px;
}

.feature-container.reverse {
  flex-direction: row-reverse;
}

.feature-content,
.feature-image {
  flex: 1;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.section-tag.accent {
  color: var(--green);
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.12);
}

/* Feature Title */
.feature-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.feature-title em {
  font-style: normal;
  color: var(--green);
}

.feature-title.light {
  color: var(--white);
}

.feature-title.light em {
  color: transparent;
  -webkit-text-stroke: 1px var(--green);
}

.accent-text {
  font-style: normal;
  background: linear-gradient(135deg, #111111, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature Description */
.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-desc.light {
  color: rgba(255, 255, 255, 0.7);
}


.chip i {
  color: var(--green);
  font-size: 0.85rem;
}

.chip:hover {
  border-color: var(--green);
  color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.06);
}

/* Buttons */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInUp 0.65s ease 0.3s both;
}

.btn-primary.hero-cta {
  padding: 15px 36px;
  font-size: 0.95rem;
  border-radius: 50px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.btn-primary.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary.hero-cta:hover::before {
  left: 100%;
}

.btn-primary.hero-cta span:first-child {
  margin-right: 12px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-primary.hero-cta:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(3px);
}

/* App store badges */
.hero-stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.65s ease 0.35s both;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  line-height: 1.3;
}

.store-badge i {
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.9;
}

.store-badge span {
  font-size: 0.82rem;
  font-weight: 600;
}

.store-badge small {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.7;
  display: block;
}

.store-badge:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

/* Stats bar */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  padding: 18px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.65s ease 0.45s both;
  width: fit-content;
}

.stat {
  text-align: center;
  padding: 0 24px;
}

.stat:first-child {
  padding-left: 0;
}

.stat:last-child {
  padding-right: 0;
}

.stat-num {
  display: block;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-plus {
  color: var(--green);
  font-size: 1.2rem;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.1), transparent);
  flex-shrink: 0;
}

/* ---- Visual (Right) ---- */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.75s ease 0.15s both;
}

.hero-scene {
  position: relative;
  width: 380px;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative rings */
.scene-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(17, 17, 17, 0.1);
  animation: spin-slow 25s linear infinite;
  pointer-events: none;
}

.scene-ring:nth-child(1) {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scene-ring-2 {
  width: 540px;
  height: 540px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(17, 17, 17, 0.05);
  animation-duration: 40s;
  animation-direction: reverse;
}

@keyframes spin-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Glow blob */
.phone-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse-glow {

  0%,
  100% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

/* Phone frame & image */
.hero-phone-frame {
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  width: 260px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-phone-img {
  width: 100%;
  border-radius: 36px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.22),
    0 12px 32px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: block;
  object-fit: cover;
  aspect-ratio: 9/16;
}

/* Shine overlay */
.phone-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 36px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 40%,
      transparent 60%,
      rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating cards â€“ new rich layout */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.10),
    0 2px 8px rgba(17, 17, 17, 0.04);
  z-index: 4;
  animation: float-card 4s ease-in-out infinite;
  min-width: 130px;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.fc-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--green);
  flex-shrink: 0;
}

.fc-icon.share {
  background: #e8f0fe;
  color: #4285f4;
}

.fc-icon.lock {
  background: #fef3e2;
  color: #f59e0b;
}

.fc-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.fc-val {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.fc-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.card-1 {
  top: 10%;
  left: -60px;
  animation-delay: 0s;
}

.card-2 {
  top: 48%;
  right: -56px;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 12%;
  left: -52px;
  animation-delay: 0.9s;
}

/* Pill notifications */
.hero-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 5;
  animation: float-card 5s ease-in-out 0.5s infinite;
}

.hero-pill i {
  color: var(--green);
  font-size: 0.8rem;
}

.pill-check {
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.pill-top {
  top: -18px;
  right: -10px;
  animation-delay: 0.3s;
}

.pill-bottom {
  bottom: -18px;
  right: -10px;
  animation-delay: 2s;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 1;
}

.hero-wave svg {
  width: 100%;
  height: 70px;
}

/* ================================================
   FEATURE SECTIONS â€“ SHARED STYLES
   ================================================ */
.feature-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: var(--white);
}

.bg-dark {
  background: linear-gradient(135deg, #09090b 0%, #18181b 50%, #27272a 100%);
}

.feature-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 80px;
}

.feature-container.reverse {
  flex-direction: row-reverse;
}

.feature-content,
.feature-image {
  flex: 1;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.section-tag.accent {
  color: #ffffff;
  background: rgba(17, 17, 17, 0.06);
  border-color: rgb(255 255 255 / 12%);
}

/* Feature Title */
.feature-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.feature-title em {
  font-style: normal;
  color: var(--green);
}

.feature-title.light {
  color: var(--white);
}

.feature-title.light em {
  color: transparent;
  -webkit-text-stroke: 1px var(--green);
}

.accent-text {
  font-style: normal;
  background: linear-gradient(135deg, #111111, #71717a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Feature Description */
.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-desc.light {
  color: rgba(255, 255, 255, 0.7);
}

/* Feature List */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.feature-list li i {
  color: var(--green);
  font-size: 1rem;
}

/* Learn More Link */
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-top: 8px;
}

.learn-more:hover {
  gap: 14px;
  color: var(--green-dark);
}

.accent-link {
  color: #71717a;
}

.accent-link:hover {
  color: var(--green-dark);
}

/* About Section â€“ Phone Mockup */
.about-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.about-phone-img {
  /* max-width: 320px;
  width: 100%;
  height: auto;
  object-fit: contain; */
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.13));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-phone-img:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.18));
}

#features .about-phone-img {
  max-height: 450px;
  width: auto;
}

/* Privacy First Section â€“ PIN Phone Mockup */
.pin-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.pin-phone-img {
  /* max-width: 300px;
  width: 100%;
  height: auto; */
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.13));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.pin-phone-img:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.18));
}

/* Share Memories Section â€“ Phone Mockup */
.share-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.share-phone-img {

  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.13));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.share-phone-img:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.18));
}

/* Professional Services Section â€“ Phone Mockup */
.prof-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.prof-phone-img {
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.13));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.prof-phone-img:hover {
  transform: translateY(-6px);
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.18));
}

/* Image Frames */
.img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.img-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  object-fit: contain;
}

.img-frame:hover img {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.img-frame.dark-frame img {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(17, 17, 17, 0.10);
}

.img-frame.lifestyle img {
  object-fit: contain;
}

.img-frame.right-align img {
  object-fit: contain;
}

/* Image Badge */
.img-badge {
  position: absolute;
  bottom: -16px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-md);
}

.img-badge i {
  font-size: 0.9rem;
}

/* Multi-phone layout */
.multi-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-main {
  width: 75%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.phone-overlay {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 40%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  aspect-ratio: 3/4;
  border: 4px solid var(--white);
}

.security-badge {
  position: absolute;
  top: 24px;
  left: 0;
  background: var(--green);
  color: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-green);
}

/* Share Card */
.share-card {
  position: absolute;
  top: 20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  box-shadow: var(--shadow-md);
}

/* Data card */
.data-card {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  min-width: 180px;
}

.data-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.data-bar span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bar-track {
  width: 100%;
  height: 6px;
  background: var(--cream2);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #71717a);
  border-radius: 6px;
  animation: grow-bar 2s ease-in-out 1s both;
}

@keyframes grow-bar {
  from {
    width: 0 !important;
  }
}

.bar-pct {
  font-weight: 700;
  color: var(--green);
  font-size: 0.8rem;
}

/* Group Badge */
.group-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.group-avatars {
  display: flex;
}

.group-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

.group-avatars img:first-child {
  margin-left: 0;
}

/* ================================================
   NEWSLETTER / CTA BANNER (REDESIGNED)
   ================================================ */
.newsletter-section {
  background: linear-gradient(135deg, #09090b 0%, #18181b 60%, #27272a 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nl-left {
  flex: 1;
  min-width: 0;
}

.nl-eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.nl-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.nl-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 480px;
}

.nl-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.nl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 26px;
  border-radius: 10px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nl-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.nl-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: right;
}

@media (max-width: 760px) {
  .newsletter-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .navbar {
    padding: 10px 0px 0px 0px !important;
  }

  .nl-right {
    align-items: flex-start;
    width: 100%;
  }

  .nl-btn {
    width: 100%;
    justify-content: center;
  }

  .nl-disclaimer {
    text-align: left;
  }
}

/* ================================================
   JOIN / LOGIN SECTION
   ================================================ */
.join-section {
  padding: 100px 0;
}

.join-container {
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 80px;
}

.join-left {
  flex: 1;
}

.join-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.join-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.join-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join-perks span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.join-perks i {
  color: var(--green);
}

.join-form {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.join-form h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--green-glow);
}

.form-group input::placeholder {
  color: var(--text-light);
}

.form-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-footer a {
  color: var(--green);
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.6);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}


.footer-logo-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: none;
  /* Keep the original white logo visible on dark background */
  opacity: 0.95;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-group h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer-links-group a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
  padding: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--green);
}

/* ================================================
   BACK TO TOP
   ================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-green);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll-triggered AOS-style animations */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="fade-left"] {
  transform: translateX(32px);
}

[data-aos="fade-right"] {
  transform: translateX(-32px);
}

[data-aos="fade-up"] {
  transform: translateY(32px);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0);
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* ---- Tablet (â‰¤ 1024px) ---- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .newsletter-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .newsletter-icon {
    display: none;
  }

  /* Hero: Adjust visual size */
  .hero-phone-wrap {
    max-width: 340px;
  }

  .floating-stats-card {
    left: -10px;
  }

  .floating-users-card {
    right: -15px;
  }
}

/* ---- Tablet (â‰¤ 1024px) ---- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px 40px;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    max-width: 420px;
  }

  .floating-ui-card {
    scale: 0.9;
  }

  .card-balance {
    right: -20px;
  }

  .card-transfer {
    left: -20px;
  }
}

/* ---- Mobile (â‰¤ 640px) ---- */
@media (max-width: 640px) {

  .hamburger {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .mobile-only {
    display: block !important;
  }

  .nav-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 300;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
  }

  .nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(8, 14, 22, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 110px 32px 40px;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 1002;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s linear;
    list-style: none;
  }

  .nav-links.open {
    transform: translateX(-320px);
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  }

  .nav-link:hover,
  .nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    padding-left: 24px;
  }

  .nav-links .nav-cta {
    display: block;
    margin-top: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f4f5 100%);
    color: #000000;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 28px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .nav-links .nav-cta:hover {
    background: linear-gradient(180deg, #e4e4e7 0%, #d4d4d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-blue,
  .hero-btn-black {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .floating-ui-card {
    display: none;
  }
}

/* ---- Very small (â‰¤ 480px) ---- */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem) !important;
  }
}

/* ---- Very small (â‰¤ 480px) ---- */
@media (max-width: 480px) {
  .hero-stores-row {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 180px;
    justify-content: center;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-phone-wrap {
    max-width: 220px;
  }

  .visual-card {
    display: none;
  }

  /* Hide floating cards on small mobile screens */
}

/* ---- Very small (â‰¤ 400px) ---- */
@media (max-width: 400px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .feature-title {
    font-size: 1.6rem;
  }
}

/* ===== PREMIUM ACCESS (DARK FEATURE SECTION) WHITE OVERRIDES ===== */
#features.bg-dark .feature-title.light {
  color: #ffffff;
}

#features.bg-dark .feature-title.light em,
#features.bg-dark .feature-title.light .accent-text {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: initial !important;
  color: #ffffff !important;
  -webkit-text-stroke: 0 !important;
}

#features.bg-dark .feature-desc.light {
  color: rgba(255, 255, 255, 0.9) !important;
}

#features.bg-dark .accent-link {
  color: #ffffff !important;
}

#features.bg-dark .accent-link i {
  color: #ffffff !important;
}

#features.bg-dark .accent-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

#features.bg-dark .accent-link:hover i {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ================================================
   AU2 â€” ABOUT US SECTION (Redesigned Split Layout)
   ================================================ */

/* â”€â”€ Section wrapper â”€â”€ */
.au2-section {
  position: relative;
  padding: 110px 0 60px;
  background: #fafafa;
  overflow: hidden;
}

/* Subtle tinted blob in background */
.au2-bg-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -160px;
  right: -200px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* â”€â”€ Two-column container â”€â”€ */
.au2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* ================================================
   VISUAL / IMAGE COLLAGE (left column)
   ================================================ */
.au2-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative concentric rings */
.au2-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(17, 17, 17, 0.07);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 460px;
  height: 460px;
  animation: au2-spin-ring 30s linear infinite;
  pointer-events: none;
}

.au2-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #111111;
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.25;
}

.au2-ring--inner {
  width: 340px;
  height: 340px;
  border-style: dashed;
  border-color: rgba(17, 17, 17, 0.05);
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes au2-spin-ring {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* â”€â”€ Main large photo â”€â”€ */
.au2-img-main {
  position: relative;
  z-index: 3;
  width: 240px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.18),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: -20px;
  /* Slight tilt */
  transform: rotate(-3deg);
}

.au2-img-main:hover {
  transform: rotate(-1deg) translateY(-6px);
}

.au2-img-main img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* â”€â”€ Secondary overlapping photo â”€â”€ */
.au2-img-secondary {
  position: absolute;
  z-index: 4;
  right: 10px;
  top: 50%;
  transform: translateY(-30%) rotate(4deg);
  width: 190px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.20),
    0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid #ffffff;
}

.au2-img-secondary:hover {
  transform: translateY(-36%) rotate(2deg);
}

.au2-img-secondary img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Shine overlay on photos */
.au2-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.14) 0%,
      transparent 45%,
      rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

/* â”€â”€ Floating stats badge â”€â”€ */
.au2-badge {
  position: absolute;
  z-index: 6;
  bottom: 32px;
  left: -10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
  animation: au2-float 5s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.au2-badge-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #111111 0%, #3a3a3e 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.au2-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.au2-badge-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.03em;
}

.au2-badge-text span {
  font-size: 0.72rem;
  color: #71717a;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* â”€â”€ Top pill â”€â”€ */
.au2-pill {
  position: absolute;
  z-index: 6;
  top: 20px;
  right: -4px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111111;
  color: #ffffff;
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: au2-float 5s ease-in-out 2s infinite;
  white-space: nowrap;
}

.au2-pill i {
  font-size: 0.85rem;
  opacity: 0.85;
}

@keyframes au2-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ================================================
   CONTENT (right column)
   ================================================ */
.au2-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* â”€â”€ Eyebrow tag â”€â”€ */
.au2-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #111111;
  margin-bottom: 18px;
}

.au2-tag-dot {
  width: 8px;
  height: 8px;
  background: #111111;
  border-radius: 50%;
  flex-shrink: 0;
  animation: au2-pulse-dot 2.5s ease-in-out infinite;
}

@keyframes au2-pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(17, 17, 17, 0);
  }
}

/* â”€â”€ Headline â”€â”€ */
.au2-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: #111111;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.au2-title-em {
  font-style: italic;
  font-weight: 400;
  color: #111111;
  position: relative;
  display: inline-block;
}

/* Animated underline on italic text */
.au2-title-em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #111111, rgba(17, 17, 17, 0.25));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: au2-underline-grow 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes au2-underline-grow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

/* â”€â”€ Description â”€â”€ */
.au2-desc {
  font-size: 0.96rem;
  color: #52525b;
  line-height: 1.78;
  margin-bottom: 28px;
}

.au2-desc strong {
  color: #111111;
  font-weight: 600;
}

/* â”€â”€ 2-column feature list â”€â”€ */
.au2-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}

.au2-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #3f3f46;
}

.au2-features li i {
  color: #111111;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* â”€â”€ CTA row â”€â”€ */
.au2-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.au2-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(17, 17, 17, 0.2);
}

.au2-cta-btn i {
  transition: transform 0.3s ease;
}

.au2-cta-btn:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.3);
}

.au2-cta-btn:hover i {
  transform: translateX(4px);
}

/* â”€â”€ Founder chip â”€â”€ */
.au2-founder-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  background: #f4f4f5;
  border-radius: 100px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.au2-founder-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111111, #52525b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.au2-founder-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.au2-founder-info strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111111;
}

.au2-founder-info span {
  font-size: 0.7rem;
  color: #71717a;
  font-weight: 500;
}

/* â”€â”€ Stats strip â”€â”€ */
.au2-stats-strip {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 20px 28px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: fit-content;
}

.au2-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  gap: 3px;
}

.au2-stat-item:first-child {
  padding-left: 0;
}

.au2-stat-item:last-child {
  padding-right: 0;
}

.au2-stat-n {
  font-size: 1.4rem;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.04em;
  line-height: 1;
}

.au2-stat-l {
  font-size: 0.68rem;
  font-weight: 600;
  color: #a1a1aa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.au2-stat-sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.1), transparent);
  flex-shrink: 0;
}

/* ================================================
   AU2 â€” Responsive Breakpoints
   ================================================ */
@media (max-width: 1100px) {
  .au2-container {
    gap: 56px;
  }

  .au2-ring {
    width: 380px;
    height: 380px;
  }

  .au2-ring--inner {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 900px) {
  .au2-container {
    grid-template-columns: 1fr;
    gap: 64px;
    max-width: 600px;
  }

  .au2-visual {
    min-height: 400px;
    order: 2;
  }

  .au2-content {
    order: 1;
  }

  .au2-img-main {
    width: 200px;
  }

  .au2-img-main img {
    height: 280px;
  }

  .au2-img-secondary {
    width: 160px;
    right: 20px;
  }

  .au2-img-secondary img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .au2-section {
    padding: 80px 0 72px;
  }

  .au2-container {
    padding: 0 20px;
  }

  .au2-title {
    font-size: 1.8rem;
  }

  .au2-features {
    grid-template-columns: 1fr;
  }

  .au2-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .au2-stats-strip {
    width: 100%;
    justify-content: space-around;
    padding: 16px 12px;
  }

  .au2-stat-item {
    padding: 0 12px;
  }

  .au2-badge {
    left: 0;
    bottom: 16px;
  }

  .au2-pill {
    right: 0;
    top: 8px;
  }
}

/* ================================================
   LUXURY HERITAGE CUSTOMIZED ALBUM SECTION
   ================================================ */
.lux-album-section {
  padding: 72px 24px 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.lux-album-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TOP MAIN GRID ── */
.lux-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

/* Left Content Col */
.lux-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.lux-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #111111;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.lux-tag i {
  color: #565655;
}

.lux-headline {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.16;
  color: #111111;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.lux-headline-sub {
  color: #52525b;
}

.lux-accent-line {
  width: 48px;
  height: 3px;
  background: #111111;
  border-radius: 2px;
  margin-bottom: 22px;
}

.lux-desc {
  font-size: 0.96rem;
  color: #71717a;
  line-height: 1.68;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Action Buttons */
.lux-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.lux-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.lux-btn-primary:hover {
  background: #27272a;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.lux-btn-primary i {
  transition: transform 0.3s ease;
}

.lux-btn-primary:hover i {
  transform: translateX(4px);
}

.lux-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #111111;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1.5px solid rgba(17, 17, 17, 0.18);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.lux-btn-secondary:hover {
  border-color: #111111;
  background: #f4f4f5;
}

.lux-btn-secondary i {
  color: #111111;
}

/* Right Visual Stage Col */
.lux-visual-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.lux-aura-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(17, 17, 17, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lux-book-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lux-book-wrap:hover {
  transform: translateY(-6px) scale(1.02);
}

.lux-book-img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.18));
}

/* Floating Orbiting Satellite Badges */
.lux-sat-badge {
  position: absolute;
  z-index: 4;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.lux-sat-badge:hover {
  transform: translateY(-3px);
}

.lux-sat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.lux-sat-icon i {
  color: #acaca9;
}

.lux-sat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.lux-sat-text strong {
  font-size: 0.72rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.04em;
}

.lux-sat-text span {
  font-size: 0.68rem;
  color: #71717a;
  font-weight: 600;
}

/* Satellite Positions matching reference image */
.lux-sat-1 {
  top: 10px;
  left: 20px;
}

.lux-sat-2 {
  top: 30px;
  right: 15px;
}

.lux-sat-3 {
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}

.lux-sat-4 {
  bottom: 20px;
  right: 25px;
}

/* ── BOTTOM 3-COLUMN FEATURE STRIP ── */
.lux-bottom-bar {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
}

.lux-feat-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lux-feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.lux-feat-icon i {
  color: #acaca9;
}

.lux-feat-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.lux-feat-content p {
  font-size: 0.8rem;
  color: #71717a;
  line-height: 1.45;
}

.lux-feat-divider {
  width: 1px;
  height: 44px;
  background: rgba(0, 0, 0, 0.08);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .lux-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lux-content-col {
    align-items: center;
    text-align: center;
  }

  .lux-desc {
    max-width: 100%;
  }

  .lux-actions {
    justify-content: center;
  }

  .lux-bottom-bar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }

  .lux-feat-divider {
    display: none;
  }

  .lux-sat-3 {
    right: 0;
  }
}

@media (max-width: 576px) {
  .lux-album-section {
    padding: 44px 14px 36px;
  }

  .lux-book-img {
    height: 220px;
  }

  .lux-sat-badge {
    position: relative;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 10px;
  }

  .lux-visual-col {
    flex-direction: column;
    min-height: auto;
  }

  .lux-actions {
    width: 100%;
  }

  .lux-btn-primary,
  .lux-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   UNIQUE MINIMAL FULL-WIDTH CTA SECTION
   ================================================ */
.newsletter-section {
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.nl-min-banner {
  width: 100%;
  position: relative;
  background: radial-gradient(circle at 50% -20%, #1e1e28 0%, #0e0e14 65%, #060608 100%);
  padding: 68px 24px;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nl-min-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.nl-min-glow-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  pointer-events: none;
}

.nl-min-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nl-min-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.nl-min-tag i {
  color: #fbbf24;
}

.nl-min-title {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.nl-min-title-em {
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nl-min-sub {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 640px;
}

.nl-min-action {
  display: flex;
  justify-content: center;
}

.nl-min-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 15px 38px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.22);
}

.nl-min-btn:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.38);
}

.nl-min-btn i {
  transition: transform 0.3s ease;
}

.nl-min-btn:hover i {
  transform: translateX(4px);
}

/* Responsive Media Queries */
@media (max-width: 576px) {
  .nl-min-banner {
    padding: 48px 16px;
  }

  .nl-min-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================
   HANDCRAFTED CUSTOM ALBUMS HERO SECTION (REFERENCE RECREATION)
   ================================================ */
.handcrafted-album-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #060608;
  background-image:
    linear-gradient(180deg, rgba(6, 6, 8, 0.70) 0%, rgba(6, 6, 8, 0.45) 50%, rgba(6, 6, 8, 0.85) 100%),
    url('../pic-new-live/custom-album-bg.webp'),
    url('../pic-new-live/cta-4.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0px 5%;
  box-sizing: border-box;
}

/* Subtle Vignette & Ambient Radial Glow */
.handcrafted-album-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.15) 0%, rgba(6, 6, 8, 0.75) 85%);
  pointer-events: none;
  z-index: 1;
}

.handcrafted-album-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* ── LEFT SIDE: Text Content Block ── */
.handcrafted-left-col {
  flex: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* ── RIGHT SIDE: Action Button ── */
.handcrafted-right-col {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* 1. Eyebrow Tag / Pill Badge */
.handcrafted-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(18, 18, 22, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.handcrafted-badge span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}

.handcrafted-badge:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* 2. Main Headline */
.handcrafted-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  letter-spacing: -0.015em;
  margin: 0 0 14px 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}

/* 3. Subtitle */
.handcrafted-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.92rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* 4. Action CTA Button */
.handcrafted-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #ffffff;
  color: #0d0d0f;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  cursor: pointer;
}

.handcrafted-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.handcrafted-btn:hover {
  background-color: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.28);
}

.handcrafted-btn:hover i {
  transform: translateX(5px);
}

/* ── Responsive Adjustments ── */
@media (max-width: 992px) {
  .handcrafted-album-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }

  .handcrafted-left-col {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .handcrafted-right-col {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .handcrafted-album-section {
    min-height: 400px;
    padding: 70px 20px;
  }

  .handcrafted-badge {
    padding: 6px 20px;
    margin-bottom: 18px;
  }

  .handcrafted-badge span {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .handcrafted-headline {
    margin-bottom: 12px;
  }

  .handcrafted-btn {
    padding: 14px 32px;
    font-size: 0.94rem;
  }
}

@media (max-width: 480px) {
  .handcrafted-album-section {
    min-height: 350px;
    padding: 56px 16px;
  }

  .handcrafted-badge span {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .handcrafted-btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ---- Mobile Feature sections stacked view ---- */
@media (max-width: 768px) {
  .feature-container {
    flex-direction: column !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .feature-container.reverse {
    flex-direction: column !important;
  }

  .feature-content,
  .feature-image {
    width: 100% !important;
    flex: none !important;
  }

  .about-phone-img,
  .pin-phone-img,
  .share-phone-img,
  .prof-phone-img {
    max-width: 280px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  #features .about-phone-img {
    max-height: 380px !important;
    width: auto !important;
  }
}