/*
 *   @copyright   Copyright (C) 2026 Dynamowebs Private Limited. All rights reserved.
 *   @license     Proprietary and Confidential. Unauthorized copying, distribution, or modification
 *                via any medium is strictly prohibited.
 *   @author      Faisal mehmood awan <faisal.aqurz@gmail.com> | Imran Khan <imran@dynamowebs.com>
 *   @file        site-page-home-v2.css
 *   @modified    2026
 *   @package     Dynamowebs
 *
 */

/* ===================== DESIGN TOKENS ===================== */
:root {
  --blue:     #1B75BC;
  --cyan:     #00AEEF;
  --navy:     #0D2240;
  --white:    #FFFFFF;
  --light-bg: #F5F8FC;
  --grey:     #555E68;
  --border:   #D9E3EC;
  --green:    #16A34A;
  --amber:    #D97706;
  --red:      #DC2626;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; color: #1a1a1a; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ===================== HERO ===================== */
.hp-hero {
  background: linear-gradient(130deg, #091828 0%, #0D2B4A 45%, #1B5090 100%);
  padding: 56px 72px 68px;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.hp-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,174,239,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hp-hero::before {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27,117,188,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hp-hero-content { flex: 1; min-width: 0; padding-top: 4px; }
.hp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,174,239,0.12);
  border: 1px solid rgba(0,174,239,0.28);
  color: #00AEEF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hp-badge::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: #00AEEF;
  border-radius: 50%;
}
.hp-hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.16;
  margin-bottom: 18px;
  text-wrap: balance;
}
.hp-hero-sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  line-height: 1.68;
  margin-bottom: 28px;
  max-width: 680px;
}
.hp-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hp-pill {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.hp-pill.highlight {
  background: rgba(0,174,239,0.15);
  border-color: rgba(0,174,239,0.35);
  color: #00AEEF;
}
.hp-hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 600;
}
.hp-trust-item svg { flex-shrink: 0; opacity: 0.9; }

/* HERO VISUAL PANEL */
.hp-hero-visual {
  width: 400px;
  flex-shrink: 0;
  position: relative;
  padding-top: 8px;
}
.hp-hv-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 24px 24px 20px;
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}
.hp-hv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hp-hv-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hp-hv-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(22,163,74,0.18);
  border: 1px solid rgba(22,163,74,0.35);
  color: #4ADE80;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.hp-hv-status::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
}
.hp-hv-services { display: flex; flex-direction: column; gap: 2px; margin-bottom: 18px; }
.hp-hv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  transition: background 0.15s;
}
.hp-hv-row:hover { background: rgba(255,255,255,0.08); }
.hp-hv-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-hv-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.hp-hv-icon.blue   { background: rgba(27,117,188,0.25); }
.hp-hv-icon.green  { background: rgba(22,163,74,0.22); }
.hp-hv-icon.amber  { background: rgba(217,119,6,0.22); }
.hp-hv-icon.cyan   { background: rgba(0,174,239,0.18); }
.hp-hv-icon.purple { background: rgba(124,58,237,0.22); }
.hp-hv-row-name {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}
.hp-hv-row-sub {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.42);
  margin-top: 1px;
}
.hp-hv-check {
  width: 18px; height: 18px;
  background: rgba(22,163,74,0.2);
  border: 1.5px solid rgba(74,222,128,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ADE80;
  font-size: 9px;
  font-weight: 800;
  flex-shrink: 0;
}
.hp-hv-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-hv-footer-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.hp-hv-footer-val {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hp-hv-footer-val span { color: var(--cyan); }

/* Floating badge chips */
.hp-hv-chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  gap: 9px;
  z-index: 2;
}
.hp-hv-chip-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.hp-hv-chip-label { font-size: 11px; font-weight: 700; color: #111; line-height: 1.3; }
.hp-hv-chip-sub   { font-size: 10px; font-weight: 600; color: #777; }
.hp-hv-chip-1 { bottom: -46px; left: -30px; }
.hp-hv-chip-2 { top: -18px; right: -22px; }

/* HERO CTA BUTTONS */
.hp-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hp-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.hp-hero-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.hp-hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 26px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.22);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hp-hero-btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

/* ===================== TRUST BAR ===================== */
.hp-trust-bar {
  background: var(--navy);
  padding: 18px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hp-tb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 12.5px;
  font-weight: 600;
}
.hp-tb-icon {
  width: 32px; height: 32px;
  background: rgba(0,174,239,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 14px;
  flex-shrink: 0;
}
.hp-tb-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.12);
}

/* ===================== SECTION SHARED ===================== */
.hp-section { padding: 72px 72px; }
.hp-section-light { background: var(--light-bg); }
.hp-section-white { background: #fff; }
.hp-section-navy { background: var(--navy); }
.hp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.hp-section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 14px;
  text-wrap: balance;
}
.hp-section-title.light { color: #fff; }
.hp-section-sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.68;
  max-width: 620px;
  margin-bottom: 48px;
}
.hp-section-sub.light { color: rgba(255,255,255,0.72); }

/* ===================== SERVICES GRID ===================== */
.hp-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hp-svc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(27,117,188,0.12);
  transform: translateY(-2px);
}
.hp-svc-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.hp-svc-icon.blue   { background: rgba(27,117,188,0.10); }
.hp-svc-icon.green  { background: rgba(22,163,74,0.10); }
.hp-svc-icon.amber  { background: rgba(217,119,6,0.10); }
.hp-svc-icon.purple { background: rgba(124,58,237,0.10); }
.hp-svc-card h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.35;
}
.hp-svc-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hp-svc-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.hp-svc-links li:last-child a { border-bottom: none; }
.hp-svc-links li a:hover { color: var(--blue); }
.hp-svc-links li a .dot {
  width: 5px; height: 5px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hp-svc-links li a:hover .dot { background: var(--cyan); }
.hp-svc-tag {
  display: inline-block;
  background: rgba(22,163,74,0.1);
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.hp-svc-tag.new { background: rgba(0,174,239,0.10); color: var(--cyan); }

/* ===================== WHY TAX2U ===================== */
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hp-why-card {
  padding: 28px 26px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: #fff;
}
.hp-why-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hp-why-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hp-why-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.72;
}

/* ===================== HOW IT WORKS ===================== */
.hp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.hp-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.66% + 14px);
  width: calc(66.66% - 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
  opacity: 0.3;
}
.hp-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.hp-step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.hp-step h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.hp-step p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.68;
}

