/* ═══════════════════════════════════════════════
   DESIGN TOKENS — Premium Jewellery Brand
═══════════════════════════════════════════════ */
:root {
  /* Navy palette */
  --navy-950: #050D1F;
  --navy-900: #0C1445;
  --navy-800: #112060;
  --navy-700: #1A3278;
  --navy-600: #1E3A8A;
  --navy-500: #2451BB;
  --navy-400: #3B6EF0;
  --navy-100: #DBEAFE;
  --navy-50:  #EEF3FF;

  /* Gold palette */
  --gold-600: #92610A;
  --gold-500: #B8860B;
  --gold-400: #C9A227;
  --gold-300: #D4AF37;
  --gold-200: #E8CC6A;
  --gold-100: #FBF0C4;
  --gold-50:  #FFFBEB;

  /* Neutral palette */
  --ink-900:  #0A0E1A;
  --ink-800:  #111827;
  --ink-700:  #1F2937;
  --ink-600:  #374151;
  --ink-500:  #4B5563;
  --ink-400:  #6B7280;
  --ink-300:  #9CA3AF;
  --ink-200:  #E5E7EB;
  --ink-100:  #F3F4F6;
  --ink-50:   #F9FAFB;

  --white: #FFFFFF;
  --green: #059669;
  --red:   #DC2626;

  /* Spacing & shape */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --trans: 0.22s var(--ease);
  --trans-md: 0.35s var(--ease);

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.08),0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 16px rgba(12,20,69,0.08),0 1px 4px rgba(0,0,0,0.04);
  --shadow:    0 8px 32px rgba(12,20,69,0.12),0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 60px rgba(12,20,69,0.18),0 6px 20px rgba(0,0,0,0.08);
  --shadow-xl: 0 32px 80px rgba(12,20,69,0.22),0 12px 32px rgba(0,0,0,0.1);
  --shadow-gold: 0 8px 32px rgba(201,162,39,0.35);
  --shadow-navy: 0 8px 32px rgba(12,20,69,0.4);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth; font-size:16px }
body {
  background: var(--white);
  color: var(--ink-800);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width:5px }
::-webkit-scrollbar-track { background: var(--ink-100) }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--navy-600), var(--gold-400)); border-radius:4px }

.container { max-width:1200px; margin:0 auto; padding:0 28px }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap }

