:root {
  --green: #00B140;
  --green-dark: #008A38;
  --cyan: #00E5D4;
  --blue: #05D6FF;
  --dark: #061014;
  --dark-2: #0B1B20;
  --dark-3: #10272D;
  --white: #FFFFFF;
  --muted: #B7C8CC;
  --line: rgba(0, 229, 212, .22);
  --shadow: 0 22px 60px rgba(0, 229, 212, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--dark);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px max(16px, calc((100vw - 1120px) / 2));
  background: rgba(1, 10, 14, .88);
  border-bottom: 1px solid rgba(0, 229, 212, .16);
  backdrop-filter: blur(16px);
}
.home-page .site-header { justify-content: center; }
.home-page .site-header .brand { display: none; }
.home-page .site-header .nav { margin: 0 auto; }
.brand { display: flex; align-items: center; min-width: 220px; }
.brand img {
  width: 218px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 12px; line-height: 1.2; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 14px;
}
.nav a:hover, .nav a.active { color: var(--cyan); background: rgba(0,229,212,.09); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: rgba(255,255,255,.08); border-radius: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--white); }

.hero {
  position: relative;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  background: #020b0f;
  margin-top: 76px;
  border-bottom: 1px solid rgba(0,229,212,.18);
}
.hero-banner-img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.home-intro {
  padding: 44px 0;
  background: linear-gradient(180deg, #020b0f, #061014);
  border-bottom: 1px solid rgba(0,229,212,.18);
}
.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 22px;
}
.home-intro-copy, .hero-panel {
  border: 1px solid rgba(0,229,212,.22);
  background: rgba(2,11,15,.62);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.home-intro-copy { padding: 26px; }
.home-intro-copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.16;
}
.home-intro-copy p { max-width: 720px; color: rgba(255,255,255,.86); font-size: 18px; margin: 8px 0 0; }
.hero-panel { display: grid; gap: 14px; padding: 18px; }
.metric {
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(0,229,212,.08);
  border: 1px solid rgba(0,229,212,.16);
}
.metric strong { font-size: 26px; color: var(--cyan); line-height: 1; }
.metric span { color: rgba(255,255,255,.86); }
.eyebrow { color: var(--green); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--green), #00d66b); box-shadow: 0 12px 30px rgba(0,177,64,.28); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); }

.stats-band {
  color: var(--white);
  background: linear-gradient(90deg, #001318, #003d2b, #001318);
  border-top: 1px solid rgba(0,229,212,.18);
  border-bottom: 1px solid rgba(0,229,212,.18);
}
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.stats div { padding: 24px 10px; }
.stats strong { display: block; font-size: 30px; }
.stats span { color: rgba(255,255,255,.82); }

.section { padding: 82px 0; }
.section-muted { background: linear-gradient(135deg, #071419, #09241d); }
.section-dark { background: #030b0f; color: var(--white); }
.section-head { margin-bottom: 34px; }
.section-head h2, .split h2, .cta h2, .page-hero h1 {
  max-width: 820px;
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}
.section-head p, .split p, .page-hero p { max-width: 760px; color: var(--muted); font-size: 18px; }

.card-grid, .project-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .blog-grid article, .project-card, .services-list article, .contact-card, .portfolio article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16,39,45,.92), rgba(6,16,20,.96));
  box-shadow: 0 8px 26px rgba(0,229,212,.05);
}
.service-card, .blog-grid article { min-height: 230px; padding: 26px; }
.service-card span, .blog-grid span { color: var(--cyan); font-weight: 900; }
.service-card h3, .blog-grid h2 { margin: 18px 0 10px; line-height: 1.2; }
.service-card p, .blog-grid p, .project-card p, .content p, .services-list p, .portfolio p, details p, .portfolio ul, .feature-list span, .values span { color: var(--muted); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: start; }
.feature-list { display: grid; gap: 14px; }
.feature-list div, .values div {
  padding: 20px;
  border-left: 4px solid var(--green);
  background: rgba(16,39,45,.88);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.feature-list strong, .values strong { display: block; margin-bottom: 4px; }

.project-card { overflow: hidden; }
.project-card h3, .project-card p { margin-left: 20px; margin-right: 20px; }
.project-card p { margin-bottom: 22px; }
.testimonials { display: grid; grid-template-columns: .85fr 1fr 1fr; gap: 20px; align-items: stretch; }
blockquote {
  margin: 0;
  padding: 26px;
  border: 1px solid rgba(0,229,212,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
cite { display: block; margin-top: 18px; color: var(--green); font-style: normal; font-weight: 800; }
.faq { max-width: 920px; }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 800; font-size: 18px; }

.cta { padding: 70px 0; color: var(--white); background: linear-gradient(135deg, #001318, #00482f); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.cta p { color: rgba(255,255,255,.82); }

.page { padding-top: 76px; }
.page-hero { padding: 86px 0 64px; color: var(--white); background: linear-gradient(135deg, #001318, #063326); }
.services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.services-list article, .contact-card { padding: 28px; }
.services-list h2 { margin-top: 0; }
.portfolio { display: grid; gap: 22px; }
.portfolio article {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  padding: 18px;
  align-items: center;
}
.portfolio ul { padding-left: 20px; }
.content { max-width: 880px; }
.content h2 { margin-top: 34px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16,39,45,.82);
}
.form label { display: grid; gap: 7px; font-weight: 800; }
.form input, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: #071419;
  background: var(--white);
}
.form input:focus, .form textarea:focus { outline: 2px solid rgba(0,229,212,.25); border-color: var(--cyan); }
.full { grid-column: 1 / -1; }
.contact-card h2 { margin-top: 0; }
.blog-grid article a { color: var(--cyan); font-weight: 900; }
.legal .content { max-width: 860px; }

.footer { padding: 54px 0 24px; color: var(--white); background: #02080b; border-top: 1px solid rgba(0,229,212,.18); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr .8fr; gap: 30px; }
.footer h2, .footer h3 { margin-top: 0; }
.footer-logo { width: 230px; height: auto; margin-bottom: 12px; }
.footer a, .footer p { display: block; color: rgba(255,255,255,.74); margin: 8px 0; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: 14px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #25D366;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0,0,0,.24);
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #061014;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .home-page .site-header { justify-content: space-between; }
  .home-page .site-header .brand { display: none; }
  .home-page .site-header .nav { margin: 0; }
  .home-page .nav-toggle { margin-left: auto; }
  .hero { margin-top: 76px; }
  .hero-banner-img { min-height: 0; object-position: center; }
  .home-intro-grid, .split, .contact-grid, .portfolio article, .testimonials { grid-template-columns: 1fr; }
  .stats, .card-grid, .project-grid, .services-list, .blog-grid, .values, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { display: block; }
  .portfolio article img { width: 100%; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, 1120px); }
  .site-header { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { width: 156px; height: 44px; }
  .brand small { display: none; }
  .nav { top: 68px; }
  .hero { margin-top: 68px; }
  .hero-banner-img { min-height: 0; object-position: center; opacity: 1; }
  .home-intro-copy, .hero-panel { padding: 16px; }
  .home-intro-copy p, .page-hero p { font-size: 17px; }
  .metric { grid-template-columns: 1fr; }
  .stats, .card-grid, .project-grid, .services-list, .blog-grid, .values, .footer-grid, .form { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .page { padding-top: 68px; }
  .page-hero { padding: 64px 0 46px; }
  .whatsapp-float { width: 54px; height: 54px; }
}
