@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   CoveBit IT Support — Modern Lead-Generation Stylesheet
   Domain: covebit.co.uk | London & UK Remote / On-Call IT Support
   ========================================================================== */

:root {
  /* Brand Color Palette - Apple-Inspired Refined Neutrals & Vibrant Action Blue */
  --primary-950: #050811;
  --primary-900: #0f172a;
  --primary-800: #1e293b;
  --primary-700: #334155;
  
  --brand-cyan: #0071e3;
  --brand-cyan-light: #38bdf8;
  --brand-cyan-hover: #0077ed;
  --brand-teal: #0d9488;
  --brand-teal-light: #14b8a6;
  --brand-teal-bg: #f0fdfa;
  
  --accent-emerald: #10b981;
  --accent-emerald-bg: #ecfdf5;
  --accent-amber: #f59e0b;
  
  --text-main: #1d1d1f;
  --text-muted: #6e6e73;
  --text-light: #86868b;
  --text-white: #ffffff;
  
  --bg-page: #ffffff;
  --bg-subtle: #f5f5f7;
  --bg-card: #ffffff;
  --bg-dark: #0b132b;
  
  --border-light: rgba(0, 0, 0, 0.08);
  --border-focus: #0071e3;
  
  /* Typography: Inter Universal System */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  /* Spacing & Radii */
  --container-width: 1200px;
  --container-padding: 1.5rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Apple-Grade Diffused Multi-Layer Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 14px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 28px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 24px 48px -8px rgba(0, 0, 0, 0.1), 0 8px 20px -4px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 25px -5px rgba(0, 113, 227, 0.28);
  --shadow-apple-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.11), 0 6px 16px -4px rgba(0, 0, 0, 0.04);
  
  /* Fluid Apple Motion Transitions */
  --ease-apple: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 180ms cubic-bezier(0.25, 1, 0.5, 1);
  --transition-normal: 300ms cubic-bezier(0.25, 1, 0.5, 1);
  --transition-apple: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.6;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  letter-spacing: -0.025em;
  font-weight: 700;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

a:hover {
  color: #0369a1;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

/* --------------------------------------------------------------------------
   Top Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: var(--primary-900);
  color: #cbd5e1;
  font-size: 0.84rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-bar a {
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar a:hover {
  color: var(--brand-cyan-light);
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --------------------------------------------------------------------------
   Sticky Header & Navigation (Apple-Style Frosted Translucent Glass)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background-color var(--transition-apple), box-shadow var(--transition-apple);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

/* Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: scale(1.02);
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-900) 0%, #0369a1 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.22);
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  display: block;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 750;
  color: var(--primary-900);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-name span {
  color: var(--brand-cyan);
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: #1d1d1f;
  opacity: 0.82;
  padding: 0.5rem 0;
  position: relative;
  transition: all var(--transition-fast);
  letter-spacing: -0.01em;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--brand-cyan);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-cyan);
  border-radius: 9999px;
}

/* Nav Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  min-width: 310px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.14), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: all 0.24s var(--ease-apple);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  color: #1d1d1f;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 10px;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.dropdown-link:hover {
  background-color: rgba(0, 113, 227, 0.08);
  color: var(--brand-cyan);
  transform: translateX(2px);
}

.dropdown-link svg {
  flex-shrink: 0;
  color: var(--brand-cyan);
}

/* Header CTAs */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  color: #1d1d1f;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--brand-cyan);
}

