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

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(37,99,235,.14), 0 8px 24px rgba(0,0,0,.08);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── UTILITY CLASSES ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn-primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-600);
  border: 1.5px solid var(--blue-200);
}
.btn-secondary:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
}
.btn-white:hover {
  background: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
}

.btn-lg {
  padding: 17px 36px;
  font-size: 16px;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--gray-900);
  flex: 1;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-600);
  background: var(--blue-50);
}

.nav-cta {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hamburger {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1000;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE MENU ──────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 999;
  background: var(--white);
  padding: 30px 24px 40px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--gray-100);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.mobile-menu .nav-link {
  padding: 14px 20px;
  font-size: 16px;
  border: 1px solid transparent;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  border-color: var(--blue-200);
}

.mobile-menu .btn {
  margin-top: 12px;
  justify-content: center;
}


/* ── HERO VISUAL ──────────────────────────────────────────── */
.hero-visual {
  position: relative;
  height: 440px;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
}

.hero-card-1 {
  top: 0; left: 0; right: 50px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card-2 {
  top: 160px; right: 0; left: 50px;
  animation: floatCard 6s ease-in-out infinite 1.5s;
}
.hero-card-3 {
  bottom: 0; left: 20px; right: 20px;
  animation: floatCard 6s ease-in-out infinite 3s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-blue { background: var(--blue-50); }
.card-icon-green { background: #f0fdf4; }
.card-icon-amber { background: #fffbeb; }

.card-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 2px;
}

.card-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--gray-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}

.card-sub {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

.card-progress {
  height: 6px;
  background: var(--gray-100);
  border-radius: 100px;
  overflow: hidden;
}

.card-progress-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-600));
}

.card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.card-tag-blue { background: var(--blue-50); color: var(--blue-700); }
.card-tag-green { background: #f0fdf4; color: #15803d; }
.card-tag-gray { background: var(--gray-100); color: var(--gray-600); }

/* ── STATS BAR ────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  padding: 48px 0;
}

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

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ── SECTION PADDING ──────────────────────────────────────── */
.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 60px 0;
}


/* Base Grid Styles (Desktop) */
.real-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.real-problem-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc; /* Optional: light background to define cards */
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .real-problems-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0; /* Reduce massive padding on mobile */
    }

    .real-problems-grid {
        grid-template-columns: 1fr !important; /* Single column for better readability */
        gap: 16px;
    }

    .section-title {
        font-size: 1.75rem; /* Slightly smaller heading for small screens */
    }

    .real-problem-card {
        padding: 15px;
    }
}
.bg-white { background: var(--white); }
.bg-gray  { background: var(--gray-50); }

/* ── ABOUT SECTION ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-block {
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-img-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.about-img-block h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.about-img-block p {
  font-size: 15px;
  line-height: 1.75;
  opacity: .85;
  margin-bottom: 32px;
  position: relative;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.about-float-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 14px;
}

.badge-icon {
  width: 40px; height: 40px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-point-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-point-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.about-point-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── PROBLEM CARDS ────────────────────────────────────────── */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

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

.problem-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.problem-card:hover .problem-card-bg { opacity: 1; }

.problem-card-content {
  position: relative;
  z-index: 1;
}

.problem-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.problem-card:hover .problem-icon { background: rgba(255,255,255,.2); }

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
  transition: var(--transition);
}

.problem-card:hover h3 { color: var(--white); }

.problem-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
  transition: var(--transition);
}

.problem-card:hover p { color: rgba(255,255,255,.85); }

.problem-impact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 4px 12px;
  border-radius: 100px;
  transition: var(--transition);
}

