@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800;900&display=swap");

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

:root {
  --background: 210 33% 98%;
  --foreground: 216 63% 12%;
  --card: 0 0% 100%;
  --card-foreground: 216 63% 12%;
  --primary: 214 100% 18%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 25% 93%;
  --secondary-foreground: 214 100% 18%;
  --muted: 210 25% 94%;
  --muted-foreground: 215 17% 38%;
  --accent: 44 98% 55%;
  --accent-foreground: 214 100% 14%;
  --whatsapp: 142 70% 45%;
  --whatsapp-foreground: 0 0% 100%;
  --border: 210 19% 86%;
  --ring: 44 98% 55%;
  --radius: 0.75rem;
  --brand: 214 100% 18%;
  --brand-foreground: 210 40% 98%;
  --highlight: 44 98% 55%;
  --highlight-foreground: 214 100% 14%;
  --surface: 212 42% 96%;
  --surface-foreground: 216 63% 12%;
  --surface-strong: 216 65% 13%;
  --surface-strong-foreground: 210 40% 98%;
  --gradient-hero: linear-gradient(135deg, hsl(var(--brand)) 0%, hsl(216 79% 10%) 45%, hsl(211 60% 20%) 100%);
  --gradient-panel: linear-gradient(180deg, hsl(0 0% 100% / 0.92) 0%, hsl(210 33% 98% / 0.98) 100%);
  --shadow-elevated: 0 24px 80px -28px hsl(var(--brand) / 0.38);
  --shadow-glow: 0 0 0 1px hsl(var(--highlight) / 0.18), 0 18px 50px -24px hsl(var(--brand) / 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Public Sans", sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: "Public Sans", sans-serif;
}

/* ── Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

/* ── Animations ────────────────────────────────────── */
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out both;
}

/* ── Badge ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.badge-brand {
  background-color: hsl(var(--brand));
  color: hsl(var(--brand-foreground));
}

.badge-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.badge-surface {
  background-color: hsl(var(--surface));
  color: hsl(var(--brand));
}

.badge-hero {
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  background: hsl(var(--primary-foreground) / 0.1);
  padding: 0.35rem 0.75rem;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--primary-foreground));
  white-space: normal;
  line-height: 1.5;
}

.badge-whatsapp {
  background-color: hsl(var(--whatsapp));
  color: hsl(var(--whatsapp-foreground));
  border: none;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  min-height: 2.5rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn-whatsapp {
  background-color: hsl(var(--whatsapp));
  color: hsl(var(--whatsapp-foreground));
}

.btn-whatsapp:hover {
  background-color: hsl(var(--whatsapp) / 0.9);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid hsl(var(--primary-foreground) / 0.3);
  color: hsl(var(--primary-foreground));
}

.btn-outline-light:hover {
  background: hsl(var(--primary-foreground) / 0.1);
}

.btn-lg {
  padding: 0.65rem 1.25rem;
}

.btn-icon {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

/* ── Industrial Grid Pattern ───────────────────────── */
.industrial-grid {
  background-image:
    linear-gradient(hsl(var(--brand) / 0.05) 1px, transparent 1px),
    linear-gradient(90deg, hsl(var(--brand) / 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* ── Section Shell ─────────────────────────────────── */
.section-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.8);
  background: hsl(var(--card) / 0.9);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-elevated);
}

/* ── Hero Overlay ──────────────────────────────────── */
.hero-overlay {
  background: linear-gradient(90deg, hsl(var(--brand) / 0.96) 0%, hsl(var(--brand) / 0.78) 36%, hsl(var(--brand) / 0.12) 72%, hsl(var(--brand) / 0) 100%);
}

/* ── Fixed WhatsApp Button ─────────────────────────── */
.whatsapp-fixed {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: hsl(var(--whatsapp));
  color: hsl(var(--whatsapp-foreground));
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s, background-color 0.2s;
}