/* ═══════════════════════════════════════════════
   BUTTONS — Elevated, premium feel
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 14.5px;
  font-weight: 650;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}

.btn-blue{
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-500) 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(36,81,187,0.35);
    
}

.btn-blue:hover{
    color: #FFC107 !important;   /* Yellow text */
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(36,81,187,0.45);
}
.btn-yellow {
  background: linear-gradient(135deg, var(--gold-300) 0%, var(--gold-400) 100%);
  color: var(--ink-900);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
  font-weight: 700;
}
.btn-yellow:hover {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-500) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--navy-600);
  border: 2px solid var(--navy-600);
}
.btn-outline:hover {
  background: var(--navy-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: rgba(40, 167, 69, 0.15); /* Light green */
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
}

.btn-outline-white:hover {
    background: rgba(40, 167, 69, 0.15); /* Light green */
    border-color: #28a745;
    color: #28a745;
    transform: translateY(-2px);
}

.wa-icon{
    width:24px;
    height:24px;
    color:#25D366;   /* WhatsApp Green */
    fill:currentColor;
    display:inline-block;
    vertical-align:middle;
}

.btn-wa {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

.btn-white {
  background: #fff;
  color: var(--navy-700);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: var(--navy-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-sm { padding: 10px 22px; font-size: 13.5px }
.btn-lg { padding: 17px 38px; font-size: 16px }

/* ═══════════════════════════════════════════════
   NAVIGATION — Crystal-clear, premium
═══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(12,20,69,0.08);
  transition: var(--trans-md);
}

.nav-scrolled {
  box-shadow: 0 4px 24px rgba(12,20,69,0.1) !important;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 28px;
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-500) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-300);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(12,20,69,0.25);
}

.logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.logo-sub {
  font-size: 10px;
  color: var(--navy-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: -3px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  padding: 7px 15px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-500);
  text-decoration: none;
  transition: var(--trans);
}

.nav-links a:hover {
  color: var(--navy-600);
  background: var(--navy-50);
}

.dropdown { position: relative }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100%);
  left: 0;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
}

.dropdown:hover .dropdown-menu { display: block }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  color: var(--ink-600);
  text-decoration: none;
  transition: var(--trans);
}

.dropdown-menu a:hover {
  color: var(--navy-700);
  background: var(--navy-50);
}

.dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.6 }

.nav-ctas { display: flex; gap: 10px; align-items: center }
.hamburger { display: none; background: none; border: none; cursor: pointer; color: var(--ink-800); font-size: 24px }

/* ═══════════════════════════════════════════════
   TICKER — Premium gold-on-navy
═══════════════════════════════════════════════ */
.ticker-wrap {
  background: linear-gradient(90deg, var(--navy-900) 0%, var(--navy-700) 50%, var(--navy-900) 100%);
  overflow: hidden;
  padding: 11px 0;
  border-bottom: 2px solid var(--gold-400);
}

.ticker {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-item {
  white-space: nowrap;
  font-size: 12.5px;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ticker-sep { color: var(--gold-300); font-size: 14px }

@keyframes ticker {
  0%   { transform: translateX(0) }
  100% { transform: translateX(-50%) }
}

/* ═══════════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════════ */
.section-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid #d0d5e8;
  color: #1a2b6d;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0a0e1e;
  line-height: 1.15;
  margin: 0 0 16px;
}

.section-titles {
  color: #0a0e1e;
  line-height: 1.15;
  margin: 0 0 16px;
}



.section-tag-gold {
  color: var(--gold-500);
  background: var(--gold-50);
  border-color: var(--gold-100);
}



.section-sub {
  color: #555e7a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  white-space: nowrap;
}

.text-center { text-align: center }
.text-center .section-sub { margin: 0 auto }

section { padding: 80px 0 }

/* ═══════════════════════════════════════════════
   HERO — Cinematic, high-impact
═══════════════════════════════════════════════ */
.hero-wrapper {
  background: linear-gradient(160deg, var(--ink-50) 0%, #EDF1FD 55%, #F5EFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,81,187,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}

#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--gold-50), rgba(255,251,235,0.8));
  border: 1.5px solid var(--gold-200);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 12.5px;
  color: var(--gold-600);
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(201,162,39,0.15);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(5,150,105,0.4);
}

@keyframes pulse {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(5,150,105,0.4) }
  50%  { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(5,150,105,0) }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(5,150,105,0) }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--ink-900);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-500);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 490px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--ink-200);
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy-700);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 11.5px;
  color: var(--ink-400);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-right { position: relative }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(12,20,69,0.15) 100%);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.hero-img-wrap:hover img { transform: scale(1.03) }

.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: 20%;
  width: fit-content;    /* shrink to content only */
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 12px 18px;   /* slightly tighter padding */
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hero-img-badge{
    display:flex;
    align-items:center;
    gap:25px;
}

.badge-item{
    display:flex;
    align-items:center;
    gap:30px;
}

.badge-icon{
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f2f5ff;
    font-size:20px;
}

.big{
    font-size:18px;
    font-weight:700;
}

.small{
    font-size:12px;
    color:#666;
}

.hero-img-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(12,20,69,0.3);
}

.hero-img-badge-text .big {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}

.hero-img-badge-text .small {
  font-size: 12px;
  color: var(--ink-400);
  font-weight: 500;
}

.hero-float-chip {
  position: absolute;
  top: 28px;
  right: -18px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
  border-radius: 50px;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-900);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
  letter-spacing: 0.01em;
  z-index: 2;
}

/* ═══════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════ */
#products {
  background: var(--ink-50);
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-md);
  cursor: default;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-100);
}

.product-card:hover .product-card-img {
  transform: scale(1.04);
}

.product-card-img-wrap {
  overflow: hidden;
  height: 190px;
}

.product-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.product-card-body { padding: 26px }

.product-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  color: var(--navy-700);
  font-size: 22px;
  margin-bottom: 16px;
  border: 1px solid var(--navy-100);
}

.product-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.75;
  margin-bottom: 18px;
}

.product-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 50px;
  background: var(--gold-50);
  color: var(--gold-600);
  border: 1.5px solid var(--gold-100);
  display: inline-block;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
