/* ============================================
   APEX IT Partners - Brand Design System
   Colors extracted from brand kit
   ============================================ */

:root {
  /* Primary palette */
  --navy: #1B3A4B;
  --navy-deep: #132C3A;
  --navy-light: #234E63;
  --teal: #2BA4B8;
  --teal-light: #3CC5DB;
  --teal-dark: #1E8A9C;
  --teal-glow: rgba(43, 164, 184, 0.15);

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F7F9FA;
  --gray-50: #F0F4F5;
  --gray-100: #E2E8EA;
  --gray-200: #C5D0D4;
  --gray-400: #8A9DA5;
  --gray-600: #5A6F78;
  --gray-800: #2D3B42;
  --black: #0F1C22;

  /* Functional */
  --success: #28A745;
  --warning: #F5A623;

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: 80px;
  --container-width: 1200px;

  /* Transitions */
  --transition: 0.3s ease;
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal-dark);
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--gray-600);
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--gray-200);
}

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

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

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

.section--teal p {
  color: rgba(255, 255, 255, 0.9);
}

.grid {
  display: grid;
  gap: 32px;
}

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

.text-center { text-align: center; }
.text-teal { color: var(--teal); }

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

.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section--dark .section-header .overline {
  color: var(--teal-light);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43, 164, 184, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 249, 250, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav__links a {
  display: block;
  padding: 8px 18px;
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--navy);
  background: rgba(27, 58, 75, 0.06);
}

.nav__cta {
  margin-left: 12px;
}

.nav__cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
  padding-top: 72px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(19, 44, 58, 0.82) 0%,
    rgba(27, 58, 75, 0.65) 50%,
    rgba(43, 164, 184, 0.2) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--teal-light);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(43, 164, 184, 0.15);
  border: 1px solid rgba(43, 164, 184, 0.3);
  color: var(--teal-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(43, 164, 184, 0.1);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 1.4rem;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Dark card variant */
.card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.card--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal);
}

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

.card--dark p {
  color: var(--gray-200);
}

/* ============================================
   Credibility / Client Logos
   ============================================ */

.credibility-bar {
  padding: 40px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}

.credibility-bar__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 24px;
}

.credibility-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credibility-bar__logos img {
  height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  mix-blend-mode: multiply;
  background: transparent;
  transition: all var(--transition);
}

.credibility-bar__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   Stats Bar
   ============================================ */

.stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.section--dark .stat__number {
  color: var(--teal-light);
}

.stat__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section--dark .stat__label {
  color: var(--gray-200);
}

/* ============================================
   Pull Quote / Testimonial
   ============================================ */

.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}

.quote-block__text {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}

.section--dark .quote-block__text {
  color: var(--white);
}

.quote-block__text::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--teal);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  opacity: 0.3;
}

.quote-block__attribution {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal);
}

.quote-block__attribution span {
  font-weight: 400;
  color: var(--gray-400);
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43, 164, 184, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--gray-200);
  max-width: 500px;
  margin: 0 auto 28px;
}

.cta-banner .btn {
  position: relative;
  z-index: 1;
}

/* ============================================
   Testimonial Cards
   ============================================ */

.testimonial-card {
  background: var(--gray-50);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
  border-color: rgba(43, 164, 184, 0.3);
  box-shadow: 0 6px 24px rgba(43, 164, 184, 0.1);
  transform: translateY(-2px);
}

.testimonial-card::before {
  content: "\201C";
  font-size: 4.5rem;
  color: var(--teal);
  opacity: 0.45;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-card__text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-800) !important;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  padding-top: 8px;
}

.testimonial-card__attribution {
  font-size: 0.9rem;
  color: var(--teal) !important;
  margin-bottom: 0;
}

.testimonial-card__attribution strong {
  color: var(--navy) !important;
}

.testimonial-card__attribution span {
  color: var(--gray-400) !important;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 64px 0 32px;
}

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

