/* =========================================================
   GLEIM CROWN FRESNO — Premium Stylesheet
   ========================================================= */

/* --- Variables --- */
:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;
  --primary-950: #082f49;

  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;

  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;

  --amber-400: #fbbf24;
  --amber-500: #f59e0b;

  --red-500: #ef4444;

  --white: #ffffff;
  --black: #000000;

  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 40px rgba(14,165,233,0.15);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.4s;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--neutral-900);
}

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary-600);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  z-index: 10001;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.2s;
}

.skip-to-content:focus { top: 16px; }

a { text-decoration: none; color: inherit; transition: color 0.2s; -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

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

.section {
  padding: 120px 0;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--neutral-950);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-circle {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: loaderSpin 1.4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes loaderSpin {
  0% { stroke-dashoffset: 200; transform: rotate(0deg); }
  50% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 200; transform: rotate(360deg); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.925rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: var(--white);
  border-color: var(--primary-600);
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14,165,233,0.4);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary-800);
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

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

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease-out);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.navbar.scrolled::before { opacity: 1; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 270px;
  position: relative;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-license {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--primary-300);
  white-space: nowrap;
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 12px;
}

.navbar.scrolled .nav-license {
  color: var(--neutral-500);
  border-left-color: var(--neutral-300);
}

.logo-img {
  width: 550px;
  height: 260px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s var(--ease-out);
}

.logo-img-footer {
  width: 550px;
  height: 260px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.logo-type { display: flex; flex-direction: column; }

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--primary-400);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 10px;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary-400);
  border-radius: 2px;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-600);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  margin-left: 10px;
  transition: all 0.3s var(--ease-out);
}

.btn-nav:hover {
  background: var(--primary-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
}

.btn-nav svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  z-index: 100;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--neutral-950);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(14,165,233,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(6,182,212,0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--neutral-950) 0%, #0b1a2e 50%, var(--primary-950) 100%);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 70%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(14,165,233,0.2);
  top: -10%; right: -5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(6,182,212,0.15);
  bottom: -5%; left: 10%;
  animation-delay: -7s;
}

.hero-orb-3 {
  width: 200px; height: 200px;
  background: rgba(56,189,248,0.1);
  top: 40%; left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius-full);
  color: var(--primary-300);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary-400), var(--cyan-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid var(--neutral-950);
  margin-right: -8px;
}

.trust-stars {
  color: var(--amber-400);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 420px;
}

.hero-feature-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--white);
  min-width: 260px;
  transition: transform 0.4s var(--ease-out);
}

.hero-feature-card:hover { transform: translateX(8px); }

.hfc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(14,165,233,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-feature-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-feature-card span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}

.hfc-1 { top: 20px; left: 0; animation: cardFloat 6s ease-in-out infinite; }
.hfc-2 { top: 120px; left: 40px; animation: cardFloat 6s ease-in-out infinite 1s; }
.hfc-3 { top: 220px; left: 10px; animation: cardFloat 6s ease-in-out infinite 2s; }

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

.hero-stat-card {
  position: absolute;
  bottom: -10px;
  right: 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--primary-700), var(--primary-900));
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: var(--radius-lg);
  color: var(--white);
  min-width: 180px;
  animation: cardFloat 6s ease-in-out infinite 3s;
}

.hsc-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.hsc-number span { color: var(--primary-300); }
.hsc-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }

.hsc-bar {
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}

.hsc-bar-fill {
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, var(--primary-400), var(--cyan-400));
  border-radius: 2px;
  animation: barGrow 2s ease-out 1s both;
}

@keyframes barGrow { from { width: 0; } }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--primary-400);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* --- Marquee --- */
.marquee-section {
  background: var(--primary-900);
  padding: 16px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(14,165,233,0.15);
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  padding-right: 40px;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.marquee-dot {
  width: 6px !important;
  height: 6px;
  background: var(--primary-500);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Section Labels & Headers --- */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-600);
}

.section-label-center { justify-content: center; }

.label-line {
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-desc {
  color: var(--neutral-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- About --- */
.about { background: var(--white); }

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

.about-visual { position: relative; }

.about-card-main {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-950));
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(14,165,233,0.15), transparent 70%);
}

.about-card-main > * { position: relative; z-index: 1; }

.about-icon-large { margin: 0 auto 24px; }

.about-card-main h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.about-card-main p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.about-stat-mini {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
}

.asm-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-700);
  line-height: 1;
  margin-bottom: 4px;
}

.asm-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neutral-500);
}

