/* ============================================================
   RNS Enterprises — Vibrant Blue & Orange Premium Stylesheet
   60% White · 25% Blue · 15% Orange
   ============================================================ */

@import url('./fonts.css');

:root {
  /* ── Core palette ── */
  --blue:        #0A4DCC;
  --blue-mid:    #2563EB;
  --blue-light:  #3B82F6;
  --blue-pale:   #DBEAFE;
  --blue-bg:     #EFF6FF;
  --sky:         #38BDF8;
  --orange:      #FF7A00;
  --orange-br:   #FF9A1F;
  --orange-lt:   #FFBA6B;
  --orange-bg:   #FFF4E6;
  --orange-pale: #FFF0DC;
  --white:       #FFFFFF;
  --bg:          #F8FBFF;
  --text:        #0F172A;
  --text-mid:    #475569;
  --text-lt:     #94A3B8;
  --border:      rgba(10,77,204,0.10);

  /* ── Gradients ── */
  --grad-orange:  linear-gradient(135deg, var(--orange) 0%, var(--orange-br) 100%);
  --grad-blue:    linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  --grad-sky:     linear-gradient(135deg, var(--blue-mid) 0%, var(--sky) 100%);
  --grad-hero:    linear-gradient(135deg, rgba(10,77,204,0.90) 0%, rgba(255,122,0,0.70) 100%);
  --grad-card-1:  linear-gradient(160deg, #0A4DCC 0%, #2563EB 100%);
  --grad-card-2:  linear-gradient(160deg, #FF7A00 0%, #FF9A1F 100%);
  --grad-card-3:  linear-gradient(160deg, #0284C7 0%, #38BDF8 100%);
  --grad-card-4:  linear-gradient(160deg, #7C3AED 0%, #A855F7 100%);
  --grad-card-5:  linear-gradient(160deg, #059669 0%, #34D399 100%);
  --grad-card-6:  linear-gradient(160deg, #DC2626 0%, #F87171 100%);
  --grad-stats:   linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  --grad-cta:     linear-gradient(160deg, var(--blue) 0%, #1D4ED8 50%, var(--orange) 100%);
  --grad-footer:  var(--blue);

  /* ── Shadows ── */
  --shadow-sm:     0 1px 6px rgba(10,77,204,0.07);
  --shadow:        0 4px 24px rgba(10,77,204,0.10);
  --shadow-md:     0 8px 32px rgba(10,77,204,0.15);
  --shadow-lg:     0 16px 56px rgba(10,77,204,0.20);
  --shadow-orange: 0 4px 24px rgba(255,122,0,0.30);
  --shadow-blue:   0 4px 24px rgba(10,77,204,0.30);

  /* ── Radii ── */
  --r-sm:  8px;
  --r:     16px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:50px;

  /* ── Transitions ── */
  --t:      all 0.30s cubic-bezier(0.4,0,0.2,1);
  --t-fast: all 0.16s ease;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
  line-height: 1.15;
  color: var(--blue);
  font-weight: 700;
  text-rendering: optimizeLegibility;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.80; }

.section-label {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 8px;
}
.section-title   { text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--text-lt); font-size: 1rem; margin-bottom: 3rem; }

/* ── LAYOUT ── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.section   { padding: 96px 0; }
.section--white  { background: var(--white); }
.section--bg     { background: var(--bg); }
.section--blue   { background: var(--blue-bg); }
.section--orange { background: var(--orange-bg); }

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; }
.divider-line { width: 32px; height: 1.5px; background: var(--orange); opacity: 0.5; }
.divider-dot  { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* ────────────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--r-pill);
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.02em;
  cursor: pointer; transition: var(--t);
  border: none; position: relative; overflow: hidden;
}
.btn .ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.35); transform: scale(0);
  animation: ripple-anim 0.55s linear; pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

.btn-orange {
  background: var(--grad-orange); color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,122,0,0.45); }

.btn-blue {
  background: var(--grad-blue); color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,77,204,0.40); }

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

.btn-glass {
  background: rgba(255,255,255,0.18); color: var(--white);
  backdrop-filter: blur(10px); border: 1.5px solid rgba(255,255,255,0.40);
}
.btn-glass:hover { background: rgba(255,255,255,0.28); transform: translateY(-2px); }

.btn-glass-blue {
  background: rgba(10,77,204,0.08); color: var(--blue);
  backdrop-filter: blur(10px); border: 1.5px solid rgba(10,77,204,0.25);
}
.btn-glass-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-outline-orange {
  background: transparent; color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline-orange:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-orange); }

.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--blue); }
.btn-white:hover { background: var(--blue-pale); transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--r-pill);
  background: #25D366; color: white;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.82rem; font-weight: 700;
  transition: var(--t); border: none; cursor: pointer;
}
.btn-whatsapp:hover { background: #1da84f; transform: translateY(-1px); }

.btn-call {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px; border-radius: var(--r-pill);
  background: var(--grad-orange); color: white;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.82rem; font-weight: 700;
  transition: var(--t); border: none; cursor: pointer;
}
.btn-call:hover { transform: translateY(-1px); box-shadow: var(--shadow-orange); }

.btn-lg { padding: 16px 40px; font-size: 0.93rem; }
.btn-sm { padding: 8px 18px; font-size: 0.78rem; }

/* ────────────────────────────────────────────────────
   NAVBAR — Bright White Glassmorphism
──────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1300px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(22px) saturate(200%);
  -webkit-backdrop-filter: blur(22px) saturate(200%);
  border-radius: var(--r-pill);
  border: 1px solid rgba(10,77,204,0.10);
  box-shadow: 0 4px 32px rgba(10,77,204,0.10), 0 1px 0 rgba(255,255,255,0.8) inset;
  z-index: 1000; transition: var(--t);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 8px 48px rgba(10,77,204,0.16);
  top: 6px;
}
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px; gap: 12px;
}
.navbar__logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar__logo img {
  height: 70px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.navbar__logo img:hover { transform: scale(1.05); opacity: 0.92; }
.navbar__nav {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.navbar__nav a {
  font-family: 'Inter', sans-serif; font-size: 0.83rem; font-weight: 600;
  color: var(--text); padding: 7px 14px; border-radius: var(--r-pill);
  transition: var(--t); white-space: nowrap; position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--grad-orange);
  border-radius: 2px; transition: var(--t);
}
.navbar__nav a:hover::after,
.navbar__nav a.active::after { width: 55%; }
.navbar__nav a.active { background: var(--grad-blue); color: var(--white); }
.navbar__nav a.active::after { display: none; }
.navbar__nav a:not(.active):hover { color: var(--orange); }
.navbar__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.navbar__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: var(--t);
}
.navbar__mobile-menu {
  display: none; flex-direction: column; padding: 0 20px 16px; gap: 4px;
}
.navbar__mobile-menu.open { display: flex; }
.navbar__mobile-menu a {
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  padding: 10px 14px; border-radius: var(--r); transition: var(--t);
}
.navbar__mobile-menu a:hover, .navbar__mobile-menu a.active { background: var(--grad-blue); color: var(--white); }
.navbar__mobile-actions { display: flex; gap: 8px; padding: 8px 0 4px; flex-wrap: wrap; }

/* ────────────────────────────────────────────────────
   PAGE HEADER
──────────────────────────────────────────────────── */
.page-header {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-mid) 60%, #1D6FA4 100%);
  padding: 148px 0 64px;
  text-align: center; position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(255,122,0,0.18), transparent 40%),
    radial-gradient(circle at 85% 50%, rgba(56,189,248,0.20), transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.page-header h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-header p  { color: rgba(255,255,255,0.72); font-size: 1.05rem; position: relative; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 18px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  position: relative; font-family: 'Inter', sans-serif;
}
.breadcrumb a { color: var(--orange-lt); }
.breadcrumb a:hover { text-decoration: underline; }

/* ────────────────────────────────────────────────────
   HERO — Vibrant Blue + Orange Full Width
──────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
  padding: 140px 0 80px;
}
/* Blue → orange gradient background */
.hero__backdrop {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A4DCC 0%, #1D4ED8 35%, #C2410C 70%, #FF7A00 100%);
}
/* Decorative geometric shapes */
.hero__shape {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero__shape--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07), transparent 70%);
  top: -15%; right: -8%;
  animation: shapeFloat 10s ease-in-out infinite;
}
.hero__shape--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(56,189,248,0.12), transparent 70%);
  bottom: -10%; left: -6%;
  animation: shapeFloat 13s ease-in-out infinite reverse;
}
.hero__shape--3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,154,31,0.15), transparent 70%);
  top: 20%; left: 30%;
  animation: shapeFloat 8s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes shapeFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,-20px) scale(1.08); }
}
/* Dot pattern */
.hero__pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
/* Wave bottom */
.hero__wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 60px; }
/* Floating deco emojis */
.hero__deco {
  position: absolute; pointer-events: none;
  animation: decoFloat 7s ease-in-out infinite;
  font-size: 2.2rem; opacity: 0.20;
}
.hero__deco--1 { top: 20%; right: 12%; animation-delay: 0s; }
.hero__deco--2 { top: 60%; right: 8%;  animation-delay: -2.5s; }
.hero__deco--3 { bottom: 30%; left: 8%; animation-delay: -5s; font-size: 2.8rem; }
.hero__deco--4 { top: 32%; left: 6%;  animation-delay: -3.5s; }
@keyframes decoFloat {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-14px) rotate(5deg); }
}
/* ── 2-column layout ── */
.hero__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative; z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.hero__content {
  text-align: left; position: relative; z-index: 1;
}

