/* ===== CUSTOM PROPERTIES ===== */
:root {
  --blue: #1976B5;
  --blue-light: #2488CC;
  --blue-dark: #0F5A8C;
  --blue-deeper: #0C3D5F;
  --pink: #E2286B;
  --pink-light: #f04d8a;
  --pink-dark: #c01d5a;
  --gold: #F2BC65;
  --gold-light: #f5cc88;
  --gold-dark: #d9a44e;

  --white: #ffffff;
  --gray-50: #f5f8fb;
  --gray-100: #edf2f7;
  --gray-200: #dce4ed;
  --gray-300: #b8c7d6;
  --gray-400: #8a9bb0;
  --gray-500: #5f7389;
  --gray-600: #435568;
  --gray-700: #2d3d4e;
  --gray-800: #1a2a3a;
  --gray-900: #0f1c28;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-padding: 5rem 1.5rem;
  --section-padding-sm: 3rem 1rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow: 0 4px 12px rgba(25, 118, 181, 0.08);
  --shadow-lg: 0 12px 32px rgba(25, 118, 181, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
body {
  font-family: var(--font-sans);
  color: var(--gray-700);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.7;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--blue-deeper);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { color: var(--blue-deeper); font-weight: 600; }

/* ===== LINKS ===== */
.text-link {
  color: var(--pink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.text-link:hover { color: var(--pink-dark); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(226, 40, 107, 0.25);
}
.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(226, 40, 107, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-secondary:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-deeper);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-gold {
  background: var(--gold);
  color: var(--blue-deeper);
  box-shadow: 0 4px 12px rgba(242, 188, 101, 0.3);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.125rem; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--pink);
  background: var(--gray-50);
}

.nav-link .arrow {
  font-size: 0.625rem;
  transition: transform 0.2s;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 50;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

.dropdown a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--gray-700);
  font-size: 0.875rem;
  border-radius: 0.375rem;
  transition: var(--transition);
}
.dropdown a:hover {
  background: var(--gray-50);
  color: var(--pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}
.lang-toggle:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deeper);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue) 50%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 5rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 40, 107, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(242, 188, 101, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.375rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--gray-50);
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.stat-number {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding);
}

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

.section-header p {
  color: var(--gray-500);
  font-size: 1.125rem;
  margin-top: 0.75rem;
}

.section-alt {
  background: var(--gray-50);
}

/* ===== FEATURE CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink) 0%, var(--gold) 100%);
}

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

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.card .btn {
  margin-top: 1.25rem;
}

.card-highlight {
  border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(226, 40, 107, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 2.5rem;
  margin: 1.5rem 0;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -0.25rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--gray-200);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  color: var(--gray-700);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--blue-deeper);
  font-size: 0.875rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* ===== PARTNERS ===== */
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.partners-grid span {
  color: var(--gray-400);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

/* ===== PROCESS STEPS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--gold) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  color: var(--white);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(226, 40, 107, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-section .btn { position: relative; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 3.5rem 1.5rem 4rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.125rem; max-width: 650px; margin: 0 auto; }

/* ===== CONTENT PROSE ===== */
.prose {
  max-width: 800px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.prose ul {
  padding-left: 0;
  margin: 1.5rem 0;
}

.prose ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.625rem;
}

.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  border-radius: 50%;
}

.prose p {
  color: var(--gray-600);
  font-size: 1.0625rem;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--pink);
  box-shadow: 0 8px 24px rgba(226, 40, 107, 0.15);
  position: relative;
}

.pricing-card.featured::after {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-deeper);
  margin: 1rem 0 0.25rem;
}

.price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* ===== ALERT/CALLOUT ===== */
.callout {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.callout p {
  color: var(--gray-700);
  font-size: 0.9375rem;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.faq-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--blue-deeper);
}

.faq-item p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.value-card h4 {
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--blue-deeper);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand p {
  font-size: 0.9375rem;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}
.social-links a:hover { color: var(--gold); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 0.75rem 1.5rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs nav {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

.breadcrumbs a {
  color: var(--gray-500);
  transition: var(--transition);
}
.breadcrumbs a:hover { color: var(--pink); }

.breadcrumbs span { margin: 0 0.5rem; }

/* ===== DIVIDER ===== */
.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gray-200) 20%, var(--gray-200) 80%, transparent 100%);
  margin: 3rem 0;
}

/* ===== ANIMATE ON SCROLL ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 3rem 1rem;
  }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open { display: flex; }

  .nav-item { width: 100%; }
  .nav-link { padding: 0.75rem 1rem; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: none;
  }

  .nav-item.open .dropdown { display: block; }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 3rem 1rem 4rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-section {
    padding: 3rem 1.5rem;
    border-radius: 0;
    margin: 0 -1.5rem;
  }

  .testimonial {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn { width: 100%; justify-content: center; }

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

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


/* Updated footer styles to match cf6.co.uk format */
.footer-copyright {
  font-size: 0.875rem;
  color: #999;
  margin: 0;
}

.site-name {
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.vanish-link {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.vanish-link:hover {
  color: #ccc;
}

.flask-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #777;
}