#features { background: #fff }

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

.feature-card {
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans-md);
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-600), var(--navy-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
  border-radius: 0 0 2px 2px;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--navy-100);
  transform: translateY(-4px);
}

.feature-card:hover::after { transform: scaleX(1) }

.feature-card:hover .feature-card-img { transform: scale(1.04) }

.feature-card-img-wrap {
  overflow: hidden;
  height: 168px;
}

.feature-card-img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease);
}

.feature-card-body { padding: 24px }

.feature-icon-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--navy-100);
}

.feature-card h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--ink-500);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   WHY RPS
═══════════════════════════════════════════════ */
#why {
  background: linear-gradient(160deg, var(--ink-50) 0%, #EDF1FD 100%);
  border-top: 1px solid var(--ink-200);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;          /* ← key fix: both columns start at the top */
}



.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.why-items {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* ← two columns */
  gap: 16px;
  align-items: start;
  position: relative;
  bottom: 30px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow-xs);
  transition: var(--trans);
}

.why-item:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}


.why-num {
  width: 38px;
  height: 38px;
  background: #1a2b6d;
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
}

.why-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0a0e1e;
  margin: 0;
  line-height: 1.3;
}

.why-item p {
  font-size: 0.875rem;
  color: #555e7a;
  line-height: 1.6;
  margin: 0;
}

.why-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  border-radius: 25px;
  display: block;
}


.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,10,30,0.92) 0%, rgba(5,10,30,0.2) 50%, transparent 75%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.why-kpi-row { display: flex; gap: 14px }

.why-kpi {
  flex: 1;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}


.why-kpi:hover{
    border-color:#FFD700;
    box-shadow:0 8px 25px rgba(255,215,0,.2);
}


.why-kpi .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--gold-300);
  letter-spacing: -0.01em;
}

.why-kpi .lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 600;
}



.why-item{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:15px;
    border-radius:35px;
}

.why-num{
    width:42px;
    height:42px;
    line-height:42px;
    font-size:16px;
    font-weight:700;
    flex-shrink:0;
}

.why-item h4{
    font-size:18px;
    margin:0 0 6px;
}

.why-item p{
    font-size:14px;
    line-height:1.5;
    margin:0;
}
/* ═══════════════════════════════════════════════
   PLANS — Dark premium
═══════════════════════════════════════════════ */
#plans {
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 50%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

#plans::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}

#plans::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36,81,187,0.1) 0%, transparent 70%);
  pointer-events: none;
}

#plans .section-tag {
  background: rgba(201,162,39,0.12);
  border-color: rgba(201,162,39,0.3);
  color: var(--gold-300);
}

#plans .section-title { color: #fff }
#plans .section-sub { color: rgba(255,255,255,0.55) }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 56px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--trans-md);
}