/* ── Document Showcase (right column) ── */
.hero__docs {
  position: relative;
  height: 450px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: docsReveal 1s cubic-bezier(0.4,0,0.2,1) 0.3s both;
}
@keyframes docsReveal {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Soft radial backdrop behind the cluster */
.doc-cluster-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 65% at 50% 50%,
    rgba(37,99,235,0.22) 0%,
    rgba(255,122,0,0.12) 45%,
    transparent 72%);
  pointer-events: none;
  z-index: 0;
  animation: clusterBreath 6s ease-in-out infinite;
}
@keyframes clusterBreath {
  0%,100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}

/* Glow orbs — repositioned to sit behind the cluster */
.doc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.doc-orb--blue {
  width: 260px; height: 260px;
  background: rgba(37,99,235,0.28);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 8s ease-in-out infinite;
}
.doc-orb--red {
  width: 170px; height: 170px;
  background: rgba(220,38,38,0.20);
  bottom: 12%; right: 6%;
  animation: orbPulse 10s ease-in-out infinite reverse;
}
.doc-orb--gold {
  width: 150px; height: 150px;
  background: rgba(245,158,11,0.18);
  top: 10%; left: 6%;
  animation: orbPulse 6s ease-in-out infinite;
  animation-delay: -3s;
}
@keyframes orbPulse {
  0%,100% { transform: scale(1) translate(0,0); opacity: 0.8; }
  50%      { transform: scale(1.18) translate(8px,-8px); opacity: 1; }
}
.doc-orb--blue { animation-name: orbPulseCenter; }
@keyframes orbPulseCenter {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%      { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

/* ── Central focal element ── */
.doc-center {
  position: absolute;
  width: 112px; height: 112px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(145deg,
    rgba(10,77,204,0.90) 0%,
    rgba(29,78,216,0.82) 40%,
    rgba(194,65,12,0.75) 75%,
    rgba(255,122,0,0.70) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 2px solid rgba(255,255,255,0.30);
  box-shadow:
    0 0 0 8px rgba(37,99,235,0.12),
    0 0 40px rgba(37,99,235,0.60),
    0 0 80px rgba(255,122,0,0.35),
    0 0 130px rgba(37,99,235,0.22),
    inset 0 1px 0 rgba(255,255,255,0.28);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
  animation: centerPulse 4s ease-in-out infinite;
}
.doc-center::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  animation: ringRotate 10s linear infinite;
}
.doc-center::after {
  content: '';
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,0.07);
  animation: ringRotate 16s linear infinite reverse;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.doc-center__icon {
  font-size: 1.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.6));
}
.doc-center__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  line-height: 1.35;
}
@keyframes centerPulse {
  0%,100% {
    box-shadow: 0 0 0 8px rgba(37,99,235,0.12),
      0 0 40px rgba(37,99,235,0.60), 0 0 80px rgba(255,122,0,0.35),
      0 0 130px rgba(37,99,235,0.22), inset 0 1px 0 rgba(255,255,255,0.28);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37,99,235,0.18),
      0 0 60px rgba(37,99,235,0.80), 0 0 110px rgba(255,122,0,0.50),
      0 0 170px rgba(37,99,235,0.30), inset 0 1px 0 rgba(255,255,255,0.28);
  }
}

/* ── Base document card — glassmorphism ── */
.doc-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.42),
    0 8px 26px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
  cursor: pointer;
  will-change: transform;
  z-index: 2;
}
.doc-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.doc-card__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 22px 12px 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.doc-card:hover {
  transform: translateY(-10px) scale(1.06) !important;
  box-shadow:
    0 44px 95px rgba(0,0,0,0.52),
    0 12px 36px rgba(0,0,0,0.32),
    inset 0 1px 0 rgba(255,255,255,0.30);
  z-index: 10;
}

/* Aadhaar — top-left */
.doc-card--aadhaar {
  width: 180px; height: 114px;
  top: 42px;
  left: calc(50% - 200px);
  transform: rotate(-8deg);
  animation: docFloat1 6s ease-in-out infinite;
  z-index: 4;
}
/* PAN — top-right */
.doc-card--pan {
  width: 180px; height: 114px;
  top: 48px;
  left: calc(50% + 20px);
  transform: rotate(7deg);
  animation: docFloat2 7.5s ease-in-out infinite;
  animation-delay: -1.8s;
  z-index: 3;
}
/* Voter ID — bottom-left */
.doc-card--voter {
  width: 180px; height: 114px;
  bottom: 42px;
  left: calc(50% - 200px);
  transform: rotate(6deg);
  animation: docFloat3 8.5s ease-in-out infinite;
  animation-delay: -3.2s;
  z-index: 3;
}
/* Passport — bottom-right */
.doc-card--passport {
  width: 118px; height: 164px;
  bottom: 34px;
  left: calc(50% + 26px);
  transform: rotate(-7deg);
  animation: docFloat4 5.8s ease-in-out infinite;
  animation-delay: -2.2s;
  z-index: 5;
}

