*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #0d1b2e;
  --blue: #1a3a5c;
  --cyan: #c9a84c;
  --orange: #e8b84b;
  --white: #f5f0e8;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(201, 168, 76, 0.2);
  --black: #000000;
  --light-black:#080808;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--black);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom cursor ── */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
}
body:has(a:hover) #cursor {
  width: 20px;
  height: 20px;
  background: var(--orange);
}
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
  background: var(--orange);
}

/* ── Noise overlay ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── Grid lines ── */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(
      rgba(201, 168, 76, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── Section wrapper ── */
section {
  position: relative;
  z-index: 2;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════
   HEADER
══════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0.9rem 0;
  background: var(--light-black);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transform: translateY(-100%);
  animation: slideDown 0.7s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-image: url("logo-removebg-preview.png");
  background-size: cover;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  position: relative;
}
.logo-icon::after {
  content: "";
  position: absolute;
  inset: 0;
}
.logo-text {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(240, 244, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-cta {
  padding: 0.55rem 1.4rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  cursor: none;
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.nav-cta:hover {
  background: var(--cyan);
  color: var(--navy);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.orb1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(26, 58, 92, 0.7), transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -150px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.15),
    transparent 70%
  );
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1), transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-40px, 30px) scale(1.1);
  }
}
@keyframes orbFloat2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -40px);
  }
}
@keyframes orbFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 20px) scale(1.2);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.07);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s ease forwards;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s ease forwards;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), #f0d080 50%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradShift 4s ease-in-out infinite alternate;
}
@keyframes gradShift {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(240, 244, 255, 0.55);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s ease forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--cyan), var(--orange));
  color: var(--navy);
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange), #f0d080);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.5);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid rgba(240, 244, 255, 0.15);
  color: rgba(240, 244, 255, 0.7);
  cursor: none;
  transition: all 0.2s;
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}
.stat-num {
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(240, 244, 255, 0.4);
  margin-top: 0.1rem;
}

/* ── Hero visual ── */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeScale 0.9s 0.7s ease forwards;
}
@keyframes fadeScale {
  from {
    opacity: 0;
    transform: scale(0.9) rotateY(-15deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0);
  }
}

.phone-mockup {
  width: 320px;
  margin: 0 auto;
  position: relative;
  filter: drop-shadow(0 40px 80px rgba(201, 168, 76, 0.15));
}
.phone-frame {
  width: 100%;
  aspect-ratio: 0.47;
  border-radius: 40px;
  background: linear-gradient(160deg, #1a2a3d, #0f1d2e);
  border: 1.5px solid rgba(201, 168, 76, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.04),
    inset 0 0 60px rgba(26, 58, 92, 0.3);
}
.phone-screen {
  padding: 1.5rem 1.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-logo {
  font-family: "Sora", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
}
.phone-qr {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: repeating-conic-gradient(
      rgba(201, 168, 76, 0.4) 0% 25%,
      transparent 0% 50%
    )
    0 0/8px 8px;
}
.menu-item {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.1);
  animation: itemGlow 3s ease-in-out infinite;
}
.menu-item:nth-child(2) {
  animation-delay: 0.5s;
}
.menu-item:nth-child(3) {
  animation-delay: 1s;
}
@keyframes itemGlow {
  0%,
  100% {
    border-color: rgba(201, 168, 76, 0.1);
  }
  50% {
    border-color: rgba(201, 168, 76, 0.35);
  }
}
.item-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.6),
    rgba(201, 168, 76, 0.2)
  );
}
.item-info {
  flex: 1;
}
.item-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.item-price {
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 600;
}
.item-add {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
.phone-order-btn {
  margin-top: auto;
  padding: 0.6rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), #c9843a);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  animation: btnPulse 2.5s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 8px rgba(201, 168, 76, 0);
  }
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: rgba(10, 14, 39, 0.9);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}
.fb-top {
  top: -1rem;
  right: -2rem;
  animation: floatBadge 6s ease-in-out infinite;
}
.fb-bottom {
  bottom: 3rem;
  left: -2.5rem;
  animation: floatBadge 8s 1s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fb-label {
  font-size: 0.65rem;
  color: rgba(240, 244, 255, 0.4);
  margin-bottom: 0.15rem;
}
.fb-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}
.fb-green {
  color: #4ade80;
}
.fb-cyan {
  color: var(--cyan);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════════
   MARQUEE (logos / trust)
══════════════════════════════════ */
.marquee-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.25);
  margin-bottom: 1.5rem;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(240, 244, 255, 0.2);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover {
  color: var(--cyan);
}
.m-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.4);
}