.whatsapp-fixed:hover {
  transform: translateY(-4px);
  background-color: hsl(var(--whatsapp) / 0.9);
}

.whatsapp-fixed svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ── Header ────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid hsl(var(--primary-foreground) / 0.1);
  background: hsl(var(--brand) / 0.95);
  backdrop-filter: blur(24px);
  color: hsl(var(--primary-foreground));
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

.header-inner > .btn {
  font-size: 0.65rem;
  padding: 0.4rem 0.6rem;
  min-height: 2rem;
  border-radius: 0.5rem;
}

.header-inner > .btn .btn-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary-foreground) / 0.75);
}

.nav a {
  transition: color 0.2s;
}

.nav a:hover {
  color: hsl(var(--primary-foreground));
}

/* ── Hero Section ──────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, hsl(var(--highlight) / 0.16), transparent 28%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-content > * + * {
  margin-top: 1.5rem;
}

.hero-title-block > * + * {
  margin-top: 1rem;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-description {
  font-size: 0.9rem;
  line-height: 1.7;
  color: hsl(var(--primary-foreground) / 0.82);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Hero Image Area */
.hero-image-wrapper {
  position: relative;
}

.hero-blur-1,
.hero-blur-2 {
  display: none;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  background: hsl(var(--primary-foreground) / 0.05);
  padding: 0.25rem;
  box-shadow: var(--shadow-glow);
}

.hero-image-frame .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.hero-image-frame img {
  width: 100%;
  height: 220px;
  border-radius: 0.75rem;
  object-fit: cover;
  object-position: center;
}

.hero-info-card {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  z-index: 20;
  max-width: 14rem;
  border-radius: 0.625rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.15);
  background: hsl(var(--background) / 0.12);
  padding: 0.625rem;
  backdrop-filter: blur(12px);
}

.hero-info-card .label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--accent));
}

.hero-info-card .text {
  margin-top: 0.25rem;
  font-size: 0.7rem;
  line-height: 1.4;
  color: hsl(var(--primary-foreground) / 0.85);
}

/* ── Equipment Section ─────────────────────────────── */
.equipment {
  padding: 3rem 0;
}

.equipment-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 2rem;
}

.equipment-header .title-block > * + * {
  margin-top: 0.75rem;
}

.equipment-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: hsl(var(--brand));
}

.equipment-header .description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.equipment-grid {
  display: grid;
  gap: 1.5rem;
}

/* Equipment Card */
.equipment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.8);
  background: hsl(var(--card));
  box-shadow: var(--shadow-elevated);
  transition: transform 0.3s;
}

.equipment-card:hover {
  transform: translateY(-4px);
}

.equipment-card-image {
  position: relative;
  height: 14rem;
  overflow: hidden;
  border-bottom: 1px solid hsl(var(--border) / 0.7);
  background: hsl(var(--brand) / 0.05);
}

.equipment-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.equipment-card-image .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsl(var(--brand) / 0.08) 0%, hsl(var(--brand) / 0.62) 100%);
}

.equipment-card-image .badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
}

.equipment-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.equipment-card-body h3 {
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: hsl(var(--brand));
}

.equipment-card-body p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.equipment-card-body .btn {
  width: 100%;
  margin-top: 0.25rem;
}

/* ── About Section ─────────────────────────────────── */
.about {
  padding: 1.5rem 0 3rem;
}

.about-inner {
  background: var(--gradient-panel);
}

.about-grid {
  display: grid;
  gap: 2rem;
  padding: 24px 20px;
}

.about-left > * + * {
  margin-top: 1rem;
}

.about-left h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  color: hsl(var(--brand));
}

.about-right > * + * {
  margin-top: 1rem;
}

.about-right p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
}

.about-right strong {
  color: hsl(var(--brand));
}

/* ── Benefits Section ──────────────────────────────── */
.benefits {
  padding: 1.5rem 0 3rem;
}