/* ===================== STATS BAND ===================== */
.hp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hp-stat {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hp-stat:last-child { border-right: none; }
.hp-stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.hp-stat-num span { color: var(--cyan); }
.hp-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ===================== PRICING ===================== */
.hp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.hp-plan {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  background: #fff;
  position: relative;
}
.hp-plan.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(27,117,188,0.14);
}
.hp-plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.hp-plan-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hp-plan-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.hp-plan-price sup { font-size: 18px; font-weight: 700; vertical-align: top; padding-top: 6px; }
.hp-plan-price sub { font-size: 13px; font-weight: 600; color: var(--grey); }
.hp-plan-vat {
  font-size: 11px;
  color: var(--grey);
  font-weight: 600;
  margin-bottom: 20px;
}
.hp-plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.hp-plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hp-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  line-height: 1.45;
}
.hp-plan-features li::before {
  content: '✓';
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.hp-plan-btn {
  display: block;
  width: 100%;
  height: 46px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
}
.hp-plan-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.hp-plan-btn.primary { background: linear-gradient(135deg, var(--blue) 0%, #0E5FA0 100%); color: #fff; }
.hp-plan-btn.ghost { background: transparent; border: 1.5px solid var(--border); color: var(--navy); }

/* ===================== REVIEWS ===================== */
.hp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-review-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
}
.hp-review-stars { color: #F59E0B; font-size: 15px; letter-spacing: -1px; margin-bottom: 12px; }
.hp-review-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.72;
  margin-bottom: 16px;
  font-style: italic;
}
.hp-review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hp-review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.hp-review-avatar.blue   { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.hp-review-avatar.green  { background: linear-gradient(135deg, #059669, #10B981); }
.hp-review-avatar.purple { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.hp-review-name { font-size: 13px; font-weight: 700; color: var(--navy); }
.hp-review-service { font-size: 11px; font-weight: 600; color: var(--grey); margin-top: 1px; }
.hp-tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00B67A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 32px;
}

/* ===================== FAQ ===================== */
.hp-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.hp-faq-item {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.hp-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.42;
  transition: color 0.15s;
}
.hp-faq-q:hover { color: var(--blue); }
.hp-faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--blue);
  font-weight: 700;
  transition: transform 0.25s, background 0.2s;
  margin-top: 2px;
}
.hp-faq-item.open .hp-faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; border-color: var(--blue); }
.hp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.77,0,.18,1);
}
.hp-faq-item.open .hp-faq-a { max-height: 400px; }
.hp-faq-a-inner {
  padding: 0 22px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.78;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ===================== CTA BAND ===================== */
.hp-cta-band {
  background: linear-gradient(130deg, #091828 0%, #0D2B4A 45%, #1B5090 100%);
  padding: 64px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hp-cta-band::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,174,239,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hp-cta-band h2 {
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
  position: relative; z-index: 1;
}
.hp-cta-band p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
  line-height: 1.65;
  position: relative; z-index: 1;
}
.hp-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hp-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.hp-cta-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.hp-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hp-cta-btn-ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }

/* ===================== WHO WE HELP (PERSONA CARDS) ===================== */
.hp-personas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hp-persona-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hp-persona-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(27,117,188,0.12);
  transform: translateY(-2px);
}
.hp-persona-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.hp-persona-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.hp-persona-card > p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.hp-persona-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
  padding: 0;
}
.hp-persona-services li {
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.hp-persona-services li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}
.hp-persona-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s;
  margin-top: auto;
}
.hp-persona-cta:hover { color: var(--cyan); }

