

:root {
  --one-green: #16c74a;
  --one-green-600: #10a83d;
  --one-green-glow: rgba(22, 199, 74, 0.22);

  --bg-0: #05070a;         /* deep base */
  --bg-1: #0a0d10;         /* body */
  --bg-2: #0f1418;         /* elevated */
  --bg-3: #141a1f;         /* card */
  --bg-4: #1a2126;         /* card hover */
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke-strong: rgba(255, 255, 255, 0.14);

  --text-0: #f5f7f6;
  --text-1: #d7dedb;
  --text-2: #98a2a0;
  --text-3: #67716f;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 10px 30px -12px rgba(0,0,0,0.6);
  --shadow-hover: 0 30px 60px -22px rgba(0,0,0,0.75);
  --shadow-glow: 0 0 0 1px rgba(22,199,74,0.22), 0 20px 60px -20px rgba(22,199,74,0.22);
  --transition: 400ms cubic-bezier(0.22, 0.61, 0.36, 1);

}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg-1);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Nunito Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-0);
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--one-green); }
img { max-width: 100%; height: auto; }
p { color: var(--text-2); }

.text-accent { color: #22d65a; }
.shadow-soft { box-shadow: var(--shadow-soft); }

/* Background aurora */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(1000px 620px at 85% -12%, rgba(22,199,74,0.04), transparent 64%),
    radial-gradient(780px 520px at -12% 12%, rgba(22,199,74,0.03), transparent 64%),
    radial-gradient(680px 420px at 50% 120%, rgba(22,199,74,0.02), transparent 64%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 80%);
  z-index: -1;
  pointer-events: none;
}


/* ---------- Buttons ---------- */
.btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1rem; }

.btn-primary-one {
  border: #22d65a  ;
  animation: textura 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) infinite normal none;
  background-image: linear-gradient(90deg, #22d65a  , #149f43  , #22d65a  , #0f7a33  );
  background-size: 400% 200%;
  transition: background 1.6s cubic-bezier(0.55, 0.1, 0.47, 0.94) 0s;
  color: #05070a;
  box-shadow: 0 10px 30px -12px var(--one-green-glow);
}
.btn-primary-one:hover {
  background: #1adf55;
  color: #05070a;
  
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px var(--one-green-glow);
}
.btn-ghost-one {
  background: rgba(255,255,255,0.04);
  color: var(--text-0);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}
.btn-ghost-one:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--stroke-strong);
  color: var(--text-0);
  transform: translateY(-2px);
}
.btn-outline-one {
  background: transparent;
  color: var(--text-0);
  border: 1.5px solid var(--one-green);
}
.btn-outline-one:hover {
  background: var(--one-green);
  color: #05070a;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: background var(--transition), border-color var(--transition), padding var(--transition);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10, 13, 16, 0.75);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--stroke);
}
/*.site-header .navbar { padding: 0.75rem 0; }*/
.brand-logo { height: 51px; width: auto; display: block; filter: drop-shadow(0 2px 12px rgba(22,199,74,0.22)); }
.navbar-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-1) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.navbar-nav .nav-link:hover { color: var(--one-green) !important; }
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem; right: 1rem; bottom: 0.3rem;
  height: 2px; background: var(--one-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block; width: 22px; height: 2px;
  background: var(--text-0); margin: 4px 0; border-radius: 2px;
}

/* ---------- Sections ---------- */
.section { padding: 120px 0; position: relative; background: var(--bg-1); overflow: hidden; }
.section-alt,
.section-dark { background: var(--bg-1); }

/* Seamless section blending */
.section {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}

/* Ambient green glow on every section — very soft, like Apple keynote */

.section > .container,
.section > * { position: relative; z-index: 1; }



