:root {
  --bg: #0f1113;
  --bg-soft: #171a1d;
  --bg-panel: rgba(255, 255, 255, 0.06);
  --surface: #ffffff;
  --surface-soft: #f4f5f7;
  --text: #101214;
  --text-light: #eef1f4;
  --muted: #9ba3ab;
  --muted-dark: #5f6770;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(16, 18, 20, 0.08);
  --primary: #f58220;
  --primary-dark: #c96410;
  --secondary: #21312a;
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-height: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

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

.section-dark {
  background:
    linear-gradient(135deg, rgba(245, 130, 32, 0.12), transparent 34%),
    linear-gradient(180deg, #121417 0%, #0d0f11 100%);
  color: var(--text-light);
}

.texture {
  position: relative;
  overflow: hidden;
}

.texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.2;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

p {
  color: inherit;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.left {
  margin: 0 0 2rem;
  text-align: left;
}

.section-heading p,
.section-copy p,
.visual-box p,
.service-card p,
.sector-card p,
.process-card p,
.reason-item p,
.testimonial p,
.contact-form label,
.site-footer p,
.site-footer li,
.trust-item span,
.stat-card span {
  color: inherit;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #111;
  box-shadow: 0 18px 30px rgba(245, 130, 32, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary-light {
  color: var(--text-light);
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(12, 13, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text-light);
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 52px;
  padding: 0.35rem 0.5rem;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 1rem 0 5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.92) 0%, rgba(10, 11, 13, 0.78) 48%, rgba(10, 11, 13, 0.58) 100%),
    url("https://images.unsplash.com/photo-1513828583688-c52646db42da?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 50%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.hero-top-carousel {
  position: relative;
  z-index: 1;
  margin-bottom: 2.75rem;
}

.hero-copy {
  max-width: 720px;
  color: var(--text-light);
}

.hero-copy p {
  max-width: 640px;
  margin-bottom: 1.75rem;
  font-size: 1.06rem;
  color: rgba(238, 241, 244, 0.85);
}

.hero-side {
  display: grid;
  gap: 1.2rem;
  align-self: start;
}

.hero-slogan {
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-commitment {
  margin-top: -0.1rem;
  margin-bottom: 1.1rem;
  color: rgba(245, 130, 32, 0.95);
  font-size: 1rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.hero-highlights {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
  color: rgba(238, 241, 244, 0.84);
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-highlights li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(245, 130, 32, 0.12);
}

.hero-carousel {
  position: relative;
  min-height: min(78vh, 760px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 10, 12, 0.08) 0%, rgba(9, 10, 12, 0.8) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-content {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  color: #fff;
}

.hero-slide-content span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-slide-content strong {
  max-width: 40rem;
  font-size: clamp(1.4rem, 2.8vw, 2.35rem);
  line-height: 1.2;
}

.hero-carousel-controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  gap: 0.6rem;
}

.hero-carousel-btn {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(9, 10, 12, 0.5);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-carousel-btn:hover,
.hero-carousel-btn:focus-visible {
  background: rgba(245, 130, 32, 0.18);
  border-color: rgba(245, 130, 32, 0.5);
}

.hero-carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 1.3rem;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dot.active {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(245, 130, 32, 0.16);
}

.hero-panel {
  min-height: auto;
}

.hero-card .panel,
.visual-box,
.info-card,
.service-card,
.sector-card,
.process-card,
.material-card,
.testimonial-block,
.stat-card,
.contact-form,
.cta-panel,
.trust-item {
  box-shadow: var(--shadow);
}

.panel {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.panel-label,
.visual-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.12);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.panel-items {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.panel-items div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-items span {
  color: rgba(238, 241, 244, 0.72);
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -2.2rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-item {
  display: flex;
  justify-content: center;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: #16191c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(238, 241, 244, 0.9);
  text-align: center;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-stack,
.materials-panel,
.reasons-list {
  display: grid;
  gap: 1rem;
}

.info-card,
.material-card,
.reason-item {
  padding: 1.7rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
}

.material-card,
.material-card p,
.material-card h3 {
  color: var(--text);
}

.visual-panel {
  display: flex;
  justify-content: center;
}

.visual-box {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    url("https://images.unsplash.com/photo-1496247749665-49cf5b1022e9?auto=format&fit=crop&w=1200&q=80") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text-light);
}

.services-grid,
.sector-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.sector-card,
.stat-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.sector-card:hover,
.process-card:hover,
.stat-card:hover,
.info-card:hover,
.material-card:hover {
  transform: translateY(-6px);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.2rem;
  border-radius: 18px;
  background: rgba(245, 130, 32, 0.1);
  color: var(--primary);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.section-dark .sector-card,
.section-dark .process-card,
.stats-section .stat-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.8rem 1.4rem;
  border-radius: var(--radius-md);
  background: #101214;
  color: var(--text-light);
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 800;
}

.material-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}

.material-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.material-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--primary);
}

.testimonial-block {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
  border: 1px solid var(--line-dark);
}

.testimonial-slider {
  position: relative;
  min-height: 220px;
}

.testimonial {
  display: none;
}

.testimonial.active {
  display: block;
}

.testimonial p {
  font-size: 1.06rem;
  color: var(--muted-dark);
}

.testimonial strong {
  display: block;
  margin-top: 1rem;
}

.testimonial span {
  color: var(--muted-dark);
}

.slider-controls {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.slider-btn {
  min-height: 46px;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-weight: 700;
}

.stats-section {
  background:
    linear-gradient(135deg, rgba(245, 130, 32, 0.12), transparent 30%),
    linear-gradient(180deg, #171a1d 0%, #0e1012 100%);
  color: var(--text-light);
}

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

.counter {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

.final-cta {
  background: linear-gradient(180deg, #111315 0%, #0b0d0f 100%);
  color: var(--text-light);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(245, 130, 32, 0.18), rgba(255, 255, 255, 0.03)),
    #141719;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-points article {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-dark);
  background: #f7f8fa;
}

.contact-points h3 {
  margin-bottom: 0.35rem;
}

.contact-points a {
  color: var(--text);
  font-weight: 600;
}

.contact-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.form-row {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
}

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

.form-row > div {
  display: grid;
  gap: 0.55rem;
}

label {
  font-weight: 700;
  color: var(--text);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d2d7de;
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(245, 130, 32, 0.9);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.12);
}

.form-row.error input,
.form-row.error select,
.form-row.error textarea,
.form-row > div.error input {
  border-color: #d44747;
}

.error-message {
  min-height: 1rem;
  color: #d44747;
}

.form-success {
  min-height: 1.2rem;
  margin-top: 1rem;
  color: #0e6b3f;
  font-weight: 700;
}

.site-footer {
  background: #090a0c;
  color: rgba(238, 241, 244, 0.8);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(245, 130, 32, 0.14);
  border-color: rgba(245, 130, 32, 0.45);
  transform: translateY(-2px);
}

.site-footer h3 {
  color: #fff;
}

.site-footer ul {
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.65rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
}

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

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d6b46, #163f2b);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.24s;
}

.delay-3 {
  transition-delay: 0.36s;
}

.delay-4 {
  transition-delay: 0.48s;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .split-section.reverse,
  .cta-panel,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .sector-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .header-cta {
    display: none;
  }

  .hero-carousel {
    min-height: min(70vh, 680px);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 4.7rem 0;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.85rem);
    left: 1rem;
    right: 1rem;
    margin-left: 0;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(15, 17, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .hero {
    min-height: auto;
    padding-top: 0.85rem;
  }

  .hero-copy p,
  .section-heading,
  .section-copy {
    max-width: 100%;
  }

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

  .two-columns {
    grid-template-columns: 1fr;
  }

  .hero-carousel {
    min-height: 62vh;
  }

  .hero-slide-content {
    right: 1.35rem;
    bottom: 1.35rem;
    left: 1.35rem;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .services-grid,
  .sector-grid,
  .stats-grid,
  .trust-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .slider-controls,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .slider-btn {
    width: 100%;
  }

  .panel,
  .testimonial-block,
  .contact-form,
  .cta-panel {
    padding: 1.35rem;
  }

  .hero-carousel {
    min-height: 52vh;
  }

  .hero-carousel-controls {
    top: auto;
    right: auto;
    bottom: 1rem;
    left: 1.2rem;
    flex-wrap: wrap;
  }

  .hero-slide-content {
    right: 1rem;
    bottom: 4.3rem;
    left: 1rem;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 1rem;
    bottom: 1rem;
  }
}
