@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f5f5f5;
  --muted: #b5b5b5;
  --gold: #d4af37;
  --gold-soft: #f3d57a;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --transition: all 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  opacity: 0.25;
}

.orb-1 {
  width: 260px;
  height: 260px;
  background: var(--gold);
  top: 5%;
  left: -80px;
}

.orb-2 {
  width: 320px;
  height: 320px;
  background: #ffffff;
  top: 30%;
  right: -120px;
  opacity: 0.08;
}

.orb-3 {
  width: 260px;
  height: 260px;
  background: #8a6b1f;
  bottom: 10%;
  left: 30%;
  opacity: 0.18;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.section {
  padding: 110px 0;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: 0.35s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.logo span {
  color: var(--gold);
}

.nav-menu {
  display: flex;
  gap: 28px;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: var(--gold);
  transition: 0.35s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.eyebrow,
.section-tag {
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-text h1 span {
  color: var(--gold);
}

.hero-desc {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, #f3d57a, #c89d23);
  color: #111;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.35);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(16px);
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 140px;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
}

.stat-card h3 {
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-showcase {
  position: relative;
  width: 100%;
  max-width: 470px;
  padding: 20px;
}

.phone-showcase img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: perspective(1000px) rotateY(-7deg) rotateX(3deg);
  transition: 0.5s ease;
}

.phone-showcase:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.glow-ring {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  filter: blur(1px);
  animation: pulseRing 4s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.floaty {
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}

/* Strip */
.premium-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  padding: 18px 0;
}

.track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.track span {
  color: var(--gold-soft);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Section Head */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.phone-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.45s ease;
  backdrop-filter: blur(18px);
  position: relative;
}

.phone-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(0,0,0,0.65);
  color: var(--gold-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.08);
}

.phone-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 26px;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.price {
  color: var(--gold-soft);
  font-weight: 800;
  font-size: 1.05rem;
}

.mini-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212,175,55,0.35);
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.35s ease;
}

.mini-btn:hover {
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  padding: 34px 28px;
  border-radius: 24px;
  transition: 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 18px 45px rgba(0,0,0,0.28);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: rgba(212,175,55,0.12);
  color: var(--gold-soft);
  border: 1px solid rgba(212,175,55,0.18);
}

.feature-box h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-box p {
  color: var(--muted);
}

/* Highlight */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.highlight-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.highlight-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.highlight-text p {
  color: var(--muted);
  margin-bottom: 22px;
}

.lux-list {
  list-style: none;
  margin-bottom: 28px;
}

.lux-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: #e9e9e9;
}

.lux-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--card-border);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* CTA */
.cta-box {
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(212,175,55,0.08));
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 32px;
  padding: 60px 30px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

.cta-box p {
  max-width: 700px;
  margin: 0 auto 28px;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 18px 20px;
}

.contact-item span {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-item strong {
  font-size: 1rem;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(16px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: white;
  font-family: inherit;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(212,175,55,0.5);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.08);
}

.contact-form textarea {
  resize: vertical;
}

/* Footer */
.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer h3 {
  margin-bottom: 8px;
}

.footer p {
  color: var(--muted);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .highlight-grid,
  .contact-grid,
  .cards-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid .gallery-item:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 80px;
    right: 4%;
    width: 240px;
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav-menu.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .highlight-grid,
  .contact-grid,
  .cards-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-text h1 {
    font-size: 2.7rem;
  }

  .hero-stats {
    flex-direction: column;
  }

  .gallery-item img {
    height: 240px;
  }

  .section {
    padding: 90px 0;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }
}