/* Apple-Style Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.72rem 1.45rem;
  border-radius: 980px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.28s var(--ease-apple);
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.btn-primary {
  background: linear-gradient(180deg, #0077ed 0%, #0066cc 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 14px rgba(0, 113, 227, 0.28);
  border-color: rgba(0, 113, 227, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #0082fb 0%, #0071e3 100%);
  color: #ffffff;
  transform: translateY(-1.5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 8px 22px rgba(0, 113, 227, 0.38);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: 0 2px 6px rgba(0, 113, 227, 0.2);
}

.btn-secondary {
  background-color: rgba(0, 0, 0, 0.04);
  color: #1d1d1f;
  border-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.14);
  color: #000000;
  transform: translateY(-1px);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-teal {
  background: linear-gradient(180deg, #0d9488 0%, #0f766e 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 4px 14px rgba(13, 148, 136, 0.25);
  border-color: rgba(13, 148, 136, 0.4);
}

.btn-teal:hover {
  background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
  color: #ffffff;
  transform: translateY(-1.5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 8px 20px rgba(13, 148, 136, 0.32);
}

.btn-teal:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.88rem 1.95rem;
  font-size: 1.02rem;
  border-radius: 980px;
}

.btn-block {
  width: 100%;
}

.btn:disabled,
button:disabled,
input[type="submit"]:disabled,
.btn.btn-disabled {
  opacity: 0.52 !important;
  cursor: not-allowed !important;
  pointer-events: auto !important;
  box-shadow: none !important;
  transform: none !important;
  filter: grayscale(25%) !important;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary-900);
  cursor: pointer;
  padding: 0.5rem;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  color: var(--brand-teal);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-900);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-subhead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Hero Social Proof Banner */
.hero-proof-strip {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.hero-proof-item {
  display: flex;
  flex-direction: column;
}

.proof-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.1;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Card: Quick Diagnostic / Connect */
.hero-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.engineer-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.engineer-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--primary-900) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  border: 2px solid #ffffff;
  flex-shrink: 0;
}

.engineer-avatar-img,
.engineer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.engineer-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-900);
}

.engineer-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-card-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text-main);
}

.hero-card-feature svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Trust Strip (Below Hero)
   -------------------------------------------------------------------------- */
.trust-strip {
  background-color: #ffffff;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-cyan);
  flex-shrink: 0;
}

.trust-text {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-900);
  line-height: 1.35;
}

/* --------------------------------------------------------------------------
   Sections Standard
   -------------------------------------------------------------------------- */
.section {
  padding: 4.5rem 0;
}

.section-subtle {
  background-color: var(--bg-subtle);
}

.section-dark {
  background-color: var(--primary-900);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-pill {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-cyan);
  background-color: #f0f9ff;
  border: 1px solid #e0f2fe;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   How It Works (3 Steps)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.step-number {
  width: 44px;
  height: 44px;
  background: var(--brand-teal-bg);
  border: 1px solid #99f6e4;
  color: var(--brand-teal);
  font-size: 1.15rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   Services Grid
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease-apple);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  border-color: rgba(0, 113, 227, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-apple-hover);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(0, 113, 227, 0.08) 0%, rgba(14, 165, 233, 0.12) 100%);
  border: 1px solid rgba(0, 113, 227, 0.18);
  color: var(--brand-cyan);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features-list li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

.service-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-link:hover {
  gap: 0.6rem;
}

/* --------------------------------------------------------------------------
   Differentiator Section (Engineer vs Call Centre)
   -------------------------------------------------------------------------- */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.diff-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.diff-card-covebit {
  background: #ffffff;
  border: 2px solid var(--brand-teal);
  box-shadow: var(--shadow-xl);
  position: relative;
}

.diff-badge-best {
  position: absolute;
  top: -14px;
  right: 2rem;
  background: var(--brand-teal);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.diff-card-generic {
  background: #f8fafc;
  border: 1px solid var(--border-light);
}

.diff-header {
  margin-bottom: 1.75rem;
}

.diff-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.35rem;
}

.diff-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.diff-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.diff-point-icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.diff-point-icon.good {
  color: var(--accent-emerald);
}

.diff-point-icon.bad {
  color: #ef4444;
}

