/* Import Google Fonts - Inter for body, Outfit for headings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

:root {
  /* Colors */
  --primary-main: #4c40d4;
  --primary-hover: #3a30a8;
  --primary-light: #efecfc;
  --secondary-main: #0b1c39;
  --accent-purple-light: #e5e2fa;
  --accent-purple-medium: #aca2f2;
  
  --bg-white: #ffffff;
  --bg-off-white: #f8f7fc;
  --bg-section-grey: #f3f3f7;
  
  --text-dark: #0b1c39;
  --text-medium-grey: #4a4a4a;
  --text-light-grey: #7a7a7a;
  --text-white: #ffffff;
  
  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --section-padding: 80px;
  --container-max-width: 1200px;
  --grid-gap: 24px;

  /* Fonts */
  --font-primary: 'Inter', Arial, Helvetica, sans-serif;
  --font-headings: 'Outfit', Arial, Helvetica, sans-serif;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-medium-grey);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-family: var(--font-headings);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
}

h2 {
  font-family: var(--font-headings);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h3 {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

h4 {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

p.large {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-medium-grey);
}

p.small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-light-grey);
}

.label-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary-main);
  background-color: var(--primary-light);
  padding: 6px 12px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: var(--spacing-md);
}

/* Links */
a.custom-link {
  color: var(--primary-main);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
}

a.custom-link:hover {
  color: var(--primary-hover);
}

/* Grid & Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap);
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

/* Buttons */
.btn {
  background: var(--primary-main);
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 24px;
  border: none;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 64, 212, 0.3);
}

.btn:active {
  transform: scale(0.95);
}

.btn-outline {
  border: 2px solid var(--primary-main);
  color: var(--primary-main);
  background: transparent;
  padding: 10px 26px;
}

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

/* Navigation Header */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary-main);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--primary-main);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-main);
}

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

.nav-phone {
  font-weight: 600;
  color: var(--primary-main);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.mobile-menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-dark);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: var(--bg-white);
  z-index: 999;
  padding: var(--spacing-xl);
  overflow-y: auto;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: var(--spacing-lg);
}

.mobile-nav-link {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--bg-section-grey);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-main);
}

/* Sections */
section {
  padding: var(--section-padding) 0;
}

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

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--spacing-xxl) auto;
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

/* Hero Section */
.hero-section {
  padding-top: 140px;
  padding-bottom: var(--section-padding);
  background: var(--bg-off-white);
  overflow: hidden;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  margin-bottom: var(--spacing-lg);
}

.hero-content p {
  margin-bottom: var(--spacing-xl);
  color: var(--text-medium-grey);
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1.1;
  background-color: var(--primary-light);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stat Badge */
.stat-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  background: var(--primary-main);
  color: var(--text-white);
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(76, 64, 212, 0.25);
  z-index: 10;
}

/* Floating Card */
.floating-card {
  position: absolute;
  bottom: 25px;
  right: -20px;
  background: rgba(11, 28, 57, 0.88);
  backdrop-filter: blur(10px);
  color: var(--text-white);
  padding: 20px;
  border-radius: 12px;
  width: 250px;
  box-shadow: 0 10px 30px rgba(11, 28, 57, 0.15);
  z-index: 10;
}

.floating-card h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: var(--spacing-xs);
}

.floating-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Cards (Default and Hover) */
.custom-card {
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef0f5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--bg-section-grey);
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.custom-card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Services overlays (Plus icon overlay) */
.plus-icon-overlay {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  width: 40px;
  height: 40px;
  background-color: var(--primary-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 22px;
  font-weight: 400;
  box-shadow: 0 4px 10px rgba(76, 64, 212, 0.3);
  transition: background-color 0.3s, transform 0.3s;
}

.custom-card:hover .plus-icon-overlay {
  background-color: var(--primary-hover);
  transform: scale(1.1);
}

.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-main);
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.card-desc {
  font-size: 14px;
  color: var(--text-medium-grey);
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Rating Star styling */
.rating-stars {
  display: flex;
  gap: 2px;
  color: #ffc107;
  font-size: 14px;
}

.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.rating-stars svg.empty {
  color: #e0e0e0;
}

/* Process Timeline */
.process-section {
  background: var(--bg-white);
}

.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-xxl);
  align-items: center;
}

.process-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.process-step {
  display: flex;
  gap: var(--spacing-lg);
}

.step-number {
  width: 44px;
  height: 44px;
  background-color: var(--primary-main);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(76, 64, 212, 0.2);
}

.step-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--text-dark);
}

.step-details p {
  font-size: 14px;
  color: var(--text-medium-grey);
  line-height: 1.5;
}

/* Stats Dashboard */
.stats-section {
  background: var(--secondary-main);
  color: var(--text-white);
}

.stats-section h2 {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
}

.stats-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--spacing-xxl);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: var(--spacing-xl) var(--spacing-lg);
  text-align: center;
  transition: transform 0.3s;
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-num {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent-purple-medium);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Testimonials Carousel (Alternating layouts) */
.testimonials-section {
  background-color: var(--bg-white);
  overflow-x: hidden;
}

.testimonials-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: var(--spacing-xxl) var(--spacing-xl);
  text-align: center;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--bg-off-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.02);
}

.testimonial-quote {
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.testimonial-author {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-main);
  margin-top: var(--spacing-sm);
}

