/* ============================================================
   SERVELAB — style.css
   Built to Serve. Driven to Impact. Designed to Evolve.
   ============================================================ */

/* ─── RESET & ROOT ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-main: #080808;
  --bg-dark: #111111;
  --bg-card: #161616;
  --bg-section: #0f0f0f;
  --green-accent: #2d8a50;
  --green-light: #4db870;
  --green-glow: #7dda9b;
  --white: #ffffff;
  --gray-muted: #888888;
  --gray-light: #aaaaaa;
  --border-subtle: rgba(77, 184, 112, 0.12);
  --border-mid: rgba(77, 184, 112, 0.25);
  --font-head: "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
}

.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.section-desc {
  color: var(--gray-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}

/* ─── LAYOUT ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: 6rem 5%;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.btn-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 400;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}

.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
}

/* ─── DIVIDER ─── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 2rem 0;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: padding var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 5%;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--gray-muted);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-light);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green-accent) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  font-weight: 500 !important;
  font-size: 0.85rem;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--green-light) !important;
  color: var(--white) !important;
}

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

/* Lang Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-muted);
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  transition: all var(--transition);
  letter-spacing: 0.06em;
}

.lang-btn.active {
  background: var(--green-accent);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.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);
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 5%;
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  color: var(--gray-light);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition);
}

.mobile-nav a:hover {
  color: var(--white);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 60% at 70% 50%,
      rgba(45, 138, 80, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 15% 80%,
      rgba(77, 184, 112, 0.06) 0%,
      transparent 60%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(77, 184, 112, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 184, 112, 1) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 138, 80, 0.18);
  border: 1px solid rgba(77, 184, 112, 0.3);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--green-glow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

#hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

#hero h1 em {
  font-style: normal;
  color: var(--green-light);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: fadeUp 0.6s 0.4s ease both;
  flex-wrap: wrap;
}

.hero-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-muted);
  margin-bottom: 0.3rem;
}

.hero-stat-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.hero-stat-value span {
  color: var(--green-light);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-header-desc {
  max-width: 300px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-dark);
  padding: 2.2rem;
  transition: background var(--transition);
}

.service-card:hover {
  background: rgba(45, 138, 80, 0.08);
}

.service-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 138, 80, 0.18);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 0.6rem;
  color: var(--white);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--gray-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-card-main {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid var(--border-subtle);
  width: 100%;
}

.about-tagline {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.about-tagline span {
  color: var(--green-glow);
}

.about-body-text {
  color: var(--gray-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
}

.about-vision {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-vision-label {
  font-size: 0.72rem;
  color: var(--green-glow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-vision-text {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--white);
}

.about-text-side .section-label {
  margin-bottom: 0.6rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(45, 138, 80, 0.07);
  border: 1px solid var(--border-subtle);
  transition:
    background var(--transition),
    border-color var(--transition);
}

.why-item:hover {
  background: rgba(45, 138, 80, 0.13);
  border-color: var(--border-mid);
}

.why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.1rem;
  color: var(--white);
  font-weight: 700;
}

.why-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--white);
}

.why-text span {
  font-size: 0.83rem;
  color: var(--gray-muted);
  font-weight: 300;
  line-height: 1.5;
}

.section-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.divider-animated {
  width: 80px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(77, 184, 112, 0.95),
    rgba(77, 184, 112, 0.2)
  );
  margin: 1rem 0 1.5rem;
  animation: glowLine 2.5s ease-in-out infinite alternate;
}

.section-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.section-portfolio,
.section-pricing,
.section-industries,
.section-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-portfolio {
  background: rgba(255, 255, 255, 0.015);
}

.section-pricing {
  background: rgba(45, 138, 80, 0.03);
}

.section-industries {
  background: rgba(255, 255, 255, 0.01);
}

.section-trust {
  background: rgba(45, 138, 80, 0.02);
}

.portfolio-grid,
.pricing-grid,
.industries-grid,
.trust-grid,
.addon-grid {
  display: grid;
  gap: 1.25rem;
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.industries-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.addon-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-card,
.pricing-card,
.industry-card,
.trust-badge,
.addon-item,
.location-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition:
    transform 0.35s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(45, 138, 80, 0.14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.portfolio-card:hover,
.pricing-card:hover,
.industry-card:hover,
.trust-badge:hover,
.addon-item:hover,
.location-badge:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 184, 112, 0.35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-icon,
.trust-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(77, 184, 112, 0.15);
  border-radius: 18px;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}

.portfolio-service {
  color: var(--green-light);
  font-weight: 600;
  margin: 1rem 0 1.2rem;
  line-height: 1.6;
}

.portfolio-result {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 1rem 1rem;
  margin-bottom: 1.2rem;
}

.result-value {
  font-weight: 700;
  color: var(--white);
}

.portfolio-quote {
  font-style: italic;
  color: var(--gray-muted);
  line-height: 1.8;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  min-height: 100%;
}

.pricing-featured {
  background: linear-gradient(
    180deg,
    rgba(45, 138, 80, 0.14),
    rgba(15, 15, 15, 0.95)
  );
  border-color: rgba(77, 184, 112, 0.55);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(45, 138, 80, 0.15);
  color: var(--green-light);
  margin-bottom: 1rem;
  width: fit-content;
}

.pricing-amount {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin: 0.2rem 0 1rem;
}

.pricing-features {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.pricing-features .check {
  color: var(--green-light);
  margin-top: 0.25rem;
  min-width: 1rem;
}

.pricing-subtitle {
  color: var(--gray-muted);
  font-size: 0.93rem;
  margin-bottom: 1.2rem;
}

.addon-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.addon-name {
  font-weight: 700;
  color: var(--white);
}

.addon-price {
  color: var(--green-light);
  font-weight: 700;
}

.promo-banner {
  background: linear-gradient(
    180deg,
    rgba(45, 138, 80, 0.1),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(77, 184, 112, 0.15);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  margin-top: 1.75rem;
  display: grid;
  gap: 0.5rem;
}

.promo-banner .promo-text {
  font-weight: 700;
  color: var(--white);
}

.promo-banner .promo-subtitle {
  color: var(--gray-muted);
}

.industry-card {
  display: grid;
  gap: 1.2rem;
}

.industry-title {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.industry-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 700;
}

.industry-list li {
  color: var(--gray-muted);
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

.industry-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-price .price-label {
  color: var(--gray-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.industry-price .price-value {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
}

.industry-promo {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(77, 184, 112, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem;
  margin-top: 1.8rem;
  text-align: center;
}

.industry-promo .promo-headline {
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.industry-promo .promo-text {
  color: var(--gray-muted);
}

.location-badge {
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.location-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--white);
}

.location-desc {
  color: var(--gray-muted);
  line-height: 1.8;
}

.trust-badge {
  min-height: 210px;
}

.trust-text {
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .portfolio-grid,
  .pricing-grid,
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-grid,
  .pricing-grid,
  .industries-grid,
  .trust-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    text-align: center;
  }

  .section-header h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .section-cta {
    justify-content: center;
  }

  .location-badge {
    margin-left: auto;
    margin-right: auto;
    max-width: 660px;
  }
}

@keyframes glowLine {
  0% {
    opacity: 0.6;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================
   VALUES
   ============================================================ */
