:root {
  --bg: #101112;
  --bg-soft: #17191b;
  --panel: #1c1f22;
  --panel-strong: #22262a;
  --text: #f5f1e8;
  --muted: #b0aba1;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #f15a24;
  --primary-dark: #be4216;
  --accent: #ffbe3b;
  --steel: #5f7f9e;
  --success: #25d366;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 190, 59, 0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(95, 127, 158, 0.12), transparent 28%),
    linear-gradient(180deg, #0d0e10 0%, #131417 40%, #111214 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(16, 17, 18, 0.84);
  border-bottom: 1px solid var(--line);
}

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

.brand img {
  width: min(280px, 48vw);
  height: auto;
}

.desktop-nav,
.mobile-nav {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:focus-visible {
  color: var(--accent);
}

.nav-call {
  color: var(--text) !important;
  border: 1px solid rgba(241, 90, 36, 0.34);
  background: linear-gradient(135deg, rgba(241, 90, 36, 0.2), rgba(241, 90, 36, 0.08));
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 0 1rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(21, 22, 24, 0.98);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.85rem;
}

.mobile-nav a {
  padding: 0.35rem 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}

.hero-backdrop,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.84), rgba(10, 10, 10, 0.62)),
    url("assets/logo.png") right center / cover no-repeat;
  filter: saturate(0.9);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2,
.brand-banner h3,
.site-footer h3,
.product-card h3,
.industry-card h3,
.promise-card h3,
.story-card h3 {
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  margin: 0 0 1rem;
  max-width: 11ch;
}

.hero-text,
.section-copy p,
.section-heading p,
.product-card p,
.industry-card p,
.promise-card p,
.story-card p,
.brand-banner p,
.footer-note,
.contact-card strong {
  color: var(--muted);
}

.hero-text {
  max-width: 40rem;
  font-size: 1.15rem;
  line-height: 1.75;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-actions,
.contact-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--primary), #ff7a29);
  color: #fff7ef;
  box-shadow: 0 16px 40px rgba(241, 90, 36, 0.22);
}

.button-secondary {
  border-color: rgba(255, 190, 59, 0.34);
  color: var(--accent);
  background: rgba(255, 190, 59, 0.06);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button-whatsapp {
  width: 100%;
  background: var(--success);
  color: #08200f;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-stats li,
.story-card,
.product-card,
.industry-card,
.promise-card,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(24, 27, 30, 0.82);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.hero-stats li {
  padding: 1.15rem 1rem;
}

.hero-stats strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--accent);
}

.hero-stats span {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero-logo {
  width: min(460px, 100%);
  justify-self: center;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.hero-panel-card {
  padding: 1.3rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 190, 59, 0.1), transparent 35%),
    rgba(18, 19, 22, 0.9);
}

.panel-label {
  margin: 0 0 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
}

.hero-panel-card a,
.hero-panel-card p {
  display: block;
  margin: 0.45rem 0;
  color: var(--text);
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(16, 18, 20, 0.86);
}

.split-layout,
.contact-layout,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 1rem;
}

.section-copy p,
.section-heading p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-copy blockquote {
  margin: 1.8rem 0 0;
  padding: 1rem 0 1rem 1.2rem;
  border-left: 4px solid var(--primary);
  color: var(--text);
  font-style: italic;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.tag-row span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border: 1px solid var(--line);
  font-size: 0.92rem;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.story-card {
  padding: 1.6rem;
}

.story-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 190, 59, 0.1), transparent 42%),
    rgba(27, 30, 34, 0.92);
}

.section-heading.center {
  text-align: center;
  max-width: 54rem;
  margin: 0 auto 2.2rem;
}

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

.products-grid,
.industry-grid,
.promise-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card,
.industry-card,
.promise-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.product-card::before,
.industry-card::before,
.promise-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--steel));
}

.product-card h3,
.industry-card h3,
.promise-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.55rem;
}

.product-card p,
.industry-card p,
.promise-card p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.product-card ul,
.site-footer ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text);
}

.product-card li,
.site-footer li {
  margin: 0.35rem 0;
}

.section-cta {
  justify-content: center;
  text-align: center;
  margin-top: 2rem;
}

.section-cta p {
  margin: 0;
  color: var(--muted);
}

.brand-banner {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.75rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(95, 127, 158, 0.18), rgba(241, 90, 36, 0.18)),
    #173147;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-label {
  margin: 0 0 0.6rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.brand-banner h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.brand-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

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

.contact-card {
  display: block;
  padding: 1.25rem 1.3rem;
}

.contact-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.contact-card strong {
  display: block;
  color: var(--text);
  line-height: 1.5;
}

.map-frame {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 3rem 0 2rem;
  background: #0b0c0e;
  border-top: 1px solid var(--line);
}

.footer-grid {
  align-items: start;
}

.footer-logo {
  width: min(260px, 100%);
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin: 0 0 0.9rem;
  font-size: 1.5rem;
}

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

.site-footer li,
.site-footer p,
.site-footer a {
  color: var(--muted);
  line-height: 1.8;
}

.footer-bar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.whatsapp-wrap {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 0.75rem;
}

.whatsapp-panel {
  width: min(320px, calc(100vw - 2rem));
  overflow: hidden;
  border-radius: 20px 20px 8px 20px;
  border: 1px solid rgba(37, 211, 102, 0.3);
  background: #101615;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.whatsapp-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--success);
  color: #07240d;
}

.whatsapp-panel-head strong,
.whatsapp-panel-head span {
  display: block;
}

.whatsapp-panel-head span {
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.whatsapp-panel-head button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1;
}

.whatsapp-panel-body {
  padding: 1rem;
}

.whatsapp-panel-body p {
  margin: 0 0 0.75rem;
  color: #dfe8e3;
  line-height: 1.65;
}

.whatsapp-hours {
  color: #9eb9ac !important;
  font-size: 0.9rem;
}

.whatsapp-fab {
  min-width: 144px;
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  padding: 0 1.2rem;
  background: var(--success);
  color: #07240d;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(37, 211, 102, 0.35);
}

@media (min-width: 760px) {
  .brand-banner,
  .footer-grid,
  .split-layout,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

@media (max-width: 979px) {
  .hero-panel {
    order: -1;
  }
}

@media (max-width: 639px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .button,
  .whatsapp-fab {
    width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