/* --------------------------------------------------------------------------
   Offers & Pricing Section
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s var(--ease-apple);
  box-shadow: var(--shadow-apple-sm);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-apple-hover);
  border-color: rgba(0, 113, 227, 0.25);
}

.pricing-card.featured {
  border: 2px solid var(--brand-cyan);
  box-shadow: 0 16px 36px -6px rgba(0, 113, 227, 0.22), 0 4px 12px -2px rgba(0, 113, 227, 0.1);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 24px 48px -8px rgba(0, 113, 227, 0.28), 0 8px 16px -2px rgba(0, 113, 227, 0.12);
}

.pricing-popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-cyan);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  min-height: 2.8rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-amount .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-900);
}

.pricing-amount .val {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1;
}

.pricing-amount .period {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-main);
}

.pricing-feature svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Testimonials / Reviews
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--primary-700);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-light);
  padding-top: 0.85rem;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-900);
}

.review-author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-tag {
  font-size: 0.72rem;
  color: var(--brand-teal);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   FAQ Accordion
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--brand-cyan);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-900);
  cursor: pointer;
  gap: 1rem;
}

.faq-trigger:hover {
  color: var(--brand-cyan);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--brand-cyan);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  display: none;
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-body {
  display: block;
}

/* --------------------------------------------------------------------------
   Closing CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner-section {
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 60%, #0369a1 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.cta-banner-sub {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Booking Page & Form
   -------------------------------------------------------------------------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.booking-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.booking-form-header {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}

.booking-form-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-900);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.45rem;
}

.form-group label span.required {
  color: #ef4444;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: var(--font-family);
  transition: all 0.22s var(--ease-apple);
}

.form-control::placeholder {
  color: #86868b;
}

.form-control:hover:not(:disabled):not(:focus) {
  border-color: #86868b;
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.14);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Radio Pill Toggles (Remote vs On-Call) */
.radio-pill-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-pill-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--primary-700);
  background-color: var(--bg-subtle);
  transition: all var(--transition-fast);
}

.radio-pill-group input[type="radio"] {
  display: none;
}

.radio-pill-group input[type="radio"]:checked + .radio-pill-label {
  background-color: #f0fdfa;
  border-color: var(--brand-teal);
  color: var(--brand-teal);
  box-shadow: 0 0 0 1px var(--brand-teal);
}

/* Trust Sidebar */
.trust-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-sidebar-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.trust-sidebar-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-sidebar-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.trust-sidebar-item-icon {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.trust-sidebar-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.2rem;
}

.trust-sidebar-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Confirmation State Card */
.confirmation-state {
  display: none;
  background: #ffffff;
  border: 2px solid var(--brand-teal);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.confirmation-state.active {
  display: block;
}

.confirm-icon-circle {
  width: 72px;
  height: 72px;
  background: var(--brand-teal-bg);
  color: var(--brand-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.confirm-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
}

.confirm-ref {
  display: inline-block;
  background: var(--bg-subtle);
  border: 1px dashed var(--brand-cyan);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-cyan);
  margin-bottom: 1.5rem;
}

.confirm-details-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: left;
  margin: 1.5rem 0 2rem;
  font-size: 0.92rem;
}

.confirm-details-box dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 0.65rem;
}

.confirm-details-box dt {
  font-weight: 700;
  color: var(--primary-900);
}

.confirm-details-box dd {
  color: var(--text-muted);
}

.integration-note {
  display: none !important;
}

/* Email Preview Modal & Live Validation Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.email-preview-modal {
  transition: opacity 0.2s ease;
}

.btn-open-email-copy:hover {
  background: #dcfce7 !important;
  color: #15803d !important;
}

/* --------------------------------------------------------------------------
   Service Page Internal Layout
   -------------------------------------------------------------------------- */
.service-hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--text-muted);
}

.breadcrumbs a:hover {
  color: var(--brand-cyan);
}

.service-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-900);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.service-hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 850px;
  margin-bottom: 2rem;
}

.whats-included-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
}

.whats-included-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 1.5rem;
}

.features-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--primary-800);
}

.feature-check-item svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.who-its-for-card {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
}

.who-its-for-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-teal);
  margin-bottom: 0.75rem;
}

.who-its-for-card p {
  color: #134e4a;
  font-size: 1rem;
  line-height: 1.6;
}

.common-searches-box {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.common-searches-box h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.search-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: var(--primary-700);
}

