/* =============================================
   GISBEL — Modern Corporate Redesign
   Design System & Complete Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Green Palette */
  --green-950: hsl(145, 70%, 8%);
  --green-900: hsl(145, 65%, 12%);
  --green-800: hsl(145, 63%, 18%);
  --green-700: hsl(145, 60%, 24%);
  --green-600: hsl(145, 58%, 30%);
  --green-500: hsl(145, 55%, 38%);
  /* Primary */
  --green-400: hsl(148, 52%, 48%);
  --green-300: hsl(150, 55%, 60%);
  --green-200: hsl(150, 60%, 78%);
  --green-100: hsl(145, 55%, 93%);
  --green-50: hsl(145, 60%, 97%);

  /* Neutral Palette */
  --neutral-950: hsl(222, 25%, 7%);
  --neutral-900: hsl(222, 22%, 11%);
  --neutral-800: hsl(220, 18%, 18%);
  --neutral-700: hsl(220, 14%, 28%);
  --neutral-600: hsl(220, 10%, 38%);
  --neutral-500: hsl(220, 9%, 50%);
  --neutral-400: hsl(220, 10%, 63%);
  --neutral-300: hsl(220, 12%, 78%);
  --neutral-200: hsl(220, 14%, 90%);
  --neutral-100: hsl(220, 20%, 95%);
  --neutral-50: hsl(220, 30%, 98%);
  --white: #ffffff;

  /* Semantic */
  --primary: var(--green-500);
  --primary-dark: var(--green-600);
  --primary-light: var(--green-400);
  --primary-bg: var(--green-50);
  --primary-ring: rgba(26, 143, 74, 0.25);

  --text-heading: var(--neutral-950);
  --text-body: var(--neutral-700);
  --text-muted: var(--neutral-500);
  --surface: var(--white);
  --surface-alt: var(--neutral-50);
  --border: var(--neutral-200);
  --border-strong: var(--neutral-300);

  /* Spacing */
  --section-py: 110px;
  --container-max: 1200px;
  --container-px: clamp(20px, 5vw, 64px);

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-green: 0 6px 24px rgba(26, 143, 74, 0.28);

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
  --r-full: 9999px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================
   BASE
   ============================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: var(--font);
}

/* =============================================
   UTILITIES
   ============================================= */
.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--green-100);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(26, 143, 74, 0.15);
}

.tag-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-300);
  border-color: rgba(255, 255, 255, 0.15);
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.heading-light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.75;
}

.subtitle-light {
  color: rgba(255, 255, 255, 0.6);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26, 143, 74, 0.38);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.48);
}

.btn-primary-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-primary-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-white {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-green);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 143, 74, 0.35);
}



/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   HEADER / NAV
   ============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow 0.35s var(--ease);
}

.header.scrolled {
  box-shadow: 0 1px 0 var(--border), 0 6px 28px rgba(0, 0, 0, 0.09);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  flex-shrink: 0;
  height: 130px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.logo img {
  height: 130px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  border-radius: var(--r-sm);
  transition: all 0.2s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 50%;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer close button — hidden on desktop */
.drawer-close {
  display: none;
}

/* Mobile Menu Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, hsl(145, 58%, 30%) 0%, transparent 70%);
  top: -280px;
  right: -180px;
  opacity: 0.7;
  animation: orbFloat 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsl(145, 55%, 18%) 0%, transparent 70%);
  bottom: -150px;
  left: -80px;
  opacity: 0.55;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(25px, -18px) scale(1.04);
  }

  66% {
    transform: translate(-18px, 8px) scale(0.97);
  }
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 200px var(--container-px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeInDown 0.6s var(--ease-out) both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green-300);
  border-radius: 50%;
  animation: pulseDot 2.5s ease infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(144, 238, 144, 0.5);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 4px rgba(144, 238, 144, 0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s var(--ease-out) 0.1s both;
}

.text-gradient {
  background: linear-gradient(135deg, hsl(150, 80%, 68%) 0%, hsl(145, 70%, 80%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.7s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  animation: fadeInUp 0.7s var(--ease-out) 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  animation: fadeInUp 0.7s var(--ease-out) 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Dashboard Mockup */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.95s var(--ease-out) 0.3s both;
}

/* Hero Intro Card */
.hero-intro-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 40px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: all 0.35s var(--ease);
}