.about-lead {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-content > p {
  color: var(--neutral-500);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0 36px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-item span {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--neutral-700);
}

/* --- Services --- */
.services {
  background: var(--neutral-50);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neutral-200), transparent);
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--cyan-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

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

.service-card:hover::before { transform: scaleX(1); }

.sc-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-600);
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .sc-icon-wrap {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  transform: scale(1.05);
}

.sc-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neutral-300);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card p {
  color: var(--neutral-500);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-600);
  transition: all 0.2s;
}

.sc-link:hover { gap: 10px; }

.sc-emergency {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-950));
  border-color: rgba(14,165,233,0.2);
}

.sc-emergency h3, .sc-emergency .sc-number { color: var(--white); }
.sc-emergency .sc-number { color: rgba(255,255,255,0.3); }
.sc-emergency p { color: rgba(255,255,255,0.6); }

.sc-emergency .sc-icon-wrap {
  background: rgba(14,165,233,0.15);
  border-color: rgba(14,165,233,0.3);
  color: var(--primary-300);
}

.sc-emergency:hover .sc-icon-wrap {
  background: var(--primary-500);
  color: var(--white);
}

.sc-emergency::before {
  background: linear-gradient(90deg, var(--primary-400), var(--cyan-400));
}

.sc-link-emergency { color: var(--primary-300); }

/* --- Pump Systems --- */
.pump-systems {
  background: var(--white);
  overflow: hidden;
}

.ps-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.ps-showcase-reverse { direction: rtl; }
.ps-showcase-reverse > * { direction: ltr; }

.ps-diagram {
  background: linear-gradient(145deg, var(--primary-950), var(--primary-900));
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.ps-diagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(14,165,233,0.1), transparent 70%);
}

.ps-diagram-farm { background: linear-gradient(145deg, #052e16, #064e3b); }
.ps-diagram-farm::before {
  background: radial-gradient(circle at 50% 30%, rgba(22,163,74,0.1), transparent 70%);
}

.ps-diagram-inner { position: relative; z-index: 1; }

.ps-svg { width: 100%; height: auto; }

.water-flow {
  animation: flowUp 1.5s ease-in-out infinite;
}

@keyframes flowUp {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.sprinkler-arc {
  animation: sprinkle 2s ease-in-out infinite alternate;
}

@keyframes sprinkle {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

.ps-badge-type {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.ps-badge-farm {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #15803d;
}

.ps-showcase-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ps-lead {
  color: var(--neutral-500);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.ps-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.ps-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ps-feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}

.ps-feat-icon-farm {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #16a34a;
}

.ps-feature:hover .ps-feat-icon {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  transform: scale(1.05);
}

.ps-feature:hover .ps-feat-icon-farm {
  background: #16a34a;
  border-color: #16a34a;
}

.ps-feature strong {
  display: block;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.ps-feature p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

.ps-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ps-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neutral-500);
}

.ps-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.ps-stat {
  padding: 16px 20px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-md);
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.ps-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #15803d;
  line-height: 1;
  margin-bottom: 4px;
}

.ps-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--neutral-500);
}

/* Pump Systems Divider */
.ps-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}

.ps-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neutral-200), transparent);
}

.ps-divider-badge {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Pump Types Grid */
.pump-types-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.pump-types-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.pump-types-header p {
  color: var(--neutral-500);
  font-size: 0.95rem;
}

.pump-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pt-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pt-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--cyan-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.pt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--primary-200);
}

.pt-card:hover::before { transform: scaleX(1); }

.pt-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  margin-bottom: 18px;
  transition: all 0.3s var(--ease-out);
}

.pt-card:hover .pt-icon {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
}

.pt-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pt-card p {
  color: var(--neutral-500);
  font-size: 0.825rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.pt-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pt-specs span {
  padding: 4px 10px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.68rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-100);
}

/* --- Industries --- */
.industries { background: var(--white); }

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

.industry-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--cyan-500));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border-color: var(--primary-200);
}

.industry-card:hover::after { transform: scaleX(1); }

.ind-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-600);
  transition: all 0.3s var(--ease-out);
}

.industry-card:hover .ind-icon {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
}

.industry-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.industry-card p {
  color: var(--neutral-500);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.ind-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
}

.ind-tags span {
  padding: 4px 10px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid var(--primary-100);
}

/* --- Process --- */
.process {
  background: var(--neutral-50);
  position: relative;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--neutral-200);
}

.process-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-500), var(--cyan-500));
  border-radius: 2px;
  animation: lineGrow 2s ease-out 0.5s both;
}

