/* ==========================================================================
   पोस्टरवाला Studio - Premium Modern Stylesheet
   Designed for High Conversion, Mobile Performance, & Beautiful Typography
   ========================================================================== */

:root {
  --primary: #071527;
  --primary-dark: #040d1a;
  --primary-card: #0c1e36;
  --primary-light: #142d50;
  
  --saffron: #f58220;
  --saffron-dark: #d96d11;
  --saffron-light: #ff9b44;
  --saffron-glow: rgba(245, 130, 32, 0.28);
  
  --gold: #ffb81c;
  --gold-dark: #e09b0a;
  --gold-bg: rgba(255, 184, 28, 0.12);
  
  --green: #0a9d4f;
  --green-hover: #088342;
  --green-dark: #056633;
  --green-glow: rgba(10, 157, 79, 0.35);
  
  --bg-light: #f8fafc;
  --bg-alt: #f1f5f9;
  --card-light: #ffffff;
  
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --text-white-muted: #94a3b8;
  
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(255, 184, 28, 0.3);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(7, 21, 39, 0.08);
  --shadow-lg: 0 16px 36px rgba(7, 21, 39, 0.14);
  --shadow-glow: 0 0 28px rgba(245, 130, 32, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-heading: 'Baloo 2', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Mukta', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.28s 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;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-body);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 800;
}

.text-saffron { color: var(--saffron); }
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }

/* Buttons & Badges */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 1.02rem;
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), #087d41);
  color: #fff;
  box-shadow: 0 6px 20px var(--green-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 157, 79, 0.45);
  color: #fff;
}

.btn-saffron {
  background: linear-gradient(135deg, var(--saffron), #e05e00);
  color: #fff;
  box-shadow: 0 6px 20px var(--saffron-glow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 130, 32, 0.45);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  background: #fff;
  border-color: var(--saffron);
  color: var(--saffron-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(10, 157, 79, 0.7);
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(10, 157, 79, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(10, 157, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 157, 79, 0); }
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 39, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), #e05e00);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px var(--saffron-glow);
}

.logo span {
  color: var(--saffron);
}

.logo-studio {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--gold);
  background: rgba(255, 184, 28, 0.12);
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  padding: 6px 2px;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.call-btn-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  padding: 4px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(7, 21, 39, 0.98);
  backdrop-filter: blur(16px);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 999;
  border-top: 1px solid var(--border-dark);
}

.mobile-drawer.open {
  transform: translateY(0);
}

.mobile-drawer a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer a:hover {
  color: var(--gold);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(circle at top left, #142d50 0%, #071527 60%, #040d1a 100%);
  color: #fff;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--saffron-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-kicker {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 130, 32, 0.4);
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.hero-lead {
  font-size: 1.22rem;
  color: #cbd5e1;
  max-width: 580px;
  line-height: 1.6;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 6px 0;
}

.hero-feat-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 10px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.hero-feat-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.hero-feat-icon {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.hero-feat-text {
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  color: #e2e8f0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 6px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-white-muted);
  font-weight: 600;
  padding-top: 6px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 3D Phone & Poster Mockup */
.hero-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 295px;
  height: 590px;
  background: #020617;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 3px #334155, 0 0 40px var(--saffron-glow);
  transform: rotate(-3deg);
  transition: var(--transition);
}

.phone-mockup:hover {
  transform: rotate(0deg) scale(1.02);
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #0b1426;
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #020617;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-status-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(7, 21, 39, 0.95) 0%, rgba(7, 21, 39, 0.7) 60%, transparent 100%);
  padding: 24px 16px 16px;
  color: #fff;
  z-index: 5;
}

.phone-status-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold);
  background: rgba(255, 184, 28, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.phone-status-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

/* Secondary Floating Poster */
.floating-card-sample {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 175px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  transform: rotate(6deg);
  border: 2px solid var(--gold);
  transition: var(--transition);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.floating-card-sample:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 12;
}

.floating-card-sample img {
  border-radius: 8px;
  aspect-ratio: 9/16;
  object-fit: cover;
}

.floating-card-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  padding-top: 6px;
}

@keyframes floatCard {
  0% { transform: translateY(0) rotate(6deg); }
  100% { transform: translateY(-12px) rotate(4deg); }
}

/* ==========================================================================
   Urgent Election Offer Banner
   ========================================================================== */
.offer-banner-section {
  position: relative;
  z-index: 10;
  margin-top: -30px;
  margin-bottom: 24px;
}

.offer-banner-box {
  background: linear-gradient(135deg, #f58220 0%, #d9431c 50%, #991b1b 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 16px 40px rgba(217, 67, 28, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.offer-banner-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.offer-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.offer-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.offer-pill {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.offer-title {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.offer-desc {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 600;
}

/* Countdown Clock */
.timer-container {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.timer-unit {
  background: rgba(7, 21, 39, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  min-width: 68px;
  padding: 10px 8px 6px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.timer-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
}

.timer-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.timer-sep {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  animation: blinkColon 1s infinite;
}

@keyframes blinkColon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ==========================================================================
   Comparison Section: Traditional vs Digital
   ========================================================================== */
.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  border-radius: 2px;
  margin: 14px auto 0;
}

.transformation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.trans-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.trans-card-old {
  background: #ffffff;
  border: 1.5px solid #fecaca;
  box-shadow: var(--shadow-md);
}

.trans-card-new {
  background: linear-gradient(145deg, #071527 0%, #0d2547 100%);
  color: #fff;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(10, 157, 79, 0.15), var(--shadow-glow);
}

.trans-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.trans-card-new .trans-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.trans-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.trans-card-old .trans-icon-badge {
  background: #fee2e2;
  color: #dc2626;
}

.trans-card-new .trans-icon-badge {
  background: rgba(10, 157, 79, 0.25);
  color: var(--green);
}

.trans-title {
  font-size: 1.35rem;
}

.trans-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trans-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  font-weight: 600;
}

.trans-bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.trans-card-old .trans-bullet {
  background: #fee2e2;
  color: #ef4444;
}

.trans-card-new .trans-bullet {
  background: rgba(10, 157, 79, 0.25);
  color: #10b981;
}

.trans-card-new .trans-item {
  color: #e2e8f0;
}

/* ==========================================================================
   Deliverables Matrix (10 Core Deliverables)
   ========================================================================== */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.deliv-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.deliv-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: var(--shadow-md);
}

.deliv-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.1), rgba(10, 157, 79, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.deliv-card:hover .deliv-icon-box {
  background: linear-gradient(135deg, var(--saffron), var(--green));
  transform: scale(1.1);
}

.deliv-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}

.deliv-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Interactive Portfolio & Lightbox
   ========================================================================== */
.portfolio-section {
  background: #ffffff;
}

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--bg-alt);
  color: var(--text-body);
  border: 1.5px solid transparent;
  transition: var(--transition);
}

