/*
 * Design Enhancements — AquaPro v2
 * Layered on top of style.css — improves typography, spacing, section variety, and card depth.
 */

/* ============================================================
   TYPOGRAPHY REFINEMENTS
   ============================================================ */

/* Tighter, heavier headings */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
}

h3, h4 {
  letter-spacing: -0.01em;
}

/* Body copy: slightly darker for better contrast */
body {
  color: #374151;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Better paragraph readability: cap body text width in content areas */
.entry-content p,
.hero-description,
.cta-description,
.section-subtitle {
  max-width: 60ch;
  line-height: 1.75;
}

/* Constrained text in centered section headers */
.section-header.center .section-subtitle {
  max-width: 52ch;
}

/* Section title underline accent */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
}

.section-header.center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SECTION VARIETY — break the white/gray monotony
   ============================================================ */

/* Deep navy accent section (apply class="section-navy section-padding" to a <section>) */
.section-navy {
  background: linear-gradient(135deg, #0D1B2A 0%, #0A2540 50%, #003D6B 100%);
  position: relative;
  overflow: hidden;
}

.section-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,150,199,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.section-navy .section-title,
.section-navy h3,
.section-navy h2 {
  color: var(--color-white);
}

.section-navy .section-subtitle,
.section-navy p {
  color: rgba(255, 255, 255, 0.68);
}

.section-navy .section-badge {
  color: var(--color-accent);
  border-color: rgba(72, 202, 228, 0.35);
  background: rgba(72, 202, 228, 0.1);
}

.section-navy .section-title::after {
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

/* Warm off-white with subtle gold tint — use for social proof / trust sections */
.section-warm {
  background: linear-gradient(160deg, #FFFBF2 0%, #FFF8E7 100%);
  border-top: 1px solid rgba(244, 168, 37, 0.12);
  border-bottom: 1px solid rgba(244, 168, 37, 0.12);
}

.section-warm .section-title::after {
  background: linear-gradient(90deg, var(--color-gold), #E8961A);
}

/* ============================================================
   HERO SECTION IMPROVEMENTS
   ============================================================ */

/* Hero title: bolder, larger on wide screens */
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

/* Hero stats: proper CSS separators instead of inline styles */
.hero-stats {
  gap: 0;
  flex-wrap: nowrap;
}

.hero-stat {
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  font-size: 2.2rem;
  font-weight: 900;
}

/* Hero form card: a touch more premium */
.hero-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px;
  box-shadow:
    0 0 0 1px rgba(0, 119, 182, 0.08),
    0 24px 80px rgba(0, 0, 0, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-dark);
}

/* Form inputs: icon-ready left padding variant & better focus ring */
.form-control {
  border-color: #E5E7EB;
  border-radius: 10px;
  font-size: 0.95rem;
  padding: 13px 16px;
}

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.12);
}

/* ============================================================
   TRUST BAR UPGRADE
   ============================================================ */

.trust-bar {
  border-bottom: 1px solid #F0F2F5;
  padding: 20px 0;
}

.trust-item {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-dark);
  gap: 12px;
}

.trust-item .trust-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.08), rgba(0, 180, 216, 0.08));
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 1.15rem;
}

/* Vertical divider between trust items */
.trust-bar-inner {
  gap: 0;
  justify-content: center;
}

.trust-item {
  padding: 0 28px;
  border-right: 1px solid var(--color-gray-100);
}

.trust-item:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .trust-item {
    padding: 8px 16px;
    border-right: none;
    border-bottom: 1px solid var(--color-gray-100);
  }

  .trust-item:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   SERVICE CARDS — more depth and variety
   ============================================================ */

.service-card {
  border-radius: 18px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
  box-shadow:
    0 0 0 2px rgba(0, 119, 182, 0.15),
    0 20px 60px rgba(0, 119, 182, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* Horizontal layout variant for featured service rows */
.service-card.service-card--horizontal {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px;
}

.service-card.service-card--horizontal .service-icon-wrap {
  margin-bottom: 0;
  width: 64px;
  height: 64px;
}

/* Icon wrap: softer gradient, slight hover spin */
.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--color-primary), var(--color-secondary));
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.28);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08) rotate(6deg);
  box-shadow: 0 10px 32px rgba(0, 119, 182, 0.4);
}

/* Service name: tighter */
.service-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ============================================================
   WHY CHOOSE US — replace placeholder vibe
   ============================================================ */