/* Independent floating keyframes for each card */
@keyframes docFloat1 {
  0%,100% { transform: rotate(-8deg) translate(0px, 0px); }
  33%      { transform: rotate(-8deg) translate(-4px, -14px); }
  66%      { transform: rotate(-9deg) translate(3px, -8px); }
}
@keyframes docFloat2 {
  0%,100% { transform: rotate(7deg) translate(0px, 0px); }
  40%      { transform: rotate(7deg) translate(4px, -12px); }
  70%      { transform: rotate(8deg) translate(-3px, -6px); }
}
@keyframes docFloat3 {
  0%,100% { transform: rotate(6deg) translate(0px, 0px); }
  45%      { transform: rotate(6deg) translate(-3px, -16px); }
  75%      { transform: rotate(5deg) translate(4px, -9px); }
}
@keyframes docFloat4 {
  0%,100% { transform: rotate(-7deg) translate(0px, 0px); }
  35%      { transform: rotate(-7deg) translate(3px, -13px); }
  65%      { transform: rotate(-8deg) translate(-2px, -7px); }
}

/* ────────────────────────────────────────────────────
   MOBILE DOCUMENT CAROUSEL — hidden on desktop
──────────────────────────────────────────────────── */
.hero__carousel {
  display: none; /* shown only inside @media ≤768px */
  width: 100%;
  margin: 0 auto 4px;
  padding: 0;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

/* Sliding track — 4 slides side-by-side */
.hero-carousel__track {
  display: flex;
  width: 400%; /* 4 slides × 100% each */
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  backface-visibility: hidden;
}

/* Each slide takes 1/4 of the track = 100% of viewport */
.hero-carousel__slide {
  width: 25%;
  flex-shrink: 0;
  padding: 8px 20px 4px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Card wrapper */
.hero-carousel__card {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.38),
    0 6px 20px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.20);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-carousel__card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* Label overlay */
.hero-carousel__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 28px 14px 10px;
}

/* Pagination dots */
.hero-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 0 6px;
}
.hero-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  outline: none;
}
.hero-carousel__dot.active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
  transform: none;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  padding: 7px 18px; border-radius: var(--r-pill);
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 26px;
}
.hero__tag-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange-lt);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,154,31,0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(255,154,31,0); }
}
.hero__title {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  text-align: left;
  text-rendering: optimizeLegibility;
  text-wrap: balance;
  animation: heroTitleFadeUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
}
@keyframes heroTitleFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ht-white { color: #ffffff; }
.ht-blue  { color: #22C55E; text-shadow: 0 0 32px rgba(34,197,94,0.55), 0 0 10px rgba(34,197,94,0.30); }
.ht-red   { color: #FACC15; text-shadow: 0 0 32px rgba(250,204,21,0.55), 0 0 10px rgba(250,204,21,0.30); }
.ht-gold  { color: #ffffff; }
.ht-gray  { color: #D1D5DB; }
.hero__desc {
  font-size: 1.08rem; color: rgba(255,255,255,0.80);
  margin: 0 auto 40px; max-width: 560px; line-height: 1.82;
}
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero__features {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero__feat {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.80); font-family: 'Inter', sans-serif;
}
.hero__feat-icon { font-size: 1rem; }

/* ────────────────────────────────────────────────────
   STATS BAR — White with colored numbers
──────────────────────────────────────────────────── */
.hero-stats-bar {
  background: var(--white);
  padding: 28px 0;
  box-shadow: 0 4px 24px rgba(10,77,204,0.08);
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--blue), var(--orange)) 1;
}
.hero-stats-inner {
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(10,77,204,0.08); }
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 2rem; font-weight: 800;
  background: var(--grad-cta);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.73rem; font-weight: 700; color: var(--text-mid); margin-top: 5px;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.06em; text-transform: uppercase;
}

/* ────────────────────────────────────────────────────
   XEROX / PRINTING TECHNOLOGY SECTION
──────────────────────────────────────────────────── */
.xerox-section { background: var(--bg); }

.xerox-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

/* ── Machine visual ── */
.xerox-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.xerox-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.xerox-glow--blue {
  width: 280px; height: 280px;
  background: rgba(37,99,235,0.18);
  top: -10%; left: -5%;
  animation: xeroxGlowPulse 6s ease-in-out infinite;
}
.xerox-glow--red {
  width: 200px; height: 200px;
  background: rgba(220,38,38,0.14);
  bottom: -5%; right: -5%;
  animation: xeroxGlowPulse 8s ease-in-out infinite reverse;
  animation-delay: -3s;
}
@keyframes xeroxGlowPulse {
  0%,100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.18); opacity: 1; }
}

.xerox-card {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  animation: xeroxFloat 5s ease-in-out infinite;
  transition: transform 0.35s ease;
  max-width: 480px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.xerox-card:hover {
  transform: translateY(-10px) scale(1.02);
}
@keyframes xeroxFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-12px); }
}

.xerox-img {
  width: 100%;
  height: auto;
  max-width: 460px;
  border-radius: 14px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(10,77,204,0.18)) drop-shadow(0 6px 16px rgba(0,0,0,0.14));
  image-rendering: -webkit-optimize-contrast;
}

/* Floating badge */
.xerox-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(10,77,204,0.14);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.02em;
}
.xerox-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: xeroxDotPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes xeroxDotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* ── Features list ── */
.xerox-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.xerox-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  border: 1px solid rgba(10,77,204,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.xerox-feat:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,77,204,0.14);
}
.xerox-feat__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--blue-bg);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
}
.xerox-feat__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.xerox-feat__desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .xerox-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .xerox-visual { padding: 16px; }
  .xerox-card { max-width: 85%; margin: 0 auto; }
  .xerox-img { max-width: 100%; }
}
@media (max-width: 480px) {
  .xerox-card { max-width: 88%; }
  .xerox-img { max-width: 100%; }
  .xerox-feat { padding: 14px 16px; }
  .xerox-feat__icon { width: 38px; height: 38px; font-size: 1.3rem; }
  .xerox-badge { font-size: 0.70rem; padding: 7px 14px; bottom: -12px; }
}