@keyframes lineGrow { to { width: 100%; } }

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.ps-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-700);
  margin: 0 auto 20px;
  transition: all 0.3s var(--ease-out);
}

.process-step:hover .ps-marker {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  transform: scale(1.1);
}

.ps-content h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.ps-content p {
  color: var(--neutral-500);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  justify-items: center;
}

.testimonial-grid > * {
  width: 100%;
}

.testimonial-card {
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease-out);
}

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

.tc-featured {
  background: linear-gradient(135deg, var(--primary-900), var(--primary-950));
  border-color: rgba(14,165,233,0.2);
  transform: scale(1.03);
}

.tc-featured:hover { transform: scale(1.03) translateY(-4px); }

.tc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-card blockquote {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 24px;
  font-style: italic;
}

.tc-featured blockquote { color: rgba(255,255,255,0.7); }

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.tc-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-900);
}

.tc-featured .tc-author strong { color: var(--white); }

.tc-author span {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.tc-featured .tc-author span { color: rgba(255,255,255,0.5); }

/* --- Brands --- */
.brands-section {
  background: var(--neutral-50);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.brand-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--neutral-500);
  transition: all 0.3s var(--ease-out);
  letter-spacing: -0.01em;
}

.brand-item:hover {
  background: var(--primary-600);
  color: var(--white);
  border-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.2);
}

.brand-item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.brand-item-logo:hover {
  background: var(--white);
  color: inherit;
  border-color: var(--primary-300);
}

.brand-logo {
  max-width: 140px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s var(--ease-out);
}

.brand-item-logo:hover .brand-logo {
  filter: grayscale(0%) opacity(1);
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 0 24px;
  margin-top: -1px;
}

.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-800), var(--primary-950));
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

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

.cta-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(14,165,233,0.1);
}

.cta-circle-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-circle-2 { width: 200px; height: 200px; bottom: -60px; left: -40px; }

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact { background: var(--white); }

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

.contact-lead {
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 36px;
  font-size: 1.02rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  transition: all 0.3s var(--ease-out);
}

.cc-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-200);
}

.cc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  flex-shrink: 0;
}

.cc-item strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 4px;
}

.cc-item p {
  font-size: 0.85rem;
  color: var(--neutral-500);
  line-height: 1.5;
}

.cc-item em {
  color: var(--primary-600);
  font-style: normal;
  font-weight: 500;
}

.map-embed {
  margin-top: 20px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-700);
  transition: all 0.3s var(--ease-out);
}

.map-link:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
  transform: translateY(-1px);
}

/* Contact Form */
.contact-form-wrap {
  position: sticky;
  top: 100px;
}

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

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.form-subtitle {
  color: var(--neutral-500);
  font-size: 0.85rem;
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.req { color: var(--red-500); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--neutral-800);
  background: var(--neutral-50);
  transition: all 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--neutral-400);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neutral-600);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--neutral-50);
}

.radio-label:hover { border-color: var(--primary-300); }

.radio-label input { display: none; }

.radio-label:has(input:checked) {
  border-color: var(--primary-500);
  background: var(--primary-50);
  color: var(--primary-700);
}

.form-note {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 14px;
  font-size: 0.75rem;
  color: var(--neutral-400);
}

/* --- Footer --- */
.footer {
  background: var(--neutral-950);
  color: rgba(255,255,255,0.6);
  padding-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-desc {
  margin-top: 20px;
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.footer-contact-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-500);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.78rem;
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* --- Animations (scroll-triggered) --- */
[data-aos] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-aos="fade-down"] { transform: translateY(-32px); }
[data-aos="fade-left"] { transform: translateX(40px) translateY(0); }
[data-aos="fade-right"] { transform: translateX(-40px) translateY(0); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Form Success State --- */
.form-success {
  text-align: center;
  padding: 60px 20px;
}

.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-50);
  border: 2px solid var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: successPop 0.5s var(--ease-spring);
}

@keyframes successPop { from { transform: scale(0); } }

/* --- Page Header (subpages) --- */
.page-header {
  padding: 180px 0 60px;
  background: linear-gradient(135deg, var(--primary-950), var(--primary-900));
  color: var(--white);
}

.page-header .section-title { color: var(--white); }
.page-header .section-desc { color: rgba(255,255,255,0.6); }

/* --- FAQ --- */
.faq-section { padding-top: 60px; }

.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}

.faq-item:hover { border-color: var(--primary-200); }

.faq-item.faq-open {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--neutral-800);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--primary-700); }

.faq-question svg {
  flex-shrink: 0;
  color: var(--neutral-400);
  transition: transform 0.3s var(--ease-out);
}

