/* ============================================================
   UK SIM Pakistan — Professional E-Commerce Redesign
   Navy + Amber | Plus Jakarta Sans | Premium E-Commerce Feel
   ============================================================ */

/* --- CSS Variables --- */
:root {
  /* Brand palette */
  --primary: #0F172A;
  --primary-light: #1E293B;
  --primary-dark: #020617;
  --accent: #D97706;
  --accent-light: #F59E0B;
  --accent-dark: #B45309;
  --amber-bg: #FFFBEB;
  --amber-border: #FDE68A;

  /* Neutrals */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;

  /* Semantic tokens */
  --ink: var(--primary);
  --body: var(--gray-700);
  --body-on-dark: var(--white);
  --body-muted: var(--gray-500);
  --divider: var(--gray-200);
  --canvas: var(--gray-50);
  --surface: var(--white);
  --surface-warm: var(--amber-bg);

  /* Border radius (rounded, modern e-commerce) */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;
  --radius-square: 0px;

  /* Layout */
  --container: min(1140px, 90vw);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 1px 4px rgba(15, 23, 42, 0.04), 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(15, 23, 42, 0.1), 0 2px 8px rgba(15, 23, 42, 0.06);

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-base: 300ms cubic-bezier(0.22, 1, 0.36, 1);
  --transition-smooth: 500ms cubic-bezier(0.22, 1, 0.36, 1);

  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

::selection {
  background: rgba(217, 119, 6, 0.15);
  color: var(--primary);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--accent-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
}

.subhead {
  margin-top: 16px;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-muted);
  font-weight: 500;
}

.section-intro {
  color: var(--body-muted);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  max-width: 72ch;
  margin: 12px 0 0;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(15, 23, 42, 0.08);
  border-bottom-color: transparent;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  flex-shrink: 0;
  max-width: fit-content;
  transition: opacity var(--transition-fast);
  text-decoration: none;
}

.brand::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand:hover::before {
  transform: scale(1.25);
}

.brand:hover {
  opacity: 0.9;
}

.brand strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--primary);
  line-height: 1.2;
}

.brand span {
  font-size: 11px;
  color: var(--body-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  display: none;
  border-left: 1px solid var(--divider);
  padding-left: 12px;
  margin-left: 2px;
}

@media (min-width: 960px) {
  .brand span {
    display: inline;
  }
}

/* Hamburger Menu Button */
.menu-btn {
  display: none;
  border: none;
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-sm);
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  align-items: center;
  justify-content: center;
  font-size: 0;
  overflow: hidden;
}

.menu-btn::before,
.menu-btn::after,
.menu-btn .menu-icon {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-btn::before {
  content: '';
  top: 14px;
}

.menu-btn .menu-icon {
  content: '';
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-btn::after {
  content: '';
  bottom: 14px;
}

.menu-btn:hover {
  background: rgba(15, 23, 42, 0.05);
}

.menu-btn[aria-expanded="true"]::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.menu-btn[aria-expanded="true"]::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* Desktop Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a:not(.btn-cta) {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}

.nav a:not(.btn-cta)::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px);
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.nav a:not(.btn-cta):hover {
  color: var(--primary);
  background: var(--gray-50);
}

.nav a:not(.btn-cta).active {
  color: var(--primary);
  font-weight: 700;
}

.nav a:not(.btn-cta).active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav .btn-cta,
.btn-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  font-weight: 800;
  padding: 10px 22px;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  font-size: 13px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
}

.nav .btn-cta::before {
  content: '\2192';
  font-size: 14px;
  transition: transform var(--transition-fast);
}

.nav .btn-cta {
  margin-left: 12px;
}

.nav .btn-cta:hover,
.nav .btn-cta.active,
.btn-cta:hover,
.btn-cta.active {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #92400e 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.3);
}

.nav .btn-cta:hover::before {
  transform: translateX(3px);
}

