/* ============================================
   INDUSTRIAL PRECISION — Design System for JCA
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --jca-red: #CC1A1D;
  --jca-red-hover: #a5000f;
  --jca-dark: #1A1C1C;
  --jca-dark-soft: #2F3131;
  --jca-white: #FFFFFF;
  --jca-surface: #F9F9F9;
  --jca-surface-dim: #E0E0E0;
  --jca-surface-low: #F5F5F5;
  --jca-green: #26762C;
  --jca-green-light: #A7FBA0;
  --jca-text: #1A1C1C;
  --jca-text-muted: #5C403C;
  --jca-text-light: #F1F1F1;
  --jca-outline: #E0E0E0;
  --jca-whatsapp: #25D366;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --display-hero-size: 56px;
  --display-hero-weight: 900;
  --display-hero-line: 1.1;
  --display-hero-tracking: -0.02em;
  --headline-lg-size: 32px;
  --headline-lg-weight: 800;
  --headline-lg-line: 1.2;
  --headline-md-size: 24px;
  --headline-md-weight: 700;
  --headline-md-line: 1.3;
  --body-lg-size: 18px;
  --body-lg-weight: 400;
  --body-lg-line: 1.6;
  --body-md-size: 16px;
  --body-md-weight: 400;
  --body-md-line: 1.5;
  --label-bold-size: 14px;
  --label-bold-weight: 700;
  --label-bold-line: 1.4;

  /* Spacing */
  --section-py: 80px;
  --container-max: 1200px;
  --gutter: 24px;
  --stack-gap: 16px;

  /* Shapes */
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;

  /* Elevation */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.05);
  --shadow-floating: 0 8px 32px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--body-md-size);
  font-weight: var(--body-md-weight);
  line-height: var(--body-md-line);
  color: var(--jca-text);
  background-color: var(--jca-white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Typography Utilities --- */
.display-hero {
  font-size: var(--display-hero-size);
  font-weight: var(--display-hero-weight);
  line-height: var(--display-hero-line);
  letter-spacing: var(--display-hero-tracking);
  text-transform: uppercase;
}

.headline-lg {
  font-size: var(--headline-lg-size);
  font-weight: var(--headline-lg-weight);
  line-height: var(--headline-lg-line);
  text-transform: uppercase;
}

.headline-md {
  font-size: var(--headline-md-size);
  font-weight: var(--headline-md-weight);
  line-height: var(--headline-md-line);
  text-transform: uppercase;
}

.body-lg {
  font-size: var(--body-lg-size);
  font-weight: var(--body-lg-weight);
  line-height: var(--body-lg-line);
}

.body-md {
  font-size: var(--body-md-size);
  font-weight: var(--body-md-weight);
  line-height: var(--body-md-line);
}

.label-bold {
  font-size: var(--label-bold-size);
  font-weight: var(--label-bold-weight);
  line-height: var(--label-bold-line);
  text-transform: uppercase;
}

/* --- Colors --- */
.text-primary { color: var(--jca-red); }
.text-green { color: var(--jca-green); }
.text-white { color: var(--jca-white); }
.text-dark { color: var(--jca-text); }
.text-muted { color: var(--jca-text-muted); }
.bg-primary { background-color: var(--jca-red); }
.bg-dark { background-color: var(--jca-dark); }
.bg-dark-soft { background-color: var(--jca-dark-soft); }
.bg-surface { background-color: var(--jca-surface); }
.bg-surface-low { background-color: var(--jca-surface-low); }
.bg-white { background-color: var(--jca-white); }
.bg-green { background-color: var(--jca-green); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: var(--label-bold-size);
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--jca-red);
  color: var(--jca-white);
}

.btn-primary:hover {
  background-color: var(--jca-red-hover);
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-whatsapp {
  background-color: var(--jca-whatsapp);
  color: var(--jca-white);
}

.btn-whatsapp:hover {
  background-color: #1da851;
}

/* --- Section --- */
.section {
  padding: var(--section-py) 0;
}

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

.section-surface {
  background-color: var(--jca-surface);
}

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

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--gutter);
}

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