/* ===== LIGHT (WHITE) SECTIONS ===== */
.section-light {
  background: #f6f8f6;
  color: #0a0d10;
  position: relative;
  overflow: hidden;
}
.section-light::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(22,199,74,0.10), transparent 60%),
    radial-gradient(500px 260px at 0% 100%, rgba(22,199,74,0.08), transparent 60%);
  pointer-events: none;
}
.section-light > .container { position: relative; z-index: 1; }
.section-light .section-title,
.section-light h2,
.section-light h3,
.section-light h4 { color: #0a0d10; }
.section-light p,
.section-light li { color: #3a4048; }
.section-light .text-muted-light { color: #5a6370 !important; }
.section-light .eyebrow {
  color: #0e8a34;
  background: rgba(22,199,74,0.08);
  border-color: rgba(22,199,74,0.22);
}
.section-light .light-card {
  background: #ffffff;
  border: 1px solid #e6e9ec;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  box-shadow: 0 6px 24px rgba(10,13,16,0.05);
}
.section-light .light-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22,199,74,0.30);
  box-shadow: 0 20px 40px rgba(22,199,74,0.08);
}
.section-light .light-card .icon-wrap {
  width: 54px; height: 54px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #16c74a, #0e8a34);
  color: #fff; font-size: 1.4rem; margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(22,199,74,0.18);
}

.section-light .light-card h4 { margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; }
.section-light .light-card p { margin: 0; font-size: 0.98rem; line-height: 1.6; }

.section-light .split-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10,13,16,0.12);
  border: 1px solid #e6e9ec;
}
.section-light .split-image img { width: 100%; display: block; }