/* ────────────────────────────────────────────────────
   SERVICES STRIP
──────────────────────────────────────────────────── */
.services-strip { background: var(--bg); padding: 30px 0; border-bottom: 1px solid rgba(10,77,204,0.07); }
.services-strip__inner {
  display: flex; gap: 8px; justify-content: center;
  flex-wrap: wrap; overflow-x: auto; scrollbar-width: none;
}
.services-strip__item {
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; min-width: 78px; cursor: pointer; transition: var(--t);
  padding: 9px 8px; border-radius: var(--r);
}
.services-strip__item:hover { background: var(--blue-bg); }
.services-strip__icon {
  width: 54px; height: 54px; background: var(--white);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; transition: var(--t);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.services-strip__item:hover .services-strip__icon {
  background: var(--grad-blue); transform: translateY(-4px); box-shadow: var(--shadow-blue);
}
.services-strip__label {
  font-size: 0.69rem; font-weight: 700; color: var(--text); text-align: center;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.02em;
}

/* ────────────────────────────────────────────────────
   SERVICE CARDS — White with colorful headers
──────────────────────────────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--t);
  border: 1px solid rgba(10,77,204,0.06);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255,122,0,0.18), 0 4px 24px rgba(10,77,204,0.10);
}
.service-card__img { height: 200px; overflow: hidden; position: relative; }
.service-card__img-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; transition: var(--t);
}
.service-card:hover .service-card__img-bg { transform: scale(1.08); }
.service-card__tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,0.95); color: var(--orange);
  font-size: 0.68rem; font-weight: 700;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
}
.service-card__body { padding: 22px 20px; }
.service-card__title { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--blue); margin-bottom: 9px; }
.service-card__desc  { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.7; }
.service-card__actions { display: flex; gap: 8px; }
.service-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 20px; border-top: 1px solid rgba(10,77,204,0.05); background: var(--bg);
}
.service-card__price { font-size: 0.78rem; color: var(--orange); font-weight: 700; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; }
/* Card header color classes */
.card-blue   { background: var(--grad-card-1); }
.card-orange { background: var(--grad-card-2); }
.card-sky    { background: var(--grad-card-3); }
.card-purple { background: var(--grad-card-4); }
.card-green  { background: var(--grad-card-5); }
.card-red    { background: var(--grad-card-6); }

/* ────────────────────────────────────────────────────
   GALLERY
──────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2, 220px); gap: 16px;
}
.gallery-item { border-radius: var(--r); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item__bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem; transition: var(--t);
}
.gallery-item:nth-child(1) .gallery-item__bg { font-size: 5rem; }
.gallery-item:hover .gallery-item__bg { transform: scale(1.10); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,77,204,0.85) 0%, transparent 55%);
  opacity: 0; transition: var(--t);
  display: flex; align-items: flex-end; padding: 18px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { color: white; font-weight: 600; font-size: 0.9rem; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; }
.gallery-item__shine {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transition: var(--t);
}
.gallery-item:hover .gallery-item__shine { transform: scaleX(1); }
.g-blue1 { background: linear-gradient(160deg, #0A4DCC 0%, #2563EB 100%); }
.g-orange{ background: linear-gradient(160deg, #FF7A00 0%, #FF9A1F 100%); }
.g-sky   { background: linear-gradient(160deg, #0284C7 0%, #38BDF8 100%); }
.g-teal  { background: linear-gradient(160deg, #0891B2 0%, #22D3EE 100%); }
.g-indigo{ background: linear-gradient(160deg, #4338CA 0%, #818CF8 100%); }

/* ────────────────────────────────────────────────────
   STATS COUNTER — Blue background, orange accents
──────────────────────────────────────────────────── */
.stats-section {
  background: var(--grad-stats);
  padding: 72px 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(255,122,0,0.20), transparent 45%),
    radial-gradient(circle at 100% 50%, rgba(56,189,248,0.15), transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; text-align: center; position: relative;
}
.stat-item { padding: 24px 16px; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.10); }
.stat-icon { font-size: 2rem; margin-bottom: 10px; }
.stat-num {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
  font-size: 2.8rem; font-weight: 800; color: var(--white);
  line-height: 1; margin-bottom: 8px;
}
.stat-num--orange { color: var(--orange-lt); }
.stat-num--sky    { color: var(--sky); }
.stat-num--white  { color: var(--white); }
.stat-label {
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em; text-transform: uppercase; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
}

