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

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

:root {
  /* Primary */
  --primary: #1d5a1d;
  --primary-light: #4cad4c;
  --primary-foreground: #ffffff;

  /* Neutral */
  --background: #ffffff;
  --foreground: #121212;
  --secondary: #2b2b2b;
  --muted: #f5f5f5;
  --muted-foreground: #666666;

  /* Surface */
  --surface-dark: #121212;
  --surface-dark-card: #2b2b2b;
  --surface-light: #f5f5f5;

  /* Border */
  --border: #d9d9d9;

  /* Special */
  --star: #e8b923;

  /* Radius */
  --radius: 0.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.font-heading {
  font-family: 'Montserrat', sans-serif;
}

.font-black {
  font-weight: 900;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}

.animate-in-view {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-in-view.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-logo img {
  height: 96px;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a.nav-link {
  color: rgba(18, 18, 18, 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.header-nav a.nav-link:hover {
  color: var(--primary);
}

.header-nav .btn-nav-cta {
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: background-color 0.2s;
}

.header-nav .btn-nav-cta:hover {
  background-color: rgba(29, 90, 29, 0.9);
}

.mobile-toggle {
  display: block;
  color: var(--foreground);
  padding: 0.25rem;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0.5rem 1rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: rgba(18, 18, 18, 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 0;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

.mobile-menu .btn-mobile-cta {
  display: block;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(18, 18, 18, 0.95),
    rgba(18, 18, 18, 0.80),
    rgba(18, 18, 18, 0.60));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 10rem;
  padding-bottom: 8rem;
}

.hero-inner {
  max-width: 672px;
}

.hero-badge {
  display: inline-block;
  background-color: rgba(29, 90, 29, 0.9);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  animation-delay: 1s;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

.hero-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  max-width: 672px;
  margin-bottom: 2.5rem;
  animation-delay: 0.2s;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation-delay: 0.4s;
}

.btn-hero-primary {
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: background-color 0.2s;
  text-align: center;
  display: inline-block;
}

.btn-hero-primary:hover {
  background-color: var(--primary-light);
}

.btn-hero-secondary {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
  display: inline-block;
}

.btn-hero-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

/* ===== IMPACT BAR ===== */
.impact-bar {
  background-color: var(--primary);
}

.impact-bar .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metric:last-child {
  border-right: none;
}

.metric svg,
.metric i {
  color: rgba(255, 255, 255, 0.8);
  width: 28px;
  height: 28px;
}

.metric-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.875rem;
  color: #fff;
}

.metric-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== EQUIPMENT / FROTA ===== */
.equipment {
  padding: 5rem 0;
  background-color: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 672px;
  margin: 0 auto;
}

.equipment-card {
  max-width: 768px;
  margin: 0 auto;
  background-color: var(--surface-dark-card);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.equipment-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.equipment-info {
  padding: 2rem;
}

.equipment-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.equipment-info .subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.specs-list {
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.spec-item i {
  color: var(--primary-light);
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.spec-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.spec-value {
  color: #fff;
  font-weight: 600;
}

.fleet-section {
  margin-bottom: 2rem;
}

.fleet-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.fleet-header i {
  color: var(--primary-light);
  width: 18px;
  height: 18px;
}

.fleet-header span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.fleet-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  text-align: center;
}

.fleet-item .qty {
  color: var(--primary-light);
  font-weight: 900;
  font-size: 1.125rem;
  display: block;
}

.fleet-item .year {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.btn-equipment {
  display: block;
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.2s;
}

.btn-equipment:hover {
  background-color: var(--primary-light);
}

/* ===== ABOUT / SOBRE ===== */
.about {
  padding: 4rem 0;
  background-color: var(--background);
}

.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about-label {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.about-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-title .highlight {
  color: var(--primary);
}

.about-text {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-text strong {
  color: var(--foreground);
}

.about-image {
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

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

.highlight-card {
  background-color: var(--surface-light);
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon {
  background-color: rgba(29, 90, 29, 0.1);
  padding: 0.5rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.highlight-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.highlight-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ===== SEGMENTS ===== */
.segments {
  padding: 5rem 0;
  background-color: var(--surface-light);
}

.segments .section-header {
  margin-bottom: 3.5rem;
}

.segments-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
}

.segment-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  text-align: left;
  transition: all 0.3s ease;
}

.segment-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary);
  transform: translateY(-4px);
}

.segment-card i {
  color: var(--primary);
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
}

.segment-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.segment-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 5rem 0;
  background-color: var(--surface-light);
}

.why-section .section-header {
  margin-bottom: 3.5rem;
}

.why-section .section-header h2 .highlight {
  color: var(--primary);
}

.why-grid {
  display: grid;
  gap: 2rem;
  max-width: 896px;
  margin: 0 auto;
}

.why-card {
  display: flex;
  gap: 1.25rem;
}

.why-icon {
  background-color: rgba(29, 90, 29, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  height: fit-content;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  color: var(--primary);
  width: 28px;
  height: 28px;
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-color: var(--surface-dark);
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,
    rgba(29, 90, 29, 0.3),
    var(--surface-dark),
    var(--surface-dark));
}

.cta-circle-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: rgba(29, 90, 29, 0.05);
  filter: blur(48px);
}

.cta-circle-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: rgba(76, 173, 76, 0.05);
  filter: blur(48px);
}

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

.cta-inner {
  max-width: 896px;
  margin: 0 auto;
}

.cta-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-badge span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(29, 90, 29, 0.2);
  border: 1px solid rgba(29, 90, 29, 0.3);
  color: var(--primary-light);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.cta-badge i {
  width: 16px;
  height: 16px;
}

.cta-headline {
  font-size: 2.25rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.cta-headline .highlight {
  color: var(--primary-light);
}

.cta-subheadline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--primary-light);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(29, 90, 29, 0.25);
}

.btn-cta-primary:hover {
  background-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(29, 90, 29, 0.4);
  transform: scale(1.02);
}

.btn-cta-primary .arrow {
  transition: transform 0.3s;
}

.btn-cta-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.btn-cta-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary-light);
}

.cta-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
}

.trust-item i {
  color: var(--primary-light);
  width: 18px;
  height: 18px;
}

.trust-item span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #fff;
  border-top: 1px solid var(--border);
}

.footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

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

.footer-brand img {
  height: 80px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-links a {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  padding: 0.375rem 0;
  transition: color 0.2s;
}

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

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
  line-height: 1.7;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact i {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-cta-text {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: background-color 0.2s;
}

.btn-footer-cta:hover {
  background-color: rgba(29, 90, 29, 0.9);
}

.btn-footer-cta i {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(102, 102, 102, 0.6);
  font-size: 0.75rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-cnpj {
  color: rgba(102, 102, 102, 0.4);
  font-size: 0.75rem;
}

.btn-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: color 0.2s, border-color 0.2s;
}

.btn-top:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-top i {
  width: 16px;
  height: 16px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #20BD5A;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ===== RESPONSIVE ===== */

/* sm: 640px */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .hero-badge {
    font-size: 0.875rem;
  }

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

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

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

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

  .cta-trust {
    flex-direction: row;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* md: 768px */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

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

  .hero-text {
    font-size: 1.25rem;
  }

  .impact-bar .container {
    grid-template-columns: repeat(4, 1fr);
  }

  .metric:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  .metric-value {
    font-size: 2.25rem;
  }

  .equipment {
    padding: 7rem 0;
  }

  .section-header h2 {
    font-size: 3rem;
  }

  .equipment-card img {
    height: 450px;
  }

  .equipment-info {
    padding: 2.5rem;
  }

  .about {
    padding: 6rem 0;
  }

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

  .about-title {
    font-size: 3rem;
  }

  .segments {
    padding: 7rem 0;
  }

  .why-section {
    padding: 7rem 0;
  }

  .cta-section {
    padding: 9rem 0;
  }

  .cta-headline {
    font-size: 3.75rem;
  }

  .cta-subheadline {
    font-size: 1.25rem;
  }

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

/* lg: 1024px */
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }

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

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