.section-light .quote-block {
  background: #fff;
  border-left: 4px solid #16c74a;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(10,13,16,0.06);
}
.section-light .quote-block p {
  font-size: 1.35rem;
  line-height: 1.55;
  color: #0a0d10;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}
.section-light .btn-primary-one { color: #fff; }
.section-light .btn-ghost-one {
  color: #0a0d10;
  border-color: rgba(10,13,16,0.15);
}
.section-light .btn-ghost-one:hover {
  color: #0e8a34;
  border-color: rgba(22,199,74,0.5);
  background: rgba(22,199,74,0.06);
}
.section-light .chip {
  background: #fff;
  border: 1px solid #e6e9ec;
  color: #0a0d10;
}
.section-light .chip i { color: #0e8a34; }

.eyebrow {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--one-green);
  padding: 6px 14px;
  border: 1px solid rgba(22,199,74,0.25);
  border-radius: 999px;
  background: rgba(22,199,74,0.06);
  margin-bottom: 1.25rem;
}

.eyebrow-light { /* alias, same look */ }

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  color: var(--text-0);
}
.section-lead {
  color: var(--text-2);
  font-size: 1.075rem;
  max-width: 640px;
}
.text-muted-light { color: var(--text-2); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 140px 0 0;
  overflow: hidden;
}
.hero-astro-col {
  padding: 0 !important;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.hero-astro {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  object-position: left bottom;
}
.hero-content {
  padding: 0 clamp(20px, 4vw, 64px) 60px 0;
}
@media (max-width: 991.98px) {
  .hero { padding: 120px 0 0; }
  .hero-astro-col {
    justify-content: center;
    align-items: flex-end;
  }
  .hero-astro { max-height: 58vh; object-position: center bottom; }
  .hero-content { padding: 30px 20px 40px; text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
}
.hero-bg {
  position: absolute; inset: 0;
  background:
  radial-gradient(1200px 600px at 100% -10%, rgba(22, 199, 74, 0.045), transparent 62%),
  radial-gradient(900px 700px at -10% 110%, rgba(22, 199, 74, 0.03), transparent 65%),
  linear-gradient(180deg, #080808 0%, #040404 50%, #000000 100%);
  z-index: -1;
}
.hero-stars {
  position: absolute;
  left: 0; bottom: 0;
  width: 70%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mask-image: radial-gradient(ellipse at 18% 55%, black 24%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 18% 55%, black 24%, transparent 75%);
}
.hero-stars::before {
  content: '';
  position: absolute;
  left: -10%; top: -5%;
  width: 90%; height: 75%;
  background: radial-gradient(900px 600px at 25% 15%, rgba(22, 199, 74, 0.10) 0%, transparent 60%),
              radial-gradient(500px 350px at 8% 35%, rgba(22, 199, 74, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-stars::after {
  content: '';
  position: absolute;
  left: -5%; bottom: 0;
  width: 75%; height: 65%;
  background: radial-gradient(700px 450px at 20% 90%, rgba(22, 199, 74, 0.07) 0%, transparent 60%);
  pointer-events: none;
}


.hero-star {
  position: absolute;
  border-radius: 50%;
  background: #d4ffe0;
  box-shadow: 0 0 6px 1px rgba(22, 199, 74, 0.45), 0 0 16px 4px rgba(22, 199, 74, 0.18);
  animation: starPulse 4s ease-in-out infinite;
  will-change: opacity, transform;
}
.hero-star.bright {
  background: #eafff0;
  box-shadow: 0 0 8px 2px rgba(22, 199, 74, 0.55), 0 0 22px 6px rgba(22, 199, 74, 0.26), 0 0 42px 10px rgba(22, 199, 74, 0.09);
}

@keyframes starPulse {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}
.hero-astro-col { position: relative; z-index: 1; }
.hero-title {
  font-weight: 900;
  font-family: "Nunito", serif;
  font-size: 5rem;
  margin-bottom: 1.25rem;
  color: var(--text-0);
}
.hero-lead {
  color: var(--text-2);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-stats { color: var(--text-2); font-size: 0.9rem; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-0);
  font-size: 1.6rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--stroke);
}
.hero-image {
  width: 100%;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s ease;
}
.hero-visual:hover .hero-image { transform: scale(1.06); }
.hero-badge {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  background: rgba(10,13,16,0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-soft);
}
.hero-badge i { color: var(--one-green); font-size: 1.5rem; flex-shrink: 0; }
.hero-badge strong { display: block; font-family: 'Space Grotesk',sans-serif; font-size: 0.95rem; color: var(--text-0); }
.hero-badge span { display: block; font-size: 0.82rem; color: var(--text-2); }

.hero-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  color: #000;
   background: linear-gradient(
        90deg,
        #39da71 0%,
        #38e86f 30%,
        #22d65a 65%,
        #0f7a33 100%
    );
  box-shadow: inset 0 0 60px rgba(255, 255, 255, 0.02);
}

.marquee-track span:nth-child(odd) { color: #000 !important; }
.marquee-track span:nth-child(even) { color: #000 !important; }
.marquee-track {
  display: flex; gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: 'Nunito', sans-serif;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.marquee-track span:nth-child(odd) { color: #000; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ---------- Solutions card ---------- */
.solutions-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--text-0);
  box-shadow: var(--shadow-hover);
  position: relative;
  overflow: hidden;
}
.solutions-card::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(22,199,74,0.22), transparent 70%);
  border-radius: 50%;
}

.solutions-list { list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
.solutions-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--stroke);
  font-size: 1rem;
  color: var(--text-1);
  transition: all var(--transition);
}
.solutions-list li:last-child { border-bottom: none; }
.solutions-list li i { color: var(--one-green); font-size: 1.1rem; }
.solutions-list li.active { color: var(--one-green); font-weight: 500; }
.solutions-list li:hover { color: var(--text-0); transform: translateX(4px); }

/* ---------- Service cards ---------- */
.service-card {
  background: var(--bg-3);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px 220px at 100% 0%, rgba(22,199,74,0.05), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22,199,74,0.25);
  background: var(--bg-4);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(22,199,74,0.08);
  color: var(--one-green);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: all var(--transition);
  position: relative; z-index: 1;
}
.service-card:hover .service-icon {
  background: var(--one-green);
  color: var(--bg-0);
  box-shadow: 0 10px 30px -8px var(--one-green-glow);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text-0); position: relative; z-index: 1; }
.service-card p { color: var(--text-2); margin: 0; font-size: 0.95rem; position: relative; z-index: 1; }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-1);
}
.chip i { color: var(--one-green); }

/* ---------- Feature (dark) ---------- */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all var(--transition);
}
.feature-card:hover {
  background: rgba(22, 199, 74, 0.05);
  border-color: rgba(22, 199, 74, 0.25);
  transform: translateY(-4px);
}

.feature-num {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  color: var(--one-green);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.feature-card h4 { color: var(--text-0); font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-2); font-size: 0.92rem; margin: 0; }