.hero-intro-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 143, 74, 0.35);
  box-shadow: 
    0 35px 90px rgba(26, 143, 74, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.intro-card-glow {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 143, 74, 0.22) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  transition: opacity 0.5s var(--ease);
}

.hero-intro-card:hover .intro-card-glow {
  background: radial-gradient(circle, rgba(26, 143, 74, 0.35) 0%, transparent 70%);
}

.intro-card-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.intro-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.intro-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.intro-desc {
  font-size: 1.0625rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-weight: 500;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-feature-item {
  display: flex;
  gap: 16px;
}

.intro-feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(26, 143, 74, 0.2);
  border: 1px solid rgba(26, 143, 74, 0.4);
  color: var(--green-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.intro-feature-item strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}

.intro-feature-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.45;
}

/* Floating badges */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--r-full);
  padding: 9px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neutral-800);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  border: 1px solid var(--border);
}

.float-badge-1 {
  top: -18px;
  left: -36px;
  animation: floatY 4.5s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 48px;
  right: -32px;
  animation: floatY 5.5s ease-in-out infinite;
  animation-delay: 1.2s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
  animation: scrollPulse 2.2s ease infinite;
}

@keyframes scrollPulse {
  0% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0.4);
  }
}

/* Product Badges */
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  margin-top: 2px;
}

.p-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--green-50);
  color: var(--primary);
  border: 1px solid rgba(26, 143, 74, 0.18);
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Phone Extension Badge */
.ext-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-muted);
  border-radius: 4px;
  margin-left: 6px;
  border: 1px solid var(--border);
  display: inline-block;
  vertical-align: middle;
  line-height: 1.2;
}

.footer .ext-badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Footer Inline Contact Item */
.contact-item-inline {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  gap: 4px;
}

.contact-item-inline a {
  display: inline-block !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s;
}

.contact-item-inline a:hover {
  color: var(--green-300);
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}

.stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.stat-big {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-text {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

.stat-plus {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.stat-sep {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: var(--section-py) 0;
  background: var(--surface-alt);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-body {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 24px;
}

.about-quote {
  border-left: 3px solid var(--primary);
  padding: 18px 22px;
  background: var(--green-50);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  color: var(--neutral-700);
  font-size: 0.9375rem;
  line-height: 1.72;
  margin-bottom: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  transition: all 0.28s var(--ease);
}

.feature-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--green-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
  transition: all 0.28s var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: var(--white);
}

.feature-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 7px;
}

.feature-card p {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* =============================================
   PRODUCTS
   ============================================= */
.products {
  padding: var(--section-py) 0;
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
  transition: background 0.28s var(--ease);
}

.product-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card:hover::before {
  background: var(--primary);
}

.product-icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--green-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.28s var(--ease);
}

.product-card:hover .product-icon-wrap {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.product-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 20px;
}

.product-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s var(--ease), opacity 0.25s;
  margin-top: auto;
}

.product-link:hover {
  gap: 10px;
  opacity: 0.8;
}

/* =============================================
   WHY US
   ============================================= */
.why-us {
  padding: var(--section-py) 0;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.why-us .section-container {
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.why-icon {
  width: 62px;
  height: 62px;
  background: rgba(26, 143, 74, 0.25);
  border: 1px solid rgba(26, 143, 74, 0.4);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
  margin: 0 auto 20px;
  transition: all 0.28s var(--ease);
}

.why-card:hover .why-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.84375rem;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.7;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: var(--section-py) 0;
  background: var(--surface-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 42px 38px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

/* Animated gradient border on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--green-300)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.service-icon-top {
  width: 60px;
  height: 60px;
  background: var(--green-100);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 22px;
  transition: all 0.28s var(--ease);
}

.service-card:hover .service-icon-top {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.4375rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 12px;
}

.service-card>p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: 0.9375rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.service-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--green-100);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231a8f4a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* =============================================
   CLIENTS / TESTIMONIALS
   ============================================= */
.clients {
  padding: var(--section-py) 0;
  background: var(--white);
}

/* Premium Client Grid */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.client-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 2px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--green-300)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.client-card:hover::after {
  opacity: 1;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}

.client-icon {
  width: 48px;
  height: 48px;
  background: var(--green-50);
  border-radius: var(--r-lg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.client-card:hover .client-icon {
  background: var(--primary);
  color: var(--white);
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-info h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.01em;
}

.client-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--r-md);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.client-tag.bank {
  background: var(--green-50);
  color: var(--primary);
}

.client-tag.finance {
  background: hsl(210, 100%, 96%);
  color: hsl(210, 100%, 45%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all 0.28s var(--ease);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.35;
}

.testimonial-card>p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--green-100);
  border: 1.5px solid var(--green-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-heading);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  background: var(--green-900);
  clip-path: polygon(0 7%, 100% 0, 100% 93%, 0 100%);
  margin: -36px 0;
  z-index: 1;
}

.cta-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 143, 74, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(26, 143, 74, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.cta-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px var(--container-px);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.72;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: var(--section-py) 0;
  padding-top: calc(var(--section-py) + 36px);
  background: var(--surface-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all 0.28s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.contact-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: var(--green-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.28s var(--ease);
}

.contact-card:hover .contact-card-icon {
  background: var(--primary);
  color: var(--white);
}

.contact-card h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-heading);
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.contact-card p a {
  color: var(--primary);
  font-weight: 500;
  transition: opacity 0.2s;
}

.contact-card p a:hover {
  opacity: 0.72;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--neutral-950);
}

.footer-top {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 72px var(--container-px) 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  max-width: 290px;
  margin-bottom: 26px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s var(--ease);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links-col h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.48);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.footer-links-col ul li a:hover {
  color: var(--green-300);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px var(--container-px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
  max-width: 100%;
}

/* =============================================
   RESPONSIVE — TABLET (≤ 1100px)
   ============================================= */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 968px)
   ============================================= */
@media (max-width: 968px) {
  :root {
    --section-py: 72px;
  }

  /* Nav — Header */
  .header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(160%) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  }

  .nav-container {
    padding: 8px var(--container-px);
  }

  .logo {
    height: 100px;
  }

  .logo img {
    height: 100px;
  }

  /* Nav — Mobile Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 80vw);
    flex-direction: column;
    background: #ffffff;
    padding: 24px 28px 36px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
    z-index: 1100;
    gap: 4px;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.35s var(--ease),
                visibility 0.35s var(--ease),
                opacity 0.35s var(--ease);
    overflow-y: auto;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }

  /* Drawer Close Button */
  .drawer-close {
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    color: var(--neutral-700);
    transition: all 0.2s var(--ease);
    margin-bottom: 16px;
    flex-shrink: 0;
  }

  .drawer-close:hover {
    background: var(--neutral-100);
    color: var(--neutral-900);
  }

  .nav-link {
    color: var(--neutral-800) !important;
    font-size: 1rem !important;
    padding: 14px 18px !important;
    border-radius: var(--r-md);
    background: transparent;
    width: 100%;
  }

  .nav-link:hover {
    background: var(--green-50);
    color: var(--primary) !important;
  }

  .nav-link.active {
    background: var(--green-100);
    color: var(--primary) !important;
    font-weight: 600;
  }

  .nav-link::after {
    display: none !important;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    z-index: 1200;
    position: relative;
  }

  .menu-toggle span {
    background: var(--neutral-800) !important;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 120px var(--container-px) 72px;
  }

  .hero-intro-card {
    margin-top: 48px;
    padding: 32px 24px;
    text-align: left;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-visual {
    display: none;
  }

  .hero-text {
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 28px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  /* Sections */
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Stats */
  .stat-item {
    padding: 0 28px;
  }

  .stats-container {
    gap: 0;
    flex-wrap: wrap;
  }

  /* CTA */
  .cta-banner {
    clip-path: none;
    margin: 0;
    padding: 80px 0;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
  :root {
    --section-py: 60px;
  }

  .logo {
    height: 80px;
  }

  .logo img {
    height: 80px;
  }

  .hero-container {
    padding: 110px var(--container-px) 60px;
  }

  .hero-intro-card {
    padding: 24px 18px;
    margin-top: 32px;
  }

  .intro-title {
    font-size: 1.35rem;
  }

  .intro-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .client-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stat-sep {
    display: none;
  }

  .stat-item {
    padding: 14px 20px;
    width: 50%;
    border-bottom: 1px solid var(--border);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .service-card {
    padding: 28px 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}