/* The placeholder box: make it feel intentional */
.why-image-main {
  border-radius: 24px;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #0A2540 0%, #0077B6 60%, #00B4D8 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 36px;
  align-content: center;
  font-size: initial;
  box-shadow:
    0 0 0 1px rgba(0, 119, 182, 0.2),
    0 40px 100px rgba(0, 119, 182, 0.3),
    0 16px 40px rgba(0, 0, 0, 0.2);
}

/* Each inner stat tile in the why image */
.why-stat-tile {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: background 0.25s ease;
}

.why-stat-tile:hover {
  background: rgba(255, 255, 255, 0.2);
}

.why-stat-tile .stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  display: block;
  letter-spacing: -0.04em;
}

.why-stat-tile .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}

.why-stat-tile .stat-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

/* Badge overlay: make it look more intentional */
.why-image-badge {
  right: -24px;
  bottom: -24px;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 119, 182, 0.08);
}

.why-badge-number {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* ============================================================
   TESTIMONIALS — source attribution + better depth
   ============================================================ */

.testimonial-card {
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
  box-shadow:
    0 0 0 1px rgba(0, 119, 182, 0.1),
    0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* Google attribution badge */
.testimonial-source {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gray-500);
  letter-spacing: 0.5px;
}

.testimonial-source .google-g {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  /* Google's brand colors as a multi-stop gradient text workaround */
  color: #4285F4;
  font-family: 'Arial', sans-serif;
}

.testimonial-quote {
  color: var(--color-primary);
  opacity: 0.2;
  font-size: 3.5rem;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #374151;
  font-style: italic;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 119, 182, 0.25);
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--color-gray-500);
  margin-top: 1px;
}

/* ============================================================
   PRICING CARDS — better depth hierarchy
   ============================================================ */

.pricing-card {
  border-radius: 20px;
  padding: 44px 40px;
  border: 1px solid #EEF0F4;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 16px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
  box-shadow:
    0 0 0 2px rgba(0, 119, 182, 0.2),
    0 30px 80px rgba(0, 119, 182, 0.28),
    0 12px 32px rgba(0, 0, 0, 0.12);
  transform: scale(1.04);
}

