/* ══════════════════════════════════════════
   INDEX1 — Premium Dark (Not Black) Theme
   Rich, Alive, Content Heavy
   ══════════════════════════════════════════ */

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

:root {
  /* Deep Slate/Navy Blue instead of pure black */
  --sys-bg: #0b1121;
  --sys-surface: #1e293b;
  --sys-card: rgba(30, 41, 59, 0.7);
  --sys-card-hover: rgba(51, 65, 85, 0.8);

  --sys-primary: #0ea5e9;
  --sys-accent: #2dd4bf;
  --sys-highlight: #38bdf8;

  --sys-text: #f8fafc;
  --sys-muted: #94a3b8;
  --sys-glass-border: rgba(255, 255, 255, 0.08);

  --sys-grad-1: linear-gradient(135deg, #0ea5e9, #2dd4bf);
  --sys-grad-2: linear-gradient(135deg, #3b82f6, #8b5cf6);
  --sys-grad-dark: linear-gradient(180deg, #0b1121 0%, #1e293b 100%);

  --sys-radius: 24px;
  --sys-radius-sm: 16px;

  --sys-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  --sys-shadow-glow: 0 10px 40px rgba(14, 165, 233, 0.2);
}

body {
  background-color: var(--sys-bg);
  color: var(--sys-text);
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  background-image:
    radial-gradient(
      circle at 15% 50%,
      rgba(14, 165, 233, 0.06),
      transparent 25%
    ),
    radial-gradient(
      circle at 85% 30%,
      rgba(45, 212, 191, 0.06),
      transparent 25%
    );
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--sys-text);
  margin: 0;
}
p {
  color: var(--sys-muted);
  line-height: 1.7;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ── Typography Utilities ── */
.text-grad {
  background: var(--sys-grad-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-grad-2 {
  background: var(--sys-grad-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sys-primary);
  margin-bottom: 24px;
}

/* ── BREADCRUMBS VARIANTS ── */
.sys-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.sys-breadcrumbs a {
  color: var(--sys-muted);
  transition: 0.3s;
}
.sys-breadcrumbs a:hover {
  color: var(--sys-highlight);
}
.sys-breadcrumbs i {
  font-size: 0.75rem;
  color: var(--sys-primary);
}
.sys-breadcrumbs span {
  color: var(--sys-text);
  font-weight: 600;
}

/* Style 1: Glass Pill (Default) */
.breadcrumb-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--sys-glass-border);
  padding: 8px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

/* Style 2: Minimal Transparent */
.breadcrumb-minimal {
  background: transparent;
  padding: 0;
  border: none;
}
.breadcrumb-minimal a {
  color: var(--sys-accent);
}

/* Style 3: Solid Block */
.breadcrumb-solid {
  background: var(--sys-card-bg);
  border: 1px solid var(--sys-glass-border);
  border-left: 4px solid var(--sys-primary);
  padding: 12px 24px;
  border-radius: 4px;
}

/* Style 4: Glowing Outline */
.breadcrumb-glow {
  background: transparent;
  border: 1px solid var(--sys-primary);
  box-shadow: 0 0 15px rgba(var(--sys-primary), 0.2);
  padding: 8px 24px;
  border-radius: 8px;
}

/* ── Buttons ── */
.btn-sys {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-sys-primary {
  background: var(--sys-grad-1);
  color: #0b1121;
  box-shadow: 0 10px 30px rgba(45, 212, 191, 0.3);
}
.btn-sys-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(45, 212, 191, 0.5);
  color: #000;
}
.btn-sys-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.btn-sys-glass:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Hero Split Parallax ── */
.hero-split {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 60px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  overflow: hidden;
}
.hero-split-text {
  position: relative;
  z-index: 10;
}
.hero-split-title {
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-split-desc {
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--sys-muted);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-trust-badges {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--sys-glass-border);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.1);
  color: var(--sys-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.trust-badge-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-badge-text p {
  font-size: 0.8rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sys-muted);
}

/* Hero Parallax Image */
.hero-parallax-wrap {
  position: relative;
  height: 600px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-layer {
  position: absolute;
  transition: transform 0.1s ease-out;
  border-radius: var(--sys-radius);
}
.parallax-bg {
  width: 90%;
  height: 90%;
  background: var(--sys-grad-1);
  opacity: 0.15;
  filter: blur(40px);
  z-index: 1;
}
.parallax-img {
  width: 85%;
  height: 95%;
  object-fit: cover;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--sys-shadow-glow);
}
.parallax-float-1 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  background: var(--sys-card);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  border: 1px solid var(--sys-glass-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  box-shadow: var(--sys-shadow);
  animation: float 6s infinite ease-in-out;
}
.parallax-float-1 .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sys-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.parallax-float-2 {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 140px;
  height: 140px;
  background: var(--sys-primary);
  opacity: 0.9;
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3), inset 0 0 20px rgba(255, 255, 255, 0.3);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morphing-blob 8s ease-in-out infinite;
  padding: 15px;
}
.parallax-float-2::after {
  content: "";
  position: absolute;
  inset: -10px;
  background: var(--sys-primary);
  filter: blur(25px);
  opacity: 0.4;
  z-index: -1;
  border-radius: inherit;
  animation: pulse-glow 4s infinite alternate;
}
.parallax-float-2 h4 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}
.parallax-float-2 p {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  color: #ffffff;
  line-height: 1.3;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes morphing-blob {
  0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}
@keyframes float-blob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes pulse-glow {
  0% { opacity: 0.2; transform: scale(0.95); }
  100% { opacity: 0.5; transform: scale(1.05); }
}

/* ── MARQUEE ── */
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  background: rgba(30, 41, 59, 0.4);
  border-top: 1px solid var(--sys-glass-border);
  border-bottom: 1px solid var(--sys-glass-border);
  padding: 24px 0;
  display: flex;
}
.marquee-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  padding-left: 50px;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sys-muted);
}
.marquee-item i {
  color: var(--sys-primary);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── COMMON SECTION ── */
.sys-section {
  padding: 120px 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.sys-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sys-header h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.sys-header p {
  font-size: 1.1rem;
}

/* ── ABOUT THE DOCTOR ── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--sys-radius);
  border: 1px solid var(--sys-glass-border);
}
.about-image::after {
  content: "";
  position: absolute;
  inset: -15px;
  border: 2px dashed rgba(14, 165, 233, 0.3);
  border-radius: calc(var(--sys-radius) + 5px);
  z-index: -1;
}
.about-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.about-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid var(--sys-glass-border);
  padding-top: 30px;
}
.astat h4 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sys-primary);
}
.astat span {
  font-size: 0.9rem;
  color: var(--sys-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── SERVICES GRID ── */
.services-section-wrap {
  position: relative;
  background: radial-gradient(
    ellipse at center,
    rgba(30, 41, 59, 0.3) 0%,
    transparent 75%
  );
  border: none;
  overflow: hidden;
}
.services-section-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse,
    rgba(14, 165, 233, 0.05) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.sys-header,
.svc-grid,
.text-center {
  position: relative;
  z-index: 1;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.svc-card {
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.5) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 40px 30px;
  border-radius: var(--sys-radius);
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(14, 165, 233, 0.15),
    transparent 60%
  );
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.8) 0%,
    rgba(15, 23, 42, 0.9) 100%
  );
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}
.svc-card:hover::before {
  opacity: 1;
}
.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--sys-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: 0.4s;
}
.svc-card:hover .svc-icon {
  background: var(--sys-grad-1);
  color: #0b1121;
  transform: scale(1.1) rotate(-5deg);
}
.svc-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.svc-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ── TRUST SECTION ── */
.trust-section {
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0) 0%,
    rgba(30, 41, 59, 0.5) 50%,
    rgba(30, 41, 59, 0) 100%
  );
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-box {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--sys-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.trust-box i {
  display: block;
  font-size: 2.5rem;
  color: var(--sys-accent);
  margin-bottom: 20px;
}
.trust-box h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.trust-box p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── REVIEWS ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.review-card {
  background: var(--sys-card);
  padding: 35px;
  border-radius: var(--sys-radius);
  border: 1px solid var(--sys-glass-border);
  position: relative;
}
.review-quote {
  color: var(--sys-primary);
  font-size: 2rem;
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.2;
}
.review-stars {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.review-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 24px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sys-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--sys-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.review-author h5 {
  font-size: 1rem;
  margin-bottom: 2px;
}
.review-author span {
  font-size: 0.8rem;
  color: var(--sys-muted);
}

/* ── FAQ ACCORDION ── */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--sys-glass-border);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sys-text);
}
.faq-question i {
  color: var(--sys-primary);
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p {
  margin-top: 16px;
  margin-bottom: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--sys-accent);
}
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ── CHAMBERS / FACILITIES ── */
.locations-section-wrap {
  position: relative;
  border: none;
  overflow: hidden;
}
.locations-section-wrap .sys-header,
.locations-section-wrap .chambers-grid {
  position: relative;
  z-index: 1;
}

