/* ============================================================
   INNOVATE TECH LOCAL — Clean modern green/gold theme
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #08160f;
  --bg-soft: #111f14;
  --surface: rgba(18, 32, 23, 0.92);
  --surface-soft: rgba(24, 40, 28, 0.90);
  --surface-strong: rgba(10, 18, 12, 0.98);
  --text: #f4eed5;
  --muted: #b5c196;
  --gold: #f2b82c;
  --bright: #ffe8a0;
  --green: #7dc985;
  --border: rgba(242, 184, 44, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
  --radius: 28px;
  --radius-sm: 16px;
  --header-height: 74px;
  --max-width: 1180px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top right, rgba(242, 184, 44, 0.09), transparent 22%),
    radial-gradient(circle at bottom left, rgba(125, 201, 133, 0.08), transparent 20%),
    linear-gradient(180deg, #07150e 0%, #08150d 45%, #060c08 100%);
  color: var(--text);
  font-family: var(--font-family);
  line-height: 1.6;
  word-wrap: break-word;
}

h1, h2, h3, p, ul, li, label, a, span {
  overflow-wrap: break-word;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover,
a:focus-visible {
  color: var(--bright);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  border: none;
  background: none;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 20px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max-width), calc(100% - 24px));
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(10, 18, 13, 0.90);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  height: 46px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--text);
  background: rgba(242, 184, 44, 0.15);
  border: 1px solid rgba(242, 184, 44, 0.18);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  cursor: pointer;
}

.mobile-menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62vh;
  gap: 1.4rem;
  margin-top: 12px;
  padding: 50px 20px 70px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(13, 24, 15, 0.96), rgba(9, 16, 11, 0.94));
  border: 1px solid rgba(242, 184, 44, 0.14);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 36px 30px;
  border-radius: 32px;
  text-align: center;
  background: rgba(18, 33, 22, 0.88);
  border: 1px solid rgba(242, 184, 44, 0.16);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.02;
}

.hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #081108;
  background: linear-gradient(135deg, rgba(255, 236, 128, 0.96), rgba(242, 184, 44, 0.95));
  box-shadow: 0 20px 46px rgba(242, 184, 44, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(21, 40, 25, 0.92);
  border: 1px solid rgba(242, 184, 44, 0.14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.eyebrow {
  display: inline-flex;
  gap: 0.3rem;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(115, 167, 92, 0.18);
  color: var(--bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(242, 184, 44, 0.14);
}

.section {
  padding: 46px 0;
}

.section-grid,
.services-grid,
.compliance-grid,
.section-values,
.contact-grid {
  display: grid;
  gap: 22px;
}

.section-grid,
.services-grid,
.compliance-grid,
.section-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-split {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.25fr 0.85fr;
}

.section-banner {
  display: grid;
  gap: 22px;
  padding: 34px 32px;
  background: linear-gradient(180deg, rgba(18, 34, 22, 0.94), rgba(14, 24, 16, 0.97));
  border: 1px solid rgba(242, 184, 44, 0.14);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.section-banner h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.banner-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.banner-features div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(18, 34, 22, 0.96);
  border: 1px solid rgba(242, 184, 44, 0.12);
}

.banner-features strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.banner-features span {
  color: var(--muted);
}

.glass-card {
  padding: 28px;
  border-radius: 32px;
  background: rgba(17, 29, 20, 0.92);
  border: 1px solid rgba(242, 184, 44, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.glass-card h3,
.glass-card h2 {
  margin-top: 0;
}

.glass-card p,
.glass-card li,
.glass-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.glass-card ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.glass-card li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.glass-card li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.card-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 16px;
  opacity: 0.95;
}

.contact-card,
.section-card,
.service-card,
.value-card {
  min-height: 220px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(16, 27, 18, 0.92);
  border: 1px solid rgba(242, 184, 44, 0.12);
  border-radius: 20px;
  padding: 15px 16px;
  color: var(--text);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(242, 184, 44, 0.5);
  box-shadow: 0 0 0 4px rgba(242, 184, 44, 0.12);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto 40px;
  padding: 32px 0;
  color: var(--muted);
  font-size: 0.93rem;
  border-top: 1px solid rgba(242, 184, 44, 0.14);
}

.site-footer > div {
  flex: 1 1 260px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--gold);
}

.footer-links a:hover {
  color: var(--bright);
}

.floating-marquee {
  position: relative;
  margin: 0 auto 22px;
  width: min(92%, 1120px);
  overflow: hidden;
  pointer-events: none;
  padding: 12px 0;
  background: rgba(18, 30, 20, 0.78);
  border: 1px solid rgba(242, 184, 44, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.floating-marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.floating-marquee__track span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 236, 210, 0.92);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0 1.8rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.floating-whatsapp::before {
  content: "💬";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.35rem;
}

.floating-whatsapp span {
  display: none;
}


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.itn-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 15, 20, 0.84);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 9999;
}

.itn-modal.visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.itn-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.itn-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 80px);
  overflow: auto;
  padding: 32px;
  border: 1px solid rgba(242, 184, 44, 0.18);
  border-radius: 28px;
  background: rgba(16, 27, 18, 0.96);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.itn-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.itn-modal__title {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.itn-modal__close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 1024px) {
  .section-grid,
  .services-grid,
  .compliance-grid,
  .section-values,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-split {
    grid-template-columns: 1fr;
  }

  .banner-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .page-shell {
    width: calc(100% - 24px);
    padding-top: calc(var(--header-height) + 14px);
  }

  .site-header {
    width: calc(100% - 24px);
    padding: 14px 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    z-index: 220;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(10, 18, 13, 0.96);
    border: 1px solid rgba(242, 184, 44, 0.18);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 52vh;
    padding: 38px 18px 60px;
  }

  .hero-copy {
    padding: 28px 22px;
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 6vw, 2.6rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section-banner,
  .glass-card {
    padding: 24px;
  }

  .banner-features {
    grid-template-columns: 1fr;
  }

  .section-grid,
  .services-grid,
  .compliance-grid,
  .section-values,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: calc(100% - 24px);
    padding: 24px 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.75rem;
  }

  .hero {
    padding: 28px 14px 52px;
  }

  .hero-copy {
    padding: 22px 18px;
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .floating-marquee {
    padding: 10px 0;
  }

  .floating-marquee__track span {
    font-size: 0.82rem;
    padding: 0 1rem;
  }

  .section-grid,
  .services-grid,
  .compliance-grid,
  .section-values,
  .contact-grid {
    gap: 18px;
  }

  .glass-card,
  .section-banner,
  .site-footer > div {
    padding: 20px;
  }
}