/* ══════════════════════════════════
   SERVICES
══════════════════════════════════ */
.section {
  padding: 6rem 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-sub {
  margin-top: 0.75rem;
  color: rgba(240, 244, 255, 0.45);
  max-width: 520px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.service-card {
  padding: 1.75rem;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.3s, box-shadow 0.3s;
  cursor: none;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(201, 168, 76, 0.08),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(201, 168, 76, 0.12) inset;
}
.service-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}
.icon-blue {
  background: rgba(26, 58, 92, 0.4);
  border: 1px solid rgba(26, 58, 92, 0.7);
}
.icon-cyan {
  background: rgba(201, 168, 76, 0.1);
  color: var(--cyan);
}
.icon-orange {
  background: rgba(232, 184, 75, 0.15);
  border: 1px solid rgba(232, 184, 75, 0.35);
}

.card-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.card-desc {
  font-size: 0.875rem;
  color: rgba(240, 244, 255, 0.45);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(201, 168, 76, 0.7);
  position: relative;
  z-index: 1;
  transition: gap 0.2s, color 0.2s;
}
.service-card:hover .card-arrow {
  gap: 0.7rem;
  color: var(--cyan);
}

/* ══════════════════════════════════
   FEATURES (bento)
══════════════════════════════════ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.bento-big {
  grid-column: span 2;
  padding: 2.5rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.bento-tall {
  grid-row: span 2;
  padding: 2rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}
.bento-sm {
  padding: 1.75rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
}
.bento-card {
  transition: border-color 0.3s;
  cursor: none;
}
.bento-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
}
.bento-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.75);
  margin-bottom: 0.75rem;
}
.bento-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.bento-desc {
  font-size: 0.85rem;
  color: rgba(240, 244, 255, 0.4);
  line-height: 1.6;
}

/* Analytics bars */
.analytics {
  position: absolute;
  bottom: 2rem;
  left: 2.5rem;
  right: 2.5rem;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}
.bar-name {
  font-size: 0.7rem;
  color: rgba(240, 244, 255, 0.4);
  width: 60px;
  text-align: right;
}
.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: barGrow 1s ease forwards;
}
.bar1 {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  animation-delay: 0.2s;
  --w: 0.82;
}
.bar2 {
  background: linear-gradient(90deg, var(--orange), #c9843a);
  animation-delay: 0.4s;
  --w: 0.65;
}
.bar3 {
  background: linear-gradient(90deg, #8b5cf6, var(--cyan));
  animation-delay: 0.6s;
  --w: 0.9;
}
.bar4 {
  background: linear-gradient(90deg, var(--blue), #818cf8);
  animation-delay: 0.8s;
  --w: 0.55;
}
@keyframes barGrow {
  to {
    transform: scaleX(var(--w));
  }
}
.bar-val {
  font-size: 0.7rem;
  color: var(--cyan);
  font-weight: 600;
  width: 30px;
}

/* World dots */
.world-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.35;
}
.world-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cyan);
}
.pulse-ring {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.5);
  animation: ringExpand 2.5s ease-out infinite;
}
.pulse-ring:nth-child(2) {
  animation-delay: 0.8s;
}
.pulse-ring:nth-child(3) {
  animation-delay: 1.6s;
}
@keyframes ringExpand {
  0% {
    transform: scale(0.3);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
  align-items: start;
}
.price-card {
  border-radius: 20px;
  padding: 2rem 1.5rem;
  background: var(--glass);
  border: 1px solid rgba(201, 168, 76, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  cursor: none;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.3);
}
.price-card.featured {
  background: linear-gradient(
    160deg,
    rgba(26, 58, 92, 0.4),
    rgba(201, 168, 76, 0.1)
  );
  border-color: rgba(201, 168, 76, 0.5);
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
}
.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}
.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1.2rem;
  border-radius: 0 0 12px 12px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.plan-name {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(240, 244, 255, 0.6);
  margin-bottom: 0.5rem;
}
.plan-price {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  gap: 0.2rem;
  line-height: 1;
  margin: 0.75rem 0;
}
.plan-price sup {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.plan-price small {
  font-size: 0.8rem;
  color: rgba(240, 244, 255, 0.3);
  margin-bottom: 0.3rem;
}
.plan-desc {
  font-size: 0.8rem;
  color: rgba(240, 244, 255, 0.35);
  margin-bottom: 1.25rem;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: rgba(240, 244, 255, 0.6);
}
.plan-features li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.plan-btn {
  width: 100%;
  padding: 0.7rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: transparent;
  color: var(--cyan);
  cursor: none;
  transition: all 0.2s;
}
.plan-btn:hover,
.price-card.featured .plan-btn {
  background: var(--cyan);
  color: var(--navy);
  border-color: var(--cyan);
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  margin-top: 3.5rem;
  overflow: hidden;
}
.testi-card {
  min-width: 340px;
  padding: 2rem;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid rgba(201, 168, 76, 0.1);
  flex-shrink: 0;
}
.stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
}
.star {
  color: var(--orange);
  font-size: 0.9rem;
}
.testi-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(240, 244, 255, 0.65);
  margin-bottom: 1.25rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.author-name {
  font-weight: 600;
  font-size: 0.875rem;
}
.author-role {
  font-size: 0.75rem;
  color: rgba(240, 244, 255, 0.35);
}