/* --------------------------------------------------------------------------
   About Page Layout
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.about-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-stats-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
}

.about-avatar-big {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--brand-teal) 0%, var(--primary-900) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  border: 3px solid #ffffff;
}

.about-avatar-img,
.about-avatar-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* --------------------------------------------------------------------------
   Areas We Cover Layout
   -------------------------------------------------------------------------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.area-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.area-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-card p.area-sub {
  font-size: 0.88rem;
  color: var(--brand-teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

.area-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.area-list li svg {
  color: var(--brand-cyan);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Contact Page Layout
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-method-icon {
  width: 46px;
  height: 46px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  color: var(--brand-cyan);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-900);
}

.contact-method-body p, .contact-method-body a {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.contact-method-body a {
  color: var(--brand-cyan);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-950);
  color: #94a3b8;
  padding: 4.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-cyan-light);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #cbd5e1;
}

.footer-contact-list svg {
  color: var(--brand-cyan);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: #64748b;
}

/* --------------------------------------------------------------------------
   Mobile Navigation Drawer & Responsive Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }
  .top-bar .container {
    justify-content: center;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 4.5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 4.5rem);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.25rem;
    overflow-y: auto;
    display: none;
    box-shadow: var(--shadow-xl);
  }
  
  .nav-menu.is-open {
    display: flex;
  }
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  
  .nav-item-dropdown.is-open .dropdown-menu {
    display: block;
  }
  
  .header-phone {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.15rem;
  }
  
  .hero-proof-strip {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .diff-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-layout, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .features-checklist {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Booking Form: Package Selector Cards (3-Tier in GBP)
   -------------------------------------------------------------------------- */
.package-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.package-option-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  background: #ffffff;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-option-card:hover {
  border-color: var(--brand-cyan-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.package-option-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.package-option-input:checked + .package-option-card {
  border-color: var(--brand-cyan);
  background: #f0f9ff;
  box-shadow: 0 0 0 1px var(--brand-cyan), var(--shadow-md);
}

.package-option-card.popular-option {
  border-color: #bae6fd;
}

.package-option-badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--brand-cyan);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-option-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.35rem;
  line-height: 1.25;
}

.package-option-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.package-option-price .period {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-option-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.package-option-list {
  font-size: 0.75rem;
  color: var(--primary-700);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid var(--border-light);
  padding-top: 0.6rem;
}

.package-option-list li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.package-option-list li svg {
  color: var(--accent-emerald);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Payment Partner Integration (Stripe & PayPal)
   -------------------------------------------------------------------------- */
.payment-partner-section {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

.payment-partner-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.payment-partner-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-badge-secure {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--brand-teal);
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
}

.payment-method-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.payment-method-card {
  border: 1px solid var(--border-light);
  background: #ffffff;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.payment-method-card:hover {
  border-color: var(--brand-cyan);
}

.payment-method-radio {
  display: none;
}

.payment-method-radio:checked + .payment-method-card {
  border-color: var(--brand-cyan);
  background: #f0f9ff;
  box-shadow: 0 0 0 1px var(--brand-cyan);
}

.payment-method-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-900);
}

.payment-method-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Payment Panel Content */
.payment-panel {
  display: none;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.payment-panel.active {
  display: block;
}

.stripe-elements-mock {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Sober Payment Partner Presentation (Clean Vector Logos & Buttons) */
.sober-partner-logo {
  height: 22px;
  width: auto;
  max-width: 75px;
  object-fit: contain;
  display: block;
}

.sober-payment-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.sober-payment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
}

.card-icons-inline {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.card-pill-tag {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-700);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.btn-sober-stripe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 0.88rem 1.6rem;
  background: #635bff;
  color: #ffffff !important;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.28);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-sober-stripe:hover {
  background: #534be5;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(99, 91, 255, 0.38);
}

.btn-sober-paypal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 0.88rem 1.6rem;
  background: #0070ba;
  color: #ffffff !important;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(0, 112, 186, 0.28);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-sober-paypal:hover {
  background: #005ea6;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 112, 186, 0.38);
}