.filter-btn:hover {
  background: #e2e8f0;
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(7, 21, 39, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.poster-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.poster-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.poster-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #0f172a;
  overflow: hidden;
}

.poster-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.poster-item:hover .poster-thumb-wrap img {
  transform: scale(1.04);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 21, 39, 0.92) 0%, rgba(7, 21, 39, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
}

.poster-item:hover .poster-overlay {
  opacity: 1;
}

.poster-tag {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--saffron);
  color: #fff;
  margin-bottom: 6px;
}

.poster-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.poster-card-footer {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-top: 1px solid var(--border-light);
}

.poster-card-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.poster-zoom-icon {
  color: var(--saffron);
  font-size: 0.95rem;
}

/* Google Drive Mega Box */
.drive-box-card {
  margin-top: 40px;
  background: linear-gradient(135deg, #071527, #132d50);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}

.drive-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.drive-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 184, 28, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border-gold);
}

.drive-text h3 {
  color: #fff;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.drive-text p {
  color: #cbd5e1;
  font-size: 0.98rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 26, 0.92);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-container {
  position: relative;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  background: #071527;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: zoomModal 0.28s ease-out;
}

@keyframes zoomModal {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: var(--saffron);
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 65vh;
  background: #020617;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 65vh;
  object-fit: contain;
}

.lightbox-info {
  padding: 18px 22px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #0a192f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.lightbox-category {
  font-size: 0.82rem;
  color: var(--gold);
}

/* ==========================================================================
   Pricing Packages & Comparison
   ========================================================================== */
.pricing-section {
  background: var(--bg-alt);
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-md);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.price-card-featured {
  background: #ffffff;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 40px rgba(255, 184, 28, 0.2);
}

.featured-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron), #e05e00);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px var(--saffron-glow);
  white-space: nowrap;
}

.price-header {
  text-align: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border-light);
}

.pkg-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.pkg-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pkg-price-row {
  margin: 18px 0 10px;
}

.pkg-old-price {
  font-size: 1.15rem;
  color: #94a3b8;
  text-decoration: line-through;
  margin-right: 8px;
}

.pkg-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #d9381e;
  line-height: 1;
}

.pkg-price-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green);
}

/* Metrics Row */
.pkg-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  margin-bottom: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  text-align: center;
}

.pkg-metric-item b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--primary);
}

.pkg-metric-item span {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 3px;
}

.pkg-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pkg-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-body);
}