.problem-card:hover .problem-impact {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

/* ── IMPACT BANNER ────────────────────────────────────────── */
.impact-banner {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.impact-banner h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.impact-banner p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 560px;
}

/* ── APPROACH ─────────────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.approach-step {
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.approach-step:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.step-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.approach-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.approach-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── WHO WE SERVE ─────────────────────────────────────────── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.serve-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: var(--transition);
}

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

.serve-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 14px rgba(37,99,235,.3);
}

.serve-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 60%, var(--blue-500) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-inner .section-label {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.9);
}

.cta-inner h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 80px 0 0;
  color: var(--gray-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 14px;
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-col-links a:hover { color: var(--blue-400); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--gray-600); }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-600);
  transition: var(--transition);
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--gray-400); }

/* ── PAGE HERO ────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #eef4ff 0%, #ffffff 100%);
  border-bottom: 1px solid var(--gray-100);
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.75;
}

/* ── SERVICES PAGE ────────────────────────────────────────── */
.service-block {
  padding: 100px 0;
}

.service-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-block-inner.reverse {
  direction: rtl;
}
.service-block-inner.reverse > * {
  direction: ltr;
}

.service-visual {
  background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}

.service-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 180px; height: 180px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.service-visual-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.service-visual h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.service-visual p {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.service-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-content > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.service-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.service-list-item span {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── WHY CHOOSE US ────────────────────────────────────────── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.reason-card {
  padding: 32px 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
}

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

.reason-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 14px;
}

.reason-icon {
  width: 52px; height: 52px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.reason-card:hover .reason-icon {
  background: var(--blue-600);
}

.reason-card:hover .reason-icon svg {
  stroke: var(--white) !important;
}

.reason-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.reason-card p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── REAL PROBLEMS ────────────────────────────────────────── */
.real-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.real-problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.real-problem-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.real-problem-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.real-problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.real-problem-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  max-width: 860px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item:hover,
.faq-item.open {
  border-color: var(--blue-200);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  text-align: left;
  transition: background .2s ease;
}

.faq-question:hover { background: var(--gray-50); }

.faq-icon {
  width: 28px; height: 28px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--blue-600);
  transform: rotate(45deg);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white) !important;
}

.faq-answer {
  padding: 0 28px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  border-top: 0 solid var(--gray-100);
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 20px 28px 28px;
  border-top-width: 1px;
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.contact-info-sub {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
}

.contact-notice {
  margin-top: 36px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-notice p {
  font-size: 13px;
  line-height: 1.6;
}

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
}

.contact-form-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

.form-privacy {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── TOAST ────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--gray-900);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* ── ANIMATIONS ───────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .reasons-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-block-inner { grid-template-columns: 1fr; gap: 48px; }
  .service-block-inner.reverse { direction: ltr; }
  .service-block-inner.reverse > * { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .real-problems-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .problems-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .impact-banner { grid-template-columns: 1fr; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 32px 24px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .about-float-badge { display: none; }
  .reasons-grid { grid-template-columns: 1fr 1fr; }
  .real-problems-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
}


/* ===== PC FREEZE HELP — TESTIMONIALS (pch-testimonials) ===== */

.pch-testimonials {
    padding: 80px 20px;
    background-color: #f0f4f8;
}

.pch-testimonials__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.pch-testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.pch-testimonials__label {
    display: inline-block;
    padding: 6px 18px;
    border: 1.5px solid #b0c4de;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3b5a8a;
    background-color: #e8eef7;
    margin-bottom: 16px;
}

.pch-testimonials__title {
    font-size: 42px;
    font-weight: 800;
    color: #0f1c2e;
    margin: 12px 0 14px;
    line-height: 1.15;
}

.pch-testimonials__subtitle {
    font-size: 16px;
    color: #6b7a8d;
    margin: 0;
}

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

@media (max-width: 900px) {
    .pch-testimonials__grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.pch-testimonials__card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px 26px 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.2s ease;
}

.pch-testimonials__card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

/* Stars */
.pch-testimonials__stars {
    display: flex;
    gap: 3px;
    align-items: center;
}

/* Quote */
.pch-testimonials__quote {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    flex: 1;
}

/* Author */
.pch-testimonials__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.pch-testimonials__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #2d5fcf;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.pch-testimonials__author-info {
    display: flex;
    flex-direction: column;
}

.pch-testimonials__author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

.pch-testimonials__author-company {
    font-size: 13px;
    color: #8a94a6;
    margin-top: 2px;
}

@media (min-width: 768px) {
    #hamburger-menu {
        display: none !important
        ;
    }
}

@media (max-width: 768px) {
    #hamburger-menu {
        display:block !important; 
        ;
    }
}