.site-header a,
.site-header button {
  -webkit-tap-highlight-color: transparent;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(217, 119, 6, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  padding: 80px 40px 100px;
}

/* Trust Strip */
.trust-strip {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 0;
}

.trust-strip .container {
  padding: 20px 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(217, 119, 6, 0.2);
  background: rgba(217, 119, 6, 0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.trust-item:hover {
  border-color: rgba(217, 119, 6, 0.35);
  background: rgba(217, 119, 6, 0.12);
  transform: translateY(-1px);
}

.trust-item strong {
  color: var(--accent-light);
}

/* Hero Grid */
.hero-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}

.columns {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.4fr 1fr;
  align-items: start;
}

/* Panel Cards */
.panel {
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  padding: 48px;
  transition: all var(--transition-base);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.panel:hover {
  box-shadow: var(--shadow-card-hover);
}

.hero-copy {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.hero-copy:hover {
  box-shadow: none;
}

.hero-copy h1 {
  color: var(--white);
  margin-top: 12px;
}

.hero-copy .subhead {
  color: rgba(255, 255, 255, 0.75);
}

.text-card,
.keywords-box {
  background: var(--surface);
}

.card-form {
  background: var(--surface);
  border: 1px solid var(--divider);
}

.card-form h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 8px;
  color: var(--primary);
}

/* Hero Points */
.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  transition: all var(--transition-fast);
  color: var(--white);
  font-size: 15px;
}

.hero-points li::before {
  content: '✓';
  color: var(--accent-light);
  font-weight: 800;
  margin-right: 10px;
}

.hero-points li:hover {
  border-color: var(--accent);
  background: rgba(217, 119, 6, 0.08);
  transform: translateX(4px);
}

/* Stat Grid */
.stat-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all var(--transition-fast);
}

.stat:hover {
  border-color: var(--accent);
  background: rgba(217, 119, 6, 0.08);
  transform: translateY(-2px);
}

.stat strong {
  display: block;
  color: var(--accent-light);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  font-family: var(--font-display);
}

.stat span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* Quick Links & Tags */
.quick-links,
.footer-links,
.tag-cloud {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-links a,
.footer-links a,
.tag-cloud span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  background: rgba(255, 255, 255, 0.05);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.quick-links a:hover,
.footer-links a:hover {
  color: var(--white);
  border-color: var(--accent);
  background: rgba(217, 119, 6, 0.12);
  text-decoration: none;
  transform: translateY(-1px);
}

.tag-cloud span {
  border-color: var(--divider);
  color: var(--body-muted);
  background: var(--gray-50);
}

/* Notice */
.notice {
  margin: 14px 0;
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--accent-dark);
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section h2 {
  margin-bottom: 16px;
}

.section-alt {
  background: var(--surface-warm);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

/* Grid layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* Feature Cards */
.feature {
  padding: 40px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-card);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.feature:hover::before {
  opacity: 1;
}

.feature p {
  color: var(--body-muted);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.7;
}

/* Price Band */
.price-band {
  margin-top: 24px;
  padding: 40px;
  border-radius: var(--radius-md);
  background: var(--surface-warm);
  border: 1px solid var(--amber-border);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.price-band:hover {
  box-shadow: var(--shadow-md);
}

.price-band p {
  color: var(--body-muted);
  font-size: 16px;
}

.price-band strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.1;
  color: var(--accent-dark);
  font-weight: 900;
  letter-spacing: -0.03em;
  font-family: var(--font-display);
}

/* Social Proof */
.social-proof {
  text-align: center;
  padding: 56px 48px;
  margin: 28px 0;
  border-radius: var(--radius-md);
  background: var(--primary);
  border: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
}

.social-proof:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.social-proof strong {
  font-size: clamp(56px, 6vw, 80px);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  font-weight: 900;
  font-family: var(--font-display);
}

.social-proof span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

/* Process Steps */
.process-section {
  padding: 80px 0;
  background: var(--canvas);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 44px 28px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: all var(--transition-base);
  position: relative;
  box-shadow: var(--shadow-card);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--accent);
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
  font-family: var(--font-display);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--body-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

/* --- Reviews Section --- */
.reviews-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header h2 {
  margin-bottom: 12px;
}

.reviews-header .section-intro {
  color: var(--body-muted);
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  background: var(--amber-bg);
  border: 1px solid var(--amber-border);
  box-shadow: var(--shadow-xs);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.rating-badge .stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

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

.review-card {
  background: var(--surface);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.review-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--body);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  gap: 8px;
}

.review-author span {
  color: var(--body-muted);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Video Section --- */
.video-section {
  padding: 80px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--divider);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  margin: 32px 0;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 24px;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--divider);
  box-shadow: var(--shadow-sm);
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--divider);
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  background: var(--surface);
  color: var(--body);
  font-weight: 500;
  transition: background var(--transition-fast);
}

.comparison-table tr:hover td {
  background: var(--gray-50);
}

.comparison-table tr:nth-child(even) td {
  background: var(--gray-50);
}

/* --- Payment & Trust Elements --- */
.payment-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.payment-logos img {
  height: 40px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--divider);
  background: var(--surface);
  padding: 6px 12px;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.payment-logos img:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.trust-pill:hover {
  background: rgba(217, 119, 6, 0.18);
  transform: translateY(-1px);
}

/* Included List */
.included-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.included-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--body);
  font-size: 15px;
}

