*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #32cd32;
  --primary-dark: #28a428;
  --primary-light: #eafbea;
  --secondary: #0b1220;
  --accent: #6eeb83;
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #0f172a;
  --text-muted: #54607a;
  --text-faint: #8893a8;
  --border: rgba(15, 23, 42, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-bg-dark: rgba(255, 255, 255, 0.05);
  --glass-border-dark: rgba(255, 255, 255, 0.12);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 8px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 12px 32px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 24px 64px rgba(11, 18, 32, 0.12);
  --shadow-glow: 0 8px 32px rgba(50, 205, 50, 0.28);
  --shadow-glow-lg: 0 20px 60px rgba(50, 205, 50, 0.32);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "ClashGrotesk Variable", Inter, sans-serif;
  --font-body: Inter, system-ui, sans-serif;
  --container-w: 1240px;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-top: 84px;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
input,
textarea,
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
}
textarea {
  resize: vertical;
}
button {
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text);
}
p,
li {
  max-width: 72ch;
}
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 96px 0;
  position: relative;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* GRAIN */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    background 0.3s ease;
  border: none;
  overflow: hidden;
  isolation: isolate;
}
.btn span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-lg);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.3),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::after {
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}
.btn-lg {
  padding: 14px 28px;
  font-size: 14.5px;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* SECTION LABELS & HEADERS */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-label.light {
  background: rgba(110, 235, 131, 0.14);
  color: var(--accent);
}
.section-title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 650;
  line-height: 1.16;
  color: var(--text);
  margin-bottom: 14px;
}
.section-title.light {
  color: #fff;
}
.section-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}
.section-desc.center-desc {
  max-width: 560px;
  margin: 0 auto;
}
.section-center-header {
  text-align: center;
  margin-bottom: 52px;
}
.text-gradient {
  background: linear-gradient(
    100deg,
    var(--accent) 0,
    var(--primary) 55%,
    var(--primary-dark) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* PAGE HERO */
.page-hero {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
  padding: 98px 0 96px;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(5, 15, 35, 0.82) 0%,
      rgba(5, 15, 35, 0.55) 35%,
      rgba(5, 15, 35, 0.18) 65%,
      rgba(5, 15, 35, 0.04) 100%
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 235, 131, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 235, 131, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(50, 205, 50, 0.18),
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}
.page-hero-breadcrumb a {
  color: var(--accent);
}
.page-hero h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(92%, 1180px);
  background: rgba(248, 250, 252, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 32px rgba(11, 18, 32, 0.08);
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease,
    top 0.4s ease;
}
.navbar.scrolled {
  top: 12px;
  background: rgba(248, 250, 252, 0.92);
  box-shadow: 0 12px 40px rgba(11, 18, 32, 0.14);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 8px 8px 18px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 9px;
  flex-shrink: 0;
}
.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.1;
  font-family: var(--font-display);
  white-space: nowrap;
}
.logo-text em {
  font-style: normal;
  color: var(--primary-dark);
  display: block;
  margin-top: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  transition:
    color 0.3s ease,
    background 0.3s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary);
  background: rgba(50, 205, 50, 0.12);
}
.nav-cta {
  flex-shrink: 0;
  padding: 10px 18px !important;
  font-size: 13px;
  border-radius: var(--radius-pill) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-links-mobile {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  z-index: 998;
}
.nav-links-mobile.open {
  display: flex;
}
.nav-links-mobile a {
  display: block;
  padding: 13px 18px;
  font-weight: 500;
  color: var(--text);
  border-radius: 14px;
}
.nav-links-mobile a:hover {
  background: var(--primary-light);
}
.nav-links-mobile .btn {
  margin-top: 8px;
  justify-content: center;
}

/* FOOTER */
.footer {
  background: var(--secondary);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(50, 205, 50, 0.1), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 280px;
  margin: 16px 0 8px;
}
.footer-owner {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-owner-label {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.footer-logo .logo-text {
  color: #fff;
}
.footer-logo-img {
  width: 34px;
  height: 34px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition:
    background 0.3s ease,
    transform 0.4s var(--ease);
  flex-shrink: 0;
}
.footer-social-icon:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-links-col h5,
.footer-newsletter-col h5 {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition:
    color 0.3s ease,
    padding-left 0.3s ease;
}
.footer-links-col a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-newsletter-col p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  line-height: 1.65;
}
.footer-contact-mini p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1;
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 18px 0;
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}
.footer-bottom-inner .footer-credit {
  color: rgba(255, 255, 255, 0.26);
}
.footer-bottom-inner a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.footer-bottom-inner a:hover {
  color: var(--accent);
}

/* FLOATING BTNS */
.floating-btns {
  position: fixed;
  right: 22px;
  bottom: 26px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.float-btn:hover {
  transform: scale(1.1) translateY(-2px);
}
.float-wa {
  background: #25d366;
  color: #fff;
}
.float-call {
  background: var(--secondary);
  color: #fff;
  border: 2px solid rgba(110, 235, 131, 0.3);
}

/* REVEAL ANIMATIONS */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
}
.reveal-up {
  transform: translateY(36px);
}
.reveal-left {
  transform: translateX(-36px);
}
.reveal-right {
  transform: translateX(36px);
}
.reveal-scale {
  transform: scale(0.94);
}
.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* RESPONSIVE */
@media (max-width: 860px) {
  .section {
    padding: 64px 0;
  }
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}