/* ===================== SERVICE PRICING LIST ===================== */
.hp-service-pricing-grid {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.hp-sp-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background 0.15s;
}
.hp-sp-row:last-child { border-bottom: none; }
.hp-sp-row:hover { background: var(--light-bg); }
.hp-sp-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.hp-sp-info { flex: 1; min-width: 0; }
.hp-sp-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.hp-sp-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.5;
}
.hp-sp-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.hp-sp-price span {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
}
.hp-sp-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 20px;
  border-left: 1px solid var(--border);
  min-width: 100px;
  text-align: right;
  transition: color 0.15s;
}
.hp-sp-link:hover { color: var(--cyan); }

/* ===================== DEADLINES ===================== */
.hp-deadlines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hp-deadline-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hp-deadline-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(27,117,188,0.10);
  transform: translateY(-2px);
}
.hp-deadline-card.urgent {
  border-color: rgba(217,119,6,0.45);
  background: linear-gradient(135deg, #fff 0%, #FFFBF0 100%);
}
.hp-deadline-card.urgent:hover { border-color: var(--amber); }
.hp-dl-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hp-dl-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.hp-dl-freq {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  color: var(--grey);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.hp-dl-freq.urgent-badge {
  background: rgba(217,119,6,0.10);
  border-color: rgba(217,119,6,0.3);
  color: var(--amber);
}
.hp-dl-date {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.hp-dl-date.amber { color: var(--amber); }
.hp-dl-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.hp-dl-desc {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.66;
  flex: 1;
  margin-bottom: 16px;
}
.hp-dl-who {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(27,117,188,0.07);
  border-radius: 6px;
  padding: 5px 10px;
  width: fit-content;
}
.hp-dl-who::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
/* EDIT (09 Sep 2026): footer row for the urgent MTD card — keeps the audience
   badge on the left and adds a small right-aligned action link ("Check if this
   applies to you →") that routes to the MTD page. Link styled blue to match the
   image mock / hp-persona-cta. */
.hp-dl-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hp-dl-link {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  line-height: 3.2;
  margin-left: auto;
  transition: color 0.15s;
}
.hp-dl-link:hover { color: var(--cyan); text-decoration: underline; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hp-personas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hp-hero { flex-direction: column; padding: 40px 24px 56px; gap: 48px; }
  .hp-hero-content h1 { font-size: 30px; }
  .hp-hero-visual { width: 100%; }
  .hp-hv-chip-2 { top: -14px; right: 0; }
  .hp-hv-chip-1 { bottom: -14px; left: 0; }
  .hp-trust-bar { padding: 16px 24px; gap: 16px; }
  .hp-tb-divider { display: none; }
  .hp-section { padding: 52px 24px; }
  .hp-personas-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hp-why-grid { grid-template-columns: 1fr; gap: 14px; }
  .hp-steps { grid-template-columns: 1fr; gap: 32px; }
  .hp-steps::before { display: none; }
  .hp-stats { grid-template-columns: repeat(2, 1fr); }
  .hp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hp-stat:nth-child(3), .hp-stat:nth-child(4) { border-bottom: none; }
  .hp-deadlines-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hp-reviews-grid { grid-template-columns: 1fr; }
  .hp-faq-grid { grid-template-columns: 1fr; }
  .hp-cta-band { padding: 48px 24px; }
  .hp-cta-band h2 { font-size: 26px; }
}
@media (max-width: 600px) {
  .hp-personas-grid { grid-template-columns: 1fr; }
  .hp-deadlines-grid { grid-template-columns: 1fr; }
  .hp-stats { grid-template-columns: 1fr; }
  .hp-stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .hp-stat:last-child { border-bottom: none; }
}