.faq-open .faq-question svg { transform: rotate(180deg); color: var(--primary-500); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
  padding: 0 24px;
}

.faq-open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--neutral-500);
  font-size: 0.925rem;
  line-height: 1.7;
}

.faq-answer a { color: var(--primary-600); font-weight: 500; }
.faq-answer a:hover { text-decoration: underline; }

/* --- Legal Pages --- */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}

.legal-content p {
  color: var(--neutral-600);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content li {
  color: var(--neutral-600);
  font-size: 0.925rem;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}

@media (max-width: 768px) {
  .page-header { padding: 120px 0 40px; }
  .faq-question { padding: 16px 18px; font-size: 0.925rem; }
  .faq-answer { padding: 0 18px; }
  .faq-open .faq-answer { padding: 0 18px 16px; }
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--neutral-500);
  font-size: 0.95rem;
}

/* --- Responsive --- */
/* --- Why Choose Us --- */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.wc-card {
  position: relative;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

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

.wc-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-100);
  line-height: 1;
  opacity: 0.5;
}

.wc-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 16px;
}

.wc-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 8px;
}

.wc-card p {
  font-size: 0.9rem;
  color: var(--neutral-600);
  line-height: 1.6;
}

/* Stats Bar */
.wc-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, var(--primary-900), var(--primary-950));
  border-radius: var(--radius-xl);
  padding: 36px 40px;
}

.wc-stat {
  flex: 1;
  text-align: center;
}

.wc-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.wc-stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--amber-400);
}

.wc-stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--primary-200);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wc-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* --- Service Area --- */
.sa-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.sa-city {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--neutral-700);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sa-city:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  color: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.sa-city svg {
  color: var(--primary-500);
  flex-shrink: 0;
}

