/* ============================================================
   UKTollFree.com — Complete Stylesheet
   Brand: Deep Navy #0f2d6b | Accent Gold #f59e0b | White
   Font: Inter (Google Fonts)
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --primary:        #0f2d6b;
  --primary-light:  #1a4db5;
  --primary-dark:   #081a45;
  --primary-glow:   rgba(15, 45, 107, 0.15);
  --accent:         #f59e0b;
  --accent-dark:    #d97706;
  --accent-light:   #fef3c7;
  --success:        #10b981;
  --danger:         #ef4444;

  --text:           #0f172a;
  --text-muted:     #64748b;
  --text-light:     #94a3b8;

  --bg-white:       #ffffff;
  --bg-light:       #f0f5ff;
  --bg-section:     #f8faff;
  --border:         #e2e8f0;
  --border-light:   #f1f5f9;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.14);

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill: 9999px;

  --transition: 0.25s ease;
  --transition-slow: 0.45s ease;

  --max-width:  1200px;
  --container-px: 24px;

  --header-h: 76px;
}

/* ===== 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: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  font-weight: 700;
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.mt-24 { margin-top: 24px; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Data animate classes */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate].animated {
  opacity: 1;
  transform: none;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(8, 26, 69, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.brand-logo-sm { width: 34px; height: 34px; font-size: 15px; border-radius: 8px; }

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}
.brand-name strong { color: var(--accent); }
.site-header.scrolled .brand-name { color: var(--text); }
.site-header.scrolled .brand-name strong { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.site-header.scrolled .nav-link { color: var(--text-muted); }
.site-header.scrolled .nav-link:hover { color: var(--primary); background: var(--bg-light); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--accent); }
.site-header.scrolled .nav-phone { color: var(--text-muted); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: var(--primary-dark);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #060e2a 0%, #0f2d6b 50%, #1a4db5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: radial-gradient(circle, #fff, transparent);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.shape-3 { width: 300px; height: 300px; top: 40%; left: 40%; opacity: 0.04; }

.hero .container { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 80px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge i { color: var(--success); }

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-highlight {
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-features li i {
  color: var(--success);
  font-size: 14px;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-avatars {
  display: flex;
}
.avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent), #fbbf24);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-right: -8px;
}
.hero-trust p { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-trust strong { color: #fff; }

/* Hero Visual / Card */
.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.hero-card-header {
  background: rgba(0,0,0,0.2);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.hc-dot.green { background: #34d399; }
.hc-dot.yellow { background: #fbbf24; }
.hc-dot.red { background: #f87171; }

.hero-card-body { padding: 24px; }

.hc-number {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 20px;
}
.hc-number i { font-size: 28px; color: var(--accent); }
.hc-num-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.hc-num-value { font-size: 22px; font-weight: 800; color: #fff; letter-spacing: 1px; }
.badge-live {
  margin-left: auto;
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
}

.hc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.hc-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.hc-stat-num { font-size: 20px; font-weight: 800; color: var(--accent); }
.hc-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }

.hc-routing {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.hc-routing-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hc-routing-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.hc-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.hc-step.active {
  background: rgba(15, 45, 107, 0.5);
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--accent);
}
.hc-routing-steps i { color: rgba(255,255,255,0.3); font-size: 11px; }

.hc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.hc-cost-caller { display: flex; align-items: center; gap: 6px; }
.hc-cost-caller i { color: rgba(255,255,255,0.3); }
.green-text { color: #34d399 !important; }

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
}
.hero-wave svg { width: 100%; height: 100%; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--bg-section);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== WHAT IS 0800 ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.section-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.check-item i { color: var(--success); font-size: 16px; margin-top: 2px; flex-shrink: 0; }

/* Info Card Stack */
.info-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card {
  border-radius: var(--radius);
  padding: 24px;
}
.info-card i { font-size: 24px; margin-bottom: 12px; }
.info-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.info-card p { font-size: 14px; line-height: 1.6; }
.ic-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.ic-blue { background: linear-gradient(135deg, #0f2d6b, #1a4db5); color: #fff; }
.ic-blue .ic-tag { background: rgba(255,255,255,0.15); color: #fff; }

.ic-navy { background: linear-gradient(135deg, #060e2a, #0f2d6b); color: #fff; }
.ic-navy .ic-tag { background: rgba(245,158,11,0.2); color: var(--accent); }

.ic-light { background: var(--bg-light); color: var(--text); border: 1px solid var(--border); }
.ic-light .ic-tag { background: var(--primary); color: #fff; }

/* ===== WHO IS IT FOR ===== */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.who-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.who-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--primary);
}
.who-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.who-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 48px;
  color: var(--border);
  font-size: 24px;
  padding-left: 8px;
  padding-right: 8px;
}
.step-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  border: 3px solid var(--bg-white);
}
.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bg-light), #dce8ff);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary);
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.how-cta { text-align: center; margin-top: 56px; }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 16px;
}
.fc-blue   { background: linear-gradient(135deg, #0f2d6b, #1a4db5); }
.fc-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.fc-red    { background: linear-gradient(135deg, #dc2626, #ef4444); }
.fc-green  { background: linear-gradient(135deg, #059669, #10b981); }
.fc-orange { background: linear-gradient(135deg, #d97706, #f59e0b); }
.fc-teal   { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.fc-pink   { background: linear-gradient(135deg, #be185d, #ec4899); }
.fc-indigo { background: linear-gradient(135deg, #4338ca, #6366f1); }
.fc-yellow { background: linear-gradient(135deg, #b45309, #f59e0b); }

.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-featured {
  background: linear-gradient(160deg, #0f2d6b, #1a4db5);
  border-color: var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-xl);
  z-index: 1;
}
.pricing-featured:hover { transform: scale(1.04); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.plan-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.pricing-featured .plan-name { color: #fff; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-currency { font-size: 22px; font-weight: 700; color: var(--primary); }
.pricing-featured .price-currency { color: var(--accent); }
.price-amount { font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; }
.pricing-featured .price-amount { color: #fff; }
.price-period { font-size: 14px; color: var(--text-muted); }
.pricing-featured .price-period { color: rgba(255,255,255,0.6); }

.plan-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.pricing-featured .plan-desc { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.pricing-featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li i.fa-check { color: var(--success); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.plan-features li i.fa-xmark { color: var(--text-light); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.feature-no { opacity: 0.45; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pricing-note i { color: var(--success); }
.pricing-note a { color: var(--primary); font-weight: 600; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  border-top: 4px solid var(--primary);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.tc-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--accent); font-size: 14px; }
.tc-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.tc-name { font-size: 15px; font-weight: 700; color: var(--text); }
.tc-title { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

/* ===== FAQ ===== */
.faq .container { max-width: 800px; }
.faq-header { margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
  transition: all var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-white);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.faq-question:hover { background: var(--bg-light); color: var(--primary); }
.faq-item.open .faq-question { background: var(--bg-light); color: var(--primary); }
.faq-icon { color: var(--text-muted); font-size: 14px; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--text-muted);
}
.faq-cta a { color: var(--primary); font-weight: 600; }

/* ===== LEAD FORM ===== */
.get-quote {
  background: linear-gradient(135deg, #060e2a 0%, #0f2d6b 100%);
  padding: 100px 0;
}

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

.tag-light {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.quote-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.quote-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 32px;
}

.quote-promises {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.promise-item i { color: var(--accent); width: 20px; }

.quote-contact { margin-top: 8px; }
.quote-contact > p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.quote-phone,
.quote-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.quote-phone:hover, .quote-email:hover { color: #fbbf24; }
.quote-powered { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 16px; }
.quote-powered a { color: rgba(255,255,255,0.5); }

/* Form */
.quote-form-wrap {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.quote-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-white);
  transition: all var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--primary-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group select { -webkit-appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-consent { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.checkbox-label input[type=checkbox] { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); cursor: pointer; }
.checkbox-label a { color: var(--primary); }

.form-note { text-align: center; font-size: 12px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 4px; }
.form-note i { color: var(--success); }

/* Form success */
.form-success {
  text-align: center;
  padding: 40px 24px;
}
.success-icon { font-size: 64px; color: var(--success); margin-bottom: 16px; }
.form-success h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.form-success p { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.blog-img-1 { background: linear-gradient(135deg, #0f2d6b 0%, #1a4db5 100%); }
.blog-img-2 { background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%); }
.blog-img-3 { background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%); }
.blog-category {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-content { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta i { margin-right: 4px; }
.blog-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-title a { color: var(--text); }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.blog-link:hover { gap: 10px; color: var(--primary-light); }
.blog-cta { text-align: center; margin-top: 48px; }

/* ===== BOTTOM CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #081a45 0%, #0f2d6b 50%, #1a4db5 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.08), transparent);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.cta-shape-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent);
  bottom: -150px; left: -100px;
  border-radius: 50%;
}
.cta-content { text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
}
.footer-top { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand a { text-decoration: none; }
.footer-brand-desc { font-size: 14px; line-height: 1.7; margin: 16px 0 12px; color: rgba(255,255,255,0.55); }
.footer-powered { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer-powered a { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact i { font-size: 13px; color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-links a:hover { color: var(--accent); }
.footer-ofcom { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.65; margin-top: 8px; }
.footer-ofcom a { color: var(--accent); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-light); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-item:nth-child(4), .trust-item:nth-child(5) { border-top: 1px solid var(--border); }
  .two-col-grid { grid-template-columns: 1fr; gap: 48px; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --container-px: 16px; }
  .section { padding: 72px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(5) { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-cta { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 32px; }
  .pricing-featured { transform: none; }
}
