/* ============================================================
   styles.css — Rock Chip Medic Marketing Website
   Red #CC2200 · Black #000000 · White #FFFFFF
   Clean, professional EMS branding
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:         #CC2200;
  --red-dark:    #991a00;
  --red-mid:     #e02600;
  --red-light:   #ffe8e3;
  --black:       #000000;
  --black-soft:  #111111;
  --black-mid:   #222222;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-300:    #d1d5db;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --green:       #16a34a;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.16);
  --shadow-red:  0 4px 24px rgba(204,34,0,.30);
  --transition:  .2s cubic-bezier(.4,0,.2,1);
  --font:        'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:'Montserrat', 'Inter', system-ui, sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-700); line-height: 1.7; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--gray-50);
}

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

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

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

.badge {
  display: inline-block;
  background: var(--red-light);
  color: var(--red-dark);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.badge-white {
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(204,34,0,.35);
}

.btn-red:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.40);
}

/* Keep .btn-gold as alias for .btn-red for compatibility */
.btn-gold {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(204,34,0,.35);
}

.btn-gold:hover {
  background: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.40);
}

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

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-navy, .btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-navy:hover, .btn-black:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.btn-lg {
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
  border-radius: var(--radius-lg);
}

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,.40);
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo span.highlight {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: .95rem;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--red);
  background: rgba(255,255,255,.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .5rem;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-soft);
    padding: 1rem 1.25rem;
    gap: .25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
  }

  .nav-links.open, .nav-cta.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: .75rem 1rem;
  }

  .nav-cta {
    padding-bottom: 1.25rem;
    align-items: flex-start;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-inner {
    flex-wrap: wrap;
    position: relative;
  }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 50%, #1a0000 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(204,34,0,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(204,34,0,.20);
  border: 1px solid rgba(204,34,0,.5);
  color: #ff6644;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(204,34,0,.25);
  border-radius: var(--radius-xl);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.hero-card-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.hero-card-step:last-child { border-bottom: none; }

.step-num {
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  padding-top: .3rem;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.5rem; }
}

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.how-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.how-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-4px);
}

.how-card-num {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  padding: .2rem .75rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.how-icon {
  font-size: 3rem;
  margin: 1.25rem 0 1rem;
  line-height: 1;
}

.how-card h3 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.how-card p {
  font-size: .9rem;
}

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ── SAVINGS COUNTER ──────────────────────────────────────── */
.savings-section {
  background: var(--red);
  padding: 4rem 0;
}

.savings-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  text-align: center;
}

.savings-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.savings-label {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
  max-width: 320px;
}

.savings-divider {
  width: 2px;
  height: 80px;
  background: rgba(255,255,255,.35);
}

@media (max-width: 768px) {
  .savings-divider { display: none; }
}

/* ── SERVICES PREVIEW ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-3px);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: .85rem;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.service-card p {
  font-size: .88rem;
  color: var(--gray-500);
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  border-top: 4px solid var(--red);
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: .5rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

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

.author-name {
  font-weight: 700;
  font-size: .95rem;
  color: var(--black);
}

.author-title {
  font-size: .8rem;
  color: var(--gray-500);
}

.stars {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(204,34,0,.18) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* ── SERVICES PAGE ────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
  padding: 4rem 0;
  color: var(--white);
  text-align: center;
  border-bottom: 4px solid var(--red);
}

.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-top: .75rem; }

.services-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-row {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
}

.service-row:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.service-row-icon {
  font-size: 2.8rem;
  line-height: 1;
}

.service-row-body h3 { margin-bottom: .4rem; }
.service-row-body p { font-size: .92rem; color: var(--gray-500); }

.service-row-badge {
  background: var(--red-light);
  color: var(--red-dark);
  font-weight: 700;
  font-size: .8rem;
  padding: .4rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .service-row {
    grid-template-columns: 1fr;
  }
  .service-row-icon { font-size: 2rem; }
}

.pricing-callout {
  background: var(--red-light);
  border: 2px solid var(--red);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.pricing-callout h3 { margin-bottom: .5rem; }
.pricing-callout p { color: var(--gray-700); margin-bottom: 1.25rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--red);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-chevron {
  font-size: 1.2rem;
  transition: transform .3s ease;
  flex-shrink: 0;
  color: var(--red);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.7;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
}

/* ── ABOUT PAGE ───────────────────────────────────────────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-intro { grid-template-columns: 1fr; }
}

.about-visual {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--white);
  border: 3px solid var(--red);
}

.about-visual .big-icon {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.about-visual h3 { color: var(--white); margin-bottom: .5rem; }
.about-visual p { color: rgba(255,255,255,.8); font-size: .95rem; }

.about-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-list-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}

.about-list-icon {
  width: 36px;
  height: 36px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.about-list-text h4 { margin-bottom: .2rem; font-size: .95rem; }
.about-list-text p { font-size: .88rem; color: var(--gray-500); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .85rem;
  color: var(--gray-500);
  margin-top: .4rem;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  margin-top: 0;
}

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  color: var(--white);
  height: fit-content;
  border: 2px solid var(--red);
}

.contact-info-card h3 {
  color: var(--red);
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  padding-top: .1rem;
}

.contact-detail-body .label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: .2rem;
}

.contact-detail-body .value {
  font-weight: 600;
  color: var(--white);
  font-size: .95rem;
}

.contact-form-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-700);
  margin-bottom: .4rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--gray-900);
  transition: var(--transition);
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(204,34,0,.12);
}

textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
}

.form-success.show { display: block; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3.5rem 0 1.5rem;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .75rem;
}

.footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-tagline {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--red);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: .5rem;
}

.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red);
}

.footer-social {
  display: flex;
  gap: .6rem;
  margin-top: .5rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

.social-icon.facebook { background: #1877F2; }
.social-icon.instagram { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-icon.tiktok { background: #000; border: 1px solid #333; }
.social-icon.twitter { background: #000; }

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

/* ── FLOATING SOCIAL SIDEBAR ──────────────────────────────── */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.social-sidebar a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 700;
}

.social-sidebar a.fb  { background: #1877F2; }
.social-sidebar a.ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-sidebar a.tt  { background: #000; border: 1px solid #333; }
.social-sidebar a.tw  { background: #111; }

.social-sidebar a:first-child { border-radius: 0 var(--radius-sm) 0 0; }
.social-sidebar a:last-child  { border-radius: 0 0 var(--radius-sm) 0; }

.social-sidebar a:hover {
  width: 54px;
  box-shadow: 3px 0 12px rgba(0,0,0,.4);
}

@media (max-width: 480px) {
  .social-sidebar { display: none; }
}

/* ── SECTION HEADER ───────────────────────────────────────── */
.section-header {
  margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: .75rem; }
.section-header p { font-size: 1.05rem; color: var(--gray-500); max-width: 580px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ── MISSION CARDS ────────────────────────────────────────── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--red);
}

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

.mission-icon { font-size: 2.8rem; margin-bottom: 1rem; line-height: 1; }
.mission-card h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.mission-card p { font-size: .9rem; color: var(--gray-500); }

@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; }
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.comparison-table th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9rem;
  padding: 1rem 1.25rem;
  text-align: left;
}

.comparison-table th.gold-col, .comparison-table th.red-col {
  background: var(--red);
  color: var(--white);
}

.comparison-table td {
  padding: .9rem 1.25rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.comparison-table tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table td.yes { color: var(--green); font-weight: 700; }
.comparison-table td.no  { color: #dc2626; font-weight: 700; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}

.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeInUp .6s ease both;
}

.fade-up-delay { animation-delay: .2s; }
.fade-up-delay-2 { animation-delay: .4s; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
