/* ═══════════════════════════════════════════════════════════
   UDAAN AVIATION — Light Theme (White · Navy · Sky Blue)
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --bg-primary:    #f0f6ff;
  --bg-secondary:  #e8f1fb;
  --bg-white:      #ffffff;
  --bg-card:       rgba(255, 255, 255, 0.85);
  --bg-card-hover: rgba(255, 255, 255, 1);

  --navy:          #0a1f44;
  --navy-mid:      #1a3a6b;
  --navy-light:    #2563a8;
  --sky:           #3b9eff;
  --sky-light:     #7ec8ff;
  --sky-pale:      #d4eaff;

  --text-primary:  #0a1f44;
  --text-secondary: #3d5a80;
  --text-muted:    #7a94b0;

  --border:        rgba(37, 99, 168, 0.12);
  --border-strong: rgba(37, 99, 168, 0.25);
  --border-glow:   rgba(59, 158, 255, 0.35);

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-card:   0 4px 24px rgba(10, 31, 68, 0.08);
  --shadow-hover:  0 12px 40px rgba(10, 31, 68, 0.15);
  --shadow-glow:   0 0 32px rgba(59, 158, 255, 0.2);
  --shadow-blue:   0 8px 30px rgba(37, 99, 168, 0.25);

  --font-main: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: rgba(59, 158, 255, 0.2); color: var(--navy); }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(59, 158, 255, 0.35);
  border-radius: 20px;
  padding: 6px 18px;
  margin-bottom: 20px;
  background: rgba(59, 158, 255, 0.06);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(10, 31, 68, 0.08);
  border-bottom-color: var(--border-strong);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--navy);
}

.logo-accent { color: var(--sky); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--navy);
  background: var(--sky-pale);
}

.nav-cta {
  flex-shrink: 0;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.nav-cta:hover {
  background: var(--sky);
  transform: translateY(-1px);
  box-shadow: var(--shadow-blue);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 0.80; /* Increased opacity as requested */
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 168, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 168, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 600px; height: 600px;
  background: rgba(59, 158, 255, 0.12);
  top: -200px; left: -100px;
  animation: float-orb 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: rgba(37, 99, 168, 0.10);
  bottom: -100px; right: -100px;
  animation: float-orb 15s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: rgba(126, 200, 255, 0.14);
  top: 40%; right: 20%;
  animation: float-orb 10s ease-in-out infinite 3s;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 8px 16px;
  margin-bottom: 32px;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
}

.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--navy);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #fff;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.7;
}

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

.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--sky);
  box-shadow: 0 12px 40px rgba(59, 158, 255, 0.4);
}

.btn-ghost {
  background: var(--bg-white);
  color: var(--navy);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  box-shadow: var(--shadow-card);
}

.btn-ghost:hover {
  border-color: var(--sky);
  color: var(--sky);
  background: var(--sky-pale);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow-card);
  width: fit-content;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}


/* ─── SCROLL INDICATOR ───────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--sky), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.about-card {
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
}

.about-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.about-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ─── FIRMWARE PRODUCTS ──────────────────────────────────── */
.products {
  padding: 120px 0;
  background: var(--bg-primary);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky), var(--navy));
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.product-card {
  padding: 36px;
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
}

.product-card.featured {
  border-color: rgba(37, 99, 168, 0.3);
  box-shadow: var(--shadow-blue);
}

.product-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}

.product-card.coming-soon {
  opacity: 0.65;
  filter: saturate(0.5);
}

.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 12px;
  border-radius: 20px;
}

.soon-badge {
  background: linear-gradient(135deg, var(--text-muted), #aaa) !important;
}

.product-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.product-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--sky-pale);
  border: 1px solid rgba(59, 158, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.product-icon-wrap.dim {
  background: var(--bg-secondary);
  border-color: var(--border);
}

.product-tag {
  font-size: 11px;
  color: var(--sky);
  font-weight: 600;
  letter-spacing: 1px;
}

.product-name {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--navy);
}

.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.feat-icon {
  color: #22c55e;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feat-icon.dim { color: var(--text-muted); }

.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-mono);
  line-height: 1;
}

.price-note {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
  margin-right: 4px;
}

.btn-buy {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}

.btn-buy:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 158, 255, 0.45);
}

.btn-buy:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-notify {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: not-allowed;
  font-family: var(--font-main);
}

.product-trust {
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* ─── DRONE FRAMES SECTION ───────────────────────────────── */
.frames-section {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.frames-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 158, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 158, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.frames-section .section-tag {
  color: var(--sky-light);
  border-color: rgba(126, 200, 255, 0.35);
  background: rgba(126, 200, 255, 0.08);
}

.frames-section .section-title {
  color: #fff;
}

.frames-section .section-sub {
  color: rgba(255, 255, 255, 0.65);
}

.frames-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.frame-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.frame-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 158, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 158, 255, 0.15);
}

.frame-card.featured-frame {
  border-color: rgba(59, 158, 255, 0.35);
  background: rgba(59, 158, 255, 0.08);
}

.frame-card.featured-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-light), var(--sky));
}