.pkg-check {
  color: var(--green);
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Comparison Table */
.comparison-table-wrapper {
  margin-top: 56px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table-header {
  padding: 20px 24px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comparison-table-header h3 {
  color: #fff;
  font-size: 1.25rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
}

.compare-table th {
  background: #f8fafc;
  font-weight: 800;
  color: var(--text-dark);
}

.compare-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
}

.compare-table tr:hover {
  background: #f8fafc;
}

.icon-yes {
  color: var(--green);
  font-weight: 900;
  font-size: 1.2rem;
}

.icon-no {
  color: #cbd5e1;
  font-weight: 900;
  font-size: 1.1rem;
}

/* ==========================================================================
   Campaign Cost & Reach Estimator (Interactive Tool)
   ========================================================================== */
.calculator-section {
  background: linear-gradient(135deg, #071527 0%, #0e223d 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.calc-card {
  background: rgba(12, 30, 54, 0.85);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  padding: 40px;
  backdrop-filter: blur(12px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-field-group label {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.calc-select, .calc-range {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: #fff;
  outline: none;
  transition: var(--transition);
}

.calc-select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.calc-select option {
  background: #071527;
  color: #fff;
}

.calc-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-radio-btn {
  padding: 12px 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}

.calc-radio-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

.calc-radio-btn.active {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.calc-results-box {
  background: linear-gradient(145deg, #091a30, #0f2747);
  border: 1.5px solid rgba(255, 184, 28, 0.4);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.calc-result-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
  background: var(--gold-bg);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.calc-result-reach {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.calc-result-lbl {
  font-size: 0.92rem;
  color: #cbd5e1;
  margin-bottom: 18px;
}

.calc-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0 22px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calc-stat b {
  display: block;
  font-size: 1.3rem;
  color: var(--gold);
}

.calc-stat span {
  display: block;
  font-size: 0.78rem;
  color: #94a3b8;
}

/* ==========================================================================
   Process: How It Works
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--saffron);
  box-shadow: var(--shadow-md);
}

.step-num-bubble {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px var(--saffron-glow);
}

.step-icon-wrap {
  font-size: 2.5rem;
  margin: 10px 0 14px;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.test-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.test-quote {
  font-size: 1.02rem;
  color: var(--text-body);
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}

.test-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
}

.test-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.test-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.verified-pill {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 800;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  background: #fff;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--saffron);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text-dark);
  text-align: left;
  background: #fff;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f8fafc;
  color: var(--saffron-dark);
}

.faq-toggle-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-body);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--saffron);
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.6;
  border-top: 1px solid #f1f5f9;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   Contact / Lead Form
   ========================================================================== */
.contact-section {
  background: radial-gradient(circle at bottom, #071527 0%, #030a14 100%);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-info-col h2 {
  color: #fff;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 14px;
}

.contact-lead-p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.contact-direct-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.direct-link {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.direct-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 184, 28, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.direct-link:hover {
  color: var(--gold);
}

.lead-form-wrap {
  background: var(--primary-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lead-form-wrap h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.lead-form-wrap p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  color: #fff;
  outline: none;
  font-size: 0.96rem;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 184, 28, 0.15);
}

.form-select option {
  background: #071527;
  color: #fff;
}

.form-textarea {
  min-height: 95px;
  resize: vertical;
}

.form-status-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  min-height: 22px;
}

.form-status-msg.error {
  color: #f87171;
}

.form-status-msg.success {
  color: #4ade80;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: #02070f;
  color: #94a3b8;
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h4 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
}

.footer-links h5, .footer-contact h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.86rem;
  color: #64748b;
}

/* ==========================================================================
   Floating Widgets & Mobile Action Bar
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px var(--green-glow);
  z-index: 990;
  transition: var(--transition);
  animation: pulseGreenBtn 2s infinite;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

@keyframes pulseGreenBtn {
  0% { box-shadow: 0 0 0 0 rgba(10, 157, 79, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(10, 157, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 157, 79, 0); }
}

/* Social Proof Live Toast */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  z-index: 980;
  max-width: 340px;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 157, 79, 0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toast-text {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--text-dark);
}

.toast-time {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Mobile Sticky Bottom Bar */
.mobile-action-bar {
  display: none;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-features-bar {
    max-width: 600px;
  }
  
  .hero-trust-row {
    justify-content: center;
  }
  
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links, .call-btn-link {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .transformation-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .offer-banner-box {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .offer-info {
    align-items: center;
  }
  
  .drive-box-card {
    flex-direction: column;
    text-align: center;
  }
  
  .drive-content {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-features-bar {
    grid-template-columns: 1fr 1fr;
  }
  
  .hero-mockup-wrap {
    transform: scale(0.9);
  }
  
  .floating-card-sample {
    right: -10px;
    width: 140px;
  }
  
  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .floating-whatsapp-btn {
    bottom: 80px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
  
  .social-proof-toast {
    bottom: 80px;
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }
  
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(7, 21, 39, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 14px;
    gap: 10px;
    z-index: 995;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .mobile-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.95rem;
  }
  
  .mobile-btn-wa {
    background: var(--green);
    color: #fff;
  }
  
  .mobile-btn-call {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  body {
    padding-bottom: 74px;
  }
}