.btn-sober-paypal-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  background: #ffffff;
  color: var(--primary-900) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none !important;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-sober-paypal-card:hover {
  border-color: var(--brand-cyan);
  background: #f8fafc;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Glass Pill Button System (Frosted Glass Capsule with Undistorted Logos)
   -------------------------------------------------------------------------- */
.btn-glass-checkout {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 0.85rem 1.65rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 246, 255, 0.88) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 10px 25px rgba(100, 116, 139, 0.16),
    inset 0 2px 3px rgba(255, 255, 255, 0.98),
    inset 0 -2px 4px rgba(0, 0, 0, 0.04);
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.btn-glass-checkout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.04) 100%);
  border-radius: 9999px 9999px 0 0;
  pointer-events: none;
}

.btn-glass-stripe:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 14px 30px rgba(99, 91, 255, 0.28),
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.04);
}

.btn-glass-paypal:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 14px 30px rgba(0, 112, 186, 0.28),
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -2px 4px rgba(0, 0, 0, 0.04);
}

.btn-glass-checkout:active {
  transform: translateY(-1px) scale(0.99);
}

.glass-pill-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.glass-brand-logo-stripe {
  height: 28px;
  width: auto;
  max-width: 105px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(99, 91, 255, 0.2));
  transition: transform 0.2s ease;
}

.glass-brand-logo-paypal {
  height: 25px;
  width: auto;
  max-width: 120px;
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 48, 135, 0.2));
  transition: transform 0.2s ease;
}

.btn-glass-checkout:hover .glass-brand-logo-stripe,
.btn-glass-checkout:hover .glass-brand-logo-paypal {
  transform: scale(1.04);
}

.glass-pill-divider {
  width: 1.5px;
  height: 24px;
  background: rgba(148, 163, 184, 0.35);
  border-radius: 1px;
  flex-shrink: 0;
}

.glass-pill-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.btn-glass-stripe .glass-pill-action {
  color: #1e1b4b;
}

.btn-glass-paypal .glass-pill-action {
  color: #003087;
}

/* Fallback & compatibility styles */
.glass-btn-pill-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.85rem;
}

.glass-btn-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.4rem;
}

.glass-logo-svg {
  display: block;
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.glass-btn-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.glass-pill-badge-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 255, 0.75) 100%);
  border: 1.2px solid rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  padding: 0.35rem 0.85rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), inset 0 1px 1px #ffffff;
}

/* --------------------------------------------------------------------------
   3-Step Guided Booking Flow (Stepper, Step Panels & Navigation)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   3-Step Guided Booking Flow (Apple-Style Segmented Stepper & Panels)
   -------------------------------------------------------------------------- */
.booking-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding: 0.65rem 0.85rem;
  background: rgba(0, 0, 0, 0.035);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 980px;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.step-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 980px;
  transition: all 0.25s var(--ease-apple);
  text-decoration: none;
  font-family: inherit;
  position: relative;
  z-index: 2;
}

.step-item.active {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.step-item:hover:not(.disabled):not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-apple);
  flex-shrink: 0;
}

.step-item.active .step-number {
  background: var(--brand-cyan);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.38);
}

.step-item.completed .step-number {
  background: var(--accent-emerald);
  color: #ffffff;
}

.step-title-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.step-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.step-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.2;
}

.step-item.active .step-name {
  color: var(--brand-cyan);
}

.step-item.disabled {
  opacity: 0.65;
  cursor: default;
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  margin: 0 0.5rem;
  transition: background var(--transition-fast);
}

.step-line.completed {
  background: var(--accent-emerald);
}

/* Step Panels */
.booking-step-panel {
  display: none;
  animation: fadeInStep 0.32s var(--ease-apple) forwards;
}

.booking-step-panel.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.step-header-title {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--primary-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.step-header-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.28rem 0.75rem;
  background: rgba(0, 113, 227, 0.08);
  color: var(--brand-cyan);
  border: 1px solid rgba(0, 113, 227, 0.18);
  border-radius: 9999px;
}

/* Step Navigation Footer */
.step-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  flex-wrap: wrap;
}

.step-nav-row .btn {
  min-width: 180px;
}

/* Step 3 Service Recap Box */
.step-summary-recap {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-apple-sm);
}

.step-summary-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-900);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
}

.step-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.step-summary-item {
  display: flex;
  flex-direction: column;
}

