/* Ready Shreddy — Red/White/Blue professional theme */

:root {
  --navy: #1B3A6B;
  --navy-dark: #0F2347;
  --navy-light: #2A4F8A;
  --red: #C8102E;
  --red-dark: #A00D25;
  --white: #FFFFFF;
  --off-white: #F4F7FB;
  --light-blue: #EBF2FA;
  --text-dark: #1A1A2E;
  --text-body: #3A4558;
  --text-muted: #6B7A90;
  --border: #D1DCE8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  box-shadow: 0 2px 16px rgba(27,58,107,0.08);
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--navy); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(200,16,46,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200,16,46,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 24px;
  border: 2px solid var(--navy);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(27,58,107,0.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27,58,107,0.2);
}
.btn-white-red {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(200,16,46,0.2);
}
.btn-white-red:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px 80px;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(27,58,107,0.03));
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 20px;
  background: rgba(200,16,46,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(200,16,46,0.15);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  margin-bottom: 24px;
}
.hero h1 .red { color: var(--red); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy);
  box-shadow: 0 20px 60px rgba(27,58,107,0.2);
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-logo-wrap {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}
.hero-logo-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-badge-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--red);
}
.hero-badge-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 40px 60px;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SECTION SHARED ── */
.section {
  padding: 90px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.section-light { background: var(--light-blue); }
.section-white { background: var(--white); }
.section-navy { background: var(--navy); }
.section-navy .section-heading,
.section-navy .section-heading-light { color: var(--white); }
.section-navy .section-desc { color: rgba(255,255,255,0.75); }
.section-navy .section-eyebrow-light { color: rgba(255,255,255,0.6); }
.section-navy .section-eyebrow-light::before { background: rgba(255,255,255,0.4); }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--red);
}
.section-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-eyebrow-light::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,0.4);
}
.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy-dark);
  margin-bottom: 16px;
}
.section-heading-light {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 560px;
}
.section-desc-light {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 560px;
}
.section-header { margin-bottom: 60px; }
.section-header-centered { text-align: center; margin-bottom: 60px; }
.section-header-centered .section-eyebrow { justify-content: center; }
.section-header-centered .section-eyebrow::before { display: none; }
.section-header-centered .section-desc { max-width: 600px; margin: 0 auto; }

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(27,58,107,0.1);
  transform: translateY(-3px);
  border-color: rgba(27,58,107,0.2);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}
.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  background: rgba(200,16,46,0.06);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── DDD MISSION SECTION ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-content .section-eyebrow { margin-bottom: 16px; }
.mission-content h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--navy-dark);
  margin-bottom: 20px;
}
.mission-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mission-stat-box {
  background: var(--light-blue);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--border);
}
.mission-stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.mission-stat-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.mission-visual {
  background: var(--navy);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: var(--white);
}
.mission-visual-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.mission-visual h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.mission-visual p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ── CLIENT TYPES ── */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}
.client-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.client-badge:hover {
  box-shadow: 0 4px 16px rgba(27,58,107,0.12);
  transform: translateY(-2px);
}
.client-badge-icon {
  width: 32px;
  height: 32px;
  background: var(--light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HIPAA SECTION ── */
.hipaa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.hipaa-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  transition: background 0.3s;
}
.hipaa-card:hover { background: rgba(255,255,255,0.12); }
.hipaa-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}
.hipaa-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.hipaa-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* ── SUSTAINABILITY ── */
.sustain-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sustain-text .section-eyebrow { margin-bottom: 16px; }
.sustain-text h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--navy-dark);
  margin-bottom: 20px;
  line-height: 1.12;
}
.sustain-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 24px;
}
.sustain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sustain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}
.sustain-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.sustain-visual {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
}
.sustain-big-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 5rem;
  color: var(--navy);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.sustain-big-lbl {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 8px;
}
.sustain-big-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── QUOTE CTA SECTION ── */
.quote-section-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,16,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.quote-cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.quote-section-cta h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.1;
}
.quote-section-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.quote-section-cta .btn-primary {
  font-size: 1rem;
  padding: 16px 36px;
  background: var(--red);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
  }
  .hero-image-wrap { max-width: 480px; margin: 0 auto; }
  .stats-bar { gap: 40px; padding: 32px 24px; }
  .section { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .sustain-content { grid-template-columns: 1fr; }
  .hipaa-grid { grid-template-columns: 1fr 1fr; }
  .footer { padding: 32px 24px; }
  .nav { padding: 0 24px; }
  .nav-right { gap: 16px; }
  .hero-stats { gap: 20px; }
  .mission-stats { grid-template-columns: 1fr 1fr; }
  .quote-section-cta { padding: 60px 24px; }
}

@media (max-width: 600px) {
  .hipaa-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .mission-stats { grid-template-columns: 1fr; }
  .clients-logos { justify-content: flex-start; }
}

/* ── IMAGE PLACEHOLDER ── */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.img-placeholder-icon { font-size: 3rem; opacity: 0.4; }