/* Custom styling to match your screenshot */
.custom-input {
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
}

/* When validation fails */
.custom-input.is-invalid {
    border-color: #ff0000 !important;
    background-image: none; /* Removes Bootstrap's default exclamation icon if preferred */
}

.error-msg {
    font-weight: 500;
    color: #ff0000 !important;
}

.btn-primary {
    background-color: #0066ff;
    border: none;
    border-radius: 8px;
}
    .iti {
      width: 100%;
    }

    /* Ensures phone input fills the column */
    .error-msg {
      display: block;
      color: #ff0000;
      font-size: 11px;
      margin-top: 12px;
      /* Pulls the message up closer to the input */
      margin-bottom: 10px;
      height: 12px;
      font-weight: 500;
    }

    .form-control.is-invalid {
      border-color: #ff5e91 !important;
    }

    .form-control.is-invalid {
      border-color: #ff5e91 !important;
    }







  /* Unique prefix to prevent style bleed */
  .usp-form-container .usp-input {
    border-radius: 6px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .usp-form-container .usp-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    outline: 0;
  }

  .usp-form-container .usp-submit-btn {
    width: 100%;
    background: #0d6efd;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.1s ease;
    cursor: pointer;
  }

  .usp-form-container .usp-submit-btn:hover {
    background: #0b5ed7;
  }

  .usp-form-container .usp-submit-btn:active {
    transform: scale(0.98);
  }

  .usp-form-container .usp-error-text {
    color: #dc3545;
    font-size: 11px;
    margin-top: -10px;
    margin-bottom: 10px;
    font-weight: 500;
    display: block;
  }


  /* /* /* --- PREMIUM BOXED HERO --- */
.boxed-hero-wrapper {
    --brand-blue: #3b82f6;
    --brand-dark: #0f172a;
    --brand-slate: #64748b;
    
    padding: 60px 20px;
    background-color: #f8fafc; /* Subtle background to make the boxed white area pop */
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* The Main Boxed Container */
.boxed-hero-container {
    max-width: 1200px; /* Constrained width like your website */
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

/* Left Section: Content */
.boxed-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.boxed-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 850;
    line-height: 1.1;
    color: var(--brand-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.boxed-title span {
    color: var(--brand-blue);
}

.boxed-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--brand-slate);
    margin-bottom: 40px;
}

/* Feature List */
.boxed-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.boxed-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-dark);
}