.plan-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.plan-card.featured {
  background: linear-gradient(160deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 0 60px rgba(201,162,39,0.12), 0 0 0 1px rgba(201,162,39,0.2);
}

.plan-card.featured:hover {
  box-shadow: 0 0 80px rgba(201,162,39,0.18), 0 0 0 1px rgba(201,162,39,0.3);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  color: var(--ink-900);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(201,162,39,0.4);
}

.plan-name {
  font-size: 11px;
  font-weight: 700;
  color: rgba(201,162,39,0.8);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.plan-tier {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.01em;
}

.plan-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

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

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.plan-features li:last-child { border-bottom: none }

.plan-features .check {
  color: var(--green);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

.plan-features .cross {
  color: rgba(255,255,255,0.2);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-ctas { display: flex; flex-direction: column; gap: 10px }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   TESTIMONIALS — Auto Scroll CSS (Full Fix)
   Replace all your existing .testi-* CSS with this
═══════════════════════════════════════════════════ */

/* ── Viewport: 3 equal columns, fixed height ── */
/* ═══════════════════════════════════════════════════
   TESTIMONIALS — Auto Scroll CSS (Final Fix)
   Replace all your existing .testi-* CSS with this
═══════════════════════════════════════════════════ */

/* ── Viewport: 3 equal columns, fixed height ── */


/* ── Dark mode ── */
body.dark-mode .testi-card {
  background: #161b27;
  border-color: #2d3748;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
body.dark-mode .testi-text  { color: #cbd5e1; }
body.dark-mode .testi-name  { color: #f1f5f9; }
body.dark-mode .testi-biz   { color: #64748b; }


/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */
#cta-section {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 40%, var(--navy-600) 100%);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -5%;
  width: 50%; height: 200%;
  background: linear-gradient(135deg, transparent, rgba(201,162,39,0.07), transparent);
  transform: skewX(-12deg);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  color: #fff;
  max-width: 540px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-inner h2 em {
  font-style: italic;
  color: var(--gold-300);
}

.cta-inner p {
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  font-size: 16px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
#contact { background: #fff }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 56px;
}

.form-card {
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.form-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.form-sub {
  font-size: 14px;
  color: var(--ink-400);
  margin-bottom: 30px;
}

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

.field { margin-bottom: 18px }

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-600);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14.5px;
  color: var(--ink-800);
  font-family: 'Inter', sans-serif;
  transition: var(--trans);
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 4px rgba(36,81,187,0.1);
  background: #fff;
}

.field textarea { resize: vertical; min-height: 110px }

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-300) }

.field select option { background: #fff }

.form-submit { display: flex; gap: 12px; margin-top: 10px; flex-wrap: wrap }

/*.contact-info { display: flex; flex-direction: column; gap: 30px }*/

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


.contact-block{ margin:0; }

.office-hours{
    margin:0;
    height:fit-content;
}

@media (max-width:768px){
    .contact-info{
        grid-template-columns:1fr;
    }
}

.contact-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-900);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

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

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-50), var(--navy-100));
  border: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--navy-700);
}

.contact-label { font-size: 11.5px; color: var(--ink-400); margin-bottom: 3px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase }
.contact-val { font-size: 14.5px; color: var(--ink-900); font-weight: 600 }
.contact-val a { color: var(--navy-600); text-decoration: none }
.contact-val a:hover { text-decoration: underline }
.contact-block,
.office-hours {
  background: linear-gradient(135deg, var(--navy-50), #E8EEFF);
  border: 1.5px solid var(--navy-100);
  border-radius: var(--radius-lg);
  padding: 26px;
}

.office-hours .title {
  font-size: 12px;
  color: var(--navy-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}


.office-hours p { font-size: 14px; color: var(--ink-500); line-height: 2.1 }
.office-hours strong { color: var(--ink-900) }
.wa-quick{
    grid-column: 1 / -1;   /* Full width */
    width:100%;
    margin-top:20px;
}
.wa-quick h3 { font-size: 25px; font-weight: 700; color: var(--ink-900); margin-bottom: 5px; letter-spacing: -0.01em; align-items: center; }
.wa-quick { display: flex; flex-direction: column; gap: 0 }
.wa-quick-btns { display: flex; flex-direction: column; gap: 10px }

/* ═══════════════════════════════════════════════
   FLOATING WA
═══════════════════════════════════════════════ */
#wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  animation: float-bounce 3.5s ease-in-out infinite;
  border: none;
  text-decoration: none;
  transition: var(--trans);
}

#wa-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 10px 36px rgba(37,211,102,0.65);
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0) }
  50%       { transform: translateY(-7px) }
}

/* ═══════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 110px;
  right: 30px;
  z-index: 1100;
  background: #fff;
  border: 1.5px solid var(--green);
  color: var(--ink-800);
  padding: 15px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  box-shadow: var(--shadow-lg);
  font-weight: 500;
}

#toast.show { display: flex; animation: slide-in .3s ease }

@keyframes slide-in {
  from { opacity: 0; transform: translateX(30px) }
  to   { opacity: 1; transform: translateX(0) }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--navy-950);
  border-top: 2px solid var(--gold-400);
  padding: 70px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin: 18px 0 26px;
  max-width: 280px;
}

.footer-logo-mark {
  width: 48px;
  height: 48px;
 /* background: linear-gradient(135deg, var(--navy-700), var(--navy-500));*/
 background: linear-gradient(135deg, #ffffff, #ffffff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-300);
  box-shadow: 0 4px 16px rgba(12,20,69,0.4);
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  text-decoration: none;
  transition: var(--trans);
}

.social-btn:hover {
  background: var(--gold-400);
  color: var(--ink-900);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}

footer h5 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