/* --- Card --- */
.card {
  background: var(--jca-white);
  border: 1px solid var(--jca-outline);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-hover);
}

/* --- Section Title --- */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title .headline-lg {
  display: inline-block;
  border-top: 2px solid var(--jca-outline);
  border-bottom: 2px solid var(--jca-outline);
  padding: 0.5rem 1rem;
}

/* --- Stats Bar --- */
.stats-bar {
  background-color: var(--jca-dark);
  padding: 2rem 0;
  color: var(--jca-white);
}

.stats-bar .grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0 auto 0.5rem;
}

.stat-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  fill: var(--jca-red);
}

.stats-bar .stat-value {
  font-size: 2.5rem;
  font-weight: var(--display-hero-weight);
  color: var(--jca-red);
}

.stats-bar .stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--jca-dark);
  color: var(--jca-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--jca-dark) 0%, rgba(26,28,28,0.95) 30%, rgba(26,28,28,0.3) 50%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content-inner {
  max-width: 540px;
  margin-right: auto;
  margin-left: 0;
}

.hero-contact-float {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-contact-float .contact-card {
  background: rgba(26,28,28,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-contact-float .contact-card-phone {
  background: var(--jca-red);
}

@media (max-width: 1024px) {
  .hero-contact-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .hero-bg-overlay {
    background: linear-gradient(180deg, var(--jca-dark) 0%, rgba(26,28,28,0.7) 50%, var(--jca-dark) 100%);
  }
  .hero-content-inner {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding: 0 15px;
    text-align: center;
  }
  .hero-content-inner .animate-in {
    margin-bottom: 3rem !important;
  }
  .hero-content-inner .hero-badges {
    margin-bottom: 3rem !important;
    gap: 1.5rem;
  }
  .btn-splash, .btn-primary, .btn-outline {
    width: 100%;
    margin-bottom: 10px;
  }
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .hero-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badge-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}

.hero-badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: var(--jca-white);
}

.hero-badge-icon i {
  font-size: 1.5rem;
  color: var(--jca-white);
}

.hero-badge span {
  font-size: 0.625rem;
  text-transform: uppercase;
  font-weight: var(--label-bold-weight);
}

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--jca-dark);
  color: var(--jca-white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header-logo {
  font-weight: var(--display-hero-weight);
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.header-logo span:first-child {
  color: var(--jca-red);
}

.header-logo span:last-child {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
}

.header-nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-nav a:hover {
  color: var(--jca-red);
  transition: color 0.2s;
}

@media (min-width: 1024px) {
  .header-nav { display: flex; }
}

/* --- Problem / Solution --- */
.problem-solution {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .problem-solution { grid-template-columns: 1fr 1fr; }
}

.ps-col + .ps-col {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .ps-col + .ps-col {
    margin-top: 0;
  }
}

.ps-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .ps-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.ps-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ps-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .ps-image {
    height: 100%;
    min-height: 300px;
  }
}

.ps-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ps-col-right .ps-image {
  order: -1;
}

@media (min-width: 768px) {
  .ps-col-right .ps-image {
    order: 0;
  }
}

.problem-list li,
.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.icon-x {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FEE2E2;
  color: var(--jca-red);
  border-radius: var(--radius-full);
}

.icon-x svg,
.icon-check svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.icon-check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DCFCE7;
  color: var(--jca-green);
  border-radius: var(--radius-full);
}

/* --- Comparative --- */
.comparative {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.comparative-card {
  flex: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-top: 8px solid;
}

.comparative-card.negative {
  border-top-color: var(--jca-red);
}

.comparative-card.positive {
  border-top-color: var(--jca-green);
}

.comparative-card .card-header {
  padding: 0.75rem;
  text-align: center;
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--jca-white);
}

.comparative-card.negative .card-header {
  background-color: var(--jca-red);
}

.comparative-card.positive .card-header {
  background-color: var(--jca-green);
}

.comparative-card .card-body {
  padding: 1.5rem;
}

.vs-badge {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  background-color: var(--jca-dark);
  color: var(--jca-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--display-hero-weight);
  font-style: italic;
  font-size: 1.25rem;
  z-index: 1;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .comparative {
    flex-direction: row;
  }
  .comparative-card {
    max-width: 500px;
  }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  gap: var(--gutter);
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background-color: var(--jca-surface-low);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.testimonial-stars {
  display: flex;
  gap: 0.125rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #FBBF24;
}

.testimonial-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.testimonial-divider {
  width: 3rem;
  height: 1px;
  background-color: var(--jca-outline);
  margin: 0 auto 1rem;
}

.testimonial-author {
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* --- CTA Banner --- */
.cta-banner {
  background-color: var(--jca-red);
  color: var(--jca-white);
  padding: 4rem 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .cta-banner-inner {
    flex-direction: row;
  }
}

.cta-phone {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cta-phone-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.cta-phone-number {
  font-size: 1.5rem;
  font-weight: var(--display-hero-weight);
}

/* --- Footer --- */
.footer {
  background-color: var(--jca-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer h4 {
  color: var(--jca-white);
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
}

.footer ul li {
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
}

.footer ul li a:hover {
  color: var(--jca-red);
  transition: color 0.2s;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  transition: background-color 0.2s;
}

.footer-social a:hover {
  background-color: var(--jca-red);
}

.footer-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 600px) {
  .footer-products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .footer-products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1200px) {
  .footer-products-grid { grid-template-columns: repeat(6, 1fr); }
}

.footer-product-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.5rem;
  text-decoration: none;
  color: rgba(255,255,255,0.65);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}

.footer-product-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.footer-product-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--jca-red);
  color: #fff;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  font-size: 0.75rem;
}

/* --- Applications Grid --- */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .apps-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .apps-grid { grid-template-columns: repeat(7, 1fr); }
}

.app-card {
  text-align: center;
}

.app-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.app-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.app-card:hover .app-card-image img {
  transform: scale(1.1);
}

.app-card-label {
  background: var(--jca-white);
  border: 1px solid var(--jca-outline);
  border-top: 0;
  padding: 1rem 0.5rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.app-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--jca-red);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -1.5rem auto 0.5rem;
  position: relative;
  border: 2px solid var(--jca-white);
}