/* CTA Styles */
.boxed-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-boxed-primary {
    background: var(--brand-blue);
    color: #fff;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-boxed-secondary {
    color: var(--brand-dark);
    font-weight: 600;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.btn-boxed-primary:hover { transform: translateY(-2px); filter: brightness(1.1); }

/* Right Section: Image */
.boxed-image {
    position: relative;
    background-image: url('images/reliable-computer-support.png');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* Floating Card from UI Ref */
.boxed-floating-card {
    position: absolute;
    bottom: 10px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 260px;
}

.card-icon-blue {
    color: var(--brand-blue);
    background: #eff6ff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .boxed-hero-container { grid-template-columns: 1fr; }
    .boxed-content { padding: 40px 30px; order: 2; }
    .boxed-image { height: 350px; min-height: auto; order: 1; }
    .boxed-actions { flex-direction: column; }
    .btn-boxed-primary, .btn-boxed-secondary { width: 100%; text-align: center; }
} */



/* --- SCOPED TECHNOLOGY CHALLENGES SECTION --- */
.tc-section {
    padding: 80px 0;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.tc-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER HIERARCHY --- */
.tc-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.tc-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.tc-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    color: #0f172a;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.tc-subtitle {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* --- SQUARE GRID SYSTEM --- */
.tc-grid {
    display: grid;
    gap: 12px;
    /* MOBILE: Force 2 cards per row */
    grid-template-columns: repeat(2, 1fr);
}

.tc-card {
    position: relative;
    border-radius: 16px;
    /* SQUARE FIX: 1/1 ratio ensures width equals height */
    aspect-ratio: 1 / 1; 
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 70%);
    z-index: 1;
}

.tc-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px; /* Tighter padding for square fit */
}

.tc-issue-name {
    color: #ffffff;
    font-size: clamp(13px, 3vw, 16px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.tc-action {
    color: #60a5fa;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (min-width: 768px) {
    .tc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .tc-content { padding: 20px; }
}

@media (min-width: 1024px) {
    .tc-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* --- MINIMALIST FOOTER DISCLAIMER --- */
.site-footer-legal {
    padding: 60px 0 40px;
    background-color: #efefef; /* Clean white background */
    border-top: 1px solid #e2e8f0; /* Very subtle light gray line */
    font-family: 'Inter', -apple-system, sans-serif;
}

.legal-container {
    max-width: 1600px; /* Narrower width for better readability */
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content {
    text-align: center;
}

.legal-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b; /* Soft slate gray */
    font-weight: 400;
    margin: 0;
}

/* Responsive adjustment for iPhone XR and smaller */
@media (max-width: 768px) {
    .site-footer-legal {
        padding: 40px 0 30px;
    }
    .legal-text {
        font-size: 12px;
        line-height: 1.6;
        color: #475569; /* Slightly darker for better mobile contrast */
    }
}



/* --- PREMIUM ZIGZAG SERVICES SECTION --- */
.services-zigzag-wrapper {
    --zz-blue: #3b82f6;
    --zz-dark: #0f172a;
    --zz-slate: #64748b;
    --zz-light-bg: #f8fafc;
    --zz-border: #e2e8f0;
    
    padding: 100px 20px;
    background-color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

.zz-container {
    max-width: 1140px;
    margin: 0 auto;
}

/* Header */
.zz-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.zz-header h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: var(--zz-dark);
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0 0 16px 0;
}

.zz-header p {
    font-size: 18px;
    color: var(--zz-slate);
    line-height: 1.6;
}

/* The Alternating Row */
.zz-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px; /* Space between zigzags */
}

/* Remove margin from last row */
.zz-row:last-child {
    margin-bottom: 0;
}

/* Content Side */
.zz-content {
    display: flex;
    flex-direction: column;
}

.zz-badge {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--zz-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.zz-badge span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #eff6ff;
    border-radius: 6px;
    margin-right: 10px;
}

.zz-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--zz-dark);
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.zz-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--zz-slate);
    margin-bottom: 30px;
}

.zz-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zz-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--zz-dark);
    font-weight: 500;
}

.zz-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--zz-blue);
}

.zz-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--zz-blue);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.zz-cta:hover {
    gap: 12px; /* Smooth arrow slide effect */
}

/* Image Side */
.zz-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.zz-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3; /* Keeps all images perfectly uniform */
    transition: transform 0.5s ease;
}

.zz-visual:hover img {
    transform: scale(1.03);
}

/* Responsive Reordering for Mobile */
@media (max-width: 992px) {
    .zz-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    /* Force image to always be on top on mobile devices */
    .zz-visual { order: -1; }
    
    /* Remove the CSS order switching for mobile */
    .zz-row:nth-child(even) .zz-content { order: 2; }
}