/* ────────────────────────────────────────────────────
   TESTIMONIALS — White cards, orange accents, blue names
──────────────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px,1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 30px 26px; box-shadow: var(--shadow); transition: var(--t);
  position: relative; overflow: hidden;
  border-top: 3px solid var(--orange);
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 12px; right: 20px;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 5.5rem; line-height: 1;
  color: var(--orange); opacity: 0.10;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card__stars { font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 3px; color: var(--orange); }
.testimonial-card__text { font-size: 0.9rem; color: var(--text-mid); font-style: italic; margin-bottom: 22px; line-height: 1.80; position: relative; z-index: 1; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif;
  font-size: 1.15rem; font-weight: 700; flex-shrink: 0;
  border: 2px solid var(--blue-pale);
}
.testimonial-card__name { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-weight: 700; color: var(--blue); font-size: 0.93rem; }
.testimonial-card__role { font-size: 0.75rem; color: var(--text-lt); margin-top: 2px; }

/* ────────────────────────────────────────────────────
   WHY US CARDS
──────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 20px; }
.why-card {
  background: var(--white); border-radius: var(--r);
  padding: 26px 22px; display: flex; gap: 18px;
  box-shadow: var(--shadow-sm); transition: var(--t);
  border: 1px solid rgba(10,77,204,0.06);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,122,0,0.18); }
.why-card__icon {
  width: 52px; height: 52px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.wi-blue   { background: var(--blue-bg); }
.wi-orange { background: var(--orange-pale); }
.wi-sky    { background: #E0F7FF; }
.wi-green  { background: #D1FAE5; }
.why-card__title { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-weight: 700; color: var(--blue); margin-bottom: 6px; font-size: 0.98rem; }
.why-card__desc  { font-size: 0.835rem; color: var(--text-mid); line-height: 1.65; }

/* ────────────────────────────────────────────────────
   CTA SECTION
──────────────────────────────────────────────────── */
.cta-section {
  background: var(--grad-cta);
  padding: 96px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05), transparent 40%);
}
.cta-section::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--sky), var(--orange));
}
.cta-section h2 { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-section p  { color: rgba(255,255,255,0.78); margin-bottom: 36px; font-size: 1.05rem; position: relative; }
.cta-section .btn-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ────────────────────────────────────────────────────
   PRICING
──────────────────────────────────────────────────── */
.pricing-tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.pricing-tab-btn {
  padding: 9px 22px; border-radius: var(--r-pill);
  border: 2px solid var(--border);
  background: transparent; color: var(--blue);
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.03em; cursor: pointer; transition: var(--t);
}
.pricing-tab-btn.active,
.pricing-tab-btn:hover { background: var(--grad-blue); color: white; border-color: transparent; box-shadow: var(--shadow-blue); }
.pricing-table-wrap { display: none; }
.pricing-table-wrap.active { display: block; }
.pricing-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.pricing-table th {
  background: var(--grad-blue); color: rgba(255,255,255,0.9);
  padding: 17px 20px; text-align: left;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pricing-table td {
  padding: 14px 20px; border-bottom: 1px solid rgba(10,77,204,0.05);
  font-size: 0.875rem; color: var(--text-mid); font-family: 'Inter', sans-serif;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--bg); }
.price-tag { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-weight: 700; color: var(--blue); font-size: 1rem; }
.popular-badge {
  background: var(--grad-orange); color: white;
  font-size: 0.68rem; font-weight: 700;
  padding: 2px 9px; border-radius: var(--r-pill); margin-left: 8px;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.04em;
}

/* ────────────────────────────────────────────────────
   FORMS
──────────────────────────────────────────────────── */
.form-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 44px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,77,204,0.06);
}
.form-title { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.4rem; color: var(--blue); margin-bottom: 22px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  color: var(--blue); margin-bottom: 7px;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.04em; text-transform: uppercase;
}
.form-control {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid rgba(10,77,204,0.12);
  border-radius: var(--r); font-family: 'Inter', sans-serif;
  font-size: 0.875rem; color: var(--text);
  background: var(--bg); transition: var(--t);
  outline: none; resize: vertical;
}
.form-control:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.12);
}
.form-control.error { border-color: #e74c3c; }
.form-error { color: #e74c3c; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-error.show { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A4DCC' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; cursor: pointer;
}

/* ────────────────────────────────────────────────────
   UPLOAD PAGE
──────────────────────────────────────────────────── */
.upload-area {
  border: 2px dashed rgba(10,77,204,0.20);
  border-radius: var(--r-lg); padding: 64px 48px;
  text-align: center; background: var(--bg); transition: var(--t); cursor: pointer;
}
.upload-area:hover { border-color: var(--orange); box-shadow: var(--shadow-orange); }
.upload-area.dragover { border-color: var(--blue); background: var(--blue-bg); transform: scale(1.01); }
.upload-area__icon { font-size: 3.5rem; margin-bottom: 14px; }
.upload-area__title { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.3rem; color: var(--blue); margin-bottom: 10px; }
.upload-area__desc { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 22px; }
.upload-area__formats { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.format-badge {
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--blue-bg); border: 1px solid rgba(10,77,204,0.15);
  font-size: 0.72rem; font-weight: 700; color: var(--blue);
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.04em;
}
.upload-progress-wrap { margin-top: 22px; display: none; }
.upload-progress-wrap.show { display: block; }
.upload-progress-bar-bg { background: rgba(10,77,204,0.08); border-radius: var(--r-pill); height: 10px; overflow: hidden; }
.upload-progress-bar { height: 100%; background: var(--grad-cta); border-radius: var(--r-pill); transition: width 0.3s; }
.upload-file-list { margin-top: 22px; display: flex; flex-direction: column; gap: 8px; }
.upload-file-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 16px; box-shadow: var(--shadow-sm);
}
.upload-file-item__name { flex: 1; color: var(--blue); font-weight: 500; }
.upload-file-item__size { color: var(--text-lt); font-size: 0.78rem; }
.upload-file-item__remove { cursor: pointer; color: var(--text-lt); font-size: 1rem; transition: var(--t); border: none; background: none; padding: 0; }
.upload-file-item__remove:hover { color: #e74c3c; }
.upload-success { display: none; background: #ecfdf5; border: 1px solid #d1fae5; border-radius: var(--r); padding: 14px 18px; color: #065f46; font-size: 0.875rem; font-weight: 500; margin-top: 14px; }
.upload-success.show { display: block; }

/* ────────────────────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-visual__main {
  background: var(--grad-blue); border-radius: var(--r-xl);
  padding: 64px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-visual__main img { width: 100%; max-width: 280px; filter: brightness(0) invert(1); }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--grad-orange); color: white;
  border-radius: var(--r); padding: 18px 22px;
  font-weight: 800; text-align: center; box-shadow: var(--shadow-orange);
}
.about-badge-float .num { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 2.2rem; line-height: 1; }
.about-badge-float .label { font-size: 0.72rem; opacity: 0.85; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.05em; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mv-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 34px; box-shadow: var(--shadow); border-top: 3px solid;
}
.mv-card--blue   { border-color: var(--blue); }
.mv-card--orange { border-color: var(--orange); }
.mv-card__icon { font-size: 2rem; margin-bottom: 12px; }
.mv-card__title { font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.15rem; color: var(--blue); margin-bottom: 12px; }

/* ────────────────────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-card {
  background: var(--white); border-radius: var(--r);
  padding: 18px 20px; display: flex; align-items: flex-start;
  gap: 14px; box-shadow: var(--shadow-sm); transition: var(--t);
  border: 1px solid var(--border);
}
.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: rgba(255,122,0,0.20); }
.contact-info-card__icon {
  width: 44px; height: 44px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-blue   { background: var(--grad-blue); color: white; }
.ci-orange { background: var(--grad-orange); color: white; }
.ci-sky    { background: var(--grad-sky); color: white; }
.ci-green  { background: #25D366; color: white; }
.contact-info-card__label { font-size: 0.72rem; color: var(--text-lt); font-weight: 700; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-info-card__value { font-size: 0.9rem; font-weight: 600; color: var(--blue); margin-top: 2px; }
.map-embed {
  margin-top: 36px; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow); height: 300px;
  background: var(--grad-blue);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
}

/* ────────────────────────────────────────────────────
   BULK ORDERS
──────────────────────────────────────────────────── */
.bulk-steps { display: flex; gap: 8px; margin-bottom: 44px; justify-content: center; flex-wrap: wrap; }
.bulk-step { display: flex; flex-direction: column; align-items: center; gap: 9px; min-width: 100px; }
.bulk-step__num {
  width: 46px; height: 46px; background: var(--grad-orange); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-weight: 700; font-size: 1.1rem;
  box-shadow: var(--shadow-orange); position: relative;
}
.bulk-step__num::after {
  content: '';
  position: absolute; right: -26px;
  width: 18px; height: 1.5px; background: rgba(255,122,0,0.25);
  top: 50%; transform: translateY(-50%);
}
.bulk-step:last-child .bulk-step__num::after { display: none; }
.bulk-step__label { font-size: 0.72rem; font-weight: 700; color: var(--blue); text-align: center; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.03em; }
.quantity-selector {
  display: flex; align-items: center;
  border: 1.5px solid rgba(10,77,204,0.12); border-radius: var(--r); overflow: hidden; width: fit-content;
}
.qty-btn {
  width: 44px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--blue); font-weight: 700; transition: var(--t);
}
.qty-btn:hover { background: var(--grad-orange); color: white; }
.qty-input {
  width: 80px; height: 46px; border: none; text-align: center;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--blue); outline: none; background: white;
}

/* ────────────────────────────────────────────────────
   FOOTER — Dark Blue (not black)
──────────────────────────────────────────────────── */
.footer {
  background: var(--blue); color: rgba(255,255,255,0.72);
  padding: 80px 0 0; position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--sky), var(--orange-br));
}
.footer__grid {
  display: grid; grid-template-columns: 2.2fr 1.2fr 1.5fr 1.2fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer__logo img { height: 54px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer__tagline { font-size: 0.875rem; line-height: 1.8; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer__col-title {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.70rem; font-weight: 700;
  color: var(--orange-lt); margin-bottom: 16px; letter-spacing: 0.14em; text-transform: uppercase;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--t);
  display: flex; align-items: center; gap: 7px; font-family: 'Inter', sans-serif;
}
.footer__links a::before { content: '›'; color: var(--orange-lt); }
.footer__links a:hover { color: var(--orange-lt); padding-left: 4px; }
.footer__contact-item {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 13px; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-family: 'Inter', sans-serif;
}
.footer__contact-icon { color: var(--orange-lt); flex-shrink: 0; margin-top: 2px; }
.footer__social { display: flex; gap: 10px; margin-top: 4px; }
.footer__social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--t); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.70); text-decoration: none;
}
.footer__social-btn:hover { transform: translateY(-3px); background: var(--orange); border-color: var(--orange); color: white; }
.footer__newsletter { margin-top: 22px; }
.footer__newsletter-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 9px; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.06em; text-transform: uppercase; }
.footer__newsletter-form { display: flex; border-radius: var(--r-pill); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }
.footer__newsletter-input { flex: 1; padding: 10px 15px; border: none; background: rgba(255,255,255,0.08); color: white; font-family: 'Inter', sans-serif; font-size: 0.8rem; outline: none; }
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer__newsletter-btn { padding: 10px 16px; background: var(--grad-orange); color: white; border: none; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 0.78rem; font-weight: 700; cursor: pointer; transition: var(--t); }
.footer__newsletter-btn:hover { opacity: 0.88; }
.footer__bottom { text-align: center; padding: 20px 0; font-size: 0.76rem; color: rgba(255,255,255,0.38); font-family: 'Inter', sans-serif; }
.footer__bottom a { color: var(--orange-lt); }