/* ---------- Portfolio ---------- */
.portfolio-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  position: relative;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(22,199,74,0.25);
}

.portfolio-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 1s ease;
  filter: saturate(1.05);
}
.portfolio-card:hover .portfolio-media { transform: scale(1.08); }
.portfolio-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5,7,10,0.92) 100%);
}
.portfolio-info {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  color: #fff;
  z-index: 1;
}
.portfolio-info span {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--one-green);
  margin-bottom: 6px;
}
.portfolio-info h4 { font-size: 1.15rem; color: #fff; margin: 0; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--bg-3);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(22,199,74,0.18);
}

.quote-icon {
  font-size: 2rem;
  color: var(--one-green);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.testimonial-card p { color: var(--text-1); font-size: 1rem; font-style: italic; margin-bottom: 18px; }
.testimonial-author strong { display: block; font-family: 'Space Grotesk',sans-serif; color: var(--text-0); }
.testimonial-author span { display: block; color: var(--text-3); font-size: 0.85rem; }

/* ---------- Stats section ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 32px 24px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  transition: all var(--transition);
}
.stat-card:hover {
  border-color: rgba(22,199,74,0.25);
  transform: translateY(-4px);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-0);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-value .plus { color: var(--one-green); }
.stat-label {
  color: var(--text-2);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ---------- Process / Timeline ---------- */
.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--stroke);
  transition: all var(--transition);
}
.process-item:last-child { border-bottom: none; }
.process-item:hover { transform: translateX(6px); }
.process-item:hover .process-num { color: var(--one-green); }
.process-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  color: var(--text-3);
  font-weight: 600;
  transition: color var(--transition);
  line-height: 1;
}
.process-item h4 {
  font-size: 1.35rem;
  color: var(--text-0);
  margin-bottom: 8px;
}
.process-item p { color: var(--text-2); margin: 0; max-width: 620px; }

/* ---------- Clients / Logos ---------- */
.clients-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  padding: 20px 0;
}
.client-item {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-3);
  text-align: center;
  letter-spacing: 0.02em;
  padding: 20px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px dashed transparent;
}
.client-item:hover {
  color: var(--text-0);
}

/* ---------- FAQ / Accordion ---------- */
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--bg-3);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.faq-item.open { border-color: rgba(22,199,74,0.25); }

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-0);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  cursor: pointer;
}
.faq-question .icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(22,199,74,0.08);
  color: var(--one-green);
  display: grid; place-items: center;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--one-green); color: var(--bg-0); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease;
}
.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--text-2);
}

/* ---------- Insights (Blog cards) ---------- */
.insight-card {
  background: var(--bg-3);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22,199,74,0.25);
  box-shadow: var(--shadow-hover);
}

.insight-media {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 1s ease;
}
.insight-card:hover .insight-media { transform: scale(1.05); }
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--one-green);
  margin-bottom: 10px;
}
.insight-card h4 { font-size: 1.15rem; color: var(--text-0); margin-bottom: 10px; line-height: 1.3; }
.insight-card p { color: var(--text-2); font-size: 0.92rem; flex: 1; }
.insight-meta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--stroke);
  display: flex; justify-content: space-between;
  color: var(--text-3);
  font-size: 0.8rem;
}
.insight-meta a { color: var(--one-green); font-weight: 500; }

/* ---------- Pricing ---------- */
.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); border-color: rgba(22,199,74,0.22); box-shadow: var(--shadow-hover); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(22,199,74,0.08), var(--bg-3));
  border-color: rgba(22,199,74,0.32);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--one-green);
  color: var(--bg-0);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.pricing-name { color: var(--text-0); font-size: 1.15rem; margin-bottom: 8px; }