/* Styling for the 'Problem' emphasis */
.zz-problem-highlight {
    display: block;
    color: #ef4444; /* Alert Red */
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.zz-desc strong {
    color: var(--zz-dark);
    font-weight: 700;
}

/* Subtle border on image to make it look 'framed' like your reference */
.zz-visual {
    border: 1px solid var(--zz-border);
    background: #fff;
}

/* --- SHARED LEGAL UI (Privacy & TOS) --- */
:root {
    --pc-legal-bg: #f8fafc;
    --pc-legal-card-bg: #ffffff;
    --pc-legal-text-main: #0f172a;
    --pc-legal-text-muted: #475569;
    --pc-legal-border: #e2e8f0;
    --pc-legal-accent: #3b82f6;
}

.pc-legal-wrapper {
    background-color: var(--pc-legal-bg);
    padding: 80px 20px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--pc-legal-text-main);
    line-height: 1.8;
}

.pc-legal-container {
    max-width: 850px;
    margin: 0 auto;
}

.pc-legal-card {
    background: var(--pc-legal-card-bg);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid var(--pc-legal-border);
    box-shadow: 0 4px 25px rgba(15, 23, 42, 0.04);
}

.pc-legal-header {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--pc-legal-border);
    text-align: center;
}

.pc-legal-header h1 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 850;
    letter-spacing: -0.03em;
    margin: 0 0 12px 0;
    color: var(--pc-legal-text-main);
}

.pc-legal-header p {
    color: var(--pc-legal-text-muted);
    font-size: 15px;
    font-weight: 500;
}

.pc-legal-section {
    margin-bottom: 45px;
}

.pc-legal-section:last-child {
    margin-bottom: 0;
}

.pc-legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--pc-legal-text-main);
}

.pc-legal-section p, 
.pc-legal-section ul {
    font-size: 16px;
    color: var(--pc-legal-text-muted);
    margin-bottom: 18px;
}

.pc-legal-section ul {
    padding-left: 20px;
}

.pc-legal-section li {
    margin-bottom: 12px;
}

.pc-legal-section strong {
    color: var(--pc-legal-text-main);
    font-weight: 600;
}

/* Minimal Contact Box */
.pc-legal-contact-box {
    background-color: var(--pc-legal-bg);
    border: 1px solid var(--pc-legal-border);
    border-radius: 12px;
    padding: 30px;
    margin-top: 25px;
}

.pc-legal-contact-box a {
    color: var(--pc-legal-accent);
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pc-legal-wrapper { padding: 40px 15px; }
    .pc-legal-card { padding: 40px 25px; }
    .pc-legal-header { margin-bottom: 30px; }
}


/* --- Base Row Styles --- */
.zz-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px; /* Reduced margin since we're using padding now */
    padding: 60px 40px;  /* Adds space inside the colored section */
    border-radius: 20px; /* Smooth corners for the section */
    transition: transform 0.3s ease;
}

/* --- Alternating Background Colors --- */
/* This targets rows 2, 4, 6... */
.zz-row:nth-child(even) {
    background-color: #f4f7ff; /* Very light professional blue */
    border: 1px solid #e1e8f5;
}

/* This targets rows 1, 3, 5... */
.zz-row:nth-child(odd) {
    background-color: #ffffff; /* Clean white */
}

/* Hover effect to make it feel interactive */
.zz-row:hover {
    transform: translateY(-5px);
}

.zz-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow for depth */
}

/* --- Desktop Zigzag --- */
@media (min-width: 992px) {
    .zz-row:nth-child(even) {
        flex-direction: row-reverse;
    }
    
    .zz-content {
        flex: 1;
        padding-right: 20px;
    }

    .zz-visual {
        flex: 1;
    }
}

/* --- Mobile Hierarchy & UI --- */
@media (max-width: 991px) {
    .zz-row {
        flex-direction: column !important;
        padding: 40px 20px; /* Smaller padding on mobile */
        gap: 30px;
        text-align: center;
    }

    .zz-content {
        order: 1; /* Text stays on top */
    }

    .zz-visual {
        order: 2; /* Image stays on bottom */
    }
    
    .zz-list {
        display: inline-block;
        text-align: left;
    }
}