.step-summary-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.step-summary-value {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--primary-900);
  margin-top: 0.15rem;
}

/* --------------------------------------------------------------------------
   Confirmation Payment Instruction Banner & Email Notification Card
   -------------------------------------------------------------------------- */
.confirm-payment-instruction-banner {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdfa 100%);
  border: 1.5px solid rgba(0, 113, 227, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.65rem;
  margin: 1.5rem auto;
  max-width: 620px;
  box-shadow: 0 10px 28px -4px rgba(0, 113, 227, 0.12), var(--shadow-apple-sm);
  text-align: center;
}

.confirm-payment-instruction-banner .instruction-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.confirm-payment-instruction-banner .instruction-remark-pill {
  background: #ffffff;
  border: 1.5px solid #fdba74;
  color: #9a3412;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.confirm-payment-instruction-banner .ref-badge-highlight {
  display: inline-block;
  background: #ffedd5;
  color: #c2410c;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 800;
  border: 1px solid #fed7aa;
  letter-spacing: 0.03em;
}

.confirm-email-status-card {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.35rem;
  margin: 1.25rem auto;
  max-width: 620px;
}

.confirm-email-status-card .email-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-open-email-copy {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-open-email-copy:hover {
  background: #dcfce7;
  color: #14532d;
  border-color: #4ade80;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .booking-stepper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem;
  }
  .step-line {
    display: none;
  }
  .step-nav-row {
    flex-direction: column-reverse;
  }
  .step-nav-row .btn {
    width: 100%;
  }
}

.card-input-wrapper {
  position: relative;
}

.card-brand-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.paypal-smart-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.paypal-btn-mock {
  width: 100%;
  max-width: 380px;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  transition: opacity var(--transition-fast);
}

.paypal-btn-gold {
  background: #ffc439;
  color: #003087;
}

.paypal-btn-gold:hover {
  opacity: 0.9;
}

.paypal-btn-credit {
  background: #003087;
  color: #ffffff;
}

.paypal-btn-credit:hover {
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   Glass Glossy Stripe & PayPal Logos / Buttons (Provided Design Assets)
   -------------------------------------------------------------------------- */
.glass-pill-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem auto 0;
  width: 100%;
  max-width: 320px;
}

.glass-pill-btn {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.25s ease;
  max-width: 280px;
  width: 100%;
  margin: 0 auto;
  outline: none;
}

.glass-pill-img {
  width: 100%;
  height: auto;
  max-width: 280px;
  display: block;
  border-radius: 9999px;
  filter: drop-shadow(0 6px 16px rgba(100, 116, 139, 0.25));
  transition: transform 0.25s ease, filter 0.25s ease;
  pointer-events: none;
}

.glass-pill-btn:hover {
  transform: translateY(-3px) scale(1.025);
}

.glass-pill-btn:hover .glass-pill-img {
  filter: drop-shadow(0 12px 24px rgba(99, 91, 255, 0.35));
}

.glass-pill-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.glass-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  background: var(--primary-900);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-pill-btn:hover .glass-pill-badge {
  background: var(--brand-cyan);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.payment-method-glass-icon {
  height: 28px;
  width: auto;
  max-width: 68px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  display: block;
}

.btn-glass-paypal-credit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.82rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -2px 3px rgba(0, 0, 0, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-glass-paypal-credit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 11px 11px 120px 120px / 11px 11px 18px 18px;
  pointer-events: none;
}

.btn-glass-paypal-credit:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  color: #ffffff !important;
}

/* Payment Gate Warning & Error Highlighting */
.payment-gate-warning {
  background: #fef2f2;
  border: 1.5px solid #f87171;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.15rem;
  margin-bottom: 1rem;
  color: #991b1b;
  font-size: 0.88rem;
  line-height: 1.45;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
  animation: shakePaymentWarning 0.4s ease-in-out;
}