.pricing-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  color: var(--text-0);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 12px 0 4px;
}
.pricing-price small { font-size: 0.9rem; color: var(--text-3); font-weight: 400; }
.pricing-desc { color: var(--text-2); font-size: 0.92rem; margin-bottom: 20px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-list li { padding: 8px 0; color: var(--text-1); font-size: 0.93rem; display: flex; align-items: center; gap: 10px; }
.pricing-list li i { color: var(--one-green); }

/* ---------- CTA ---------- */
.cta-section { padding-top: 40px; padding-bottom: 120px; }
.cta-card {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--stroke-strong);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  color: var(--text-0);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.cta-card::before {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(22, 199, 74, 0.22), transparent 70%);
  border-radius: 50%;
}
.cta-card::after {
  content: '';
  position: absolute;
  left: -80px; top: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(22, 199, 74, 0.10), transparent 70%);
  border-radius: 50%;
}

.cta-title {
  color: var(--text-0);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.cta-lead { color: var(--text-2); font-size: 1.05rem; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: #000;
 /* border-top: 1px solid var(--stroke);*/
  color: var(--text-2);
  padding: 80px 0 30px;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.footer-logo { height: 42px; width: auto; }
.site-footer h6 {
  color: var(--text-0);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a { color: var(--text-2); }
.site-footer ul li a:hover { color: var(--one-green); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--stroke);
  color: var(--text-0);
  font-size: 1.05rem;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--one-green);
  color: var(--bg-0);
  border-color: var(--one-green);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--stroke);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ---------- Reveal animations (Apple-like: soft, long, with slight scale + blur) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.985);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform, filter;
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* Selection */
::selection { background: var(--one-green); color: var(--bg-0); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--one-green); }

/* Focus accessibility */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--one-green);
  outline-offset: 3px;
  border-radius: 999px;
}
.trafego-card {
    position: relative;
    overflow: visible; /* permite a logo sair da seção */
    background: #090909;
}
.trafego-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.trafego-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.60) 20%,
        rgba(0, 0, 0, 0.78) 40%,
        rgba(0, 0, 0, 0.92) 60%,
        rgba(0, 0, 0, 0.98) 80%,
        rgba(0, 0, 0, 1) 100%
    );
}
.trafego-content {
    position: relative;
    z-index: 3;

    width: 38%;
    margin-left: auto;

    padding: 140px 7% 140px 0;
}
.trafego-content p{

    color:#cfcfcf;

    font-size:16px;

    line-height:1.8;

    margin-bottom:18px;

}

