:root {
  --bg: #111;
  --panel: #1b1b1b;
  --panel2: #222;
  --text: #f5f5f5;
  --muted: #b9b9b9;
  --green: #7ec000;
  --green2: #96d629;
  --blue: #4f9cff;
  --line: #333;
  --white: #fff;
  --radius: 20px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 999;
  background: #fff;
  padding: 10px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #292929;
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img {
  width: 220px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #eee;
  font-size: 0.95rem;
}
.main-nav a:hover {
  color: var(--green2);
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.7rem;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #111 !important;
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--green2);
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid #555;
}
.btn-dark {
  background: #1b1b1b;
  color: #fff !important;
}
.btn-small {
  padding: 10px 14px;
  font-size: 0.86rem;
}
.hero {
  background:
    radial-gradient(circle at 80% 10%, #26341f 0, transparent 35%), #111;
  color: #fff;
  padding: 88px 0 74px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  color: var(--green2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}
h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  letter-spacing: -0.05em;
  max-width: 820px;
}
.hero p {
  font-size: 1.18rem;
  color: #d0d0d0;
  max-width: 700px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #bdbdbd;
  font-size: 0.9rem;
}
.hero-art img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.section {
  padding: 84px 0;
}
.section-dark {
  background: #151515;
  color: #fff;
}
.section-soft {
  background: #f4f5f2;
}
.section-head {
  max-width: 780px;
  margin-bottom: 40px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
}
.section-head p {
  font-size: 1.08rem;
  color: #666;
}
.section-dark .section-head p {
  color: #bbb;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}
.card h3 {
  font-size: 1.35rem;
}
.card p {
  color: #666;
}
.card ul {
  padding-left: 18px;
  color: #555;
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.link-arrow {
  font-weight: 800;
  color: #5a9000;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.split h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.split p {
  color: #666;
}
.section-dark .split p {
  color: #bbb;
}
.checks {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.check {
  display: flex;
  gap: 12px;
}
.check:before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.audience article {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e3e3e3;
}
.audience strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.audience p {
  color: #666;
  text-align: justify;
}
article p {
  text-align: justify;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  background: #1d1d1d;
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #303030;
}
.price-card.recommended {
  outline: 3px solid var(--green);
}
.price-top {
  padding: 30px;
}
.price {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.price small {
  font-size: 1rem;
  font-weight: 500;
  color: #bbb;
}
.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--green);
  color: #111;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}
.price-features {
  padding: 24px 30px;
  background: #f4f4f4;
  color: #222;
}
.price-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-features li {
  padding: 9px 0;
  border-bottom: 1px solid #ddd;
}
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e3e3e3;
}
.step b {
  font-size: 2.4rem;
  color: var(--green);
}
.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #e5e5e5;
}
.project .tag {
  font-size: 0.78rem;
  color: #5a9000;
  font-weight: 800;
  text-transform: uppercase;
}
.project .metric {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #eee;
  font-weight: 800;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quote {
  background: #222;
  color: #fff;
  padding: 28px;
  border-radius: 20px;
}
.quote p {
  color: #ddd;
}
.quote small {
  color: #aaa;
}
.cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #78b900, #a7e63c);
  color: #101010;
}
.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 740px;
}
.cta .btn {
  background: #111;
  color: #fff !important;
}
.page-hero {
  background: #141414;
  color: #fff;
  padding: 72px 0;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  max-width: 900px;
}
.page-hero p {
  font-size: 1.15rem;
  color: #bbb;
  max-width: 760px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-detail {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 45px;
  align-items: start;
}
.service-detail img {
  border-radius: 22px;
}
.table-wrap {
  overflow: auto;
}
.comparison {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
.comparison th,
.comparison td {
  padding: 16px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}
.comparison th {
  background: #1b1b1b;
  color: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.post {
  padding: 28px;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
}
.post .meta {
  color: #6a960e;
  font-weight: 800;
  font-size: 0.8rem;
}
.post p {
  color: #666;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
}
.form {
  display: grid;
  gap: 16px;
}
.form label {
  font-weight: 700;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font: inherit;
}
.form textarea {
  min-height: 150px;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
.notice {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.notice.ok {
  background: #e9f7da;
  color: #294c00;
}
.notice.error {
  background: #ffe6e6;
  color: #7d0000;
}
.footer {
  background: #111;
  color: #eee;
  padding: 58px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 35px;
}
.footer-grid h3 {
  font-size: 1rem;
}
.footer-grid a {
  display: block;
  color: #bbb;
  margin: 8px 0;
}
.footer-logo {
  width: 210px;
  height: 60px;
  object-fit: contain;
  object-position: left;
}
.muted {
  color: #999;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #292929;
  padding-top: 20px;
  margin-top: 32px;
  color: #888;
  font-size: 0.88rem;
}
.footer-bottom a {
  color: #888;
}
.footer-bottom a:hover {
  color: var(--green2);
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: #081c0f;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.kpi {
  padding: 20px;
  border-left: 3px solid var(--green);
}
.kpi b {
  display: block;
  font-size: 1.4rem;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: #151515;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
  .hero-grid,
  .split,
  .contact-grid,
  .service-detail {
    grid-template-columns: 1fr;
  }
  .cards,
  .pricing,
  .audience,
  .projects,
  .testimonials,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max));
  }
  .hero {
    padding-top: 56px;
  }
  .cards,
  .pricing,
  .audience,
  .projects,
  .testimonials,
  .blog-grid,
  .process,
  .service-grid,
  .kpi-row {
    grid-template-columns: 1fr;
  }
  .cta-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand img {
    width: 185px;
  }
  .section {
    padding: 62px 0;
  }
}