.testimonial-role {
  font-size: 13px;
  color: var(--text-light-grey);
  margin-top: 2px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #d1d5db;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: var(--primary-main);
  width: 24px;
  border-radius: 5px;
}

/* FAQ Accordion (Accordion style: light grey bg, active item purple rounded border) */
.faq-section-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--spacing-xxl);
  align-items: flex-start;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-accordion-item {
  background-color: var(--bg-off-white);
  border-radius: 12px;
  border: 1px solid #eef0f5;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 0 var(--spacing-lg);
}

.faq-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding-right: var(--spacing-md);
}

.faq-icon {
  width: 20px;
  height: 20px;
  stroke: var(--primary-main);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-bottom: 0;
}

.faq-accordion-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-medium-grey);
}

/* Active FAQ Item border and padding expansion */
.faq-accordion-item.active {
  border: 2px solid var(--primary-main);
  background-color: var(--bg-white);
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-accordion-item.active .faq-icon {
  transform: rotate(90deg);
}

.faq-imagery {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.faq-imagery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Review Modal (Interactive modal on reviews page) */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 28, 57, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.modal-overlay.active {
  display: flex;
}

.modal-card {
  background: var(--bg-white);
  border-radius: 20px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  animation: modalFadeIn 0.3s ease-out;
}

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

.modal-header {
  position: relative;
  height: 300px;
  background-color: var(--bg-section-grey);
}

.modal-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(11, 28, 57, 0.7);
  border: none;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.modal-close-btn:hover {
  background: var(--primary-main);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.modal-body {
  padding: var(--spacing-xl) var(--spacing-xxl);
}

.modal-tags {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  align-items: center;
}

.modal-score {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-main);
  margin-left: auto;
}

.modal-title {
  margin-bottom: var(--spacing-md);
}

.modal-text {
  font-size: 15px;
  color: var(--text-medium-grey);
  line-height: 1.7;
}

.modal-text p {
  margin-bottom: var(--spacing-md);
}

/* Forms (Contact form inputs) */
.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
  background: var(--bg-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--text-dark);
  width: 100%;
  font-family: var(--font-primary);
  font-size: 15px;
}

.form-control:focus {
  border-color: var(--primary-main);
  outline: none;
  box-shadow: 0 0 0 3px rgba(76, 64, 212, 0.1);
}

.form-control.error {
  border-color: #e74c3c;
}

/* Contact Info blocks */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--spacing-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-main);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.contact-info-details h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-details p {
  font-size: 14px;
  color: var(--text-medium-grey);
}

/* Footer Section */
footer.site-footer {
  background: var(--secondary-main);
  color: var(--text-white);
  padding: 60px 0 30px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--spacing-xxl);
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--text-white);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  font-size: 24px;
}

.footer-brand h3 span {
  color: var(--primary-main);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.footer-title {
  color: var(--text-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  font-family: var(--font-headings);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-link a {
  color: var(--text-white);
  text-decoration: none;
  transition: opacity 0.2s ease;
  opacity: 0.8;
}

.footer-link a:hover {
  opacity: 1;
  color: var(--accent-purple-medium);
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.footer-bottom p {
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-icon:hover {
  background: var(--primary-main);
  transform: translateY(-2px);
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--primary-main);
  color: var(--text-white);
  border-radius: 20px;
  padding: 50px 40px;
  text-align: center;
  margin-top: var(--spacing-xxl);
  box-shadow: 0 10px 30px rgba(76, 64, 212, 0.25);
}

.cta-banner h2 {
  color: var(--text-white);
  margin-bottom: var(--spacing-md);
  font-size: 32px;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto var(--spacing-lg) auto;
  color: rgba(255, 255, 255, 0.9);
}

.cta-banner .btn {
  background: var(--text-white);
  color: var(--primary-main);
}

.cta-banner .btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* Pages generic layouts */
.inner-hero {
  padding-top: 140px;
  padding-bottom: 50px;
  background-color: var(--bg-off-white);
  border-bottom: 1px solid #eef0f5;
}

.inner-hero h1 {
  margin-bottom: var(--spacing-sm);
}

/* Privacy Page styling */
.privacy-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.privacy-item {
  display: flex;
  gap: var(--spacing-lg);
}

.privacy-num {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-light);
  color: var(--primary-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-details h2 {
  font-size: 20px;
  margin-bottom: var(--spacing-sm);
  color: var(--text-dark);
}

.privacy-details p {
  color: var(--text-medium-grey);
  line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
  :root {
    --section-padding: 60px;
  }
  
  .container {
    padding: 0 var(--spacing-lg);
  }
  
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 50px;
  }
  
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  
  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .process-layout,
  .faq-section-layout,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .hero-graphic {
    order: -1;
  }
  
  .hero-section {
    padding-top: 110px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu,
  .nav-phone {
    display: none;
  }
  
  .floating-card {
    right: 10px;
    bottom: -15px;
    width: calc(100% - 20px);
  }
  
  .stat-badge {
    left: 10px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .testimonials-wrapper {
    padding: 0 var(--spacing-sm);
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-quote {
    font-size: 16px;
  }
  
  .modal-body {
    padding: var(--spacing-lg) var(--spacing-xl);
  }
  
  .modal-header {
    height: 200px;
  }
  
  .modal-tags {
    flex-wrap: wrap;
  }
  
  .modal-score {
    width: 100%;
    margin-top: var(--spacing-xs);
  }
}
