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

:root {
  --navy: #0f2957;
  --blue: #1d4ed8;
  --blue-mid: #3b82f6;
  --blue-light: #bfdbfe;
  --blue-xlight: #eff6ff;
  --green: #16a34a;
  --green-light: #dcfce7;
  --gold: #f59e0b;
  --red: #ef4444;
  --red-light: #fee2e2;
  --text: #0f172a;
  --text-mid: #334155;
  --text-muted: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
}

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

/* === Layout === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* === Section Headings === */
.label-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--blue);
  background: var(--blue-xlight);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.2s;
}

.view-all:hover { gap: 9px; }

/* === Top Bar === */
.topbar {
  background: var(--navy);
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.topbar-left a:hover { color: white; }
.topbar-left a svg { width: 13px; height: 13px; }

.topbar-right { display: flex; align-items: center; gap: 8px; }

.topbar-social {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s, color 0.2s;
}

.topbar-social:hover { background: rgba(255,255,255,0.18); color: white; }
.topbar-social svg { width: 13px; height: 13px; fill: currentColor; }

/* === Header === */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), #1d4ed8);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.logo-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

/* Nav */
.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

.nav-link {
  padding: 8px 13px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--blue);
  background: var(--blue-xlight);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: white;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--text-mid);
}

.icon-btn:hover { border-color: var(--blue); background: var(--blue-xlight); color: var(--blue); }
.icon-btn svg { width: 18px; height: 18px; }

.cart-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--red);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid white;
}