.pricing-card:hover:not(.featured) {
  box-shadow:
    0 0 0 2px rgba(0, 119, 182, 0.12),
    0 20px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.pricing-amount {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* ============================================================
   HOW IT WORKS — step connector line improvement
   ============================================================ */

.step-number {
  width: 90px;
  height: 90px;
  font-size: 1.8rem;
  box-shadow: 0 8px 32px rgba(0, 119, 182, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* ============================================================
   FOOTER IMPROVEMENTS
   ============================================================ */

.site-footer {
  background: #0A1628;
}

.footer-top {
  padding-top: 88px;
  padding-bottom: 64px;
}

.footer-links a {
  font-size: 0.875rem;
  line-height: 1.6;
}

.cert-badge {
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.76rem;
  font-weight: 700;
}

/* ============================================================
   NOTIFICATION BAR — more visual presence
   ============================================================ */

.notification-bar {
  background: linear-gradient(90deg, #003D6B 0%, #0077B6 50%, #005F92 100%);
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 2px solid rgba(72, 202, 228, 0.4);
}

/* ============================================================
   CTA SECTION — warmer, more confident
   ============================================================ */

.cta-section {
  background: linear-gradient(135deg, #005F92 0%, #0077B6 40%, #0096C7 100%);
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='38' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-title {
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta-phone-number {
  font-size: 2rem;
  letter-spacing: -0.03em;
}

/* ============================================================
   PAGE HERO (inner pages) — subtle depth
   ============================================================ */

.page-hero {
  background: linear-gradient(145deg, #0A1F35 0%, #0D3260 50%, #0077B6 100%);
  padding: 160px 0 88px;
}

.page-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

/* ============================================================
   FLOATING CTA — tighter, less intrusive
   ============================================================ */

.floating-cta {
  bottom: 28px;
  right: 28px;
  gap: 10px;
}

.floating-btn {
  border-radius: 50px;
  padding: 13px 22px;
  font-size: 0.875rem;
  gap: 8px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.floating-btn-call {
  background: linear-gradient(135deg, #059669, #10B981);
}

.floating-btn-quote {
  background: linear-gradient(135deg, #005F92, #0077B6);
}

/* ============================================================
   SCROLL REVEAL — staggered children
   ============================================================ */

[data-reveal] {
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Stagger sibling cards inside grids */
.services-grid    > *:nth-child(2),
.testimonials-grid > *:nth-child(2),
.pricing-grid      > *:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid    > *:nth-child(3),
.testimonials-grid > *:nth-child(3),
.pricing-grid      > *:nth-child(3) {
  transition-delay: 0.2s;
}

.services-grid    > *:nth-child(4),
.steps-grid       > *:nth-child(2) {
  transition-delay: 0.1s;
}

.steps-grid > *:nth-child(3) { transition-delay: 0.2s; }
.steps-grid > *:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   SECTION BADGE — subtle pulse on first view
   ============================================================ */

.section-badge {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  padding: 7px 18px;
  font-weight: 800;
}

/* ============================================================
   AREAS SECTION — cleaner list
   ============================================================ */

.area-item {
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 0.9rem;
  gap: 10px;
  border: 1px solid transparent;
  background: #F8F9FB;
}

.area-item:hover {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.07), rgba(0, 180, 216, 0.07));
  border-color: rgba(0, 119, 182, 0.18);
  transform: translateX(3px);
}

.area-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1A2B3C;
}

/* ============================================================
   RESPONSIVE TUNING
   ============================================================ */

@media (max-width: 992px) {
  .hero-form-card {
    padding: 36px 32px;
  }

  .why-image-main {
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 3/2;
    grid-template-columns: repeat(4, 1fr);
  }

  /* Header logo: tighten on tablet */
  img.custom-logo {
    height: 46px !important;
  }

  .custom-logo-link {
    height: 46px !important;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.2rem, 7vw, 3rem);
    letter-spacing: -0.03em;
  }

  .hero-form-card {
    padding: 28px 24px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }

  .hero-stat {
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 50%;
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-item {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .testimonial-card {
    padding: 32px 28px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .cta-title {
    letter-spacing: -0.02em;
  }

  .why-image-main {
    grid-template-columns: repeat(2, 1fr);
    aspect-ratio: 1;
    padding: 24px;
    gap: 12px;
    max-width: 360px;
  }

  .floating-cta {
    bottom: 16px;
    right: 16px;
  }
}

/* ============================================================
   MOBILE LOGO — header bar, overlay, footer
   ============================================================ */

/* ---- Header bar logo on mobile ---- */
@media (max-width: 992px) {
  /* Shrink logo to keep header compact; phone is hidden so space allows it */
  img.custom-logo {
    height: 42px !important;
    max-width: 160px !important;
  }

  .custom-logo-link {
    height: 42px !important;
  }

  /* Text fallback: keep it legible on the transparent/dark header */
  .site-logo .logo-name,
  a.site-logo .logo-name {
    font-size: 1.1rem;
    color: #ffffff;
  }

  .site-logo .logo-tagline,
  a.site-logo .logo-tagline {
    font-size: 0.6rem;
    color: var(--color-accent);
  }

  /* Hide the "Free Quote" CTA button in the header on mobile to give the logo room */
  .header-cta .btn-sm {
    display: none;
  }
}

/* ---- Mobile nav overlay logo ---- */
/* When the full-screen menu opens, the logo sits at the top-centre */
.main-nav.open .mobile-nav-logo {
  display: flex !important;
  justify-content: center;
  align-items: center;
  /* Override position: keep it centred without clipping */
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  transform: none;    /* remove the translateX(-50%) that needs a fixed width */
  white-space: nowrap;
}

/* Custom logo inside the overlay */
.main-nav.open .mobile-nav-logo .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  height: 48px !important;
}

.main-nav.open .mobile-nav-logo img.custom-logo {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
}

/* Text fallback inside the overlay */
.main-nav.open .mobile-nav-logo .logo-name {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Push nav links down so they don't sit under the logo */
.main-nav.open ul {
  padding-top: 72px;
}

/* ---- Footer logo on mobile ---- */
@media (max-width: 768px) {
  /* Footer stacks to one column — logo gets full width, centre it */
  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 42ch;
  }

  /* Custom logo in footer */
  .footer-logo .custom-logo-link {
    height: 46px !important;
  }

  .footer-logo img.custom-logo {
    height: 46px !important;
    max-width: 180px !important;
  }

  /* Text fallback in footer */
  .footer-logo .logo-name {
    font-size: 1.3rem;
    color: #ffffff;
  }

  .footer-logo .logo-tagline {
    color: var(--color-accent);
  }
}

/* ============================================================
   SERVICE CARDS — icon color variation + spacing overhaul
   ============================================================ */
.service-card {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card .service-icon-wrap {
  margin-bottom: 28px;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  font-size: 1.5rem;
}

.service-card .service-name {
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.service-card .service-description {
  margin-bottom: 24px;
  line-height: 1.75;
  font-size: 0.925rem;
}

.service-features {
  gap: 10px;
  margin-bottom: 28px;
}

.service-feature {
  font-size: 0.875rem;
  gap: 10px;
  line-height: 1.5;
}

.service-link {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 700;
}

/* ============================================================
   HOW IT WORKS (section-navy) — step icon upgrade
   ============================================================ */
.step-number {
  width: 88px;
  height: 88px;
  border: 3px solid rgba(255,255,255,0.15);
  margin-bottom: 28px;
}

.step-number i {
  color: white;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.step-description {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* Connector line color for navy background */
.section-navy .steps-grid::before {
  background: linear-gradient(90deg, rgba(0,180,216,0.4), rgba(72,202,228,0.4));
}

/* ============================================================
   WHY CHOOSE US — feature icons + spacing
   ============================================================ */
.why-feature {
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-gray-100);
}

.why-feature:last-child {
  border-bottom: none;
}

.why-feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(0,119,182,0.1), rgba(0,180,216,0.1));
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.why-feature:hover .why-feature-icon {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white;
}

.why-feature-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.why-feature-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-gray-500);
}

/* ============================================================
   TESTIMONIALS (section-warm) — color override for warm bg
   ============================================================ */
.section-warm .testimonial-card {
  background: white;
}

.section-warm .section-badge {
  color: #92610A;
  border-color: rgba(244,168,37,0.3);
  background: rgba(244,168,37,0.1);
}

/* ============================================================
   TRUST BAR — more impactful
   ============================================================ */
.trust-bar-inner {
  gap: 0;
  flex-wrap: nowrap;
}

.trust-item {
  padding: 8px 28px;
  border-right: 1px solid var(--color-gray-100);
  flex: 1;
  justify-content: center;
  font-size: 0.875rem;
}

.trust-item:last-child { border-right: none; }

.trust-item .trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .trust-bar-inner { flex-wrap: wrap; gap: 12px; }
  .trust-item { border-right: none; padding: 8px 16px; flex: initial; }
}

/* ============================================================
   SERVICE AREAS — replace emoji with cleaner icon
   ============================================================ */
.area-icon {
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.area-item {
  padding: 14px 18px;
  border-radius: 10px;
  background: #F8F9FB;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.area-item:hover {
  background: rgba(0,119,182,0.06);
  border-color: rgba(0,119,182,0.2);
  transform: translateX(3px);
}

/* ============================================================
   SECTION HEADER SPACING
   ============================================================ */
.section-header {
  margin-bottom: 64px;
}

.section-badge {
  margin-bottom: 18px;
}

.section-title {
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-500);
  line-height: 1.8;
}

/* ============================================================
   FAQ — more breathing room
   ============================================================ */
.faq-question {
  padding: 22px 28px;
  font-size: 1.02rem;
  line-height: 1.5;
}

.faq-answer-inner {
  padding: 4px 28px 28px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--color-gray-500);
}

/* ============================================================
   CARD SPACING — global overrides for all card types
   ============================================================ */
.service-card,
.testimonial-card,
.pricing-card {
  padding: 44px 40px;
}

/* ============================================================
   SECTION PADDING INCREASE
   ============================================================ */
:root {
  --spacing-section: 108px;
}

@media (max-width: 992px) {
  :root { --spacing-section: 80px; }
  .service-card, .testimonial-card { padding: 36px 32px; }
}

@media (max-width: 768px) {
  :root { --spacing-section: 64px; }
  .service-card, .testimonial-card { padding: 32px 28px; }
  .trust-bar-inner { flex-direction: column; }
  .trust-item { width: 100%; padding: 10px 0; border-right: none; border-bottom: 1px solid var(--color-gray-100); }
  .trust-item:last-child { border-bottom: none; }
}