.frame-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.frame-badge-blue {
  background: rgba(59, 158, 255, 0.2);
  color: var(--sky-light);
  border: 1px solid rgba(59, 158, 255, 0.3);
}

.frame-badge-navy {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.frame-badge-teal {
  background: rgba(34, 211, 238, 0.15);
  color: #7dd3fc;
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.frame-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.frame-icon-featured {
  background: rgba(59, 158, 255, 0.15);
  border-color: rgba(59, 158, 255, 0.3);
}

.frame-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.frame-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--sky-light);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.frame-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 24px;
}

.frame-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.frame-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.spec-label {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.spec-value {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.frame-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.frame-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.frame-price .price-currency {
  color: rgba(255, 255, 255, 0.6);
}

.frame-price .price-amount {
  color: #fff;
}

.btn-frame-order {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
}

.btn-frame-order:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 158, 255, 0.4);
}

.btn-frame-featured {
  background: var(--sky);
  border-color: var(--sky);
}

.btn-frame-featured:hover {
  background: var(--sky-light);
  border-color: var(--sky-light);
}

.frames-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  position: relative;
  z-index: 1;
}

.frames-note-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.frames-note p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.frames-note p strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  background: var(--bg-white);
}

.steps-container {
  display: flex;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(37, 99, 168, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.step:hover .step-number {
  color: rgba(59, 158, 255, 0.35);
  transition: var(--transition);
}

.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.step-connector {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), transparent);
  z-index: 2;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-item {
  padding: 36px 28px;
  text-align: center;
  background: var(--bg-white);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.contact-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.contact-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 60px 0 40px;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 10px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--sky-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.test-badge {
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: #fb923c !important;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px !important;
  font-weight: 600;
}

/* ─── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 68, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(10, 31, 68, 0.2), 0 0 0 1px rgba(37, 99, 168, 0.1);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--sky-pale);
  border-color: var(--sky);
  color: var(--navy);
}

/* Success state */
.modal-success { text-align: center; }

.success-icon {
  margin: 0 auto 28px;
  width: 72px; height: 72px;
}

.checkmark { width: 72px; height: 72px; }

.checkmark-circle {
  stroke: #22c55e;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  stroke: #22c55e;
  stroke-width: 2.5;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

.modal-success h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.modal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Firmware display */
.firmware-display {
  background: #f8faff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  margin-bottom: 24px;
}

.firmware-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--sky-pale);
  border-bottom: 1px solid var(--border-strong);
  gap: 12px;
  flex-wrap: wrap;
}

.firmware-filename {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--navy-light);
}

.firmware-actions { display: flex; gap: 8px; }

.btn-copy, .btn-download {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
}

.btn-copy:hover, .btn-download:hover {
  background: var(--sky-pale);
  border-color: var(--sky);
  color: var(--navy);
}

.firmware-code {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.8;
  color: var(--navy-mid);
  padding: 20px;
  overflow-x: auto;
  white-space: pre;
  max-height: 360px;
  overflow-y: auto;
  background: #f0f6ff;
}

.modal-footer-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* Loading & error states */
.modal-loading, .modal-error {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  width: 52px; height: 52px;
  border: 3px solid var(--sky-pale);
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

.modal-loading h3, .modal-error h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.modal-loading p, .modal-error p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.error-icon { font-size: 3rem; margin-bottom: 16px; }

/* ─── FRAME ORDER MODAL ──────────────────────────────────── */
.frame-order-modal {
  max-width: 480px;
}

.frame-order-content { text-align: center; }

.frame-order-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.frame-order-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.frame-order-selected {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 16px;
}

.frame-order-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.frame-order-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-email-order {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-md);
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-email-order:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.frame-price-confirm {
  font-size: 13px;
  color: var(--text-muted);
}

.frame-price-confirm strong {
  color: var(--navy);
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 30px;
  z-index: 3000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: var(--shadow-blue);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ─── REVEAL ANIMATION ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── KEYFRAMES ──────────────────────────────────────────── */
@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes drone-hover {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-15px) rotate(1deg); }
  75%       { transform: translateY(5px) rotate(-1deg); }
}

@keyframes spin-prop {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
  50%       { opacity: 0.4; box-shadow: 0 0 2px rgba(34, 197, 94, 0.3); }
}

@keyframes led-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

@keyframes scroll-line {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%  { opacity: 0.3; }
  100% { opacity: 1; transform: scaleY(1); }
}

@keyframes shadow-pulse {
  0%, 100% { opacity: 1; width: 200px; }
  50%       { opacity: 0.4; width: 160px; }
}