.btn-get-quote {
  background: var(--blue);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-get-quote:hover { background: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.mobile-panel {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: min(300px, 85vw);
  background: white;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open { display: block; }
.mobile-menu.open .mobile-panel { transform: translateX(0); }

.mobile-close {
  align-self: flex-end;
  background: var(--bg-alt);
  border: none;
  width: 34px; height: 34px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.mobile-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}

.mobile-panel a:hover { background: var(--blue-xlight); color: var(--blue); }

/* === Hero === */
.hero {
  background: linear-gradient(135deg, #071a3e 0%, #0f2957 45%, #1740a0 80%, #1d4ed8 100%);
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(59,130,246,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  animation: live 2s infinite;
}

@keyframes live { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero h1 span { color: #93c5fd; }

.hero-desc {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 440px;
}

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

.btn-white {
  background: white;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  display: inline-block;
}

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

.btn-ghost {
  background: transparent;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.08); }

.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }

.hero-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Hero right visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 30px;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 26px;
  width: 100%;
  max-width: 340px;
}

.hc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 18px;
}

.hc-icon {
  width: 44px; height: 44px;
  background: var(--blue-mid);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.hc-head h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.hc-head p { color: rgba(255,255,255,0.45); font-size: 0.72rem; }

.hc-rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }

.hc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
}

.hc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-g { background: #4ade80; }
.dot-b { background: #60a5fa; }
.dot-y { background: #fbbf24; }

.hc-row-info { flex: 1; }
.hc-row-info span { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.hc-row-info strong { font-size: 0.82rem; color: white; font-weight: 600; }
.hc-row-status { font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 6px; }

.status-done { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-wip { background: rgba(251,191,36,0.15); color: #fbbf24; }
.status-ready { background: rgba(96,165,250,0.15); color: #60a5fa; }

.hc-footer {
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-footer span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hc-footer strong { font-size: 0.9rem; color: #4ade80; font-weight: 700; }

.hero-float {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-float-1 { top: 0; right: 0; animation: floatY 4s ease-in-out infinite; }
.hero-float-2 { bottom: 20px; left: 0; animation: floatY 4s ease-in-out infinite 2s; }

@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hf-icon { font-size: 22px; }
.hf-text strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--text); line-height: 1; }
.hf-text span { font-size: 0.68rem; color: var(--text-muted); }

/* === USP Section === */
.usp-wrap {
  background: white;
  padding: 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

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

.usp-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.usp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}

.usp-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ui-blue { background: var(--blue-xlight); }
.ui-green { background: var(--green-light); }
.ui-orange { background: #fff7ed; }
.ui-purple { background: #f3e8ff; }

.usp-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; }
.usp-text p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.5; }

/* === Page Header (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1d4ed8 100%);
  padding: 50px 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }

/* === Product Cards === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}

.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.product-img-wrap { position: relative; overflow: hidden; }

.product-img {
  height: 175px;
  display: flex; align-items: center; justify-content: center;
  font-size: 58px;
  transition: transform 0.35s;
  user-select: none;
}

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

/* Image color variants */
.pi-cyan    { background: linear-gradient(135deg, #e0f2fe, #bae6fd); }
.pi-purple  { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }
.pi-green   { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.pi-orange  { background: linear-gradient(135deg, #fff7ed, #fed7aa); }
.pi-blue    { background: linear-gradient(135deg, #eff6ff, #bfdbfe); }
.pi-yellow  { background: linear-gradient(135deg, #fefce8, #fef08a); }
.pi-pink    { background: linear-gradient(135deg, #fdf2f8, #f9a8d4); }
.pi-gray    { background: linear-gradient(135deg, #f8fafc, #e2e8f0); }
.pi-red     { background: linear-gradient(135deg, #fff1f2, #fecdd3); }
.pi-teal    { background: linear-gradient(135deg, #f0fdfa, #99f6e4); }
.pi-indigo  { background: linear-gradient(135deg, #eef2ff, #c7d2fe); }
.pi-amber   { background: linear-gradient(135deg, #fffbeb, #fde68a); }

.prod-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  z-index: 2;
}

.pb-sale { background: var(--red); color: white; }
.pb-new  { background: var(--green); color: white; }
.pb-hot  { background: var(--gold); color: white; }

.wish-btn {
  position: absolute;
  top: 8px; right: 8px;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: white;
  border: none;
  font-size: 15px;
  box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}

.product-card:hover .wish-btn { opacity: 1; }
.wish-btn:hover { transform: scale(1.15); }

.product-info { padding: 14px 15px; }

.prod-cat {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue);
  margin-bottom: 5px;
}

.prod-name {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 36px;
}

.prod-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 9px;
}

.stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 1px; }
.rcount { font-size: 0.7rem; color: var(--text-muted); }

.prod-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 11px;
  flex-wrap: wrap;
}

.price-now { font-size: 1.05rem; font-weight: 800; color: var(--text); }
.price-was { font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; }
.price-off { font-size: 0.68rem; font-weight: 600; color: var(--red); background: var(--red-light); padding: 2px 6px; border-radius: 4px; }

.btn-cart {
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 9px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-cart:hover { background: var(--blue); transform: translateY(-1px); }
.btn-cart svg { width: 14px; height: 14px; }

/* === Service Cards === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-light); }

.svc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.si-blue   { background: var(--blue-xlight); }
.si-green  { background: var(--green-light); }
.si-orange { background: #fff7ed; }
.si-purple { background: #f3e8ff; }
.si-red    { background: #fff1f2; }
.si-cyan   { background: #ecfeff; }
.si-yellow { background: #fefce8; }
.si-pink   { background: #fdf4ff; }

.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }

.service-card ul { margin-bottom: 16px; }
.service-card ul li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card ul li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.7rem; margin-top: 2px; }

.svc-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-card:hover .svc-link { gap: 8px; }

/* === Promo Banner === */
.promo-section {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}

.promo-section .label-chip { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }

.promo-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  position: relative;
}

.promo-section h2 span { color: #fde047; }
.promo-section p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 28px; position: relative; }

.promo-code-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 12px 22px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 26px;
  position: relative;
}

.promo-code-box strong { font-size: 1.1rem; font-weight: 800; color: #fde047; letter-spacing: 3px; }

.btn-promo {
  display: inline-block;
  background: white;
  color: #065f46;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

.btn-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

/* === AMC Plans === */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  background: white;
}

.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.plan-card.featured { border-color: var(--blue); background: var(--blue-xlight); }

.plan-pop {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-tier {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.plan-price sup { font-size: 1.1rem; font-weight: 700; vertical-align: super; }
.plan-period { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 22px; }

.plan-features { margin-bottom: 26px; }

.plan-features li {
  font-size: 0.83rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-mid);
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-features li.no::before { content: '–'; color: #cbd5e1; }
.plan-features li.no { color: #cbd5e1; }

.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid;
  transition: all 0.2s;
}

.btn-plan-outline { border-color: var(--navy); color: var(--navy); background: white; }
.btn-plan-outline:hover { background: var(--navy); color: white; }
.btn-plan-filled { border-color: var(--blue); background: var(--blue); color: white; }
.btn-plan-filled:hover { background: var(--navy); border-color: var(--navy); }

/* === Testimonials === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.testi-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }

.testi-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 18px;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-av {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.av-blue   { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.av-green  { background: linear-gradient(135deg, #22c55e, #16a34a); }
.av-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.av-orange { background: linear-gradient(135deg, #f97316, #ea580c); }

.testi-name { font-size: 0.88rem; font-weight: 700; }
.testi-role { font-size: 0.73rem; color: var(--text-muted); }

/* === Brands === */
.brands-section { background: var(--bg-alt); padding: 52px 0; }

.brands-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 32px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.brand-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: -0.5px;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.brand-pill:hover { color: var(--navy); border-color: var(--blue-light); box-shadow: var(--shadow); }

/* === Newsletter === */
.newsletter {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.newsletter h2 { color: white; font-size: 1.8rem; font-weight: 800; margin-bottom: 10px; }
.newsletter p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 28px; }

.nl-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto;
}

.nl-form input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: white;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.nl-form input::placeholder { color: rgba(255,255,255,0.35); }
.nl-form input:focus { border-color: rgba(255,255,255,0.35); }

.nl-form button {
  background: var(--blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.nl-form button:hover { background: var(--blue-mid); }

/* === Footer === */
.footer { background: #060e20; padding: 60px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  margin: 14px 0 20px;
  max-width: 240px;
}

.footer-socials { display: flex; gap: 8px; }

.fsoc {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.fsoc:hover { background: var(--blue); }
.fsoc svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.65); }
.fsoc:hover svg { fill: white; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: white; }

.fcontact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  align-items: flex-start;
  line-height: 1.5;
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-inner a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom-inner a:hover { color: white; }
.footer-bottom-inner div { display: flex; gap: 20px; }

/* === Cart Sidebar === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(390px, 92vw);
  background: white;
  z-index: 3001;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}

.cart-sidebar.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.cart-head h3 { font-size: 1rem; font-weight: 700; }
.cart-count-label {
  background: var(--blue-xlight);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.cart-close-btn {
  background: var(--bg-alt);
  border: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.cart-close-btn:hover { background: var(--border); }

.cart-body { flex: 1; overflow-y: auto; padding: 16px 22px; }

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 260px;
  color: var(--text-muted);
  text-align: center;
  gap: 12px;
}

.cart-empty-state .big-icon { font-size: 52px; }
.cart-empty-state p { font-size: 0.88rem; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item-thumb {
  width: 52px; height: 52px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 3px; }
.cart-item-price { font-size: 0.85rem; font-weight: 700; color: var(--blue); }

.cart-item-del {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.cart-item-del:hover { background: var(--red-light); color: var(--red); }

.cart-foot { padding: 14px 22px 22px; border-top: 1px solid var(--border); }

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn-checkout {
  display: block;
  width: 100%;
  background: var(--navy);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s;
  margin-bottom: 8px;
}

.btn-checkout:hover { background: var(--blue); }

.btn-view-cart {
  display: block;
  width: 100%;
  background: white;
  color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 11px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s;
}

.btn-view-cart:hover { border-color: var(--navy); }

/* === Toast === */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #111827;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

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

/* === Scroll to top === */
#scrolltop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(29,78,216,0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, background 0.2s;
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
}

#scrolltop.visible { opacity: 1; pointer-events: all; }
#scrolltop:hover { background: var(--navy); transform: translateY(-2px); }

/* === Shop Page === */
.shop-layout {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 88px;
}

.sidebar-title {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.filter-group { margin-bottom: 22px; }
.filter-group:last-child { margin-bottom: 0; }

.filter-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text);
  margin-bottom: 11px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.filter-opts { display: flex; flex-direction: column; gap: 7px; }

.filter-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.filter-opt input[type="checkbox"] { accent-color: var(--blue); width: 14px; height: 14px; cursor: pointer; }

.filter-opt label {
  font-size: 0.83rem;
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.fcount {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 1px 7px;
  border-radius: 100px;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-results { font-size: 0.84rem; color: var(--text-muted); }
.shop-results strong { color: var(--text); }

.shop-sort {
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.83rem;
  color: var(--text);
  outline: none;
  background: white;
  transition: border-color 0.2s;
}

.shop-sort:focus { border-color: var(--blue); }

.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
}

.pg-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}

.pg-btn.active { background: var(--blue); border-color: var(--blue); color: white; font-weight: 700; }
.pg-btn:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

/* === Contact Page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 30px; }

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

.cd-icon {
  width: 44px; height: 44px;
  background: var(--blue-xlight);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cd-text strong { display: block; font-size: 0.72rem; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.cd-text span { font-size: 0.88rem; color: var(--text); }

.map-box {
  margin-top: 26px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.map-box span { font-size: 32px; }

.contact-form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-form-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.79rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--bg-alt);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(29,78,216,0.08); }

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

.btn-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-submit:hover { background: var(--navy); transform: translateY(-1px); }

/* === About Page === */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-img {
  background: linear-gradient(135deg, var(--blue-xlight), var(--blue-light));
  border-radius: 20px;
  height: 360px;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  border: 1px solid var(--blue-light);
}

.about-story-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.about-story-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 12px; }

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.astat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.astat strong { display: block; font-size: 1.7rem; font-weight: 900; color: var(--blue); }
.astat span { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

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

.val-card {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s, transform 0.2s;
}

.val-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.val-icon { font-size: 36px; margin-bottom: 14px; display: block; }
.val-card h3 { font-size: 0.93rem; font-weight: 700; margin-bottom: 8px; }
.val-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

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

.team-card {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

.team-name { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.team-cert { font-size: 0.7rem; font-weight: 600; color: var(--green); background: var(--green-light); padding: 3px 10px; border-radius: 100px; display: inline-block; }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-img { height: 220px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-main { display: none; }
  .hamburger { display: flex; }
  .topbar-left a:not(:first-child) { display: none; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .plans-grid { grid-template-columns: 1fr; max-width: 380px; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 80px; }
  .usp-wrap { margin-top: -20px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .nl-form { flex-direction: column; }
  .hero-stats { gap: 20px; }
  .about-stats-row { grid-template-columns: 1fr 1fr; }
}

/* ===== Quote Modal ===== */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-bg.open { opacity: 1; pointer-events: all; }

.quote-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: min(560px, 93vw);
  max-height: 92vh;
  background: white;
  border-radius: 20px;
  z-index: 4001;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.34,1.3,0.64,1), opacity 0.25s;
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.quote-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.qm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
}

.qm-head h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 2px; }
.qm-head p  { font-size: 0.75rem; color: var(--text-muted); }

.qm-close {
  background: var(--bg-alt);
  border: none;
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.qm-close:hover { background: var(--border); }

.qm-body { padding: 24px 26px 28px; }

.qm-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.qm-divider::before, .qm-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-submit-quote {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.btn-submit-quote:hover  { background: var(--navy); transform: translateY(-1px); }
.btn-submit-quote:disabled { opacity: 0.65; transform: none; cursor: not-allowed; }

/* WhatsApp button inside modal */
.btn-wa-quote {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-wa-quote:hover { background: #1da851; transform: translateY(-1px); }
.btn-wa-quote svg   { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* WhatsApp button in header */
.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25d366;
  color: white;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-whatsapp-header:hover { background: #1da851; color: white; }
.btn-whatsapp-header svg   { width: 16px; height: 16px; fill: white; flex-shrink: 0; }

/* Floating WhatsApp bubble */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.5);
  z-index: 998;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

.wa-float svg { width: 30px; height: 30px; fill: white; }

/* Move scroll-to-top above WA float */
#scrolltop { bottom: 96px; right: 28px; }

/* WhatsApp enquire button on product cards */
.btn-enquire {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 9px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-enquire:hover { background: #1da851; transform: translateY(-1px); }
.btn-enquire svg   { width: 14px; height: 14px; fill: white; }

/* Contact page WA button */
.btn-wa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: white;
  border: none;
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 700;
  margin-top: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-wa-contact:hover { background: #1da851; transform: translateY(-1px); }
.btn-wa-contact svg   { width: 20px; height: 20px; fill: white; }

@media (max-width: 640px) {
  .btn-whatsapp-header span { display: none; }
  .qm-body { padding: 20px 18px 22px; }
  .qm-head { padding: 18px 18px 14px; }
}

/* ============================================================
   PAGE-HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 0 48px;
  text-align: center;
  color: white;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin: 0 0 12px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.82rem; opacity: 0.8; }
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-3px); }
.svc-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; flex-shrink: 0; }
.si-blue   { background: #eff6ff; }
.si-green  { background: #f0fdf4; }
.si-orange { background: #fff7ed; }
.si-red    { background: #fef2f2; }
.si-purple { background: #faf5ff; }
.si-cyan   { background: #f0f9ff; }
.si-yellow { background: #fefce8; }
.si-pink   { background: #fdf2f8; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin: 0; }
.service-card p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.service-card ul { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.service-card ul li { font-size: 0.82rem; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.5; }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; font-size: 0.75rem; }

/* ============================================================
   AMC PLANS PAGE
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.12); transform: translateY(-4px); }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 12px 48px rgba(37,99,235,0.18); }
.plan-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--blue); color: white; font-size: 0.72rem; font-weight: 700; padding: 5px 14px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.5px; text-transform: uppercase; }
.plan-tier { font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.plan-price { font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1; }
.plan-price sup { font-size: 1.2rem; font-weight: 700; vertical-align: super; }
.plan-period { font-size: 0.78rem; color: var(--text-muted); margin-top: -10px; }
.plan-features { list-style: none; padding: 0; margin: 8px 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { font-size: 0.84rem; color: var(--text); padding-left: 22px; position: relative; line-height: 1.5; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.plan-features li.no { color: var(--text-muted); }
.plan-features li.no::before { content: '—'; color: var(--border); }
.btn-plan { width: 100%; padding: 13px; border-radius: 10px; font-family: inherit; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s, color 0.2s; margin-top: 4px; }
.btn-plan-filled { background: var(--blue); color: white; border: none; }
.btn-plan-filled:hover { background: var(--navy); transform: translateY(-1px); }
.btn-plan-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-plan-outline:hover { background: var(--blue); color: white; transform: translateY(-1px); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-story-img { height: 420px; border-radius: 20px; overflow: hidden; }
.about-story-text { display: flex; flex-direction: column; gap: 16px; }
.about-story-text h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; line-height: 1.25; margin: 0; }
.about-story-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.about-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.astat { text-align: center; background: var(--bg-alt); border-radius: 12px; padding: 16px 8px; }
.astat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--blue); }
.astat span { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.val-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; transition: box-shadow 0.2s, transform 0.2s; }
.val-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
.val-icon { font-size: 1.8rem; }
.val-card h3 { font-size: 0.98rem; font-weight: 700; margin: 0; }
.val-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 28px 20px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.team-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.10); transform: translateY(-3px); }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 800; color: white; flex-shrink: 0; }
.team-name { font-size: 1rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: 0.8rem; color: var(--text-muted); }
.team-cert { font-size: 0.7rem; background: #eff6ff; color: var(--blue); padding: 3px 10px; border-radius: 20px; font-weight: 600; }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.testi-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; }
.testi-text { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--text-muted); }
.testi-av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 800; color: white; flex-shrink: 0; }
.av-purple { background: linear-gradient(135deg, #a855f7, #7c3aed); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--navy); margin: 0; }
.contact-info > p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon { width: 40px; height: 40px; background: var(--bg-alt); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.cd-text { display: flex; flex-direction: column; gap: 2px; }
.cd-text strong { font-size: 0.85rem; font-weight: 700; color: var(--navy); }
.cd-text span { font-size: 0.83rem; color: var(--text-muted); line-height: 1.55; }
.map-box { background: var(--bg-alt); border: 1px dashed var(--border); border-radius: 12px; padding: 32px 20px; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; color: var(--text-muted); font-size: 0.82rem; }
.map-box span { font-size: 2rem; }

.contact-form-box { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 32px 28px; }
.contact-form-box h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin: 0 0 4px; }
.btn-submit { width: 100%; background: var(--blue); color: white; border: none; padding: 14px; border-radius: 10px; font-family: inherit; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-submit:hover { background: var(--navy); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.65; transform: none; cursor: not-allowed; }

/* ============================================================
   USP / ICON GRID (shared across pages)
   ============================================================ */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.usp-card { background: var(--bg-alt); border-radius: 14px; padding: 22px 20px; display: flex; align-items: flex-start; gap: 14px; }
.usp-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.ui-blue   { background: #eff6ff; }
.ui-green  { background: #f0fdf4; }
.ui-orange { background: #fff7ed; }
.ui-purple { background: #faf5ff; }
.usp-text h4 { font-size: 0.92rem; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.usp-text p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ============================================================
   RESPONSIVE — INNER PAGES
   ============================================================ */
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-img { height: 260px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 28px 20px; }
  .contact-form-box { padding: 24px 18px; }
  .service-grid { grid-template-columns: 1fr; }
}
