/* ===========================
   ONLY GRAPHICS – styles.css
   Deep Purple + Vibrant Orange
   =========================== */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Purple palette */
  --p900: #120228;
  --p800: #1A0533;
  --p700: #2D0B5A;
  --p600: #3D1473;
  --violet: #7C3AED;
  --violet-lt: #9F67FF;

  /* Orange / accent palette */
  --orange: #FF5722;
  --orange-lt: #FF7043;
  --saffron: #FF9933;

  /* Light section palette */
  --light-bg: #F8F4FF;
  --card-bg: rgba(124,58,237,0.05);
  --card-border: rgba(124,58,237,0.16);
  --dark-text: #1A0533;
  --body-text: rgba(45,11,90,0.7);

  /* Shared */
  --white: #FFFFFF;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 12px rgba(124,58,237,0.1);
  --shadow-md: 0 8px 36px rgba(124,58,237,0.16);
  --shadow-lg: 0 20px 64px rgba(124,58,237,0.22);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255,87,34,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #E64A1A, var(--orange));
  box-shadow: 0 6px 32px rgba(255,87,34,0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-plan-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  width: 100%;
  justify-content: center;
}
.btn-plan-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 24px; font-size: 0.88rem; }

/* ---- Section shared ---- */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* light sections */
.about .section-label,
.features .section-label,
.contact .section-label {
  background: rgba(124,58,237,0.1);
  color: var(--violet);
}

/* dark sections */
.plans .section-label {
  background: rgba(255,87,34,0.2);
  color: var(--saffron);
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
}

.about .section-title,
.features .section-title,
.contact .section-title { color: var(--p800); }

.plans .section-title { color: var(--white); }

.section-desc {
  margin-top: 12px;
  font-size: 1.02rem;
}
.plans .section-desc { color: rgba(255,255,255,0.5); }

/* ========================
   NAVBAR
   ======================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(124,58,237,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-emblem {
  border-radius: 50%;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--p800); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--body-text); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--p800); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================
   HERO
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--p800);
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Animated blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-blob-1 {
  width: 550px; height: 550px;
  top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(124,58,237,0.35), transparent 70%);
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob-2 {
  width: 450px; height: 450px;
  top: 50%; right: -80px;
  background: radial-gradient(circle, rgba(255,87,34,0.2), transparent 70%);
  animation: blobFloat 9s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  bottom: -60px; left: 40%;
  background: radial-gradient(circle, rgba(124,58,237,0.15), transparent 70%);
  animation: blobFloat 15s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* Hero text column */
.hero-text { max-width: 560px; }

.made-in-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.4px;
}

.hero-hindi {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-sub {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--saffron);
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.97rem;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Phone column */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 24px 56px rgba(124,58,237,0.5));
  animation: phoneFloat 6s ease-in-out infinite;
}

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

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
  animation: badgePop 0.6s ease backwards;
}

.badge-tl {
  top: 12%;
  right: -10px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  animation-delay: 0.4s;
}

.badge-br {
  bottom: 16%;
  left: -10px;
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,87,34,0.4);
  animation-delay: 0.7s;
}

@keyframes badgePop {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(12px); opacity: 0.2; }
}

/* ========================
   ABOUT
   ======================== */