.footer__brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--gray-400);
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--teal-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ============================================
   Page-specific: Services
   ============================================ */

.services-list .section {
  padding: 16px 0;
}

.services-list .section:first-child {
  padding-top: var(--section-pad);
}

.services-list .section:last-child {
  padding-bottom: var(--section-pad);
}

.service-detail {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 48px;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
}

.service-detail__content {
  flex: 1;
}

.service-detail__content .overline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
  display: block;
}

.service-detail__icon {
  width: 72px;
  height: 72px;
  background: var(--teal-glow);
  border: 2px solid rgba(43, 164, 184, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}

.service-detail__icon svg {
  width: 36px;
  height: 36px;
}

.check-list {
  list-style: none;
  margin-top: 20px;
}

.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

/* Service Accent Card (alternate layout) */
.service-accent {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--navy-light);
}

.service-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
}

.service-accent::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(43, 164, 184, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

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

.service-accent__icon {
  width: 52px;
  height: 52px;
  background: rgba(43, 164, 184, 0.15);
  border: 1px solid rgba(43, 164, 184, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  flex-shrink: 0;
}

.service-accent__icon svg {
  width: 26px;
  height: 26px;
}

.service-accent .overline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-light);
  display: block;
}

.service-accent h2 {
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-accent > p {
  color: var(--gray-200);
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.service-accent .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.service-accent .check-list li {
  color: var(--gray-200);
}

.service-accent .check-list li::before {
  color: var(--teal-light);
}

@media (max-width: 768px) {
  .service-accent {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .service-accent .check-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Page-specific: Industries
   ============================================ */

.industry-hero {
  padding: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  margin-bottom: 32px;
}

.industry-hero h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.6rem;
}

.industry-hero p {
  color: var(--gray-200);
  max-width: 600px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.compliance-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
}

/* ============================================
   Page-specific: About
   ============================================ */

.team-card {
  text-align: center;
  padding: 40px 24px;
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  color: var(--white);
  font-weight: 700;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.9rem;
}

/* Partner logos */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.partner-logo {
  padding: 16px 24px;
  background: var(--off-white);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.02em;
  border: 1px solid var(--gray-100);
}

/* ============================================
   Page-specific: Contact
   ============================================ */

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

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__text h4 {
  margin-bottom: 2px;
  color: var(--navy);
}

.contact-info__text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.calendly-embed {
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  overflow: hidden;
  min-height: 650px;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { gap: 24px; padding: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .nav__cta {
    margin-left: 0;
    width: 100%;
  }

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

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .stats {
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .credibility-bar__logos {
    gap: 24px;
  }

  .credibility-bar__logos img {
    height: 50px;
  }

  /* Service detail - stack icon above content */
  .service-detail {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
  }

  .service-detail__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .service-detail__icon svg {
    width: 28px;
    height: 28px;
  }

  /* Contact grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Calendly embed shorter on mobile */
  .calendly-embed {
    min-height: 500px;
  }

  /* Industry hero cards */
  .industry-hero {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Team cards */
  .team-card {
    padding: 24px 16px;
  }

  .team-card__avatar {
    width: 90px;
    height: 90px;
    font-size: 2rem;
  }

  /* Partner logos wrap tighter */
  .partner-logos {
    gap: 16px;
  }

  .partner-logo {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  /* Stats wrap to 2-column on mobile */
  .stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: center;
  }

  .stat__number {
    font-size: 2.2rem;
  }

  /* Quote blocks stack on mobile */
  .quote-block__text::before {
    font-size: 3rem;
    top: -15px;
    left: -5px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-pad: 40px;
  }

  .hero {
    min-height: 60vh !important;
  }

  .card {
    padding: 28px 24px;
  }

  .quote-block {
    padding: 24px 0;
  }

  .quote-block__text {
    font-size: 1rem;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .credibility-bar__logos {
    gap: 20px;
  }

  .credibility-bar__logos img {
    height: 40px;
  }
}