/* ────────────────────────────────────────────────────
   FLOATING WHATSAPP
──────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem; box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 999; transition: var(--t); text-decoration: none;
  animation: floatBounce 3.5s ease-in-out infinite;
}
.whatsapp-float::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: ripple-ring 2.5s ease-out infinite;
}
@keyframes ripple-ring { 0% { transform:scale(1); opacity:.8; } 100% { transform:scale(1.55); opacity:0; } }
.whatsapp-float:hover { transform: scale(1.15); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
@keyframes floatBounce { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }

/* ────────────────────────────────────────────────────
   SCROLL ANIMATIONS
──────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.10s; }
.fade-up-delay-2 { transition-delay: 0.20s; }
.fade-up-delay-3 { transition-delay: 0.30s; }
.fade-up-delay-4 { transition-delay: 0.40s; }

/* ────────────────────────────────────────────────────
   HERO HIGHLIGHTS (checkmark pills)
──────────────────────────────────────────────────── */
.hero__highlights {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__highlight {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 0.81rem; font-weight: 600; color: rgba(255,255,255,0.92);
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.02em;
  transition: var(--t);
}
.hero__highlight:hover { background: rgba(255,255,255,0.22); }
.hero__highlight-check { color: #4ADE80; font-size: 0.95rem; font-weight: 800; }

/* ────────────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────────────── */
.how-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 28px; position: relative; margin-top: 16px;
}
.how-grid::before {
  content: '';
  position: absolute; top: 35px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-mid));
  z-index: 0;
}
.how-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.how-step__num {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.5rem; font-weight: 800;
  color: var(--orange); margin-bottom: 14px;
  box-shadow: 0 4px 20px rgba(255,122,0,0.18); transition: var(--t);
}
.how-step:hover .how-step__num {
  background: var(--grad-orange); color: white; border-color: transparent;
  transform: scale(1.10); box-shadow: var(--shadow-orange);
}
.how-step__emoji { font-size: 1.5rem; margin-bottom: 10px; }
.how-step__title {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-weight: 700;
  color: var(--blue); font-size: 0.97rem; margin-bottom: 8px;
}
.how-step__desc { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; }
.how-notice {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--orange-pale); border: 1.5px solid rgba(255,122,0,0.22);
  border-radius: var(--r-lg); padding: 20px 24px;
  margin-top: 44px; font-size: 0.875rem; color: var(--text-mid); line-height: 1.70;
}
.how-notice strong { color: var(--orange); }
.how-notice__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

/* ────────────────────────────────────────────────────
   PORTFOLIO GRID + LIGHTBOX
──────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.portfolio-item {
  border-radius: var(--r); overflow: hidden;
  position: relative; cursor: pointer;
  transition: var(--t);
}
.portfolio-item:nth-child(1) { grid-row: 1 / 3; }
.portfolio-item__bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.8rem; transition: var(--t);
}
.portfolio-item:nth-child(1) .portfolio-item__bg { font-size: 5.5rem; }
.portfolio-item:hover { box-shadow: 0 12px 40px rgba(10,77,204,0.22); transform: scale(1.02); }
.portfolio-item:hover .portfolio-item__bg { transform: scale(1.08); }
.portfolio-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,77,204,0.92) 0%, rgba(10,77,204,0.08) 55%);
  opacity: 0; transition: var(--t);
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: flex-end; padding: 18px;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__label {
  color: white; font-weight: 700; font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; margin-bottom: 3px;
}
.portfolio-item__sublabel {
  color: rgba(255,255,255,0.70); font-size: 0.72rem;
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.04em;
}
.portfolio-item__zoom {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; opacity: 0; transition: var(--t);
  color: white;
}
.portfolio-item:hover .portfolio-item__zoom { opacity: 1; }
.portfolio-item__shine {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0); transition: var(--t);
}
.portfolio-item:hover .portfolio-item__shine { transform: scaleX(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,15,40,0.94); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.30s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox__inner {
  max-width: 640px; width: 90%; text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.lightbox.open .lightbox__inner { transform: translateY(0) scale(1); }
.lightbox__icon { font-size: 9rem; line-height: 1; margin-bottom: 24px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.lightbox__title {
  font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; font-size: 1.9rem;
  color: white; margin-bottom: 10px;
}
.lightbox__desc { font-size: 0.93rem; color: rgba(255,255,255,0.60); margin-bottom: 30px; line-height: 1.7; }
.lightbox__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lightbox__close {
  position: fixed; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20);
  color: white; font-size: 1.5rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t); z-index: 10000;
}
.lightbox__close:hover { background: rgba(255,255,255,0.22); transform: scale(1.1); }

/* ────────────────────────────────────────────────────
   VISIT OUR STORE
──────────────────────────────────────────────────── */
.store-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 44px; align-items: start; }
.store-cards { display: flex; flex-direction: column; gap: 14px; }
.store-card {
  background: var(--white); border-radius: var(--r);
  padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--t);
}
.store-card:hover { transform: translateX(4px); box-shadow: var(--shadow); border-color: rgba(255,122,0,0.20); }
.store-card__icon {
  width: 44px; height: 44px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.store-card__label { font-size: 0.70rem; color: var(--text-lt); font-weight: 700; font-family: 'Plus Jakarta Sans', Inter, Poppins, sans-serif; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 3px; }
.store-card__value { font-size: 0.875rem; font-weight: 600; color: var(--blue); line-height: 1.5; }
.store-notice {
  display: flex; align-items: flex-start; gap: 13px;
  background: var(--orange-pale); border: 1.5px solid rgba(255,122,0,0.22);
  border-radius: var(--r); padding: 16px 18px;
  font-size: 0.855rem; color: var(--text-mid); line-height: 1.72;
}
.store-notice strong { color: var(--orange); display: block; margin-bottom: 3px; }
.store-map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.store-map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ════════════════════════════════════════════════════
   RESPONSIVE  –  Mobile-first overhaul
   1100px  large tablet
    900px  tablet
    768px  mobile (hamburger)
    480px  small mobile
    360px  extra-small mobile
════════════════════════════════════════════════════ */

/* ── global helpers ── */
body { overflow-x: hidden; }
img  { max-width: 100%; height: auto; }
.btn-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════ FOUNDER SECTION ══════════════ */
.founder-section { background: var(--bg); }

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
}

.founder-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.founder-portrait__img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 5px solid white;
  box-shadow: 0 8px 40px rgba(26,86,219,0.25), 0 2px 12px rgba(0,0,0,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
  margin-top: 56px;
}

.founder-portrait__img:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 60px rgba(26,86,219,0.32), 0 4px 20px rgba(0,0,0,0.14);
}

.founder-portrait__badge {
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 99px;
}

.founder-content__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.founder-content__name {
  font-size: 2rem;
  font-weight: 800;
  color: #1E3A8A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.founder-content p {
  color: var(--text-lt);
  line-height: 1.78;
  margin-bottom: 14px;
  font-size: 0.975rem;
}

.founder-quote {
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  background: var(--orange-pale);
  border-radius: 0 12px 12px 0;
  margin: 24px 0 28px;
  font-style: italic;
  color: #1E3A8A;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.65;
}