@keyframes shakePaymentWarning {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

.form-control.input-error {
  border-color: #dc2626 !important;
  background-color: #fffaf0 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.18) !important;
}

.form-field-error {
  font-size: 0.78rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   On-Call Visit & Custom Quote Panel
   -------------------------------------------------------------------------- */
.oncall-quote-box {
  background: #f0fdfa;
  border: 2px solid #99f6e4;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08);
  animation: fadeIn 0.3s ease-in-out;
}

.oncall-quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.oncall-quote-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.08rem;
  font-weight: 800;
  color: #0f766e;
}

.badge-quote-status {
  background: #ccfbf1;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid #99f6e4;
}

.oncall-quote-desc {
  font-size: 0.92rem;
  color: #134e4a;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.oncall-quote-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quote-contact-card {
  background: #ffffff;
  border: 1px solid #ccfbf1;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.quote-contact-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quote-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-900);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.quote-call-btn:hover {
  color: var(--brand-cyan);
}

.quote-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #059669;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.quote-whatsapp-btn:hover {
  color: #047857;
}

@media (max-width: 600px) {
  .oncall-quote-actions {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Dedicated Pricing Page & Comparison Table
   -------------------------------------------------------------------------- */
.pricing-table-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
  margin-top: 3rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.pricing-table th, .pricing-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
}

.pricing-table th {
  background: var(--bg-subtle);
  font-weight: 800;
  color: var(--primary-900);
}

.pricing-table th.highlight, .pricing-table td.highlight {
  background: #f0f9ff;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td:not(:first-child) {
  text-align: center;
}

.pricing-table th:not(:first-child) {
  text-align: center;
}

.check-green {
  color: var(--accent-emerald);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-muted {
  color: #cbd5e1;
  font-weight: 700;
}

@media (max-width: 768px) {
  .package-select-grid {
    grid-template-columns: 1fr;
  }
  .payment-method-selector {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Thank You / Payment Complete Animation & Styles
   -------------------------------------------------------------------------- */
.thankyou-card {
  position: relative;
  background: #ffffff;
  border: 2px solid #a7f3d0;
  border-radius: var(--radius-lg);
  padding: 3.75rem 2.25rem;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.12), 0 0 0 1px rgba(16, 185, 129, 0.08);
  overflow: hidden;
  animation: cardFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animated Checkmark Circle */
.thankyou-icon-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-ripple {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  animation: thankyouRipple 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  pointer-events: none;
}

@keyframes thankyouRipple {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.thankyou-svg-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: block;
  animation: circleScale 0.4s ease-in-out 0.9s both;
}

.thankyou-circle-path {
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  stroke-width: 3.5;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: #ecfdf5;
  animation: strokeCircle 0.75s cubic-bezier(0.65, 0, 0.45, 1) 0.1s forwards;
}

.thankyou-check-path {
  transform-origin: 50% 50%;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #059669;
  fill: none;
  animation: strokeCheck 0.45s cubic-bezier(0.65, 0, 0.45, 1) 0.65s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes circleScale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.08, 1.08, 1);
  }
}

/* Light celebratory confetti particles */
.confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  border-radius: 50%;
  animation: confettiBurst 2.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.confetti-piece:nth-child(1)  { left: 48%; top: 22%; background: #10b981; animation-delay: 0.4s; }
.confetti-piece:nth-child(2)  { left: 52%; top: 20%; background: #0284c7; animation-delay: 0.45s; }
.confetti-piece:nth-child(3)  { left: 45%; top: 26%; background: #f59e0b; animation-delay: 0.5s; width: 6px; height: 10px; border-radius: 2px; }
.confetti-piece:nth-child(4)  { left: 55%; top: 25%; background: #14b8a6; animation-delay: 0.42s; }
.confetti-piece:nth-child(5)  { left: 42%; top: 21%; background: #6366f1; animation-delay: 0.55s; width: 5px; height: 9px; border-radius: 2px; }
.confetti-piece:nth-child(6)  { left: 58%; top: 23%; background: #10b981; animation-delay: 0.48s; }
.confetti-piece:nth-child(7)  { left: 38%; top: 27%; background: #06b6d4; animation-delay: 0.6s; }
.confetti-piece:nth-child(8)  { left: 62%; top: 26%; background: #f43f5e; animation-delay: 0.52s; width: 6px; height: 8px; border-radius: 2px; }
.confetti-piece:nth-child(9)  { left: 49%; top: 18%; background: #eab308; animation-delay: 0.4s; }
.confetti-piece:nth-child(10) { left: 51%; top: 28%; background: #10b981; animation-delay: 0.58s; }
.confetti-piece:nth-child(11) { left: 35%; top: 24%; background: #0284c7; animation-delay: 0.62s; }
.confetti-piece:nth-child(12) { left: 65%; top: 22%; background: #14b8a6; animation-delay: 0.54s; width: 7px; height: 7px; }

@keyframes confettiBurst {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(0.4);
  }
  60% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx, 0), var(--ty, 60px)) rotate(var(--rot, 180deg)) scale(1);
  }
}

.confetti-piece:nth-child(1)  { --tx: -55px;  --ty: -45px; --rot: 140deg; }
.confetti-piece:nth-child(2)  { --tx: 65px;   --ty: -50px; --rot: 220deg; }
.confetti-piece:nth-child(3)  { --tx: -85px;  --ty: -15px; --rot: 90deg; }
.confetti-piece:nth-child(4)  { --tx: 90px;   --ty: -20px; --rot: -130deg; }
.confetti-piece:nth-child(5)  { --tx: -110px; --ty: 30px;  --rot: 240deg; }
.confetti-piece:nth-child(6)  { --tx: 115px;  --ty: 25px;  --rot: -210deg; }
.confetti-piece:nth-child(7)  { --tx: -135px; --ty: 60px;  --rot: 300deg; }
.confetti-piece:nth-child(8)  { --tx: 140px;  --ty: 55px;  --rot: -270deg; }
.confetti-piece:nth-child(9)  { --tx: -20px;  --ty: -65px; --rot: 45deg; }
.confetti-piece:nth-child(10) { --tx: 30px;   --ty: 50px;  --rot: -90deg; }
.confetti-piece:nth-child(11) { --tx: -150px; --ty: 15px;  --rot: 180deg; }
.confetti-piece:nth-child(12) { --tx: 155px;  --ty: 10px;  --rot: -180deg; }

/* Staggered entrance for thank-you content */
.thankyou-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
  animation: fadeInDown 0.6s ease 0.4s both;
}

.thankyou-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--primary-900);
  margin: 0.25rem 0 0.85rem;
  letter-spacing: -0.025em;
  animation: fadeInDown 0.6s ease 0.5s both;
}

.thankyou-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 2rem;
  animation: fadeInDown 0.6s ease 0.6s both;
}

.thankyou-timeline {
  animation: fadeInDown 0.6s ease 0.7s both;
}

.thankyou-actions {
  animation: fadeInDown 0.6s ease 0.8s both;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Apple-Grade Fluid Scroll Reveal & Viewport Transitions
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle fluid card glow & interactive polish */
.card-apple-glow {
  position: relative;
  overflow: hidden;
}

.card-apple-glow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   Legal & Policy Page Styles
   -------------------------------------------------------------------------- */
.policy-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow-apple-sm);
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .policy-card {
    padding: 2rem 1.25rem;
  }
}

.policy-card h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-900);
  margin-top: 2.25rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border-light);
}

.policy-card h2:first-of-type {
  margin-top: 1.25rem;
}

.policy-card p,
.policy-card li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.policy-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.policy-card li {
  margin-bottom: 0.45rem;
}

.policy-card a {
  color: var(--brand-cyan);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-card a:hover {
  color: var(--brand-cyan-dark);
}

.policy-table-container {
  overflow-x: auto;
  margin: 1.5rem 0 2rem 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
  min-width: 620px;
}

.policy-table th {
  background: var(--bg-subtle);
  color: var(--primary-900);
  font-weight: 700;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid var(--border-light);
}

.policy-table td {
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}

.policy-table tr:last-child td {
  border-bottom: none;
}

.policy-table tr:nth-child(even) td {
  background: #fafbfc;
}

.policy-meta-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.35rem;
  margin-top: 1.25rem;
  border-left: 4px solid var(--brand-cyan);
}