.benefits-inner {
  border-radius: 1rem;
  background-color: hsl(var(--surface-strong));
  color: hsl(var(--surface-strong-foreground));
  padding: 28px 20px;
  box-shadow: var(--shadow-glow);
}

.benefits-header {
  max-width: 42rem;
  padding-bottom: 2rem;
}

.benefits-header > * + * {
  margin-top: 1rem;
}

.benefits-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}

.benefits-grid {
  display: grid;
  gap: 1rem;
}

.benefit-card {
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.1);
  background: hsl(var(--primary-foreground) / 0.05);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}

.benefit-icon {
  display: inline-flex;
  border-radius: 0.625rem;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.5rem;
}

.benefit-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.benefit-card h3 {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.benefit-card p {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.6;
  color: hsl(var(--primary-foreground) / 0.72);
}

/* ── Contact Section ───────────────────────────────── */
.contact {
  padding: 1.5rem 0 3rem;
}

.contact-shell {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
}

.contact-radial {
  display: none;
}

.contact-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 24px 20px;
}

.contact-left > * + * {
  margin-top: 1rem;
}

.contact-left h2 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
}

.contact-left .description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--primary-foreground) / 0.78);
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: block;
  border-radius: 1rem;
  border: 1px solid hsl(var(--primary-foreground) / 0.12);
  background: hsl(var(--primary-foreground) / 0.06);
  padding: 1.25rem;
  transition: background-color 0.2s;
}

.contact-card:hover {
  background: hsl(var(--primary-foreground) / 0.1);
}

.contact-card-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-card-icon {
  border-radius: 0.625rem;
  padding: 0.5rem;
  display: flex;
  flex-shrink: 0;
}

.contact-card-icon.whatsapp {
  background: hsl(var(--whatsapp));
  color: hsl(var(--whatsapp-foreground));
}

.contact-card-icon.accent {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.contact-card-icon svg {
  width: 1rem;
  height: 1rem;
}

.contact-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: hsl(var(--primary-foreground) / 0.6);
}