.included-list li:last-child {
  border-bottom: 0;
}

.included-list li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Payment Breakdown */
.payment-breakdown {
  margin: 20px 0;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--divider);
  list-style: none;
  box-shadow: var(--shadow-xs);
}

.payment-breakdown li {
  padding: 12px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-breakdown li:last-child {
  border-bottom: 0;
  font-weight: 700;
  color: var(--ink);
}

.payment-breakdown li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--radius-sm);
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Provider Profiles --- */
.provider-profile {
  padding: 40px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: var(--surface);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.provider-profile:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.provider-profile h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.provider-profile p {
  color: var(--body-muted);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.7;
}

.provider-profile ul {
  margin: 16px 0;
  padding-left: 20px;
}

.provider-profile li {
  color: var(--body);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

/* --- FAQ --- */
.faq-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.faq-list li {
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  background: var(--surface);
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.faq-list li:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq-list li h3 {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--ink);
}

.faq-list li p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-muted);
}

/* --- City List --- */
.city-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.city-list li {
  border: 1px solid var(--divider);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  background: var(--surface);
  font-weight: 600;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.city-list li:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

/* --- Product Images --- */
.product-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.product-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-image-hero {
  max-width: 380px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

/* --- Buttons --- */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  border: 0;
  background: var(--primary);
  color: var(--white) !important;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.whatsapp-btn:hover {
  background: var(--primary-light);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.whatsapp-btn:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: var(--white) !important;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  text-align: center;
  justify-content: center;
}

.whatsapp-cta:hover {
  background: linear-gradient(135deg, #1da851 0%, #0e6e5e 100%);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.whatsapp-cta:active {
  transform: translateY(0) scale(0.98);
}

.whatsapp-cta:focus-visible {
  outline: 2px solid #25d366;
  outline-offset: 2px;
}

/* Square Buttons */
.btn-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
  text-decoration: none;
  border: 2px solid var(--primary);
}

.btn-square-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-square-primary:hover {
  background: transparent;
  color: var(--primary);
}

.btn-square-outline {
  background: transparent;
  color: var(--primary);
}

.btn-square-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-square-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-square-white:hover {
  background: transparent;
  color: var(--white);
}

/* --- Order Form --- */
.order-form {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.order-form input,
.order-form button {
  width: 100%;
  height: 50px;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  box-sizing: border-box;
}

.order-form input {
  border: 1.5px solid var(--divider);
  padding: 0 18px;
  color: var(--primary);
  background: var(--surface);
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.order-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.order-form input::placeholder {
  color: var(--body-muted);
  font-weight: 500;
}

.order-form button {
  border: 0;
  background: var(--accent);
  color: var(--white) !important;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.order-form button:hover {
  background: var(--accent-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
}

.order-form button:active {
  transform: translateY(0) scale(0.98);
}

.order-form button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  margin: 32px 0 0;
  color: var(--body-muted);
  font-size: 13px;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}

.breadcrumb nav {
  display: inline;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 6px;
  color: var(--divider);
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: var(--accent-dark);
}

/* --- Footer --- */
.site-footer {
  margin-top: 80px;
  padding: 0;
  background: var(--primary);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  text-align: left;
  padding: 64px 0;
}

.site-footer .container > div {
  padding: 0;
  border-bottom: none;
}

.site-footer strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: var(--font-display);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--white);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent-light);
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: flex-start;
}

.site-footer .footer-links a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.site-footer .footer-links a:hover {
  background: rgba(217, 119, 6, 0.15);
  color: var(--accent-light);
}

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 8px 0;
}

.site-footer .whatsapp-btn {
  background: rgba(217, 119, 6, 0.12);
  border: 1px solid rgba(217, 119, 6, 0.2);
  color: var(--accent-light) !important;
  font-weight: 700;
}

.site-footer .whatsapp-btn:hover {
  background: rgba(217, 119, 6, 0.2);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.3);
}

