/* ===== CSS Variables ===== */
:root {
  --background: #fafaf9;
  --foreground: #1a1a2e;
  --card: #ffffff;
  --primary: #1a1a2e;
  --primary-foreground: #fafaf9;
  --secondary: #f5f5f4;
  --muted: #a8a8a8;
  --muted-foreground: #6b6b6b;
  --accent: #b87333;
  --border: #e5e5e5;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== Container ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: #2a2a3e;
}

.btn-dark {
  background-color: var(--foreground);
  color: var(--background);
}

.btn-dark:hover {
  background-color: #2a2a3e;
}

.btn-light {
  background-color: var(--background);
  color: var(--foreground);
}

.btn-light:hover {
  background-color: #f0f0f0;
}

.btn-outline-light {
  background-color: transparent;
  color: var(--background);
  border: 1px solid var(--background);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-full {
  width: 100%;
  padding: 1rem 2rem;
}

.link-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.link-accent:hover {
  gap: 0.75rem;
}

/* ===== Section Styles ===== */
.section-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 600px;
}

.section-description-center {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 250, 249, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(250, 250, 249, 0.95);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.logo-img{
  height:40px;      /* ajusta */
  width:auto;
  display:block;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-foreground);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  position: relative;
  transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--foreground);
  transition: transform 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-btn.active .hamburger {
  background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mobile-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
  display: block;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 46, 0.75);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--background);
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(250, 250, 249, 0.8);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(250, 250, 249, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 4px;
  height: 8px;
  background-color: rgba(250, 250, 249, 0.5);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

/* ===== About Section ===== */
.about {
  padding: 6rem 0 8rem;
  background-color: var(--card);
}

.about-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.about-description strong {
  color: var(--foreground);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  padding: 1.5rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

.value-card:hover {
  border-color: rgba(184, 115, 51, 0.5);
}

.value-icon {
  width: 48px;
  height: 48px;
  background-color: var(--secondary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: rgba(184, 115, 51, 0.1);
}

.value-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== Business Units Section ===== */
.business-units {
  padding: 6rem 0 8rem;
  background-color: var(--background);
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ecosystem-box {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  margin-bottom: 3rem;
}

.ecosystem-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ecosystem-header svg {
  color: var(--accent);
}

.ecosystem-header h3 {
  font-weight: 600;
}

.ecosystem-box p {
  color: var(--muted-foreground);
  max-width: 900px;
}

.ecosystem-box strong {
  color: var(--foreground);
}

.units-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.unit-card {
  position: relative;
  padding: 1.5rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.unit-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.unit-icon {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.unit-icon.dark {
  background-color: var(--foreground);
}

.unit-icon.accent {
  background-color: var(--accent);
}

.unit-icon svg {
  stroke: var(--background);
}

.unit-info {
  margin-bottom: 1rem;
}

.unit-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.unit-name {
  font-size: 1.125rem;
  font-weight: 600;
}

.unit-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.unit-synergy {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.synergy-label {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.synergy-units {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.unit-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

.unit-card:hover .unit-arrow {
  color: var(--accent);
}

.units-cta {
  margin-top: 4rem;
  text-align: center;
}

.units-cta p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* ===== Solutions Section ===== */
.solutions {
  padding: 6rem 0 8rem;
  background-color: rgba(245, 245, 244, 0.5);
}

.solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.solution-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.solution-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.solution-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(184, 115, 51, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.solution-card:hover .solution-icon {
  background-color: rgba(184, 115, 51, 0.2);
}

.solution-icon svg {
  color: var(--accent);
}

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.solution-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.solution-services {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.services-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.services-tags span {
  font-size: 0.75rem;
  background-color: var(--secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  color: var(--muted-foreground);
}

.solutions-cta {
  margin-top: 4rem;
  text-align: center;
}

.solutions-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* ===== Stats Section ===== */
.stats {
  padding: 5rem 0;
  background-color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--primary-foreground);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 249, 0.7);
}

/* ===== Methodology Section ===== */
.methodology {
  padding: 6rem 0 8rem;
  background-color: var(--secondary);
}

.methodology-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.step-card {
  position: relative;
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(184, 115, 51, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.step-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== Contact Section ===== */
.contact {
  padding: 6rem 0 8rem;
  background-color: var(--card);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.channel-card:hover {
  transform: translateY(-4px);
}

.channel-card.whatsapp {
  background-color: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.channel-card.whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.2);
}

.channel-card.phone {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.channel-card.phone:hover {
  background-color: rgba(59, 130, 246, 0.2);
}

.channel-card.email {
  background-color: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.3);
}

.channel-card.email:hover {
  background-color: rgba(184, 115, 51, 0.2);
}

.channel-card.office {
  background-color: rgba(26, 26, 46, 0.05);
  border: 1px solid var(--border);
}

.channel-card.office:hover {
  background-color: rgba(26, 26, 46, 0.1);
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.channel-card:hover .channel-icon {
  transform: scale(1.1);
}

.whatsapp-icon {
  background-color: #25d366;
}

.phone-icon {
  background-color: #3b82f6;
}

.email-icon {
  background-color: var(--accent);
}

.office-icon {
  background-color: var(--foreground);
}

.channel-icon svg {
  stroke: white;
}

.channel-card h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.channel-card > p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.channel-number {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.whatsapp-number {
  color: #25d366;
}

.phone-number {
  color: #3b82f6;
}

.email-number {
  color: var(--accent);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-box {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.5rem;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-header svg {
  color: var(--accent);
}

.info-header h3 {
  font-weight: 600;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.schedule-row span:first-child {
  color: var(--muted-foreground);
}

.schedule-time {
  font-weight: 500;
}

.info-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--accent);
}

.why-choose h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-choose ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-choose li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.why-choose svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-container {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2rem;
}

.contact-form-container h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.required {
  color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1px solid var(--border);
  border-radius: 2px;
  background-color: var(--card);
  color: var(--foreground);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.form-group textarea {
  resize: none;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-align: center;
}

.form-privacy a {
  color: var(--accent);
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--primary-foreground);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-subtitle {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 250, 249, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  font-size: 0.875rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
}

/* ===== Responsive Breakpoints ===== */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }

  .contact-channels {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet landscape (768px+) */
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .units-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .units-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-content {
    grid-template-columns: 2fr 3fr;
  }

  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