footer ul { list-style: none }
footer ul li { margin-bottom: 11px }
footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--trans);
}
footer ul li a:hover { color: var(--gold-300) }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a { color: rgba(255,255,255,0.3); text-decoration: none; transition: var(--trans) }
.footer-bottom a:hover { color: var(--gold-300) }

/* ═══════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════ */
#mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  padding: 96px 32px 44px;
}

#mobile-nav.open { display: flex }

#mobile-nav a {
  font-size: 19px;
  color: var(--ink-900);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--ink-100);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--trans);
}

#mobile-nav a:hover { color: var(--navy-600) }
#close-nav { position: absolute; top: 24px; right: 28px; background: none; border: none; color: var(--ink-700); font-size: 28px; cursor: pointer }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0) }

/* ═══════════════════════════════════════════════
   WA ICON
═══════════════════════════════════════════════ */
.wa-icon {
  width: 16px;
  height: 16px;
  fill: #fff;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE (ORIGINAL — unchanged)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width:768px) {
  .nav-links, .nav-ctas .btn:not(.btn-sm) { display: none }
  .hamburger { display: block }
  section { padding: 72px 0 }
}

@media (max-width:600px) {
  .form-row { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }
  .hero-stats { gap: 22px }
  .cta-inner { text-align: center; justify-content: center }
  .plans-grid { grid-template-columns: 1fr }
}


#typewriter-text::after {
  content: '|';
  animation: blink 0.7s infinite;
  color: #f59e0b;
}

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

#hero-h1 {
    font-size: 35px;      /* Medium size */
    font-weight: 700;
    line-height: 1.2;
}

#visitor-popup{
    position:fixed;
    left:20px;
    bottom:20px;
    width:320px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    display:flex;
    gap:12px;
    padding:15px;
    align-items:center;
    transform:translateX(-420px);
    transition:.6s;
    z-index:99999;
    border-left:5px solid #ffb400;
}

#visitor-popup.show{
    transform:translateX(0);
}

.popup-icon{
    font-size:28px;
}

.popup-text{
    font-size:14px;
    color:#333;
    line-height:1.5;
}

.floating-qr{
    position:fixed;
    right:20px;
    bottom:150px;
    width:80px;
    height:80px;
    background:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    overflow:hidden;
    transition:width .35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    z-index:9999;
}

.floating-qr:hover{
    width:360px;
}




.qr-image{
    width:80px;
    height:80px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
}

.qr-image img{
    width:70px;
    height:70px;
    object-fit:contain;   /* Don't crop */
    image-rendering:auto; /* Keep QR sharp */
}

.qr-popup{
    padding:15px;
    opacity:0;
    transition:.3s;
}

.floating-qr:hover .qr-popup{
    opacity:1;
}

.qr-popup h4{
    margin:0 0 8px;
}

.qr-popup p{
    margin:0;
    font-size:14px;
    line-height:1.5;
}

.qr-image img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
}

/* Popup Content */
.qr-popup {
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Title */
.qr-popup h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Text */
.qr-popup p {
    margin: 3px 0 0;
    font-size: 13px;
    color: #555;
}

/* Button */
.qr-btn {
    margin-top: 6px;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
}
.office-hours p{
    margin:12px 0;
    line-height:1.7;
    color:#555;
}

.office-hours .title{
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
    color:#0b4ea2;
}

.office-hours strong{
    color:#222;
}

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

.logo-img{
    height:55px;      /* Change to 50-60px */
    width:auto;
    display:block;
    object-fit:contain;
}

/* BUTTON STYLE */

/* MODAL CENTER FIX */
.modal-dialog {
    max-width: 380px;
    margin: 40px auto;
}

/* MODAL BOX */
.modal-content {
    border-radius: 12px;
    padding: 10px;
}

/* MODAL BODY SPACING */
.modal-body {
    padding: 15px;
}

/* FORM GROUP SPACING */
.field-group {
    margin-bottom: 14px;
}

/* LABEL FIX */
.form-label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #444;
}

/* INPUT WRAPPER */
.input-wrapper {
    position: relative;
}

/* ICON ALIGN FIX */
.input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* INPUT FIELD FIX */
.form-field {
    width: 100%;
    padding: 10px 10px 10px 34px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 13px;
    background: #fafafa;
}