#values {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.values-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.values-header .section-desc {
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.2rem;
  transition: all var(--transition);
}

.value-card:hover {
  background: rgba(45, 138, 80, 0.1);
  border-color: var(--border-mid);
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--green-glow);
}

.value-desc {
  font-size: 0.8rem;
  color: var(--gray-muted);
  line-height: 1.55;
  font-weight: 300;
}

/* ============================================================
   CLIENTS / WHO WE SERVE
   ============================================================ */
#clients {
  overflow: hidden;
}

.clients-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.clients-header-desc {
  max-width: 300px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.client-pill {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  font-size: 0.88rem;
  color: var(--white);
  transition: all var(--transition);
  cursor: default;
}

.client-pill:hover {
  background: rgba(45, 138, 80, 0.1);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}

.client-pill-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.client-pill-text {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.3;
}

/* ============================================================
   CONTACT CTA
   ============================================================ */
#contact {
  padding: 0 5% 6rem;
}

.contact-inner {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.contact-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(77, 218, 135, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact-inner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.contact-inner .section-desc {
  margin: 0 auto 2.5rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.contact-detail-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-muted);
}

.contact-detail-value {
  font-size: 0.9rem;
  color: var(--green-glow);
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 2.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-tagline {
  font-size: 0.78rem;
  color: var(--gray-muted);
  font-style: italic;
}

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

/* ============================================================
   RESPONSIVE — LARGE SCREEN (max 1200px)
   ============================================================ */
@media (max-width: 1200px) {
  section {
    padding: 5rem 5%;
  }

  h2 {
    font-size: clamp(1.6rem, 3.5vw, 3rem);
  }

  .service-card {
    padding: 1.8rem;
  }

  .portfolio-card,
  .pricing-card,
  .industry-card,
  .trust-badge {
    padding: 1.8rem;
  }

  .pricing-amount {
    font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  }
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .portfolio-grid,
  .pricing-grid,
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid,
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inner {
    padding: 4rem 2.5rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-header {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — TABLET/MOBILE (max 900px)
   ============================================================ */
@media (max-width: 900px) {
  section {
    padding: 4rem 5%;
  }

  h2 {
    font-size: clamp(1.5rem, 3vw, 2.6rem);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #hero {
    padding: 7rem 5% 3rem;
  }

  #hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
  }

  #about {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 5%;
  }

  .about-card-main {
    padding: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .value-card {
    padding: 1.5rem 1rem;
  }

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

  .service-card {
    padding: 1.8rem;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .clients-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .client-pill {
    padding: 0.9rem 1rem;
    font-size: 0.8rem;
  }

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

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

  .portfolio-card,
  .pricing-card,
  .industry-card,
  .trust-badge,
  .addon-item {
    padding: 1.5rem;
  }

  .location-badge {
    padding: 1.5rem;
  }

  .contact-inner {
    padding: 3rem 2rem;
  }

  .contact-details {
    gap: 2rem;
  }

  .hero-stats {
    gap: 1.8rem;
    flex-wrap: wrap;
  }

  .hero-stat-value {
    font-size: 1.4rem;
  }

  .pricing-featured {
    transform: scale(0.98);
  }
}

/* ============================================================
   RESPONSIVE — SMALL TABLET (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 5%;
  }

  h2 {
    font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  }

  h3 {
    font-size: 0.95rem;
  }

  .section-label {
    font-size: 0.65rem;
    margin-bottom: 0.6rem;
  }

  .section-desc {
    font-size: 0.95rem;
  }

  .section-header {
    text-align: center;
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .section-header h2 {
    margin-left: auto;
    margin-right: auto;
  }

  .divider-animated {
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-grid,
  .pricing-grid,
  .industries-grid,
  .trust-grid,
  .addon-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portfolio-card,
  .pricing-card,
  .industry-card,
  .trust-badge,
  .addon-item,
  .location-badge {
    padding: 1.3rem;
    border-radius: var(--radius-lg);
  }

  .portfolio-icon,
  .trust-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .pricing-amount {
    font-size: clamp(1.5rem, 2vw, 2rem);
  }

  .pricing-features li {
    font-size: 0.85rem;
  }

  .section-cta {
    margin-top: 2rem;
  }

  .contact-inner {
    padding: 2.5rem 1.5rem;
  }

  .contact-details {
    gap: 1.5rem;
    flex-direction: column;
  }

  .contact-detail-item {
    width: 100%;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-right {
    text-align: left;
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .location-badge {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .promo-banner,
  .industry-promo {
    padding: 1.3rem 1rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 600px)
   ============================================================ */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 3rem 5%;
  }

  h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  }

  h3 {
    font-size: 0.9rem;
  }

  .section-label {
    font-size: 0.62rem;
    margin-bottom: 0.5rem;
  }

  .section-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }

  #hero {
    padding: 6rem 5% 2.5rem;
    min-height: 85vh;
  }

  .hero-badge {
    padding: 0.35rem 0.9rem;
    font-size: 0.68rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
  }

  .hero-stats {
    gap: 1.2rem;
    margin-top: 2.5rem;
    flex-direction: column;
  }

  .hero-stat-value {
    font-size: 1.15rem;
  }

  .navbar {
    padding: 0.8rem 5%;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-right {
    gap: 0.6rem;
  }

  .lang-btn {
    padding: 0.22rem 0.5rem;
    font-size: 0.65rem;
  }

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

  .service-card {
    padding: 1.3rem;
  }

  .service-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .service-title {
    font-size: 0.92rem;
  }

  .service-desc {
    font-size: 0.8rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .value-card {
    padding: 1rem 0.8rem;
  }

  .value-icon {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }

  .value-name {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .value-desc {
    font-size: 0.75rem;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .client-pill {
    padding: 0.8rem 0.9rem;
    font-size: 0.75rem;
  }

  .client-pill-icon {
    font-size: 1.1rem;
  }

  .portfolio-grid,
  .pricing-grid,
  .industries-grid,
  .trust-grid,
  .addon-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portfolio-card,
  .pricing-card,
  .industry-card,
  .trust-badge,
  .addon-item {
    padding: 1.2rem;
  }

  .portfolio-icon,
  .trust-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .portfolio-service {
    font-size: 0.85rem;
    margin: 0.8rem 0 0.9rem;
  }

  .portfolio-result {
    padding: 0.8rem;
    margin-bottom: 0.9rem;
  }

  .result-value {
    font-size: 0.9rem;
  }

  .portfolio-quote {
    font-size: 0.8rem;
  }

  .pricing-amount {
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    margin: 0.15rem 0 0.8rem;
  }

  .pricing-features {
    gap: 0.6rem;
  }

  .pricing-features li {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .pricing-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
  }

  .addon-item {
    gap: 0.4rem;
  }

  .addon-name {
    font-size: 0.9rem;
  }

  .addon-price {
    font-size: 0.85rem;
  }

  .promo-banner,
  .industry-promo {
    padding: 1.2rem 0.9rem;
    margin-top: 1.3rem;
  }

  .promo-banner .promo-text,
  .industry-promo .promo-headline {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }

  .promo-banner .promo-subtitle,
  .industry-promo .promo-text {
    font-size: 0.8rem;
  }

  .industry-title {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .industry-label {
    font-size: 0.65rem;
    margin-bottom: 0.5rem;
  }

  .industry-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .industry-price {
    gap: 0.8rem;
    padding-top: 0.8rem;
  }

  .industry-price .price-label {
    font-size: 0.65rem;
  }

  .industry-price .price-value {
    font-size: 1rem;
  }

  .location-badge {
    padding: 1.3rem;
    margin-bottom: 1rem;
  }

  .location-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .location-desc {
    font-size: 0.9rem;
  }

  .trust-badge {
    min-height: auto;
    padding: 1.2rem;
  }

  .trust-icon {
    margin-bottom: 0.8rem;
  }

  .trust-text {
    font-size: 0.8rem;
  }

  .contact-inner {
    padding: 2rem 1.2rem;
  }

  .contact-inner h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 0.8rem;
  }

  .contact-inner .section-desc {
    margin: 0 auto 1.8rem;
    font-size: 0.85rem;
  }

  .contact-actions {
    gap: 0.7rem;
  }

  .contact-details {
    margin-top: 1.5rem;
    gap: 1rem;
    flex-direction: column;
  }

  .contact-detail-item {
    width: 100%;
    text-align: center;
  }

  .contact-detail-label {
    font-size: 0.65rem;
  }

  .contact-detail-value {
    font-size: 0.85rem;
  }

  footer {
    padding: 2rem 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-right {
    text-align: left;
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 0.3rem;
  }

  .footer-links a {
    font-size: 0.75rem;
  }

  .footer-copy {
    font-size: 0.7rem;
  }

  .footer-tagline {
    font-size: 0.72rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max 450px)
   ============================================================ */
@media (max-width: 450px) {
  html {
    font-size: 14.5px;
  }

  h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1rem, 2.2vw, 1.5rem);
  }

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

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

  .section-header {
    text-align: center;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-whatsapp {
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
  }

  .pricing-amount {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
  }

  #hero {
    padding: 5rem 5% 2rem;
  }

  section {
    padding: 2.5rem 5%;
  }

  .navbar {
    padding: 0.7rem 5%;
  }

  .nav-logo img {
    height: 30px;
  }
}

/* ============================================================
   RESPONSIVE — TINY MOBILE (max 375px)
   ============================================================ */
@media (max-width: 375px) {
  html {
    font-size: 14px;
  }

  .section-label {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .hero-badge {
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  .hero-stat-value {
    font-size: 1rem;
  }

  .pricing-amount {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  }

  .portfolio-grid,
  .pricing-grid,
  .industries-grid,
  .trust-grid {
    gap: 0.8rem;
  }

  .contact-inner {
    padding: 1.5rem 1rem;
  }

  section {
    padding: 2.2rem 5%;
  }
}

/* ============================================================
   RESPONSIVE — ORIGINAL RULES (for backwards compat)
   ============================================================ */

/* ─── FLOATING PARTICLES ─── */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--green-light);
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1.5);
  }
}

/* ─── TYPED CURSOR ─── */
.typed-cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--green-light);
  margin-left: 4px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ─── HERO CONTENT ENTRANCE ─── */
.hero-badge {
  animation: fadeUp 0.7s 0.1s ease both;
}
#hero h1 {
  animation: fadeUp 0.7s 0.25s ease both;
}
.hero-sub {
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-actions {
  animation: fadeUp 0.7s 0.55s ease both;
}
.hero-stats {
  animation: fadeUp 0.7s 0.7s ease both;
}

/* ─── COUNTER ANIMATION ─── */
.count-up {
  display: inline-block;
  transition: all 0.5s ease;
}

/* ============================================================
   NEW SECTIONS — PORTFOLIO, PRICING, INDUSTRIES, TRUST
   ============================================================ */

/* ─── PORTFOLIO SECTION ─── */
.section-portfolio {
  background: var(--bg-main);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  border-color: var(--border-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 138, 80, 0.12);
}

.portfolio-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.portfolio-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.portfolio-service {
  font-size: 0.9rem;
  color: var(--gray-muted);
  margin-bottom: 1.2rem;
}

.portfolio-result {
  background: rgba(45, 138, 80, 0.15);
  border-left: 3px solid var(--green-light);
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: var(--radius-sm);
}

.result-value {
  display: block;
  font-weight: 600;
  color: var(--green-glow);
  font-size: 0.95rem;
}

.portfolio-quote {
  font-size: 0.95rem;
  color: var(--gray-light);
  font-style: italic;
  border-left: 2px solid rgba(77, 184, 112, 0.3);
  padding-left: 1rem;
  line-height: 1.6;
}

/* ─── PRICING SECTION ─── */
.section-pricing {
  background: var(--bg-section);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--green-accent);
  transform: translateY(-4px);
}

