/* ── ROOT ── */
.hp-root {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #0f1117;
  background: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAV ── */
.hp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
}
.hp-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.hp-logo-img { height: 48px; width: auto; }
.hp-logo-text {
  font-weight: 800; font-size: 20px;
  color: #0f1117; letter-spacing: -0.5px;
}
.hp-nav-links {
  display: flex; align-items: center; gap: 32px;
}
.hp-nav-link {
  font-size: 14px; font-weight: 500;
  color: #444; text-decoration: none;
  transition: color 0.2s;
}
.hp-nav-link:hover { color: #de4646; }
.hp-nav-cta {
  background: #de4646; color: #fff;
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.hp-nav-cta:hover { background: #c43a3a; transform: translateY(-1px); }
.hp-hamburger {
  display: none; background: none; border: none;
  cursor: pointer; color: #0f1117;
}
.hp-mobile-menu {
  display: flex; flex-direction: column; gap: 2px;
  padding: 8px 0 12px;
  border-top: 1px solid #f0f0f0;
  background: white;
}
.hp-mobile-link {
  padding: 10px 24px; font-size: 15px; font-weight: 500;
  color: #444; text-decoration: none;
}
.hp-mobile-link:hover { color: #de4646; }

/* ── CONTAINER ── */
.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.hp-hero {
  position: relative;
  padding: 140px 0 80px;
  background: #fafafa;
  overflow: hidden;
}
.hp-hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hp-blob-1 {
  width: 600px; height: 600px;
  background: rgba(222, 70, 70, 0.08);
  top: -200px; right: -150px;
}
.hp-blob-2 {
  width: 400px; height: 400px;
  background: rgba(222, 70, 70, 0.05);
  bottom: -100px; left: -100px;
}
.hp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hp-hero-text { max-width: 560px; }
.hp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff5f5; color: #de4646;
  border: 1px solid #fcc; border-radius: 50px;
  padding: 6px 14px; font-size: 12px; font-weight: 600;
  margin-bottom: 24px;
}
.hp-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #de4646;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hp-hero-h1 {
  font-size: 52px; font-weight: 800;
  line-height: 1.1; letter-spacing: -1.5px;
  color: #0f1117; margin: 0 0 20px;
}
.hp-hero-accent { color: #de4646; }
.hp-hero-sub {
  font-size: 17px; color: #555;
  margin: 0 0 32px; line-height: 1.7;
}
.hp-hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #de4646; color: #fff;
  padding: 14px 28px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(222,70,70,0.3);
}
.hp-btn-primary:hover {
  background: #c43a3a; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(222,70,70,0.35);
}
.hp-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #0f1117;
  padding: 13px 26px; border-radius: 50px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  border: 2px solid #e0e0e0;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.hp-btn-outline:hover {
  border-color: #de4646; color: #de4646;
  transform: translateY(-2px);
}
.hp-hero-trust {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hp-trust-chip {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 500; color: #555;
  background: #fff; border: 1px solid #eee;
  padding: 5px 12px; border-radius: 50px;
}

/* ── HERO VISUAL ── */
.hp-hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hp-hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  padding: 24px;
}
.hp-card-main { width: 100%; max-width: 380px; }
.hp-card-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.hp-card-dots {
  display: flex; gap: 5px;
}
.hp-card-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #f0f0f0;
}
.hp-card-dots span:nth-child(1) { background: #ff5f57; }
.hp-card-dots span:nth-child(2) { background: #febc2e; }
.hp-card-dots span:nth-child(3) { background: #28c840; }
.hp-card-title-bar {
  font-size: 12px; font-weight: 600; color: #999;
}
.hp-card-metrics {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
}
.hp-metric {
  display: flex; align-items: center; gap: 14px;
}
.hp-metric-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-metric-val {
  font-size: 22px; font-weight: 800; letter-spacing: -0.5px;
}
.hp-metric-label {
  font-size: 11px; color: #888; font-weight: 500;
}
.hp-progress-row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: #555; margin-bottom: 6px;
}
.hp-progress-pct { font-weight: 700; color: #de4646; }
.hp-progress-bar {
  height: 6px; background: #f0f0f0; border-radius: 10px;
  overflow: hidden;
}
.hp-progress-fill {
  height: 100%; width: 97%; background: linear-gradient(90deg, #de4646, #ff7c7c);
  border-radius: 10px;
}

/* Float cards */
.hp-card-float {
  position: absolute;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-radius: 14px;
}
.hp-float-top { top: -20px; right: -20px; }
.hp-float-bottom { bottom: -20px; left: -20px; }
.hp-float-val { font-size: 15px; font-weight: 700; color: #0f1117; }
.hp-float-label { font-size: 11px; color: #888; }

/* ── STATS ── */
.hp-stats {
  background: #0b0d14;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid #de4646;
}
.hp-stats-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hp-stats-glow-left {
  position: absolute; top: 50%; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(222,70,70,0.15) 0%, transparent 70%);
  transform: translateY(-50%); pointer-events: none;
}
.hp-stats-glow-right {
  position: absolute; top: 50%; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(222,70,70,0.10) 0%, transparent 70%);
  transform: translateY(-50%); pointer-events: none;
}
.hp-stats-inner { position: relative; z-index: 1; }
.hp-stats-header {
  text-align: center; margin-bottom: 52px;
}
.hp-stats-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: #de4646; margin-bottom: 12px;
}
.hp-stats-title {
  font-size: 28px; font-weight: 800; color: #fff;
  letter-spacing: -0.5px; margin: 0;
}
.hp-stats-accent { color: #de4646; }
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 28px 24px 22px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
  position: relative; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  cursor: default;
}
.hp-stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #de4646, transparent);
  border-radius: 20px 20px 0 0;
}
.hp-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(222,70,70,0.3);
  background: rgba(222,70,70,0.04);
}
.hp-stat-icon-ring {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(222,70,70,0.12);
  border: 1px solid rgba(222,70,70,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.hp-stat-val {
  font-size: 42px; font-weight: 900;
  color: #fff; letter-spacing: -2px; line-height: 1;
  text-shadow: 0 0 20px rgba(222,70,70,0.4);
}
.hp-stat-label {
  font-size: 14px; font-weight: 700; color: #fff; margin-top: 2px;
}
.hp-stat-sub {
  font-size: 11px; color: #666; font-weight: 500;
}
.hp-stat-track {
  width: 100%; height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px; margin-top: 14px; overflow: hidden;
}
.hp-stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #de4646, #ff8080);
  border-radius: 4px;
}

/* ── SECTIONS ── */
.hp-section { padding: 96px 0; }
.hp-section-alt { background: #fafafa; }
.hp-section-header {
  text-align: center; margin-bottom: 60px;
}
.hp-section-tag {
  display: inline-block;
  background: #fff5f5; color: #de4646;
  border: 1px solid #fcc; border-radius: 50px;
  padding: 5px 16px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.hp-section-h2 {
  font-size: 40px; font-weight: 800;
  letter-spacing: -1px; color: #0f1117;
  margin: 0 0 14px;
}
.hp-accent { color: #de4646; }
.hp-section-sub {
  font-size: 16px; color: #666;
  max-width: 540px; margin: 0 auto;
}

/* ── SERVICES ── */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hp-service-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.hp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.hp-service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.hp-service-title {
  font-size: 20px; font-weight: 700;
  color: #0f1117; margin: 0 0 12px;
}
.hp-service-desc {
  font-size: 14px; color: #666; line-height: 1.7;
  margin: 0 0 20px; flex: 1;
}
.hp-service-features {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.hp-service-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #555; font-weight: 500;
}
.hp-service-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s;
}
.hp-service-link:hover { gap: 8px; }

/* ── PROCESS ── */
.hp-process-section {
  background: #0f1117;
  padding: 80px 0;
}
.hp-process-header .hp-section-tag,
.hp-process-tag {
  background: rgba(222,70,70,0.15);
  color: #de4646;
  border-color: rgba(222,70,70,0.25);
}
.hp-process-h2 { color: #fff !important; }
.hp-process-sub { color: rgba(255,255,255,0.55) !important; }

.hp-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 48px;
}
.hp-process-card {
  background: #191c27;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 24px 32px;
  position: relative;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.hp-process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top left, rgba(222,70,70,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hp-process-card:hover {
  border-color: rgba(222,70,70,0.4);
  box-shadow: 0 16px 40px rgba(222,70,70,0.12);
  transform: translateY(-6px);
}
.hp-process-icon-wrap {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 60px; height: 60px;
  border-radius: 16px;
  background: #de4646;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(222,70,70,0.35);
}
.hp-process-step-num {
  font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.hp-process-connector {
  position: absolute;
  top: 50px; right: -12px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  color: #de4646;
  font-size: 18px;
}
.hp-process-connector::after {
  content: '→';
  color: rgba(222,70,70,0.6);
  font-size: 20px;
  font-weight: 300;
}
.hp-process-title {
  font-size: 17px; font-weight: 700; color: #fff;
  margin: 0 0 12px;
}
.hp-process-desc {
  font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7;
  margin: 0;
}

.hp-process-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hp-process-cta-text {
  font-size: 15px; color: rgba(255,255,255,0.6);
}
.hp-process-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #de4646; color: #fff;
  padding: 12px 26px;
  border-radius: 100px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(222,70,70,0.35);
}
.hp-process-cta-btn:hover {
  background: #c03030;
  transform: translateY(-2px);
}

/* ── REVIEWS ── */
.hp-reviews-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f5f5f5; color: #555;
  border: 1px solid #e8e8e8; border-radius: 50px;
  padding: 7px 18px; font-size: 13px; font-weight: 600;
  margin-top: 16px;
}
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hp-review-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hp-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.hp-video-thumb {
  position: relative; cursor: pointer;
  aspect-ratio: 16/9; overflow: hidden;
  background: #111;
}
.hp-video-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s;
}
.hp-video-thumb:hover .hp-video-img { transform: scale(1.04); }
.hp-video-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: rgba(0,0,0,0.35);
}
.hp-review-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f0f1f2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.hp-review-card:hover .hp-review-img {
  transform: scale(1.04);
}
.hp-play-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: #FF0000;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(255,0,0,0.5);
  transition: transform 0.2s;
}
.hp-video-thumb:hover .hp-play-btn { transform: scale(1.1); }
.hp-yt-label {
  font-size: 11px; color: #fff; font-weight: 600;
  background: rgba(0,0,0,0.5); padding: 3px 10px;
  border-radius: 50px;
}
.hp-video-iframe {
  width: 100%; height: 100%; border: none;
}
.hp-review-body { padding: 20px; }
.hp-review-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.hp-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.hp-review-name { font-size: 15px; font-weight: 700; color: #0f1117; }
.hp-review-loc { font-size: 12px; color: #888; }
.hp-stars { display: flex; gap: 2px; margin-top: 3px; }
.hp-service-tag {
  display: inline-block;
  background: #fff5f5; color: #de4646;
  border: 1px solid #fcc;
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 12px;
}
.hp-review-quote {
  font-size: 13px; color: #555;
  line-height: 1.6; margin: 0;
  font-style: italic;
}
.hp-reviews-cta {
  text-align: center; margin-top: 40px;
}

/* ── FOOTER ── */
.hp-footer {
  background: #0a0a0a;
  padding: 72px 0 0;
}
.hp-footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr 1fr 1.2fr;
  gap: 52px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1e1e1e;
}
.hp-footer-brand { }
.hp-footer-logo { height: 64px; margin-bottom: 16px; display: block; }
.hp-footer-tagline {
  font-size: 13px; color: #9ca3af; line-height: 1.75;
  margin-bottom: 20px;
}
.hp-footer-social { display: flex; gap: 10px; }
.hp-footer-soc {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #1a1a1a; color: #777;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hp-footer-soc:hover { background: #de4646; color: #fff; }
.hp-soc-wa:hover { background: #25D366; color: #fff; }

.hp-footer-col { display: flex; flex-direction: column; gap: 10px; }
.hp-footer-col-title {
  font-size: 11px; font-weight: 800;
  color: #fff; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 6px;
}
.hp-footer-link {
  font-size: 13px; color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.hp-footer-link:hover { color: #de4646; }
.hp-footer-contact-row {
  display: flex; align-items: center; gap: 7px;
}
.hp-footer-quote-btn {
  display: inline-block; margin-top: 10px;
  background: #de4646; color: #fff;
  font-size: 13px; font-weight: 700;
  padding: 10px 18px; border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hp-footer-quote-btn:hover { background: #c23b3b; transform: translateY(-1px); }

.hp-footer-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  font-size: 12px; color: #888;
}
.hp-footer-bar-links { display: flex; gap: 20px; }
.hp-footer-bar-link {
  color: #888; text-decoration: none;
  transition: color 0.2s;
}
.hp-footer-bar-link:hover { color: #de4646; }

/* ── PACKAGES ── */
.pkg-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.pkg-tab {
  padding: 7px 18px; border-radius: 50px;
  border: 1.5px solid #ddd;
  background: #fff; color: #444;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
  font-family: inherit;
}
.pkg-tab:hover { border-color: #de4646; color: #de4646; transform: translateY(-1px); }
.pkg-tab-active { box-shadow: 0 2px 10px rgba(222,70,70,0.25); }

.pkg-sub-header { text-align: center; margin-bottom: 36px; }
.pkg-sub-h3 {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.5px; margin: 0 0 6px;
}
.pkg-sub-desc { font-size: 14px; color: #666; }

/* Currency toggle */
.pkg-currency-wrap {
  display: flex; justify-content: center;
  margin-bottom: 36px;
}
.pkg-currency-toggle {
  display: flex;
  background: #f0f1f3;
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}
.pkg-currency-btn {
  padding: 8px 28px;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-size: 14px; font-weight: 700;
  color: #888;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.pkg-currency-btn:hover { color: #0f1117; }
.pkg-currency-active {
  background: #fff;
  color: #de4646 !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}
.pkg-card {
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pkg-card-featured {
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(222,70,70,0.15);
}
.pkg-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap;
}
.pkg-name {
  font-size: 18px; font-weight: 700; color: #0f1117;
  margin: 0 0 12px;
}
.pkg-price-row {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 20px;
}
.pkg-price {
  font-size: 36px; font-weight: 800; letter-spacing: -1px;
}
.pkg-inr {
  font-size: 14px; color: #999;
}
.pkg-features {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-direction: column; gap: 9px;
}
.pkg-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: #444; line-height: 1.4;
}
.pkg-feature-no { color: #bbb; }
.pkg-feature-icon {
  font-size: 13px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pkg-feature-no .pkg-feature-icon { color: #e5b6b6 !important; }

.pkg-ctas {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
}
.pkg-btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 11px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
  transition: opacity 0.18s, transform 0.12s;
  font-family: inherit;
  color: #ffffff !important;
  text-decoration: none !important;
}
.pkg-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.pkg-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 36px;
  border-radius: 18px;
  color: #fff;
  flex-wrap: wrap;
}
.pkg-banner-title {
  font-size: 20px; font-weight: 800; margin-bottom: 6px;
}
.pkg-banner-sub {
  font-size: 13px; opacity: 0.85; max-width: 480px; line-height: 1.5;
}
.pkg-banner-btn {
  background: #fff; color: #de4646;
  font-size: 14px; font-weight: 700;
  padding: 12px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
  font-family: inherit;
}
.pkg-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* ── INDUSTRIES ── */
.hp-industries-section { background: #0b0d14; }
.hp-industries-section .hp-section-tag { color: #de4646; }
.hp-industries-section .hp-section-h2 { color: #fff; }
.hp-industries-section .hp-section-sub { color: #888; }

.hp-ind-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

/* first card: spans 2 cols */
.hp-ind-wide {
  grid-column: span 2;
}
/* second card: spans 2 rows */
.hp-ind-tall {
  grid-row: span 2;
}

/* base card */
.hp-ind-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, border-color 0.3s;
}
.hp-ind-card:hover {
  transform: scale(1.02);
  border-color: rgba(222,70,70,0.35);
}

/* background image */
.hp-ind-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.5s;
}
.hp-ind-card:hover .hp-ind-bg { transform: scale(1.08); }

/* gradient overlay */
.hp-ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,10,0.97) 0%,
    rgba(5,5,10,0.6) 45%,
    rgba(5,5,10,0.2) 100%
  );
  transition: background 0.3s;
}
.hp-ind-card:hover .hp-ind-overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,10,0.98) 0%,
    rgba(5,5,10,0.75) 50%,
    rgba(5,5,10,0.35) 100%
  );
}

/* popularity badge */
.hp-ind-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: #de4646; color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}

/* category pill top-right */
.hp-ind-cat {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* bottom content */
.hp-ind-body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.hp-ind-title {
  font-size: 18px; font-weight: 800; color: #fff; line-height: 1.2;
}
.hp-ind-wide .hp-ind-title { font-size: 24px; }
.hp-ind-tagline {
  font-size: 12px; color: rgba(255,255,255,0.55); font-style: italic;
  margin-bottom: 2px;
}

/* features list — hidden by default, slides up on hover */
.hp-ind-feats {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 4px 10px;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.hp-ind-card:hover .hp-ind-feats {
  max-height: 80px; opacity: 1;
}
.hp-ind-feats li {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,0.75); font-weight: 600;
}

/* CTA button — slides in on hover */
.hp-ind-cta {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 6px;
  background: #de4646; color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 8px;
  text-decoration: none; width: fit-content;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.hp-ind-card:hover .hp-ind-cta {
  opacity: 1; transform: translateY(0);
}

/* ── PORTFOLIO ── */
.hp-portfolio-section { background: #fff; }
.hp-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hp-pf-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  background: #fff;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hp-pf-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.hp-pf-link-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hp-pf-screen {
  position: relative;
  height: 210px;
  overflow: hidden;
}
/* browser chrome bar */
.hp-pf-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px;
  position: relative; z-index: 2;
}
.hp-pf-dot {
  width: 10px; height: 10px;
  border-radius: 50%; display: inline-block;
}
.hp-pf-url {
  font-size: 10px; color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.07);
  border-radius: 20px; padding: 2px 10px; margin-left: 6px;
  font-family: monospace;
}
/* fake hero content */
.hp-pf-hero {
  padding: 20px 20px 0;
  display: flex; flex-direction: column; gap: 12px;
  position: relative; z-index: 2;
}
.hp-pf-herotext {
  font-size: 18px; font-weight: 800; line-height: 1.25;
  margin: 0; text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hp-pf-herobtn {
  display: inline-block; padding: 6px 16px;
  border-radius: 6px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; width: fit-content;
}
/* label chip */
.hp-pf-label {
  position: absolute; top: 40px; left: 12px; z-index: 3;
  font-size: 10px; font-weight: 800; letter-spacing: 1px;
  padding: 3px 9px; border-radius: 5px;
}
.hp-pf-label-live  { background: #22c55e; color: #fff; }
.hp-pf-label-demo  { background: #3b82f6; color: #fff; }
.hp-pf-label-wip   { background: #f59e0b; color: #fff; }
/* hover overlay */
.hp-pf-overlay {
  position: absolute; inset: 0; z-index: 4;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.hp-pf-card:hover .hp-pf-overlay { opacity: 1; }
.hp-pf-view {
  background: #de4646; color: #fff;
  padding: 10px 22px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transform: translateY(8px); transition: transform 0.25s;
}
.hp-pf-card:hover .hp-pf-view { transform: translateY(0); }
/* info row */
.hp-pf-info {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid #f1f1f1;
}
.hp-pf-title { font-size: 15px; font-weight: 800; color: #0f1117; }
.hp-pf-cat   { font-size: 12px; color: #888; margin-top: 2px; }
.hp-pf-tech  {
  font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
  white-space: nowrap;
}
.hp-pf-cta {
  display: flex; justify-content: center;
  margin-top: 40px;
}
.hp-pf-load-more {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; border: none;
}
.hp-pf-all-loaded {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: #888;
  padding: 12px 24px; border-radius: 50px;
  background: #f5f5f5;
}

/* ── TECHNOLOGIES ── */
.hp-tech-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 24px;
  justify-items: center;
}
.hp-tech-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s;
  cursor: default;
}
.hp-tech-card:hover { transform: translateY(-4px); }
.hp-tech-logo {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.hp-tech-img {
  width: 46px; height: 46px;
  object-fit: contain;
}
.hp-tech-name {
  font-size: 12px; font-weight: 700;
  color: #0f1117; text-align: center;
  line-height: 1.3;
}

/* ── SUPPORTED SCRIPTS ── */
.hp-scripts-section { background: #f8f9fb; }
.hp-scripts-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 28px;
  justify-items: center;
}
.hp-script-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 20px 12px 16px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-decoration: none;
  color: inherit;
}
.hp-script-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(222,70,70,0.15);
  border-color: rgba(222,70,70,0.35);
}
.hp-script-logo {
  width: 72px; height: 72px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform 0.22s ease;
}
.hp-script-card:hover .hp-script-logo { transform: scale(1.07); }
.hp-script-img {
  width: 46px; height: 46px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hp-script-initials {
  font-size: 20px; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
  font-family: 'Segoe UI', system-ui, sans-serif;
}
.hp-script-name {
  font-size: 11px; font-weight: 700;
  color: #0f1117; text-align: center;
  line-height: 1.3;
}
.hp-scripts-note {
  text-align: center;
  margin-top: 28px;
  font-size: 13px; color: #999;
}
.hp-scripts-note a {
  color: #de4646; font-weight: 700; text-decoration: none;
}
.hp-scripts-note a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hp-scripts-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ── INDUSTRY FILTER TABS ── */
.hp-ind-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.hp-ind-filter-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s;
}
.hp-ind-filter-btn:hover {
  background: rgba(222,70,70,0.12);
  border-color: rgba(222,70,70,0.35);
  color: #fff;
}
.hp-ind-filter-active {
  background: #de4646 !important;
  border-color: #de4646 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(222,70,70,0.35);
}

/* ── WHY CHOOSE US TABLE ── */
.hp-whyus-section { background: #fafafa; }
.hp-wc-table {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.hp-wc-row {
  display: grid;
  grid-template-columns: 1fr 160px 160px 160px;
  align-items: center;
  background: #fff;
}
.hp-wc-row-alt { background: #fafafa; }
.hp-wc-head {
  background: #0f1117 !important;
  font-weight: 700; color: #fff;
}
.hp-wc-feature {
  padding: 16px 24px;
  font-size: 14px; font-weight: 600; color: #1a1a1a;
  border-right: 1px solid #f0f0f0;
}
.hp-wc-head .hp-wc-feature { color: rgba(255,255,255,0.7); border-right-color: rgba(255,255,255,0.08); }
.hp-wc-col {
  padding: 16px 12px;
  text-align: center;
  font-size: 13px; font-weight: 600; color: #555;
  border-right: 1px solid #f0f0f0;
}
.hp-wc-col:last-child { border-right: none; }
.hp-wc-head .hp-wc-col { color: rgba(255,255,255,0.6); border-right-color: rgba(255,255,255,0.08); }
.hp-wc-col-us {
  background: rgba(222,70,70,0.04);
  border-left: 2px solid #de4646;
  border-right: 2px solid #de4646 !important;
}
.hp-wc-head .hp-wc-col-us { background: rgba(222,70,70,0.25); }
.hp-wc-us-badge {
  font-size: 13px; font-weight: 800; color: #de4646;
  background: rgba(222,70,70,0.15);
  padding: 4px 12px; border-radius: 20px;
  display: inline-block;
}
.hp-wc-yes  { font-size: 18px; font-weight: 900; color: #de4646; }
.hp-wc-no   { font-size: 18px; font-weight: 900; color: #ccc; }
.hp-wc-maybe{ font-size: 18px; font-weight: 900; color: #f59e0b; }

/* ── WHATSAPP STICKY BUTTON ── */
.hp-wa-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  text-decoration: none;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: waPulse 2.2s ease-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 700;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.hp-wa-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}
.hp-wa-label {
  font-size: 13px; font-weight: 700;
  white-space: nowrap;
}

/* ── CONTACT SECTION ── */
.hp-contact-section {
  background: #f8f9fb;
  padding: 96px 0 80px;
}
.hp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  margin-top: 52px;
}
/* info panel */
.hp-contact-info {
  display: flex; flex-direction: column; gap: 14px;
}
.hp-contact-card {
  display: flex; gap: 16px;
  background: #fff; border-radius: 16px;
  padding: 20px 22px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.hp-contact-card-icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(222,70,70,0.08);
  display: flex; align-items: center; justify-content: center;
}
.hp-contact-card-title {
  font-size: 11px; font-weight: 800; color: #0f1117;
  text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 10px;
}
.hp-contact-card-body {
  font-size: 13px; color: #555; line-height: 1.85;
}
.hp-contact-row {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 12px;
  padding: 3px 0; flex-wrap: wrap;
}
.hp-contact-label {
  font-size: 11px; font-weight: 700; color: #aaa;
  white-space: nowrap; flex-shrink: 0;
}
.hp-contact-email {
  color: #de4646; text-decoration: none;
  font-size: 13px; font-weight: 600;
  transition: opacity 0.2s;
  word-break: break-all;
}
.hp-contact-email:hover { opacity: 0.7; }
.hp-contact-divider {
  border-top: 1px solid #f0f0f0;
  margin: 8px 0;
}
/* social bar */
.hp-contact-social-bar {
  background: #0f1117; border-radius: 16px;
  padding: 20px 22px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.hp-contact-social-title {
  font-size: 14px; font-weight: 800; color: #fff;
  margin-bottom: 4px;
}
.hp-contact-social-sub {
  font-size: 12px; color: #666; line-height: 1.5; max-width: 260px;
}
.hp-contact-socials { display: flex; gap: 10px; }
.hp-contact-soc {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: #1e1e1e; color: #777;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hp-contact-soc:hover { background: #de4646; color: #fff; }
.hp-contact-soc-wa:hover { background: #25D366 !important; color: #fff; }
/* form panel */
.hp-contact-form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #eef1f6;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}
.hp-contact-form-title {
  font-size: 24px; font-weight: 800; color: #0f1117; margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.hp-contact-form-sub {
  font-size: 14px; color: #666e80; line-height: 1.6; margin-bottom: 28px;
}
.hp-contact-form {
  display: flex; flex-direction: column; gap: 16px;
}
.hp-contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.hp-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  background: #f8f9fc;
  border: 1.5px solid #eef0f6;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: #0f1117;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.hp-input::placeholder {
  color: #94a3b8;
}
.hp-input:focus {
  outline: none;
  background: #ffffff;
  border-color: #de4646;
  box-shadow: 0 0 0 4px rgba(222, 70, 70, 0.1);
}
select.hp-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.hp-contact-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  font-size: 14px;
}
.hp-contact-submit {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  background: #de4646;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(222, 70, 70, 0.3);
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}
.hp-contact-submit:hover {
  background: #c43a3a;
  box-shadow: 0 6px 20px rgba(222, 70, 70, 0.4);
  transform: translateY(-1px);
}
.hp-contact-submit:active {
  transform: translateY(1px);
}
.hp-contact-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
  margin-top: 6px;
}
/* ── MOBILE & TABLET RESPONSIVE ── */
@media (max-width: 991px) {
  .hp-tech-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }
  .hp-scripts-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }
  .hp-nav-links { display: none; }
  .hp-hamburger { display: block; }
  .hp-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hp-hero-visual { display: none; }
  .hp-hero-h1 { font-size: 38px; }
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-services-grid { grid-template-columns: 1fr; }
  
  .hp-portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  
  .hp-process-grid { grid-template-columns: 1fr 1fr; }
  .hp-process-connector { display: none !important; }
  .hp-reviews-grid { grid-template-columns: 1fr; }
  
  .hp-contact-grid { grid-template-columns: 1fr; }
  .hp-contact-form-row { grid-template-columns: 1fr; }
  
  .hp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hp-footer-links { grid-template-columns: 1fr 1fr; }
  .hp-section-h2 { font-size: 32px; }
  .hp-ind-bento { grid-template-columns: 1fr 1fr; }
  .hp-ind-wide, .hp-ind-tall { grid-column: span 1; grid-row: span 1; }
  
  /* Robust Comparison Table Scrolling */
  .hp-wc-table {
    display: block;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .hp-wc-row {
    min-width: 650px !important;
  }
}

@media (max-width: 768px) {
  .hp-portfolio-grid {
    grid-template-columns: 1fr !important;
  }
  .hp-scripts-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
  
  /* Hide the hover overlay on mobile to prevent ugly overlap text and elements */
  .hp-pf-overlay {
    display: none !important;
  }
  
  .pkg-grid {
    grid-template-columns: 1fr !important;
  }
  
  .hp-process-grid {
    grid-template-columns: 1fr;
  }
  
  /* Circular & Clean WhatsApp Floating Button on Mobile */
  .hp-wa-btn {
    bottom: 20px !important;
    right: 20px !important;
    padding: 0 !important;
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    justify-content: center !important;
    box-shadow: 0 4px 18px rgba(37,211,102,0.4) !important;
  }
  .hp-wa-btn svg {
    margin: 0 !important;
    width: 26px !important;
    height: 26px !important;
  }
  .hp-wa-label {
    display: none !important;
  }
}

@media (max-width: 550px) {
  .hp-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .hp-ind-bento {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
  }
  .hp-ind-card {
    height: 220px !important;
  }
  .hp-hero-h1 {
    font-size: 32px !important;
  }
  .hp-section-h2 {
    font-size: 26px !important;
  }
  .hp-footer-inner {
    gap: 24px !important;
    padding-bottom: 32px !important;
  }
  .hp-contact-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .hp-tech-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 480px) {
  .hp-scripts-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
  .hp-script-card {
    padding: 16px 8px 12px !important;
  }
  .hp-script-logo {
    width: 54px !important;
    height: 54px !important;
    border-radius: 12px !important;
  }
  .hp-script-img {
    width: 32px !important;
    height: 32px !important;
  }
  .hp-script-initials {
    font-size: 15px !important;
  }
}

/* Helpers */
.hidden { display: none !important; }