@keyframes stroke {
  100% { stroke-dashoffset: 0; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
/* ─── FIRMWARE DOWNLOAD CARD ─────────────────────────────── */
.fw-download-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
  text-align: left;
}

.fw-file-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.fw-file-icon { font-size: 2rem; flex-shrink: 0; }

.fw-file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.fw-filename {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fw-filemeta {
  font-size: 12px;
  color: var(--text-muted);
}

.fw-status-wrap {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fw-spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--sky-pale);
  border-top-color: var(--sky);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.fw-done-tick {
  font-size: 1.4rem;
  color: #22c55e;
  font-weight: 700;
  animation: pop-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fw-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.fw-msg-preparing {
  background: rgba(59, 158, 255, 0.08);
  color: var(--sky);
  border: 1px solid rgba(59, 158, 255, 0.2);
}

.fw-msg-success {
  background: rgba(34, 197, 94, 0.08);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.fw-msg-warn {
  background: rgba(234, 179, 8, 0.08);
  color: #a16207;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

.btn-manual-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  margin-top: 4px;
  box-shadow: var(--shadow-blue);
}

.btn-manual-download:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 158, 255, 0.4);
}

.modal-footer-note a {
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
}

.modal-footer-note a:hover { text-decoration: underline; }

@keyframes pop-in {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── CONTACT LINK ───────────────────────────────────────── */
.contact-link {
  font-size: 0.88rem;
  color: var(--sky);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  word-break: break-all;
}
.contact-link:hover { color: var(--navy); text-decoration: underline; }

/* ─── CONTACT CARD LINKS ─────────────────────────────────── */
.contact-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.contact-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(59, 158, 255, 0.15);
  border-color: rgba(59, 158, 255, 0.3);
}

.contact-icon-img {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.contact-icon-img img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}

.contact-handle {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  word-break: break-all;
  text-align: center;
  margin-top: 4px;
}

.contact-card-link:hover .contact-handle {
  color: var(--navy);
}

/* Override any default browser link styles on cards */
a.contact-item { color: inherit; }
.social-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ─── FRAMES COMING SOON BANNER ──────────────────────────── */
.frames-coming-soon-banner {
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  z-index: 1;
}

.fsb-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.fsb-icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }

.fsb-top h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.fsb-top p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.fsb-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.fsb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.fsb-instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.fsb-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 29, 29, 0.35);
}

.fsb-linkedin {
  background: #0a66c2;
  color: #fff;
}

.fsb-linkedin:hover {
  background: #0856a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.4);
}

.fsb-email {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.fsb-email:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* ─── MODAL SOCIAL BUTTONS ───────────────────────────────── */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253, 29, 29, 0.35);
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  background: #0a66c2;
  color: #fff;
}

.btn-linkedin:hover {
  background: #0856a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 102, 194, 0.4);
}

/* ─── FRAME CARD COMING SOON BUTTON ──────────────────────── */
.btn-frame-coming {
  opacity: 0.75;
  cursor: default;
  pointer-events: auto;
}
.btn-frame-coming:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.85;
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; align-items: center; }
  .hero-content { max-width: 100%; }
  .hero-slide { transform: scale(4.5); object-position: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; width: 100%; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.08);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { position: fixed; }
  .steps-container { flex-direction: column; align-items: center; }
  .step-connector { display: none; }
  .modal { padding: 28px 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .frames-grid { grid-template-columns: 1fr; }
  .fsb-actions { flex-direction: column; }
  .frame-order-actions { flex-direction: column; }
  .fw-file-row { flex-wrap: wrap; }
  .receipt-modal { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   EARLY ACCESS PRICING — CLEAN DESIGN
   ═══════════════════════════════════════════════════════════ */

.product-price-clean {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-row-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-was {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-was s {
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-badge-free {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.5px;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.35);
}

.price-row-main {
  display: flex;
  align-items: center;
}

.price-free-label {
  font-size: 2.2rem;
  font-weight: 900;
  color: #22c55e;
  font-family: var(--font-mono);
  line-height: 1;
  letter-spacing: -1px;
}


/* ═══════════════════════════════════════════════════════════
   RECEIPT MODAL
   ═══════════════════════════════════════════════════════════ */

.receipt-modal {
  max-width: 460px;
  text-align: left;
}

.receipt-header {
  text-align: center;
  margin-bottom: 28px;
}

.receipt-logo {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.receipt-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.receipt-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.receipt-body {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.receipt-item-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  flex: 1;
}

.receipt-item-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-mono);
  white-space: nowrap;
}

.receipt-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

.receipt-divider-thick {
  height: 2px;
  background: var(--border-strong);
  margin: 8px 0;
}

.receipt-discount .receipt-item-name {
  color: #16a34a;
  font-weight: 600;
}

.discount-amount {
  color: #16a34a !important;
}

.receipt-total .receipt-item-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.total-amount {
  font-size: 1.4rem !important;
  color: #4ade80 !important;
  font-weight: 900 !important;
}

.receipt-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.3px;
}

/* Continue button */
.btn-continue {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
  letter-spacing: 0.3px;
}

.btn-continue:hover {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
}

.btn-continue:active {
  transform: translateY(0);
}

/* Crossed-out ₹99 on product card */
.price-crossed {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-weight: 600;
  text-decoration: line-through;
}

/* Party banner on receipt modal */
.receipt-party-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(34,197,94,0.10) 0%, rgba(74,222,128,0.15) 100%);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-top: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.party-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  color: #15803d;
  animation: party-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes party-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}