.about { background: var(--light-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* Poster Gallery */
.poster-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pg-card {
  border-radius: 14px;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.pg-card:hover { transform: translateY(-6px) scale(1.03); }

.pg-card:nth-child(1),
.pg-card:nth-child(2) { aspect-ratio: 3/4; }

.pg-republic  { background: linear-gradient(145deg, #FF9933, #FF5722, #138808); }
.pg-diwali    { background: linear-gradient(145deg, #FFB700, #FF5722, #C62828); }
.pg-holi      { background: linear-gradient(145deg, #E91E63, #9C27B0, #03A9F4); }
.pg-birthday  { background: linear-gradient(145deg, #7C3AED, #5B21B6, #FF5722); }
.pg-rally     { background: linear-gradient(145deg, #0D47A1, #1565C0, #FF5722); }
.pg-more      {
  background: linear-gradient(145deg, var(--p700), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
}

.pg-label {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index: 1;
}

.pg-star {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  z-index: 1;
}

.pg-more-text {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.about-text p {
  color: var(--body-text);
  margin-bottom: 16px;
  font-size: 0.96rem;
}
.about-text strong { color: var(--p800); }
.about-text .btn { margin-top: 12px; }

/* ========================
   FEATURES
   ======================== */
.features { background: var(--white); }

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(124,58,237,0.06), rgba(255,87,34,0.04));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--violet);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-svg {
  width: 30px; height: 30px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--p800);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--body-text);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ========================
   PLANS
   ======================== */
.plans {
  background: var(--p800);
  position: relative;
  overflow: hidden;
}

.plans-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
}
.plans-blob-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(255,87,34,0.12), transparent 70%);
}
.plans-blob-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -80px;
  background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.plan-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(124,58,237,0.6);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(124,58,237,0.25);
}

.plan-popular {
  background: linear-gradient(145deg, rgba(124,58,237,0.22), rgba(255,87,34,0.14));
  border-color: var(--violet);
  transform: scale(1.04);
}
.plan-popular:hover {
  transform: scale(1.04) translateY(-6px);
  border-color: var(--orange);
}

.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.plan-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}

.popular-icon {
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  color: var(--white);
}

.plan-card h3 {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 28px;
}

.plan-price .currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 8px;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plan-price .period {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.plan-features {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
}

.plan-features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--saffron));
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features .check::after {
  content: '';
  display: block;
  width: 9px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.plan-popular .plan-features .check {
  background: linear-gradient(135deg, var(--violet), var(--orange));
}

/* plan button */
.plan-popular .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ========================
   CONTACT
   ======================== */
.contact { background: var(--light-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  color: var(--white);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 3px;
}

.contact-item a {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--p800);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--orange); }

.contact-social h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--body-text);
  margin-bottom: 14px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--p800);
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--violet), var(--orange));
  color: var(--white);
  border-color: transparent;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--body-text);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.93rem;
  color: var(--dark-text);
  background: var(--light-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--violet);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

/* ========================
   FOOTER
   ======================== */
.footer { background: var(--p900); }

.footer-top { padding: 64px 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text { color: var(--white); }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--violet), var(--orange));
  color: var(--white);
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--saffron); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.footer-made { color: rgba(255,255,255,0.3) !important; }

/* ========================
   SCROLL REVEAL
   ======================== */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-init.revealed {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:nth-child(2).reveal-init { transition-delay: 0.1s; }
.feature-card:nth-child(3).reveal-init { transition-delay: 0.2s; }
.feature-card:nth-child(4).reveal-init { transition-delay: 0.05s; }
.feature-card:nth-child(5).reveal-init { transition-delay: 0.15s; }
.feature-card:nth-child(6).reveal-init { transition-delay: 0.25s; }

.plan-card:nth-child(2).reveal-init { transition-delay: 0.1s; }
.plan-card:nth-child(3).reveal-init { transition-delay: 0.2s; }

.pg-card:nth-child(2).reveal-init { transition-delay: 0.08s; }
.pg-card:nth-child(3).reveal-init { transition-delay: 0.16s; }
.pg-card:nth-child(4).reveal-init { transition-delay: 0.05s; }
.pg-card:nth-child(5).reveal-init { transition-delay: 0.12s; }
.pg-card:nth-child(6).reveal-init { transition-delay: 0.2s; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1.2fr 1fr; gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .plan-popular { transform: none; }
  .plan-popular:hover { transform: translateY(-6px); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-phone-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(18,2,40,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    border-top: 1px solid rgba(124,58,237,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: rgba(255,255,255,0.85) !important;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    font-size: 1rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
}

@media (max-width: 500px) {
  .hero-btns .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 24px 18px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .poster-gallery { gap: 10px; }
}