.founder-sig {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.founder-sig strong {
  display: block;
  font-size: 1.3rem;
  color: #1E3A8A;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  margin-bottom: 4px;
}

.founder-sig span {
  font-size: 0.82rem;
  color: var(--text-lt);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}

.founder-grid--about {
  grid-template-columns: 320px 1fr;
  gap: 72px;
}

.founder-grid--about .founder-portrait__img {
  width: 280px;
  height: 280px;
}

/* ══════════════ 1100 px ══════════════ */
@media (max-width: 1100px) {
  .footer__grid  { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .stat-item + .stat-item { border-left: none; }
  .stat-item:nth-child(odd) { border-left: none; }
  .cards-grid    { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); }
  .testimonials-grid { grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); }
  .why-grid      { grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); }
}

/* ══════════════ 900 px ══════════════ */
@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }

  /* Typography */
  h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }

  /* Grids → 1 col */
  .about-grid   { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .mv-grid      { grid-template-columns: 1fr; }
  .form-row     { grid-template-columns: 1fr; }

  /* About visual */
  .about-visual__main { padding: 40px; }
  .about-badge-float  { right: 0; bottom: -12px; }

  /* Gallery → 2 col, no spanning */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:nth-child(1) { grid-row: auto; }
  .gallery-item { min-height: 160px; }
  .gallery-item__bg { height: 160px; font-size: 2.8rem; }
  .gallery-item:nth-child(1) .gallery-item__bg { font-size: 3rem; height: 160px; }

  /* Hero actions */
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 340px; justify-content: center; }

  /* Page header */
  .page-header { padding: 120px 0 48px; }

  /* How It Works */
  .how-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .how-grid::before { display: none; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; gap: 14px; }
  .portfolio-item:nth-child(1) { grid-row: auto; }
  .portfolio-item__bg { height: 180px; }
  .portfolio-item:nth-child(1) .portfolio-item__bg { font-size: 3.5rem; height: 180px; }

  /* Store */
  .store-grid { grid-template-columns: 1fr; gap: 28px; }
  .store-map-wrap iframe { height: 340px; }

  /* Founder */
  .founder-grid { grid-template-columns: 240px 1fr; gap: 40px; }
  .founder-grid--about { grid-template-columns: 260px 1fr; gap: 44px; }
  .founder-grid--about .founder-portrait__img { width: 240px; height: 240px; }

  /* Hero two-col → stack on tablet */
  .hero__two-col { grid-template-columns: 1fr; gap: 32px; }
  .hero__content { text-align: center; }
  .hero__title { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__highlights { justify-content: center; }
  .hero__docs { height: 380px; order: -1; max-width: 400px; }
  .doc-card--aadhaar { width: 162px; height: 103px; top: 38px; left: calc(50% - 178px); }
  .doc-card--pan     { width: 162px; height: 103px; top: 44px; left: calc(50% + 16px); }
  .doc-card--voter   { width: 162px; height: 103px; bottom: 38px; left: calc(50% - 178px); }
  .doc-card--passport { width: 106px; height: 148px; bottom: 30px; left: calc(50% + 22px); }
}