/* TEXTAREA FIX */
.textarea-wrap textarea {
    min-height: 70px;
    padding-top: 10px;
}

/* FOCUS CLEAN */
.form-field:focus {
    border-color: #0d6efd;
    background: #fff;
    outline: none;
}

/* BUTTON FIX (IMPORTANT) */
.submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border-radius: 8px;
    background: #25D366;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

/* BUTTON ALIGN */
.btn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* REMOVE EXTRA WHITE SPACE */
.modal-header {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

/* SCROLL FIX */
.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}


 .success-box {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #5cd65c);
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.testi-slider{
    overflow:hidden;
    width:100%;
}

.testi-grid{
    display:flex;
    gap:20px;
    transition:transform .8s ease;
}

.testi-card{
    flex:0 0 calc((100% - 60px)/4);
}

@media(max-width:992px){
    .testi-card{
        flex:0 0 calc((100% - 20px)/2);
    }
}

@media(max-width:600px){
    .testi-card{
        flex:0 0 100%;
    }
}



.feature-list {
  margin: 15px 0 0;
  padding-left: 20px;
  list-style-type: disc;
}

.feature-list li {
  margin-bottom: 8px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.feature-list li::marker {
  color: #c9a227;
}


/* ── AI Logo Badge ─────────────────────────────── */


/* Spinning conic gradient border */
@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}



/* White inner fill */




/* Spinning border animation */
@keyframes spinBorder {
  to { --angle: 360deg; }
}

/* ── Spark icon circle ─────────────────────────── */


@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.5);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0);
  }
}

/* ── "AI" pill ─────────────────────────────────── */


.about-sec-wrap{
    background:#fff;
}

.ai-logo{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
}

.ai-badge{
    display:inline-block;
    padding:2px 8px;
    border-radius:12px;
    background:#4f46e5;
    color:#fff;
    font-size:11px;
    font-weight:600;
    animation:aiBlink 2s infinite;
}

@keyframes aiBlink{
    0%,100%{
        background:#4f46e5;
    }
    50%{
        background:#00bcd4;
    }
}

.featured-card{
    height:170px;
    background:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
}

.featured-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.featured-card img:first-child{
    max-width:100%;
    max-height:90px;
    object-fit:contain;
}

.small-card{
    height:78px;
}

.small-card img{
    max-height:42px;
}

.best-seller{
    position:absolute;
    width:70px;
    top:12px;
    right:12px;
}

.heading{
    font-size:38px;
    font-weight:700;
    color:#0d1b4d;
}

@media(max-width:991px){

.featured-card{
    height:150px;
}

.featured-card img:first-child{
    max-height:80px;
}

}

@media(max-width:576px){

.featured-card{
    height:130px;
}

.featured-card img:first-child{
    max-height:65px;
}

.heading{
    font-size:28px;
}

}



.qr-modal{
    position: relative;
    padding: 25px;
    border-radius: 18px;
    overflow: visible;
}