.app-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--jca-white);
}

.app-card h4 {
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.app-card p {
  font-size: 0.625rem;
  color: var(--jca-text-muted);
}

/* --- Differentials --- */
.diffs-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .diffs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .diffs-grid { grid-template-columns: repeat(6, 1fr); }
}

.diff-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--jca-outline);
}

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

.diff-icon {
  margin-bottom: 0.75rem;
  color: var(--jca-red);
}

.diff-icon svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}

.diff-item h5 {
  font-weight: var(--label-bold-weight);
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.diff-item p {
  font-size: 0.6875rem;
  color: var(--jca-text-muted);
}

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

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--jca-whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-floating);
  transition: transform 0.2s;
  color: var(--jca-white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* --- Contact Panel --- */
.contact-panel {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .contact-panel {
    display: flex;
  }
}

/* --- Hero Bottom Row (badges + phones side by side) --- */
.hero-bottom-row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-bottom-row .hero-badges {
  flex: 1;
  min-width: 280px;
}

.hero-bottom-row .contact-panel {
  display: flex;
  min-width: 240px;
}

@media (max-width: 768px) {
  .hero-bottom-row .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-bottom-row .contact-panel {
    display: none;
  }
}

.contact-card {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-card-phone {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--jca-green);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-phone svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--jca-white);
}

.contact-card-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.contact-card-number {
  font-weight: var(--display-hero-weight);
  font-size: 1rem;
}

/* --- Icons --- */
.icon-phone {
  font-size: 1.2rem;
  color: currentColor;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  :root {
    --display-hero-size: 36px;
    --headline-lg-size: 24px;
    --headline-md-size: 20px;
    --section-py: 48px;
    --gutter: 16px;
  }

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

  .header-inner img {
    height: 28px !important;
  }

  .header-inner .btn-sm {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.7rem !important;
  }

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

  .stats-bar .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stats-bar .stat-value {
    font-size: 1.75rem;
  }

  .stats-bar .stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .diffs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .diff-item {
    border-right: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .grid-4, .grid-5, .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

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