/* Scrolling track */
.scroll-track {
  animation: scrollLeft 25s linear infinite;
}
.scroll-track:hover {
  animation-play-state: paused;
}
@keyframes scrollLeft {
  to {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

/* ══════════════════════════════════
   CTA
══════════════════════════════════ */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-blob1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(26, 58, 92, 0.6), transparent 70%);
}
.cta-blob2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.2), transparent 70%);
}
.cta-inner {
  border-radius: 24px;
  padding: 4rem;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 92, 0.3),
    rgba(201, 168, 76, 0.1)
  );
  border: 1px solid rgba(201, 168, 76, 0.25);
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  pointer-events: none;
}
.cta-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-sub {
  color: rgba(240, 244, 255, 0.45);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(240, 244, 255, 0.3);
}
.trust-check {
  color: var(--cyan);
  font-size: 0.9rem;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(240, 244, 255, 0.3);
  margin-top: 0.75rem;
  max-width: 220px;
  line-height: 1.6;
}
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  cursor: none;
  transition: all 0.2s;
  text-decoration: none;
  color: rgba(240, 244, 255, 0.4);
}
.social-btn:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.45);
  color: var(--cyan);
}
.footer-col h4 {
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(240, 244, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(240, 244, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--cyan);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.07);
  font-size: 0.8rem;
  color: rgba(240, 244, 255, 0.2);
}

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ══════════════════════════════════
   PROGRESS BAR
══════════════════════════════════ */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 200;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  width: 0%;
  transition: width 0.1s;
}

/* ── Hamburger Button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--glass-border);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px;
  z-index: 201;
  transition: border-color 0.2s;
}
.hamburger:hover {
  border-color: var(--cyan);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--cyan);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--cyan);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
}
.mobile-nav ul a {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(240, 244, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.mobile-nav ul a:hover {
  color: var(--cyan);
}
.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

/* ── Mobile Close Button ── */
.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  color: var(--white);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.mobile-nav-close:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── Hide cursor on touch devices ── */
@media (hover: none) and (pointer: coarse) {
  body {
    cursor: auto;
  }
  #cursor,
  #cursor-ring {
    display: none !important;
  }
  .btn-primary,
  .btn-ghost,
  .nav-cta,
  .plan-btn,
  .social-btn,
  .hamburger,
  a {
    cursor: pointer;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .bento {
    grid-template-columns: 1fr;
    width: fit-content;
    height: fit-content;
  }
  .bento-desc1{
    font-size: 11px;
  }
  .bento-big,
  .bento-tall {
    grid-column: 1;
    grid-row: auto;
  }
  .bento-sm{
    grid-column: 1;
    grid-row: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
  .hero-visual {
    display: none;
  }
}
/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.contact-form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(240,244,255,0.55);
  letter-spacing: 0.03em;
}
.req {
  color: var(--cyan);
}
.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-input::placeholder {
  color: rgba(240,244,255,0.2);
}
.form-input:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.04);
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(201,168,76,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-select option {
  background: var(--black);
  color: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 110px;
  font-family: "DM Sans", sans-serif;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 0.9rem;
  font-size: 0.95rem;
  cursor: pointer;
  margin-top: 0.25rem;
}

/* Success state */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
  gap: 1rem;
}
.success-icon {
  font-size: 3.5rem;
  color: var(--cyan);
  animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.form-success p {
  color: rgba(240,244,255,0.45);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem 0;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.fa-star {
  color: var(--cyan);
}
.footer-link {
  color: var(--cyan);
  text-decoration: none;
}
.footer-link:hover {
  color: var(--orange);
  text-decoration: underline;
}
.bento-title i{
  color: var(--cyan);
}