.back-to-top:active {
  transform: translateY(0) scale(0.95);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* --- Grain Overlay --- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.008;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* --- Error Pages --- */
.error-shell {
  min-height: calc(100vh - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-card {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
}

.error-code {
  margin: 0;
  font-size: clamp(72px, 16vw, 140px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--primary);
}

.error-card h1 {
  margin: 16px 0 12px;
}

.error-card .subhead {
  max-width: 56ch;
  margin: 0 auto;
}

.error-note {
  margin: 20px 0 0;
  color: var(--body-muted);
  font-size: 14px;
  font-weight: 700;
}

.error-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.error-support {
  margin-top: 18px;
  font-size: 14px;
}

.error-support a {
  font-weight: 800;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms; }
.stagger-children > *:nth-child(3) { transition-delay: 160ms; }
.stagger-children > *:nth-child(4) { transition-delay: 240ms; }
.stagger-children > *:nth-child(5) { transition-delay: 320ms; }
.stagger-children > *:nth-child(6) { transition-delay: 400ms; }

/* ============================================================
   Services Popup Overlay
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.3);
  transform: translateY(24px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.popup-overlay.visible .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--body-muted);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition-fast);
  font-family: var(--font-body);
}

.popup-close:hover {
  color: var(--primary);
}

.popup-content {
  padding: 36px 32px;
  text-align: center;
}

.popup-content img {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.popup-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.popup-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.popup-price {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  font-family: var(--font-display);
}

.popup-desc {
  font-size: 14px;
  color: var(--body-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.popup-content .whatsapp-cta {
  width: 100%;
  box-sizing: border-box;
}

/* ============================================================
   Blog Styles
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--divider);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  background: var(--surface);
}

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

.blog-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--body-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  line-height: 1.35;
}

.blog-card h3 a {
  color: var(--primary);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--accent);
}

.blog-card p {
  font-size: 14px;
  color: var(--body-muted);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 16px;
}

.blog-card .read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

.blog-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 900;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  color: var(--white);
}

.blog-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto;
}

/* Quick Answer Block (GEO-critical) */
.quick-answer {
  background: var(--amber-bg);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin-bottom: 28px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15px;
  line-height: 1.65;
}

.quick-answer strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 6px;
}

/* Blog Article Styles */
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
}

.blog-article h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  line-height: 1.2;
}

.blog-article .blog-post-meta {
  font-size: 13px;
  color: var(--body-muted);
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-article .blog-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.blog-article h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}

.blog-article h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  margin: 28px 0 12px;
}

.blog-article p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
  color: var(--body);
}

.blog-article ul, .blog-article ol {
  margin: 0 0 18px;
  padding-left: 24px;
  line-height: 1.8;
}

.blog-article li {
  margin-bottom: 8px;
}

.blog-article .comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.blog-article .comparison-table th {
  background: var(--primary);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-article .comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--divider);
}

.blog-article .comparison-table tr:last-child td {
  border-bottom: none;
}

.blog-article .comparison-table tr:nth-child(even) td {
  background: var(--gray-50);
}

.blog-article .expert-quote {
  background: var(--amber-bg);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  font-style: italic;
  position: relative;
  border: 1px solid var(--amber-border);
}

.blog-article .expert-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--accent);
  position: absolute;
  top: 12px;
  left: 16px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.blog-article .expert-quote p {
  margin: 0 0 8px 20px;
  font-size: 15px;
}

.blog-article .expert-quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 20px;
}

.blog-article .stat-callout {
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  margin: 24px 0;
  text-align: center;
}

.blog-article .stat-callout strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: 4px;
}

.blog-article .stat-callout span {
  font-size: 14px;
  opacity: 0.85;
}

.blog-article .author-bio {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  margin: 32px 0;
  border: 1px solid var(--divider);
}

.blog-article .author-bio .author-avatar,
.blog-article .author-bio .author-avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 22px;
  flex-shrink: 0;
}

.blog-article .author-bio .author-info strong {
  display: block;
  font-size: 15px;
}

.blog-article .author-bio .author-info span {
  font-size: 13px;
  color: var(--body-muted);
}

.blog-cta-section {
  text-align: center;
  padding: 48px 28px;
  background: var(--amber-bg);
  border-radius: var(--radius-md);
  margin: 40px 0;
  border: 1px solid var(--amber-border);
}