.trafego-content strong{

    color:#1ED760;

}
.trafego-logo{
    position: absolute;
    right: -80px;
    bottom: -220px; /* aumenta o valor até esconder cerca de 60% */
    width: 520px;
    z-index: 1;
    pointer-events: none;
}
#proxima-secao{
    position: relative;
    z-index: 5;
    background: #000; /* ou a cor da sua seção */
}
@media(max-width:992px){

.trafego-card{

    min-height:auto;

}

.trafego-content{

    position:relative;

    width:100%;

    right:auto;
    top:auto;

    transform:none;

    padding:40px 30px;

}

.trafego-bg{

    position:relative;

    height:320px;

}

.trafego-overlay{

    background:
    linear-gradient(
        180deg,
        rgba(0,0,0,.25),
        rgba(0,0,0,.9)
    );

}

.trafego-logo{

    width:280px;

    right:-50px;

    bottom:-70px;

}

}
@media (max-width: 768px) {
    .clients-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }
}
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
.bg-verde-radial {
  background:
 radial-gradient(
  2000px 850px at right 45%,
  rgba(34, 197, 94, 0.55) 0%,
  rgba(34, 197, 94, 0.25) 20%,
  rgba(34, 197, 94, 0.08) 40%,
  transparent 68%
)
    #000 !important;

  background-repeat: no-repeat !important;
  background-position: center right !important;
}
.bg-verde-radial-left {
  background:
 radial-gradient(
  2000px 850px at left 40%,
  rgba(34, 197, 94, 0.55) 0%,
  rgba(34, 197, 94, 0.25) 20%,
  rgba(34, 197, 94, 0.08) 40%,
  transparent 68%
)
    #000 !important;

  background-repeat: no-repeat !important;
  background-position: center left !important;
}
.text-gradient {
  background: linear-gradient(180deg, #88f4ae 0%, #58ec86 30%, #25a94e 65%, #0a5824 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-processo{
  padding-top: 180px;
}
/* ============ WHITE "QUEM SOMOS" SECTION ============ */
.section-quem {
  background: #ffffff;
  color: #0a0d10;
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}
.section-quem::before,
.section-quem::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(22,199,74,0.55), transparent);
  z-index: 2;
}
.section-quem::before { top: 0; }
.section-quem::after  { bottom: 0; }
.quem-logo-top { height: 42px; width: auto; margin-bottom: 28px; display: block; }
.quem-title {
  font-family: 'Nunito Sans', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--one-green);
  line-height: 1.02;
  margin-bottom: 28px;
}
.quem-title b { color: #0a0d10; font-weight: 900; }
.quem-lead {
  color: #3a4340;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 22px;
}
.quem-mark-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.quem-mark {
  width: 100%;
  max-width: 520px;
  height: auto;
  transform: scaleX(-1);           /* "só virar ela" */
  filter: drop-shadow(0 20px 40px rgba(22,199,74,0.22));
}
@media (max-width: 991.98px) {
  .section-quem { padding: 80px 0; }
  .quem-mark { max-width: 320px; margin-top: 40px; }
  .quem-mark-wrap { min-height: auto; }
}

/* ============ STAR SPRINKLE (dark sections) ============ */
.has-stars { position: relative; overflow: hidden; }
.has-stars::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(180,255,200,0.85), transparent 60%),
    radial-gradient(1px 1px at 28% 62%, rgba(150,255,180,0.7), transparent 60%),
    radial-gradient(2px 2px at 46% 22%, rgba(220,255,230,0.9), transparent 60%),
    radial-gradient(1px 1px at 62% 78%, rgba(140,255,175,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 34%, rgba(180,255,200,0.85), transparent 60%),
    radial-gradient(1px 1px at 88% 66%, rgba(150,255,180,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 8% 82%, rgba(200,255,215,0.8), transparent 60%),
    radial-gradient(1px 1px at 38% 88%, rgba(140,255,175,0.6), transparent 60%),
    radial-gradient(2px 2px at 70% 12%, rgba(220,255,230,0.9), transparent 60%),
    radial-gradient(1px 1px at 96% 22%, rgba(140,255,175,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 20% 46%, rgba(180,255,200,0.75), transparent 60%),
    radial-gradient(1px 1px at 54% 50%, rgba(150,255,180,0.6), transparent 60%);
  background-repeat: no-repeat;
  animation: starTwinkle 6s ease-in-out infinite;
  z-index: 0;
}
.has-stars > * { position: relative; z-index: 1; }
@keyframes starTwinkle {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}

/* ============ FOOTER FLOURISH (big brand + wave) ============ */
.site-footer { overflow: hidden; }
.footer-flourish {
  text-align: center;
  padding: 60px 0 30px;
  position: relative;
}
.footer-brand-huge {
  font-family: 'Nunito Sans', 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin: 0;
  background: linear-gradient(180deg,
    #baffcc 0%,
    #6bff9a 25%,
    #22d65a 55%,
    #0f7a33 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: lowercase;
  filter: drop-shadow(0 20px 60px rgba(22,199,74,0.25));
}
.footer-socials-circle {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.footer-socials-circle a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(22,199,74,0.35);
  background: rgba(22,199,74,0.08);
  color: #baffcc;
  font-size: 1.05rem;
  transition: all var(--transition);
}
.footer-socials-circle a:hover {
  background: var(--one-green);
  color: #05070a;
  border-color: var(--one-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(22,199,74,0.55);
}
.footer-tagline {
  margin-top: 22px;
  color: var(--text-2);
  font-size: 0.92rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.footer-wave {
  margin-top: 40px;
  width: 100%;
  height: 90px;
  display: block;
  opacity: 0.75;
}
.footer-wave path { stroke: var(--one-green); }

/* ============ OVERRIDES: less blue, more black + more green ============ */
:root {
  --bg-0: #030303;
  --bg-1: #060606;
  --bg-2: #0b0b0b;
  --bg-3: #0f0f10;
  --bg-4: #16171a;
}

/* stronger green ambient glow across page */
body::before {
  background:
    radial-gradient(1200px 720px at 88% -12%, rgba(22,199,74,0.10), transparent 62%),
    radial-gradient(900px  600px at -12% 18%, rgba(22,199,74,0.08), transparent 62%),
    radial-gradient(760px  460px at 50% 118%, rgba(22,199,74,0.07), transparent 62%),
    radial-gradient(600px  360px at 15% 78%, rgba(22,199,74,0.05), transparent 60%) !important;
}

/* Extra green streak decoration for dark sections that opt-in */
.has-stars::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
 /* background:
    radial-gradient(600px 260px at 92% 12%, rgba(22,199,74,0.18), transparent 65%),
    radial-gradient(520px 220px at 6% 88%, rgba(22,199,74,0.14), transparent 65%),
    radial-gradient(320px 180px at 50% 45%, rgba(22,199,74,0.06), transparent 70%);*/
  z-index: 0;
}

/* ============ STARS: denser, brighter, twinkling ============ */
.has-stars::before {
  background-image:
    /* bright layer */
    radial-gradient(2.5px 2.5px at  6% 12%, #eafff0 60%, transparent 62%),
    radial-gradient(2px   2px   at 14% 46%, #baffcc 60%, transparent 62%),
    radial-gradient(2.5px 2.5px at 22% 78%, #eafff0 60%, transparent 62%),
    radial-gradient(2px   2px   at 30% 22%, #d4ffe0 60%, transparent 62%),
    radial-gradient(3px   3px   at 38% 60%, #eafff0 60%, transparent 62%),
    radial-gradient(2px   2px   at 46% 14%, #baffcc 60%, transparent 62%),
    radial-gradient(2.5px 2.5px at 54% 84%, #eafff0 60%, transparent 62%),
    radial-gradient(2px   2px   at 62% 32%, #d4ffe0 60%, transparent 62%),
    radial-gradient(3px   3px   at 70% 68%, #eafff0 60%, transparent 62%),
    radial-gradient(2px   2px   at 78% 18%, #baffcc 60%, transparent 62%),
    radial-gradient(2.5px 2.5px at 86% 52%, #eafff0 60%, transparent 62%),
    radial-gradient(2px   2px   at 94% 82%, #d4ffe0 60%, transparent 62%),
    /* dim layer */
    radial-gradient(1px 1px at  4% 62%, rgba(180,255,200,0.7), transparent 60%),
    radial-gradient(1px 1px at 10% 30%, rgba(150,255,180,0.6), transparent 60%),
    radial-gradient(1px 1px at 18% 10%, rgba(180,255,200,0.7), transparent 60%),
    radial-gradient(1px 1px at 26% 54%, rgba(150,255,180,0.6), transparent 60%),
    radial-gradient(1px 1px at 34% 82%, rgba(180,255,200,0.7), transparent 60%),
    radial-gradient(1px 1px at 42% 38%, rgba(150,255,180,0.6), transparent 60%),
    radial-gradient(1px 1px at 50% 70%, rgba(180,255,200,0.7), transparent 60%),
    radial-gradient(1px 1px at 58% 18%, rgba(150,255,180,0.6), transparent 60%),
    radial-gradient(1px 1px at 66% 90%, rgba(180,255,200,0.7), transparent 60%),
    radial-gradient(1px 1px at 74% 44%, rgba(150,255,180,0.6), transparent 60%),
    radial-gradient(1px 1px at 82% 74%, rgba(180,255,200,0.7), transparent 60%),
    radial-gradient(1px 1px at 90% 26%, rgba(150,255,180,0.6), transparent 60%),
    radial-gradient(1px 1px at 98% 60%, rgba(180,255,200,0.7), transparent 60%);
  filter: drop-shadow(0 0 4px rgba(22,199,74,0.55));
  opacity: 0.95;
  animation: starTwinkleBright 5s ease-in-out infinite;
}
@keyframes starTwinkleBright {
  0%, 100% { opacity: 0.75; }
  50%      { opacity: 1; }
}

/* Auto-apply stars to every dark section (except quem-somos which is white) */
.bg-black,
.cta-section,
#manifesto {
  position: relative;
  overflow: hidden;
}

/* Card tone: pure blacks, subtle green edge */
.solutions-card,
.service-card,
.testimonial-card,
.stat-card,
.feature-card,
.portfolio-card,
.cta-card,
.faq-item {
  background: linear-gradient(180deg, #101010, #070707) !important;
  border: 1px solid rgba(22,199,74,0.14) !important;
  box-shadow:
    0 20px 50px -24px rgba(0,0,0,0.9),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 -30px 60px -40px rgba(22,199,74,0.25) inset !important;
}
.testimonial-card:hover,
.service-card:hover,
.solutions-card:hover,
.stat-card:hover,
.feature-card:hover {
  background: linear-gradient(180deg, #141414, #0a0a0a) !important;
  border-color: rgba(22,199,74,0.35) !important;
  box-shadow:
    0 30px 70px -20px rgba(0,0,0,0.95),
    0 0 0 1px rgba(22,199,74,0.25) inset,
    0 -40px 80px -40px rgba(22,199,74,0.45) inset !important;
}

/* Quote icon greener */
.testimonial-card .quote-icon { color: var(--one-green) !important; opacity: 0.85; }

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  cursor: pointer;
}
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 30px;
  z-index: 9999;
  background: #008000;
  width: 64px;
  height: 53px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 4rem !important;
}

.clients-strip{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:70px;
}

.client-item{
    display:flex;
    justify-content:center;
    align-items:center;
}

.client-item img{
    max-width:180px;
    max-height:70px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%) opacity(.45);
    transition:filter .35s ease, transform .35s ease;
}

.client-item:hover img{
    filter:grayscale(0%) opacity(1);
    transform:scale(1.05);
}
.portfolio-video-card{
  padding:0;
  border:0;
  color:inherit;
  text-align:left;
  background:transparent;
  cursor:pointer;
}

.portfolio-video-card .portfolio-media{
  position:relative;
  overflow:hidden;
  min-height:420px;
  background-position:center;
  background-size:cover;
}

.portfolio-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.55));
  transition:background .35s ease;
}

.portfolio-play{
  position:absolute;
  top:50%;
  left:50%;
  z-index:2;
  display:flex;
  width:76px;
  height:76px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50%;
  color:#fff;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(8px);
  transform:translate(-50%, -50%);
  transition:transform .35s ease, background .35s ease, border-color .35s ease;
}

.portfolio-play i{
  margin-left:5px;
  font-size:2.4rem;
  line-height:1;
}

.portfolio-video-card:hover .portfolio-overlay{
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.35));
}

.portfolio-video-card:hover .portfolio-play{
  border-color:rgba(255,255,255,.8);
  background:rgba(0,0,0,.75);
  transform:translate(-50%, -50%) scale(1.08);
}

.portfolio-video-modal .modal-content{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  background:#000;
  box-shadow:0 30px 100px rgba(0,0,0,.7);
}

.portfolio-modal-close{
  position:absolute;
  top:-42px;
  right:0;
  z-index:5;
  opacity:1;
}

.portfolio-video-modal iframe{
  border:0;
}
.portfolio-video-modal .modal-content{
    position:relative;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    background:#000;
    box-shadow:0 30px 100px rgba(0,0,0,.7);
}

.portfolio-modal-close{
    position:absolute;
    top:15px;
    right:15px;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.65);
    color:#fff;
    font-size:1.2rem;
    cursor:pointer;
    z-index:1000;
    transition:.3s;
}

.portfolio-modal-close:hover{
    background:#fff;
    color:#000;
    transform:rotate(90deg);
}
.clients-strip{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:45px 60px;
}

.client-item{
    display:flex;
    justify-content:center;
    align-items:center;
    flex:0 1 calc(33.333% - 40px);
}

.client-item img{
    max-width:180px;
    max-height:70px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%) opacity(.45);
    transition:.35s ease;
}

.client-item:hover img{
    filter:grayscale(0) opacity(1);
    transform:scale(1.05);
}

@media (max-width:991px){
    .client-item{
        flex:0 1 calc(50% - 30px);
    }
}

@media (max-width:575px){
    .client-item{
        flex:0 1 100%;
    }

    .client-item img{
        max-width:160px;
    }
}