:root {
  color-scheme: light;
  font-family: 'Heebo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111111;
  background: #fafafa;
  --red: #d50b0b;
  --red-dark: #9a0808;
  --text: #111111;
  --muted: #5c5c5c;
  --surface: #ffffff;
  --surface-strong: #f4f4f4;
  --border: rgba(17, 17, 17, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  color: var(--text);
  padding-top: 108px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 18px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.accessibility-launch {
  position: fixed;
  left: 18px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  z-index: 30;
}

.accessibility-launch svg {
  width: 24px;
  height: 24px;
}

.accessibility-panel {
  position: fixed;
  left: 18px;
  bottom: 180px;
  width: min(280px, calc(100vw - 56px));
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  backdrop-filter: blur(18px);
}

.accessibility-panel[hidden] {
  display: none;
}

.accessibility-panel .toolbar-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.accessibility-panel button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  width: fit-content;
}

.site-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 28px clamp(20px, 4vw, 60px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  z-index: 20;
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.logo {
  width: 154px;
  max-width: 100%;
}

.logo-wrap {
  position: absolute;
  left: clamp(20px, 4vw, 60px);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  z-index: 25;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.top-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.top-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.section-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 680px;
  padding: 110px clamp(20px, 4vw, 60px);
  color: #fff;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.45));
  z-index: 0;
}

.section-hero .hero-copy {
  position: relative;
  z-index: 1;
}

.section-hero::before {
  content: none;
}

.hero-copy {
  position: relative;
  max-width: 640px;
  z-index: 1;
  padding: 32px;
  background: rgba(0, 0, 0, 0.40);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 4vw, 4.4rem);
  max-width: 12ch;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-copy p {
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 18px 32px rgba(0, 0, 0, 0.25);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(213, 11, 11, 0.18);
}

.primary {
  background: var(--red);
  color: #fff;
}

.secondary {
  background: #fff;
  color: var(--red);
  border: 2px solid rgba(255,255,255,0.2);
}

.secondary:hover,
.secondary:focus-visible {
  background: rgba(255,255,255,0.96);
}

.section-hero .hero-visual {
  width: min(100%, 640px);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-hero .hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.brand-focus,
.stats,
.section-panel,
.why-work-with-us,
.cta-panel {
  padding: 72px clamp(20px, 4vw, 60px);
}

.brand-focus {
  max-width: 1200px;
  margin: 0 auto;
}

.brand-focus > div:first-child {
  max-width: 650px;
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.brand-pillars article {
  padding: 28px;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.05);
}

.brand-pillars h3 {
  margin-bottom: 14px;
  font-size: 1.15rem;
}

.brand-pillars p {
  color: var(--muted);
  line-height: 1.8;
}

.stats {
  background: #fff;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.stats-copy {
  max-width: 640px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.stat-card {
  background: #fcfcfc;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  min-height: 190px;
  display: grid;
  gap: 16px;
}

.stat-card strong {
  color: var(--red);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-value {
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 800;
  color: #111;
}

.section-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.section-panel .panel-text {
  max-width: 580px;
}

.section-panel .panel-text p {
  line-height: 1.85;
  color: var(--muted);
}

.section-panel .panel-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-panel .panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-work-with-us {
  max-width: 1200px;
  margin: 0 auto;
}

.section-intro {
  max-width: 640px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
}

.feature-grid h3 {
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto 64px;
  border-radius: 34px;
  background: #9ab59a;
  border: 1px solid rgba(96, 118, 76, 0.22);
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.06);
  padding: 44px;
}

.cta-panel h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  color: #17361d;
}

.cta-panel p {
  margin-top: 16px;
  max-width: 520px;
  color: #213921;
  line-height: 1.9;
}

.cta-panel .button.primary {
  background: #163616;
  color: #fff;
}

.site-footer {
  padding: 40px clamp(20px, 4vw, 40px);
  background: #111;
  color: #fff;
  text-align: center;
}

.site-footer a {
  text-decoration: none;
  color: #fff;
}

.footer-table {
  margin: 28px auto 0;
  max-width: 980px;
  overflow-x: auto;
  display: flex;
  justify-content: center;
}

.footer-table table {
  width: auto;
  border-collapse: collapse;
  min-width: 0;
  table-layout: auto;
  margin: 0 auto;
}

.footer-table th,
.footer-table td {
  padding: 10px 20px;
  vertical-align: top;
  color: #f5f5f5;
  position: relative;
}

.footer-table td + td::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.footer-table th {
  background-color: transparent;
  color: #f5f5f5;
}

.footer-table td p {
  margin: 12px 0 0;
}

.footer-table td strong {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.footer-brand img {
  width: 160px;
}

.footer-contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 24px auto 0;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  max-width: 800px;
}

.footer-contact a,
.footer-contact span {
  color: #ddd;
  font-size: 0.98rem;
}

.footer-contact span {
  display: inline-flex;
  align-items: center;
}

.footer-note {
  margin: 24px auto 0;
  color: #aaa;
  font-size: 0.95rem;
  width: 100%;
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  padding-bottom: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

.floating-actions .action-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  color: var(--red);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(213, 11, 11, 0.18);
}

.floating-actions .action-icon.whatsapp {
  background: #25d366;
  color: #fff;
  border-color: transparent;
}

.floating-actions .action-icon.email,
.floating-actions .action-icon.phone {
  background: #fff;
  color: var(--red);
}

.floating-actions .action-icon svg,
.floating-actions .action-icon span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}


@media (max-width: 1024px) {
  .section-hero,
  .section-panel,
  .brand-pillars,
  .stats-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .brand-pillars article,
  .stat-card,
  .feature-grid article {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    justify-content: space-between;
    align-items: center;
  }

  .logo-wrap {
    position: static;
    order: 2;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .top-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 18px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .top-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .top-nav a {
    width: 100%;
    color: var(--text);
    padding: 12px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  }

  .top-nav a:last-child {
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .footer-table table {
    width: 100%;
  }

  .footer-table td {
    display: block;
    width: 100%;
    padding-left: 0;
  }

  .footer-table td + td {
    margin-top: 28px;
  }

  .footer-table td p {
    margin-top: 18px;
  }

  .footer-table td p strong {
    display: block;
    margin-bottom: 8px;
  }

  .footer-table td p + p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 16px;
    margin-top: 18px;
  }

  .footer-table td + td::before {
    display: none;
  }

  .accessibility-launch {
    bottom: 24px;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}

.high-contrast {
  background: #111;
  color: #fff;
}

.high-contrast .site-header,
.high-contrast .section-panel,
.high-contrast .brand-focus,
.high-contrast .stats,
.high-contrast .why-work-with-us,
.high-contrast .cta-panel,
.high-contrast .site-footer {
  background: #111;
}

.high-contrast .button {
  background: #fff;
  color: #111;
}

.high-contrast .secondary {
  border-color: #fff;
}

.high-contrast a {
  color: #ffcdcd;
}

.high-contrast .stat-card,
.high-contrast .panel-image,
.high-contrast .feature-grid article {
  background: #151515;
  border-color: #333;
}