.sa-city small {
  font-size: 0.7rem;
  color: var(--primary-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sa-city-primary {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  color: var(--white);
  border-color: var(--primary-700);
  font-weight: 600;
}

.sa-city-primary svg { color: var(--amber-300); }
.sa-city-primary small { color: var(--amber-300); }
.sa-city-primary:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
  color: var(--white);
  border-color: var(--primary-800);
}

.sa-city-wide {
  grid-column: span 2;
  justify-content: center;
  font-style: italic;
  color: var(--neutral-500);
}

/* --- Testimonial CTA --- */
.tc-cta {
  text-align: center;
  margin-top: 32px;
}

/* =========================================================
   RESPONSIVE — Tablet (max 1024px)
   ========================================================= */
@media (max-width: 1024px) {
  /* Nav */
  .nav-container { height: 200px; }
  .logo-img { width: 400px; height: 180px; }

  /* Hero */
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .hero-badge { margin-left: auto; margin-right: auto; }

  /* Grids */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .ps-showcase { grid-template-columns: 1fr; gap: 40px; }
  .ps-showcase-reverse { direction: ltr; }
  .pump-types-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .wc-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-grid { grid-template-columns: repeat(3, 1fr); }
  .sa-city-wide { grid-column: span 3; }
  .wc-stats-bar { padding: 28px 24px; }
  .wc-stat-num { font-size: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .tc-featured { transform: none; }
  .tc-featured:hover { transform: translateY(-4px); }
  .brands-grid { grid-template-columns: repeat(5, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { position: static; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-actions { justify-content: center; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE — Mobile (max 768px)
   ========================================================= */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .container { padding: 0 16px; }

  /* Nav */
  .nav-container { height: 100px; }
  .logo-img { width: 280px; height: 112px; }
  .logo-img-footer { width: 280px; height: 112px; }

  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 99;
    padding: 20px;
  }

  .nav-links.active { display: flex; }

  .nav-link {
    font-size: 1.2rem;
    padding: 12px 24px;
    width: 100%;
    text-align: center;
  }

  .nav-link.active::after { display: none; }

  .btn-nav {
    margin-left: 0;
    margin-top: 16px;
    font-size: 1rem;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  html { scroll-padding-top: 100px; }

  /* Section Headers */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }
  .section-header { margin-bottom: 48px; }
  .section-desc { font-size: 0.95rem; }

  /* About */
  .about-card-main { padding: 40px 24px; }
  .about-content h2 { font-size: 1.8rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }

  /* Pump Systems */
  .ps-showcase { gap: 32px; margin-bottom: 48px; }
  .ps-showcase-content h3 { font-size: 1.4rem; }
  .ps-diagram { padding: 20px; }
  .pump-types-grid { grid-template-columns: 1fr; }
  .ps-stats-row { flex-direction: row; }
  .ps-stat { padding: 12px 10px; }
  .ps-stat-num { font-size: 1.2rem; }
  .ps-cta-row { flex-direction: column; align-items: stretch; }
  .ps-cta-row .btn { justify-content: center; }
  .ps-divider { margin-bottom: 48px; }
  .pump-types-header h3 { font-size: 1.3rem; }

  /* Why Choose Us */
  .wc-grid { grid-template-columns: 1fr; }
  .wc-card { padding: 24px 20px; }
  .wc-stats-bar { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .wc-stat-divider { width: 60px; height: 1px; }
  .wc-stat-num { font-size: 2.2rem; }

  /* Service Area */
  .sa-grid { grid-template-columns: repeat(2, 1fr); }
  .sa-city-wide { grid-column: span 2; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-timeline { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 20px 16px; }
  .ps-marker { width: 48px; height: 48px; font-size: 1rem; }

  /* Testimonials */
  .testimonial-card { padding: 28px 24px; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .brand-item { padding: 20px 12px; font-size: 0.85rem; }
  .brand-logo { max-width: 110px; max-height: 40px; }

  /* CTA Banner */
  .cta-banner { padding: 0 16px; }
  .cta-inner { padding: 40px 24px; border-radius: var(--radius-lg); }
  .cta-content h2 { font-size: 1.4rem; }

  /* Contact */
  .contact-info h2 { font-size: 1.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; border-radius: var(--radius-lg); }
  .radio-group { flex-direction: column; }
  .cc-item { padding: 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer { padding-top: 48px; }
}

/* =========================================================
   RESPONSIVE — Small Mobile (max 480px)
   ========================================================= */
@media (max-width: 480px) {
  /* Nav */
  .nav-container { height: 80px; }
  .logo-img { width: 220px; height: 88px; }
  .logo-img-footer { width: 220px; height: 88px; }

  /* Hero */
  .hero { padding-top: 80px; padding-bottom: 40px; }
  .hero h1 { font-size: 1.6rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: 10px; }
  html { scroll-padding-top: 80px; }

  /* Section */
  .section { padding: 48px 0; }
  .section-title { font-size: 1.35rem; }

  /* About */
  .about-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .about-stat-mini { padding: 14px 8px; }
  .asm-number { font-size: 1.3rem; }
  .asm-label { font-size: 0.6rem; }

  /* Pump Systems */
  .ps-stats-row { flex-direction: column; }
  .ps-showcase-content h3 { font-size: 1.2rem; }
  .ps-feature { gap: 12px; }
  .ps-feat-icon { width: 36px; height: 36px; }

  /* Service Area */
  .sa-grid { grid-template-columns: 1fr; }
  .sa-city-wide { grid-column: span 1; }
  .sa-city { padding: 12px 14px; font-size: 0.9rem; }

  /* Stats bar */
  .wc-stats-bar { padding: 24px 16px; gap: 20px; }
  .wc-stat-num { font-size: 1.8rem; }
  .wc-stat-label { font-size: 0.7rem; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .brand-item { padding: 16px 8px; }
  .brand-logo { max-width: 90px; max-height: 32px; }

  /* CTA */
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-content h2 { font-size: 1.2rem; }

  /* Contact */
  .contact-form { padding: 24px 16px; }
  .contact-form h3 { font-size: 1.2rem; }

  /* Map link */
  .map-link { width: 100%; justify-content: center; }
}

/* =========================================================
   STICKY MOBILE CALL BAR
   ========================================================= */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--primary-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0;
  gap: 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.mobile-call-bar.mcb-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 16px;
  transition: background 0.2s ease;
}

.mcb-call {
  flex: 1.2;
  background: var(--primary-600);
  color: var(--white);
  font-size: 0.95rem;
}

.mcb-call:hover { background: var(--primary-700); }

.mcb-call svg { flex-shrink: 0; }

.mcb-quote {
  flex: 0.8;
  background: var(--amber-500);
  color: var(--neutral-900);
  font-size: 0.9rem;
}

.mcb-quote:hover { background: var(--amber-400); }

@media (max-width: 768px) {
  .mobile-call-bar {
    display: flex;
  }

  /* Add bottom padding to footer so call bar doesn't overlap content */
  .footer {
    padding-bottom: 70px;
  }
}

@media (max-width: 480px) {
  .mcb-call { font-size: 0.85rem; padding: 12px 12px; }
  .mcb-quote { font-size: 0.8rem; padding: 12px 12px; }
}