.contact-card-value {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: hsl(var(--primary-foreground));
  word-break: break-all;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  border-top: 1px solid hsl(var(--border) / 0.7);
  background: hsl(var(--background));
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0;
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: hsl(var(--brand));
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 640px+
   ══════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  :root {
    --radius: 1rem;
  }

  .badge-hero {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    white-space: nowrap;
  }

  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-height: 3rem;
  }

  .btn-lg {
    padding: 0.75rem 1.75rem;
  }

  .btn-icon {
    width: 1rem;
    height: 1rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-cta {
    flex-direction: row;
    gap: 0.75rem;
  }

  .hero-image-frame img {
    height: 320px;
  }

  .hero-info-card {
    max-width: 18rem;
    padding: 0.75rem;
  }

  .hero-info-card .label {
    font-size: 0.7rem;
  }

  .hero-info-card .text {
    font-size: 0.8rem;
  }

  .contact-cta {
    flex-direction: row;
  }

  .contact-card-value {
    font-size: 1rem;
    word-break: normal;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 768px+ (Tablet)
   ══════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .header-inner {
    height: 5rem;
    gap: 1rem;
  }

  .logo-img {
    height: 4.5rem;
  }

  .header-inner > .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    min-height: 3rem;
    border-radius: var(--radius);
  }

  .header-inner > .btn .btn-icon {
    width: 1rem;
    height: 1rem;
  }

  .nav {
    display: flex;
  }

  .whatsapp-fixed {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.5rem;
    height: 3.5rem;
  }

  .whatsapp-fixed svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .hero-grid {
    gap: 2.5rem;
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-image-frame {
    border-radius: 2rem;
    padding: 0.5rem;
  }

  .hero-image-frame img {
    height: 400px;
    border-radius: 1.5rem;
  }

  .hero-info-card {
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: 20rem;
    border-radius: 1rem;
    padding: 1rem;
  }

  .hero-info-card .label {
    font-size: 0.75rem;
    letter-spacing: 0.28em;
  }

  .hero-info-card .text {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .section-shell {
    border-radius: 2rem;
  }

  .equipment {
    padding: 3rem 0;
  }

  .equipment-header h2 {
    font-size: 2rem;
  }

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

  .equipment-card {
    border-radius: 1.75rem;
  }

  .equipment-card-image {
    height: 18rem;
  }

  .equipment-card-body {
    gap: 1rem;
    padding: 1.5rem;
  }

  .equipment-card-body h3 {
    font-size: 1.5rem;
  }

  .about {
    padding: 2rem 0 3rem;
  }

  .about-grid {
    gap: 2.5rem;
    padding: 2rem 1.75rem;
  }

  .about-left h2 {
    font-size: 2rem;
  }

  .benefits {
    padding: 2rem 0 3rem;
  }

  .benefits-inner {
    border-radius: 2rem;
    padding: 2rem 1.75rem;
  }

  .benefits-header {
    padding-bottom: 2rem;
  }

  .benefits-header h2 {
    font-size: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .benefit-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }

  .benefit-icon {
    border-radius: 1rem;
    padding: 0.75rem;
  }

  .benefit-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .benefit-card h3 {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }

  .benefit-card p {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.75;
  }

  .contact {
    padding: 2rem 0 3rem;
  }

  .contact-grid {
    gap: 2.5rem;
    padding: 2rem 1.75rem;
  }

  .contact-left h2 {
    font-size: 2rem;
  }

  .contact-card {
    border-radius: 1.5rem;
    padding: 1.25rem;
  }

  .contact-card-icon {
    border-radius: 1rem;
    padding: 0.75rem;
  }

  .contact-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  .contact-card-value {
    font-size: 1.125rem;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    font-size: 0.875rem;
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1024px+ (Desktop)
   ══════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .logo-img {
    height: 5rem;
  }

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: calc(100vh - 5rem);
    padding: 5rem 0;
  }

  .hero h1 {
    font-size: 4.5rem;
    max-width: 36rem;
  }

  .hero-description {
    max-width: 36rem;
  }

  .hero-content {
    max-width: 42rem;
  }

  .hero-image-wrapper {
    justify-self: end;
  }

  .hero-image-frame img {
    height: 560px;
    width: 620px;
  }

  .hero-blur-1,
  .hero-blur-2 {
    display: block;
  }

  .hero-blur-1 {
    position: absolute;
    left: -2rem;
    top: 2rem;
    width: 10rem;
    height: 10rem;
    border-radius: 9999px;
    background: hsl(var(--accent) / 0.2);
    filter: blur(48px);
  }

  .hero-blur-2 {
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 12rem;
    height: 12rem;
    border-radius: 9999px;
    background: hsl(var(--primary-foreground) / 0.1);
    filter: blur(48px);
  }

  .equipment-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .equipment-header .description {
    max-width: 36rem;
  }

  .equipment {
    padding: 3.5rem 0;
  }

  .equipment-card-image {
    height: 20rem;
  }

  .about {
    padding: 2rem 0 3.5rem;
  }

  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 3rem 2.5rem;
  }

  .about-left h2 {
    max-width: 24rem;
    font-size: 2.25rem;
  }

  .benefits {
    padding: 2rem 0 3.5rem;
  }

  .benefits-inner {
    padding: 3rem 2.5rem;
  }

  .benefits-header h2 {
    font-size: 2.25rem;
  }

  .contact {
    padding: 2rem 0 5rem;
  }

  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3rem 2.5rem;
  }

  .contact-left h2 {
    max-width: 36rem;
    font-size: 2.25rem;
  }

  .contact-left .description {
    max-width: 36rem;
  }

  .contact-radial {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 33%;
    background: radial-gradient(circle at center, hsl(var(--highlight) / 0.3), transparent 60%);
  }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — 1280px+ (Wide)
   ══════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