/* Close button */
.custom-close{
    position: absolute;
    top: 2px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    opacity: 1;
    z-index: 999;

    /* Remove Bootstrap default icon */
    background-image: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom × icon */
.custom-close::before{
    content: "\00D7";
    font-size: 24px;
    font-weight: 600;
    color: #333;
    line-height: 1;
}

.custom-close:hover{
    background: #d4af37;
}

.custom-close:hover::before{
    color: #fff;
}

/* ═══════════════════════════════════════════════
   MOBILE VIEW FIX — Navbar + layout overflow
   Everything below is NEW, appended at the end so
   it wins the cascade. Nothing above this line was
   changed. All rules are scoped to mobile widths
   only — desktop/tablet look is untouched.
═══════════════════════════════════════════════ */

@media (max-width: 768px) { 

  /* ── NAVBAR ─────────────────────────────────── */

  /* Root bug: ".nav-ctas .btn:not(.btn-sm)" never hid
     "Book Demo" / "Get Started" because they ARE
     .btn-sm — so both pills stayed on screen next to
     the hamburger and squeezed the whole bar. Hide
     them explicitly and only show the hamburger. */
  .nav-ctas .btn {
    display: none !important;
  }

  .nav-inner {
    height: 64px;
    padding: 0 16px;
  }

  .nav-logo {
    gap: 8px;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 10px;
  }

  .logo-text {
    font-size: 15px;
  }

  .logo-sub {
    font-size: 8.5px;
  }

  .nav-ctas {
    gap: 0;
  }

  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  /* Ticker sits fixed under the nav; the nav is now
     64px tall on mobile (was 72px), so re-align it
     and shrink its text so it doesn't wrap/overlap. */
  .ticker-wrap {
    top: 64px !important;
    padding: 8px 0;
  }

  .ticker-item {
    font-size: 11px;
  }

  .ticker {
    gap: 36px;
  }

  /* Push page content below nav + ticker so nothing
     hides underneath the fixed bars on small screens. */
  .hero-wrapper section {
    padding-top: 108px !important;
  }

  /* ── MOBILE SLIDE-OUT PANEL ─────────────────── */

  #mobile-nav {
    padding: 84px 24px 36px;
  }

  #mobile-nav a {
    font-size: 17px;
    padding: 13px 0;
  }

  /* ── LAYOUT OVERFLOW — this is what made the whole
     page look tiny/zoomed-out on phones: several
     desktop-only rules force elements wider than the
     screen, so the browser shrinks the full page to
     fit. Stack everything to one column and let text
     wrap instead of forcing fixed widths. ─────────── */

  .container {
    padding: 0 18px;
  }





  .section-sub {
    white-space: normal;
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-items {
    grid-template-columns: 1fr;
  }

  .why-img {
    min-height: 260px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  #wa-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }

  /* Floating QR + visitor popup can overlap the WA
     button and each other on narrow screens. */
  .floating-qr {
    bottom: 84px;
    right: 12px;
    width: 56px;
    height: 56px;
  }

  .floating-qr:hover {
    width: 56px; /* don't expand into a wide popup on touch screens */
  }

  #visitor-popup {
    width: calc(100% - 40px);
    left: 20px;
  }
  }


@media (max-width: 768px) {
  .hero-img-badge {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
    bottom: 14px !important;
    width: calc(100% - 24px) !important;
    max-width: 300px !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 10px !important;
    padding: 8px 12px !important;
  }

  .badge-item {
    gap: 8px !important;
    flex: 1;
    min-width: 0;
  }

  .badge-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 13px !important;
    flex-shrink: 0;
  }

  .badge-item .big {
    font-size: 13px !important;
    white-space: nowrap;
  }

  .badge-item .small {
    font-size: 9.5px !important;
    white-space: nowrap;
  }
}


@media (max-width: 768px) {

  /* Kills the extra side gutters — container/hero/sections
     were reserving desktop-width padding on phone screens */
  html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .container {
    max-width: 100%;
    padding: 0 16px;
  }

  section {
    padding: 48px 0;
    overflow: hidden;
  }

  #hero,
  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-right {
    padding: 0;
    margin: 0;
  }

  .hero-img-wrap {
    width: 100%;
    margin: 0;
  }

  .hero-img-wrap img {
    width: 100%;
    max-width: 100%;
  }

  .hero-ctas,
  .hero-stats {
    width: 100%;
    max-width: 100%;
  }

  * {
    max-width: 100%;
  }
}



@media (max-width: 768px) {

  #contact { padding: 0 0 48px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
  }

  .form-card {
    padding: 22px;
  }

  .form-title { font-size: 18px; }
  .form-sub { font-size: 13px; margin-bottom: 20px; }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .field { margin-bottom: 14px; }

  .field input,
  .field select,
  .field textarea {
    padding: 11px 14px;
    font-size: 14px;
  }

  .form-submit {
    flex-direction: column;
    gap: 10px;
  }

  .form-submit .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-info {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .contact-block,
  .office-hours {
    padding: 18px;
  }

  .contact-block > div[style*="font-size: 20px"],
  .office-hours .title[style*="font-size: 20px"] {
    font-size: 15px !important;
    white-space: normal !important;
  }

  .contact-item {
    gap: 12px;
    margin-bottom: 14px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .contact-label { font-size: 10.5px; }
  .contact-val { font-size: 13.5px; }

  .office-hours p { font-size: 13px; line-height: 1.8; }

  .wa-quick { margin-top: 16px; }
  .wa-quick h3 { font-size: 18px; }
  .wa-quick-btns { gap: 8px; }
}