/* ══════════════ 768 px  (hamburger) ══════════════ */
@media (max-width: 768px) {

  /* ── Navbar ── */
  .navbar {
    top: 10px;
    width: calc(100% - 24px);
    border-radius: var(--r-lg);
  }
  .navbar.scrolled { top: 4px; }
  .navbar__inner   { padding: 8px 16px; }
  .navbar__logo img { height: 60px; max-width: 150px; }
  .navbar__nav,
  .navbar__actions { display: none; }
  .navbar__hamburger { display: flex; }

  /* Mobile slide-in menu */
  .navbar__mobile-menu {
    display: none; flex-direction: column;
    padding: 0 12px 14px; gap: 3px;
    animation: menuSlide 0.22s ease;
  }
  .navbar__mobile-menu.open { display: flex; }
  @keyframes menuSlide {
    from { opacity:0; transform:translateY(-8px); }
    to   { opacity:1; transform:translateY(0); }
  }
  .navbar__mobile-menu a {
    padding: 11px 14px; border-radius: var(--r);
    font-size: 0.9rem; font-weight: 600;
    min-height: 48px; display: flex; align-items: center;
  }
  .navbar__mobile-actions {
    display: flex; gap: 8px; padding: 10px 0 4px; flex-wrap: wrap;
  }
  .navbar__mobile-actions .btn-whatsapp,
  .navbar__mobile-actions .btn-call {
    flex: 1; justify-content: center; min-height: 44px;
  }

  /* ── Section ── */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }

  /* ── Typography ── */
  h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  h3 { font-size: clamp(1rem, 3.5vw, 1.15rem); }
  .section-subtitle { font-size: 0.92rem; }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding: 110px 0 60px;
  }
  .hero__title { font-size: 48px; text-align: center; }
  .hero__desc  { font-size: 0.95rem; margin-bottom: 28px; }
  .hero__actions {
    flex-direction: column; align-items: center; gap: 10px;
    margin-bottom: 36px;
  }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; min-height: 52px; }
  .hero__features { gap: 10px; }
  .hero__feat { font-size: 0.75rem; }
  /* hide decorative emoji on mobile */
  .hero__deco { display: none; }
  .hero__shape--1, .hero__shape--2, .hero__shape--3 { display: none; }

  /* ── Mobile: hide desktop floating showcase, show carousel ── */
  .hero__docs    { display: none !important; }
  .hero__carousel { display: block; }

  /* ── Stats bar ── */
  .hero-stats-bar { padding: 20px 0; }
  .hero-stats-inner { gap: 6px; flex-wrap: wrap; justify-content: space-around; }
  .hero-stat { padding: 8px 14px; flex: 1 1 40%; }
  .hero-stat + .hero-stat { border-left: none; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.65rem; }

  /* ── Services strip ── */
  .services-strip__inner { justify-content: flex-start; padding: 0 4px; }
  .services-strip__item  { min-width: 68px; }
  .services-strip__icon  { width: 46px; height: 46px; font-size: 1.2rem; }

  /* ── Cards grid ── */
  .cards-grid { grid-template-columns: 1fr; gap: 18px; }
  .service-card__img { height: 160px; }

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .gallery-item { min-height: 200px; }
  .gallery-item__bg { height: 200px; font-size: 3rem; }
  .gallery-item:nth-child(1) .gallery-item__bg { font-size: 3.5rem; height: 200px; }

  /* ── Stats counter ── */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .stat-item { padding: 20px 12px; }
  .stat-num  { font-size: 2rem; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

  /* ── Why us ── */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }

  /* ── CTA ── */
  .cta-section { padding: 64px 0; }
  .cta-section .btn-actions { flex-direction: column; align-items: center; }
  .cta-section .btn-actions .btn { width: 100%; max-width: 320px; justify-content: center; min-height: 52px; }

  /* ── Pricing ── */
  .pricing-tabs { gap: 6px; }
  .pricing-tab-btn { padding: 8px 16px; font-size: 0.78rem; }
  /* horizontal scroll wrapper for table on mobile */
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-table { min-width: 520px; }
  .pricing-table th,
  .pricing-table td { padding: 12px 14px; font-size: 0.8rem; }

  /* ── Forms ── */
  .form-card { padding: 24px 16px; }
  .form-control { font-size: 16px; } /* prevent iOS zoom */
  .form-group { margin-bottom: 16px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* ── Buttons min touch size ── */
  .btn { min-height: 48px; padding: 13px 24px; }
  .btn-lg { min-height: 54px; padding: 16px 32px; }
  .btn-sm { min-height: 40px; padding: 8px 16px; }
  .btn-whatsapp, .btn-call { min-height: 44px; }

  /* ── Upload page ── */
  .upload-area { padding: 40px 24px; }
  .upload-area__icon { font-size: 2.8rem; }
  .upload-area__title { font-size: 1.1rem; }

  /* ── Bulk orders ── */
  .bulk-steps { gap: 6px; }
  .bulk-step  { min-width: 72px; }
  .bulk-step__num::after { display: none; }
  .quantity-selector { width: 100%; }
  .qty-input { flex: 1; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .map-embed { height: 220px; margin-top: 20px; }
  .contact-info-card { padding: 14px 16px; }

  /* ── Page header ── */
  .page-header { padding: 108px 0 40px; }
  .page-header h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-header p  { font-size: 0.9rem; }
  .breadcrumb { font-size: 0.76rem; }

  /* ── Footer ── */
  .footer { padding: 56px 0 0; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer__col-title { margin-top: 8px; }
  .footer__logo img { height: 44px; }
  .footer__newsletter-form { flex-direction: row; }

  /* ── Floating WhatsApp ── */
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.35rem; bottom: 20px; right: 16px; }

  /* ── About ── */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-visual__main { padding: 32px; }
  .about-badge-float { position: static; margin-top: 12px; display: inline-block; }
  .mv-grid { grid-template-columns: 1fr; gap: 16px; }
  .mv-card { padding: 24px 20px; }

  /* ── Misc inline layouts ── */
  [style*="display:flex"][style*="gap"] { flex-wrap: wrap; }

  /* ── Hero highlights ── */
  .hero__highlights { gap: 8px; }
  .hero__highlight  { font-size: 0.75rem; padding: 6px 12px; }

  /* ── How It Works ── */
  .how-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .how-grid::before { display: none; }
  .how-step__num { width: 56px; height: 56px; font-size: 1.25rem; }
  .how-notice { flex-direction: column; gap: 10px; padding: 16px; }

  /* ── Portfolio ── */
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 10px; }
  .portfolio-item:nth-child(1) { grid-row: auto; }
  .portfolio-item__bg { height: 160px; font-size: 2.8rem; }
  .portfolio-item:nth-child(1) .portfolio-item__bg { font-size: 3rem; height: 160px; }
  .lightbox__icon  { font-size: 6rem; }
  .lightbox__title { font-size: 1.4rem; }

  /* ── Store ── */
  .store-grid { grid-template-columns: 1fr; gap: 24px; }
  .store-map-wrap iframe { height: 280px; }

  /* ── Founder ── */
  .founder-grid,
  .founder-grid--about { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .founder-portrait { margin: 0 auto 8px; }
  .founder-quote { text-align: left; }
  .founder-sig { text-align: left; }
  .founder-content__name { font-size: 1.65rem; }
}

/* ══════════════ 480 px  (small mobile) ══════════════ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section    { padding: 48px 0; }

  /* ── Navbar ── */
  .navbar { width: calc(100% - 16px); top: 8px; border-radius: 14px; }
  .navbar__logo img { height: 54px; max-width: 130px; }
  .navbar__inner { padding: 7px 14px; }

  /* ── Hero ── */
  .hero { padding: 96px 0 48px; }
  .hero__title { font-size: 34px; text-align: center; }
  .hero__tag   { font-size: 0.65rem; padding: 6px 14px; }
  .hero__desc  { font-size: 0.875rem; }
  .hero__features { display: none; } /* hide tiny features chips */

  /* ── Stats bar ── */
  .hero-stat { flex: 1 1 45%; }
  .hero-stat-num { font-size: 1.35rem; }

  /* ── Stats counter ── */
  .stats-section { padding: 48px 0; }
  .stats-grid    { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item     { padding: 18px 8px; }
  .stat-num      { font-size: 1.8rem; }
  .stat-icon     { font-size: 1.5rem; }

  /* ── Service cards ── */
  .service-card__body { padding: 18px 16px; }
  .service-card__actions { flex-direction: column; }
  .service-card__actions .btn { width: 100%; justify-content: center; }

  /* ── Gallery ── */
  .gallery-grid { gap: 8px; }
  .gallery-item { min-height: 180px; }
  .gallery-item__bg { height: 180px; font-size: 2.5rem; }

  /* ── Testimonials ── */
  .testimonial-card { padding: 22px 18px; }
  .testimonial-card::before { font-size: 4rem; }

  /* ── CTA ── */
  .cta-section h2 { font-size: 1.4rem; }
  .cta-section p  { font-size: 0.9rem; }

  /* ── Forms ── */
  .form-card  { padding: 20px 14px; border-radius: var(--r); }
  .form-title { font-size: 1.2rem; }

  /* ── Pricing ── */
  .pricing-tab-btn { padding: 7px 12px; font-size: 0.73rem; }

  /* ── Upload ── */
  .upload-area { padding: 32px 16px; border-radius: var(--r); }
  .upload-area__formats { gap: 5px; }
  .format-badge { font-size: 0.65rem; padding: 3px 9px; }

  /* ── Bulk ── */
  .bulk-steps { flex-direction: row; justify-content: space-around; }
  .bulk-step  { min-width: 60px; }
  .bulk-step__label { font-size: 0.65rem; }

  /* ── Contact ── */
  .contact-info-card__value { font-size: 0.85rem; }

  /* ── Page header ── */
  .page-header { padding: 96px 0 36px; }
  .page-header h1 { font-size: clamp(1.5rem, 7vw, 2rem); }

  /* ── Footer ── */
  .footer { padding: 44px 0 0; }
  .footer__grid { gap: 24px; }
  .footer__tagline { font-size: 0.82rem; }
  .footer__links a { font-size: 0.82rem; }
  .footer__contact-item { font-size: 0.82rem; }
  .footer__newsletter-form { flex-direction: column; border-radius: var(--r); }
  .footer__newsletter-input  { border-radius: var(--r) var(--r) 0 0; }
  .footer__newsletter-btn    { border-radius: 0 0 var(--r) var(--r); padding: 10px; }

  /* ── Floating WhatsApp ── */
  .whatsapp-float { width: 48px; height: 48px; font-size: 1.25rem; bottom: 16px; right: 12px; }

  /* ── Section label ── */
  .section-label { font-size: 0.68rem; }

  /* ── Hero highlights ── */
  .hero__highlights { display: none; }

  /* ── How It Works ── */
  .how-grid { grid-template-columns: 1fr; gap: 18px; }
  .how-step__num { width: 52px; height: 52px; font-size: 1.15rem; }

  /* ── Portfolio ── */
  .portfolio-grid { grid-template-columns: 1fr; gap: 8px; }
  .portfolio-item__bg { height: 180px; font-size: 3rem; }
  .lightbox__icon { font-size: 5rem; }
  .lightbox__title { font-size: 1.25rem; }
  .lightbox__actions { flex-direction: column; align-items: stretch; }
  .lightbox__actions .btn { justify-content: center; }

  /* ── Store ── */
  .store-map-wrap iframe { height: 240px; }

  /* ── Founder ── */
  .founder-portrait__img { width: 180px; height: 180px; }
  .founder-grid--about .founder-portrait__img { width: 200px; height: 200px; }
  .founder-content__name { font-size: 1.4rem; }
}

/* ══════════════ 360 px  (extra-small) ══════════════ */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero__title { font-size: 34px; }
  .hero__actions .btn { max-width: 100%; font-size: 0.82rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { gap: 20px; }
  .navbar { width: calc(100% - 12px); }
  .form-card { padding: 16px 12px; }
}