.pricing-featured {
  border: 2px solid var(--green-accent);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(45, 138, 80, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--green-accent);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--gray-muted);
  margin-bottom: 1.5rem;
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-glow);
  margin-bottom: 1.8rem;
}

.pricing-amount span {
  font-size: 0.9rem;
  color: var(--gray-muted);
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(77, 184, 112, 0.25);
  border-radius: 3px;
  color: var(--green-light);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.addon-section {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.addon-section h3 {
  margin-bottom: 1.8rem;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.addon-item {
  border-left: 3px solid var(--green-accent);
  padding-left: 1.2rem;
}

.addon-name {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.addon-price {
  font-size: 1.3rem;
  color: var(--green-glow);
  font-weight: 700;
}

.promo-banner {
  background: rgba(45, 138, 80, 0.15);
  border: 1px solid var(--border-mid);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 2.5rem;
}

.promo-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.promo-subtitle {
  font-size: 0.9rem;
  color: var(--gray-muted);
}

/* ─── INDUSTRY SOLUTIONS SECTION ─── */
.section-industries {
  background: var(--bg-main);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.8rem;
  margin-bottom: 2.5rem;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.industry-card:hover {
  border-color: var(--green-accent);
  transform: translateY(-3px);
}

.industry-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.industry-section {
  margin-bottom: 1.5rem;
}

.industry-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.industry-label.problems {
  color: #ff6b6b;
}

.industry-label.solutions {
  color: var(--green-light);
}

.industry-list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.industry-list li {
  margin-bottom: 0.5rem;
}

.industry-price {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.price-label {
  font-size: 0.8rem;
  color: var(--gray-muted);
  display: block;
  margin-bottom: 0.4rem;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-glow);
}

.industry-promo {
  background: rgba(77, 184, 112, 0.1);
  border-left: 3px solid var(--green-accent);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.promo-headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.promo-text {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ─── TRUST & LOCATION SECTION ─── */
.section-trust {
  background: var(--bg-section);
}

.location-badge {
  background: var(--bg-card);
  border: 2px solid var(--green-accent);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 3rem;
}

.location-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.location-desc {
  font-size: 1rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.trust-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  border-color: var(--green-accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 138, 80, 0.1);
}

.trust-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.trust-badge h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--white);
}

.trust-text {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ─── SECTION CTA ─── */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.section-cta .btn-primary {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.section-header {
  margin-bottom: 3rem;
}

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .pricing-featured {
    transform: scale(1);
  }

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

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

@media (max-width: 600px) {
  .portfolio-card,
  .pricing-card,
  .industry-card,
  .trust-badge,
  .addon-section,
  .promo-banner,
  .location-badge {
    padding: 1.5rem;
  }

  .portfolio-grid,
  .pricing-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

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

  .pricing-featured {
    transform: none;
  }

  .pricing-amount {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .section-header .section-desc {
    font-size: 0.95rem;
  }
}

/* ─── FADEUP ANIMATION GLOBAL ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── SERVICE CARD HOVER LIFT ─── */
.service-card {
  transition:
    background var(--transition),
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 138, 80, 0.15);
}

.service-icon {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-5deg);
  background: rgba(45, 138, 80, 0.32);
}

/* ─── VALUE CARD STAGGER ─── */
.value-card {
  transition: all 0.3s ease;
  animation: none;
}

.values-grid.visible .value-card:nth-child(1) {
  animation: popIn 0.5s 0.05s ease both;
}
.values-grid.visible .value-card:nth-child(2) {
  animation: popIn 0.5s 0.12s ease both;
}
.values-grid.visible .value-card:nth-child(3) {
  animation: popIn 0.5s 0.19s ease both;
}
.values-grid.visible .value-card:nth-child(4) {
  animation: popIn 0.5s 0.26s ease both;
}
.values-grid.visible .value-card:nth-child(5) {
  animation: popIn 0.5s 0.33s ease both;
}
.values-grid.visible .value-card:nth-child(6) {
  animation: popIn 0.5s 0.4s ease both;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(16px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ─── CLIENT PILL STAGGER ─── */
.clients-grid.visible .client-pill:nth-child(1) {
  animation: slideIn 0.4s 0.05s ease both;
}
.clients-grid.visible .client-pill:nth-child(2) {
  animation: slideIn 0.4s 0.1s ease both;
}
.clients-grid.visible .client-pill:nth-child(3) {
  animation: slideIn 0.4s 0.15s ease both;
}
.clients-grid.visible .client-pill:nth-child(4) {
  animation: slideIn 0.4s 0.2s ease both;
}
.clients-grid.visible .client-pill:nth-child(5) {
  animation: slideIn 0.4s 0.25s ease both;
}
.clients-grid.visible .client-pill:nth-child(6) {
  animation: slideIn 0.4s 0.3s ease both;
}
.clients-grid.visible .client-pill:nth-child(7) {
  animation: slideIn 0.4s 0.35s ease both;
}
.clients-grid.visible .client-pill:nth-child(8) {
  animation: slideIn 0.4s 0.4s ease both;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── SERVICE CARD STAGGER ─── */
.services-grid.visible .service-card:nth-child(1) {
  animation: fadeUp 0.5s 0.05s ease both;
}
.services-grid.visible .service-card:nth-child(2) {
  animation: fadeUp 0.5s 0.12s ease both;
}
.services-grid.visible .service-card:nth-child(3) {
  animation: fadeUp 0.5s 0.19s ease both;
}
.services-grid.visible .service-card:nth-child(4) {
  animation: fadeUp 0.5s 0.26s ease both;
}
.services-grid.visible .service-card:nth-child(5) {
  animation: fadeUp 0.5s 0.33s ease both;
}
.services-grid.visible .service-card:nth-child(6) {
  animation: fadeUp 0.5s 0.4s ease both;
}

/* ─── WHY ITEM STAGGER ─── */
.why-list.visible .why-item:nth-child(1) {
  animation: slideRight 0.5s 0.05s ease both;
}
.why-list.visible .why-item:nth-child(2) {
  animation: slideRight 0.5s 0.15s ease both;
}
.why-list.visible .why-item:nth-child(3) {
  animation: slideRight 0.5s 0.25s ease both;
}
.why-list.visible .why-item:nth-child(4) {
  animation: slideRight 0.5s 0.35s ease both;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── ABOUT CARD SLIDE IN ─── */
.about-visual.visible .about-card-main {
  animation: slideFromLeft 0.7s 0.1s ease both;
}

.about-visual.visible .about-card-sub {
  animation: popIn 0.5s 0.5s ease both;
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── CONTACT INNER GLOW PULSE ─── */
.contact-inner {
  transition: border-color 0.4s ease;
}

.contact-inner:hover {
  border-color: rgba(77, 184, 112, 0.35);
}

.contact-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    ellipse 60% 40% at 50% 100%,
    rgba(45, 138, 80, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ─── NAVBAR LINK HOVER UNDERLINE ─── */
.nav-links a::after {
  transition: width 0.3s ease;
}

/* ─── BUTTON RIPPLE ─── */
.btn-primary,
.btn-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0);
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.btn-primary:active::after,
.btn-whatsapp:active::after {
  transform: scale(1);
  opacity: 0;
}

/* ─── SECTION LABEL SLIDE ─── */
.reveal.visible .section-label {
  animation: fadeUp 0.5s ease both;
}

/* ─── LOGO SPIN ON LOAD ─── */
.nav-logo img {
  animation: logoEntrance 0.8s 0.2s ease both;
}

@keyframes logoEntrance {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* ─── HERO STAT VALUE COUNT ─── */
.hero-stat-value {
  transition: transform 0.3s ease;
}

.hero-stat-value:hover {
  transform: scale(1.08);
  color: var(--green-light);
}

/* ─── GRADIENT BORDER ANIMATION ON ABOUT CARD ─── */
.about-card-main {
  position: relative;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.about-card-main:hover {
  border-color: rgba(77, 184, 112, 0.35);
  box-shadow: 0 0 40px rgba(45, 138, 80, 0.1);
}

/* ─── GREEN LINE REVEAL ─── */
.divider-animated {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-accent), var(--green-glow));
  border-radius: 2px;
  transition: width 1s ease;
  margin: 1rem 0;
}

.divider-animated.visible {
  width: 80px;
}

/* ─── MOBILE — REDUCE MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