.chambers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.chamber-card {
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.6) 0%,
    rgba(15, 23, 42, 0.8) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--sys-radius);
  display: flex;
  gap: 20px;
  transition: 0.4s;
}
.chamber-card:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 212, 191, 0.3);
  box-shadow: 0 15px 40px rgba(45, 212, 191, 0.15);
}
.chamber-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.1);
  color: var(--sys-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chamber-info h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.chamber-info p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.chamber-info span {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.8rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--sys-grad-1);
  border-radius: var(--sys-radius);
  padding: 60px;
  text-align: center;
  color: #0b1121;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230b1121' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #0b1121;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.cta-banner p {
  color: rgba(11, 17, 33, 0.8);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}
.cta-banner .btn-sys-glass {
  background: #0b1121;
  color: #fff;
  border: none;
}
.cta-banner .btn-sys-glass:hover {
  background: #1e293b;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
  }
  .hero-split-desc {
    margin: 0 auto 40px;
  }
  .hero-actions,
  .hero-trust-badges {
    justify-content: center;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sys-section {
    padding: 60px 5%;
  }
  .sys-header {
    margin-bottom: 40px;
  }
  .hero-split-title {
    font-size: 2.6rem;
  }
  .hero-actions {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
  }
  .hero-actions .btn-sys {
    padding: 12px 20px;
    font-size: 0.85rem;
    width: auto !important;
    flex: 1;
    justify-content: center;
  }
  .hero-trust-badges {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  .trust-badge {
    padding: 10px;
    gap: 8px;
    flex: 1;
    justify-content: center;
  }
  .trust-badge-text h4 { font-size: 1.1rem; }
  .trust-badge-text p { font-size: 0.65rem; }
  
  .hero-parallax-wrap {
    height: 400px;
    margin-top: 20px;
  }
  .parallax-float-1,
  .parallax-float-2 {
    display: flex;
    padding: 10px 14px;
    gap: 10px;
  }
  .parallax-float-1 { bottom: 5%; left: -2%; }
  .parallax-float-2 { top: 5%; right: -2%; }
  .parallax-float-1 h4, .parallax-float-2 h4 { font-size: 1.1rem; }
  .parallax-float-1 p, .parallax-float-2 p { font-size: 0.65rem; }
  .parallax-float-1 .icon { width: 30px; height: 30px; font-size: 0.8rem; }
  
  .sys-header h2 {
    font-size: 2.2rem;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 10px;
  }
  .stat-item h3 {
    font-size: 1.5rem !important;
  }
  .stat-item p {
    font-size: 0.6rem !important;
  }
  .cta-banner h2 {
    font-size: 2.2rem;
  }
}