.blog-cta-section h3 {
  margin: 0 0 8px;
}

.blog-cta-section p {
  margin: 0 0 20px;
  color: var(--body-muted);
}

.blog-faq {
  margin: 40px 0;
}

.blog-faq details {
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
}

.blog-faq details summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  background: var(--surface);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}

.blog-faq details summary::-webkit-details-marker {
  display: none;
}

.blog-faq details summary::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.blog-faq details[open] summary::after {
  transform: rotate(45deg);
}

.blog-faq details .faq-answer {
  padding: 16px 22px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
}

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

.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: 1px solid var(--divider);
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.blog-pagination a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.blog-pagination .current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1060px) {
  .hero-grid,
  .columns,
  .grid-3,
  .stat-grid,
  .trust-grid,
  .reviews-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid .card-form {
    order: -1;
  }

  .hero-grid .hero-copy {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .footer-grid > div:first-child {
    text-align: center;
  }

  .site-footer .footer-links {
    justify-content: center;
  }

  .panel,
  .feature,
  .price-band {
    padding: 36px 32px;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  main {
    display: flex;
    flex-direction: column;
  }

  main > .trust-strip {
    order: 2;
  }

  main > .hero {
    order: 1;
  }

  main > section:not(.trust-strip):not(.hero) {
    order: 3;
  }
}

/* Mobile Landscape */
@media (max-width: 860px) {
  .menu-btn {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 3vw;
    left: 3vw;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    padding: 12px;
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
    transition: all 300ms cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .nav.open {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a:not(.btn-cta) {
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all var(--transition-fast);
    white-space: normal;
  }

  .nav a:not(.btn-cta)::after {
    display: none;
  }

  .nav a:not(.btn-cta):hover,
  .nav a:not(.btn-cta).active {
    background: var(--gray-100);
    color: var(--primary);
  }

  .nav .btn-cta {
    margin-left: 0;
    margin-top: 4px;
    padding: 14px 16px;
    color: var(--white) !important;
    justify-content: center;
  }

  .nav .btn-cta::before {
    content: '';
  }

  .nav .btn-cta::after {
    content: '\2192';
    font-size: 14px;
    transition: transform var(--transition-fast);
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand {
    max-width: calc(100% - 96px);
  }

  .brand strong {
    font-size: 18px;
  }

  .brand span {
    display: none;
  }

  .nav {
    top: 64px;
  }

  .whatsapp-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat {
    padding: 16px 12px;
  }

  .stat strong {
    font-size: 20px;
  }

  .stat span {
    font-size: 11px;
  }
}

/* Mobile Portrait */
@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .hero .container {
    padding: 50px 20px 70px;
  }

  .trust-strip .container {
    padding: 16px 20px 0;
  }

  .section {
    padding: 56px 0;
  }

  .panel,
  .feature,
  .price-band,
  .city-list li,
  .faq-list li {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }

  h1 {
    font-size: clamp(34px, 8vw, 44px);
    letter-spacing: -0.025em;
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(26px, 6.5vw, 34px);
    letter-spacing: -0.02em;
    line-height: 1.15;
  }

  h3 {
    font-size: clamp(20px, 4.5vw, 24px);
    line-height: 1.25;
  }

  .brand span {
    display: none;
  }

  .stat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .stat {
    padding: 14px 10px;
  }

  .stat strong {
    font-size: 18px;
  }

  .stat span {
    font-size: 10px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .trust-item {
    padding: 12px 16px;
    font-size: 12px;
  }

  .process-grid {
    gap: 12px;
  }

  .process-step {
    padding: 28px 20px;
  }

  .reviews-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .review-card {
    padding: 20px;
  }

  .review-text {
    font-size: 14px;
  }

  .site-footer {
    margin-top: 56px;
  }

  .site-footer .container {
    padding: 40px 0;
  }

  .footer-grid {
    gap: 24px;
    padding: 40px 0;
  }

  .video-section {
    padding: 56px 0;
  }

  .reviews-section {
    padding: 56px 0;
  }

  .process-section {
    padding: 56px 0;
  }

  .order-form input {
    height: 50px;
    font-size: 16px;
  }

  .order-form button {
    height: 50px;
    font-size: 15px;
  }

  .quick-links {
    gap: 6px;
  }

  .quick-links a {
    padding: 6px 12px;
    font-size: 11px;
  }

  .trust-indicators {
    gap: 6px;
  }

  .trust-pill {
    font-size: 11px;
    padding: 6px 10px;
  }

  .whatsapp-cta {
    font-size: 14px;
    padding: 14px 20px;
  }

  .subhead {
    font-size: 16px;
  }

  .section-intro {
    font-size: 15px;
  }

  .rating-badge {
    padding: 10px 18px;
    font-size: 13px;
  }

  .product-image-hero {
    max-width: 280px;
  }

  .payment-logos {
    gap: 10px;
  }

  .payment-logos img {
    height: 34px;
    padding: 4px 8px;
  }

  .columns {
    gap: 24px;
  }

  .provider-profile {
    padding: 28px 20px;
  }

  .provider-profile h3 {
    font-size: 20px;
  }

  .provider-profile p,
  .provider-profile li {
    font-size: 14px;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }

  .included-list li {
    font-size: 14px;
    padding: 12px 0;
    gap: 10px;
  }

  .included-list li::before {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .payment-breakdown li {
    font-size: 14px;
    padding: 10px 0;
  }

  .popup-card {
    margin: 16px;
    max-width: calc(100% - 32px);
  }

  .popup-content {
    padding: 24px 20px;
  }

  .popup-content h3 {
    font-size: 20px;
  }

  .popup-price {
    font-size: 22px;
  }

  .popup-desc {
    font-size: 13px;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .notice {
    font-size: 12px;
    padding: 6px 14px;
  }

  .error-card {
    padding: 36px 22px;
  }

  .error-actions {
    flex-direction: column;
  }

  .footer-links {
    gap: 6px;
  }

  .footer-links a {
    padding: 6px 10px;
    font-size: 12px;
  }

  .site-footer strong {
    font-size: 22px;
  }

  .site-footer p {
    font-size: 13px;
  }

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

  .blog-hero {
    padding: 50px 0 40px;
  }

  .blog-article {
    padding: 24px 0;
  }

  .blog-article .comparison-table {
    font-size: 13px;
  }

  .blog-article .comparison-table th,
  .blog-article .comparison-table td {
    padding: 8px 10px;
  }
}

/* Extra Small */
@media (max-width: 480px) {
  .container {
    width: 88vw;
  }

  .hero .container {
    padding: 40px 16px 50px;
  }

  .trust-strip .container {
    padding: 12px 16px 0;
  }

  .panel {
    padding: 20px 16px;
  }

  .feature {
    padding: 24px 18px;
  }

  .price-band {
    padding: 24px 18px;
  }

  .hero-points li,
  .city-list li,
  .faq-list li {
    padding: 14px 16px;
  }

  .quick-links a {
    font-size: 10px;
    padding: 6px 10px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .subhead {
    font-size: 15px;
  }

  .section-intro {
    font-size: 14px;
  }

  .whatsapp-cta {
    font-size: 13px;
    padding: 12px 18px;
  }

  .trust-pill {
    font-size: 10px;
    padding: 5px 8px;
  }

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

  .stat {
    padding: 12px;
  }

  .process-step {
    padding: 22px 16px;
  }

  .review-card {
    padding: 16px 14px;
  }

  .footer-links a {
    font-size: 11px;
    padding: 5px 8px;
  }

  .brand strong {
    font-size: 16px;
  }

  .rating-badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .social-proof {
    padding: 40px 20px;
  }

  .social-proof strong {
    font-size: 48px;
  }

  h1 {
    font-size: clamp(30px, 8vw, 38px);
  }

  h2 {
    font-size: clamp(24px, 6vw, 30px);
  }

  h3 {
    font-size: clamp(18px, 4vw, 22px);
  }
}

/* Tiny screens */
@media (max-width: 360px) {
  .container {
    width: 85vw;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  .panel {
    padding: 18px 14px;
  }

  .feature {
    padding: 20px 14px;
  }

  .price-band {
    padding: 20px 14px;
  }

  .whatsapp-cta {
    font-size: 12px;
    padding: 12px 16px;
  }

  .hero-points li,
  .city-list li,
  .faq-list li {
    padding: 12px 14px;
    font-size: 13px;
  }

  .process-step {
    padding: 20px 14px;
  }

  .review-card {
    padding: 14px 12px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .back-to-top {
    display: none;
  }

  .grain-overlay {
    display: none;
  }
}

/* ============================================================
   Utility Classes
   ============================================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
