/*
Theme Name: Strif X Digital
Theme URI: https://strifxdigital.in
Author: Strif X Digital
Description: Premium dark theme – neon green on black, futuristic agency aesthetic.
Version: 2.0.0
Text Domain: strifx
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Black + #39FF14 System
   ============================================================ */
:root {
  /* Backgrounds */
  --bg-root:        #000000;
  --bg-section:     #060606;
  --bg-alt:         #0a0a0a;
  --bg-card:        #0d0d0d;
  --bg-glass:       rgba(10, 10, 10, 0.75);

  /* Brand Colors */
  --green:          #39FF14;
  --green-dim:      #2bcc0f;
  --green-dark:     #1a7a08;
  --green-glow:     rgba(57, 255, 20, 0.18);
  --green-glow-lg:  rgba(57, 255, 20, 0.08);

  /* Accent (10% from our side) */
  --accent-lime:    #aaff00;   /* slightly warm lime */
  --accent-dark:    #0d2200;   /* deep dark green tint for subtle bg variety */

  /* Borders */
  --border:         rgba(57, 255, 20, 0.2);
  --border-dim:     rgba(57, 255, 20, 0.08);
  --border-glass:   rgba(255, 255, 255, 0.05);

  /* Text */
  --white:          #ffffff;
  --gray-lt:        #b0b8a8;
  --gray-md:        #5a6654;

  /* Gradients */
  --grad-green:     linear-gradient(135deg, #39FF14 0%, #aaff00 100%);
  --grad-glow:      linear-gradient(135deg, rgba(57,255,20,0.12) 0%, rgba(170,255,0,0.06) 100%);
  --grad-hero:      radial-gradient(ellipse at 60% 40%, rgba(57,255,20,0.06) 0%, transparent 60%),
                    linear-gradient(180deg, #000 0%, #060a02 100%);

  /* Typography */
  --font-display:   'Sora', sans-serif;
  --font-body:      'Poppins', sans-serif;

  /* Spacing & Shape */
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      40px;
  --max-w:          1240px;
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-glow:    0 0 40px rgba(57,255,20,0.18), 0 0 80px rgba(57,255,20,0.06);
  --shadow-card:    0 8px 40px rgba(0,0,0,0.6);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg-root);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }
::selection { background: rgba(57,255,20,0.3); color: #000; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 4px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 110px 0; }
.text-center { text-align: center; }

.text-green {
  color: var(--green);
}
.text-gradient {
  background: var(--grad-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57,255,20,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge::before {
  content:'';
  width:7px; height:7px;
  background: var(--green);
  border-radius:50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.4; transform:scale(0.6); }
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.12;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-lt);
  line-height: 1.85;
  max-width: 600px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: 100px;
  padding: 13px 30px;
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-green);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 28px rgba(57,255,20,0.45),
              0 0 0 1px rgba(57,255,20,0.3),
              inset 0 1px 0 rgba(255,255,255,0.4);
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 50%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #39FF14, #aaff00, #39FF14);
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 56px rgba(57,255,20,0.7),
              0 0 0 1px rgba(57,255,20,0.6),
              inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover::after {
  opacity: 0.8;
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
}
.btn-outline {
  background: rgba(57,255,20,0.06);
  color: #39FF14;
  border: 1.5px solid rgba(57,255,20,0.55);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(57,255,20,0.6);
  box-shadow: 0 0 20px rgba(57,255,20,0.08), inset 0 0 20px rgba(57,255,20,0.04);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(57,255,20,0.08) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}
.btn-outline:hover {
  background: rgba(57,255,20,0.12);
  border-color: #39FF14;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 40px rgba(57,255,20,0.3), 0 8px 30px rgba(57,255,20,0.15), inset 0 0 30px rgba(57,255,20,0.07);
  text-shadow: 0 0 20px rgba(57,255,20,0.9);
}
.btn-ghost {
  background: rgba(57,255,20,0.06);
  color: var(--green);
  border: 1px solid var(--border);
  font-size: 13px;
  padding: 9px 20px;
}
.btn-ghost:hover {
  background: rgba(57,255,20,0.12);
  box-shadow: 0 0 16px rgba(57,255,20,0.15);
}
.btn svg { width:17px; height:17px; flex-shrink:0; }

/* ============================================================
   GLASS CARD
   ============================================================ */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(57,255,20,0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ============================================================
   FLOATING WHATSAPP ORB
   ============================================================ */
.wa-float-wrap {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Glow orb ring behind button */
.wa-orb {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.35) 0%, transparent 70%);
  animation: orb-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}
.wa-orb-outer {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, transparent 70%);
  animation: orb-pulse 2.4s ease-in-out infinite 0.4s;
}
@keyframes orb-pulse {
  0%,100% { transform: scale(0.9); opacity:0.8; }
  50%      { transform: scale(1.2); opacity:0.3; }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 78px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #0d0d0d;
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  border: 1px solid rgba(37,211,102,0.3);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid rgba(37,211,102,0.3);
}
.wa-float-wrap:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* The button itself */
.wa-btn {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: wa-float 3s ease-in-out infinite;
  text-decoration: none;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 36px rgba(37,211,102,0.75);
  background: #20c05d;
}
@keyframes wa-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  padding: 12px 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.5), 0 0 1px rgba(57,255,20,0.15) inset;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(57,255,20,0.5));
  transition: var(--transition);
}
.nav-logo img:hover {
  filter: drop-shadow(0 0 20px rgba(57,255,20,0.85));
  transform: scale(1.05);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-lt);
  position: relative;
}
.nav-menu a::after {
  content:'';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.active { color: var(--green); }
.nav-menu a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 130px 0 90px;
  background: var(--grad-hero);
}
/* Animated dot grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(57,255,20,0.12) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: grid-drift 30s linear infinite;
  opacity: 0.5;
}
@keyframes grid-drift {
  0%   { transform: translate(0,0); }
  100% { transform: translate(44px, 44px); }
}
/* Orb glows */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(57,255,20,0.09) 0%, transparent 70%);
  top: -150px; right: -150px;
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(57,255,20,0.06) 0%, transparent 70%);
  bottom: -60px; left: -80px;
  animation: orb-float 12s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(170,255,0,0.05) 0%, transparent 70%);
  top: 40%; left: 40%;
  animation: orb-float 7s ease-in-out infinite 2s;
}
@keyframes orb-float {
  0%,100%{ transform: translate(0,0) scale(1); }
  33%    { transform: translate(20px,-25px) scale(1.06); }
  66%    { transform: translate(-12px,12px) scale(0.96); }
}
/* Particles */
.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: particle-rise linear infinite;
}
@keyframes particle-rise {
  0%  { transform: translateY(100vh) translateX(0); opacity:0; }
  8%  { opacity:1; }
  92% { opacity:0.8; }
  100%{ transform: translateY(-120px) translateX(var(--drift,40px)); opacity:0; }
}
/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 26px;
  animation: fadeInUp 0.7s ease both;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-lt);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.85;
  animation: fadeInUp 0.7s 0.12s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s 0.22s ease both;
}
/* Stats */
.hero-stats {
  display: flex;
  gap: 0;
  animation: fadeInUp 0.7s 0.32s ease both;
}
.stat-item {
  padding: 0 36px 0 0;
  position: relative;
}
.stat-item + .stat-item {
  padding-left: 36px;
  border-left: 1px solid var(--border-dim);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 20px rgba(57,255,20,0.5);
}
.stat-label {
  font-size: 12px;
  color: var(--gray-md);
  margin-top: 5px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
/* Trust badges */
.trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 44px;
  animation: fadeInUp 0.7s 0.42s ease both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(57,255,20,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 12px;
  color: var(--gray-lt);
  font-weight: 500;
}
.trust-badge::before { content:'✦'; color: var(--green); font-size: 9px; }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--bg-section);
  position: relative;
}
#about::before {
  content:'';
  position: absolute;
  top:0; left:0; right:0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.4;
}
/* About Grid — centred max-width layout */
.about-grid {
  display: grid;
  grid-template-columns: 380px minmax(0, 640px);
  gap: 90px;
  align-items: center;
  justify-content: center;
  max-width: 1140px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Logo / SX frame — enlarged */
.about-img-frame {
  border-radius: var(--radius-lg);
  background: var(--grad-glow);
  border: 1px solid var(--border);
  padding: 40px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0%, rgba(57,255,20,0.07) 15%, transparent 30%);
  animation: rotate 10s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.about-logo-big {
  font-family: var(--font-head);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(57,255,20,0.5);
}

/* Metrics grid */
.about-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-metric-card {
  padding: 22px 16px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-metric-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.about-metric-card:hover { border-color: var(--border); box-shadow: 0 0 24px rgba(57,255,20,0.1); }
.about-metric-card:hover::before { opacity: 1; }
.about-metric-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 20px rgba(57,255,20,0.5);
  line-height: 1;
}
.about-metric-label {
  font-size: 11px;
  color: var(--gray-md);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Right content */
.about-content-inner {
  max-width: 620px;
}
.about-content-inner p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--clr-gray-light);
  margin-bottom: 20px;
}

/* Cards */
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}
.about-card {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.about-card:hover {
  border-color: rgba(57,255,20,0.3);
  box-shadow: 0 0 24px rgba(57,255,20,0.08);
  transform: translateY(-3px);
}
.about-card-icon {
  width: 44px; height: 44px;
  background: rgba(57,255,20,0.07);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.about-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.about-card p { font-size: 13px; color: var(--gray-lt); line-height: 1.72; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--bg-root); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-card::before {
  content:'';
  position: absolute;
  inset:0;
  background: var(--grad-glow);
  opacity:0;
  transition: var(--transition);
  border-radius: inherit;
}
.service-card:hover {
  border-color: rgba(57,255,20,0.35);
  box-shadow: 0 0 40px rgba(57,255,20,0.12), 0 8px 40px rgba(0,0,0,0.5);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity:1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(57,255,20,0.07);
  border: 1px solid var(--border-dim);
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
  position: relative;
}
.service-card:hover .service-icon {
  background: rgba(57,255,20,0.14);
  border-color: var(--border);
  box-shadow: 0 0 20px rgba(57,255,20,0.25);
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; position: relative; }
.service-card p { font-size: 13.5px; color: var(--gray-lt); line-height: 1.7; margin-bottom: 22px; position: relative; }
.service-card .btn-ghost { position: relative; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio { background: var(--bg-section); }
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 36px 0 44px; }
.filter-btn {
  background: rgba(57,255,20,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--gray-lt);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: rgba(57,255,20,0.1);
  border-color: var(--border);
  color: var(--green);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  transition: var(--transition);
}
.portfolio-card:hover { border-color: var(--border); box-shadow: 0 0 30px rgba(57,255,20,0.1); }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  background: var(--grad-glow);
  padding: 24px; text-align: center;
}
.portfolio-placeholder-icon {
  font-size: 32px;
  width: 64px; height: 64px;
  background: rgba(57,255,20,0.07);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-dim);
}
.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; opacity: 0;
  transition: var(--transition);
  padding: 24px; text-align: center;
}
.portfolio-card:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay h4 { font-size: 1.05rem; font-weight: 700; }
.portfolio-overlay p { font-size: 13px; color: var(--gray-lt); }
.portfolio-metrics { display: flex; gap: 20px; margin-top: 8px; }
.portfolio-metric { display: flex; flex-direction: column; align-items: center; }
.portfolio-metric-val { font-family: var(--font-display); font-size: 1.15rem; font-weight: 900; color: var(--green); }
.portfolio-metric-label { font-size: 11px; color: var(--gray-md); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why-us { background: var(--bg-root); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}
.why-card {
  padding: 30px;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  overflow: hidden;
}
.why-card:hover {
  border-color: rgba(57,255,20,0.3);
  box-shadow: 0 0 30px rgba(57,255,20,0.1);
  transform: translateY(-4px);
}
.why-number {
  font-family: var(--font-display);
  font-size: 4.5rem; font-weight: 900;
  color: rgba(57,255,20,0.04);
  line-height: 1;
  position: absolute;
  top: 12px; right: 18px;
  letter-spacing: -4px;
}
.why-icon { font-size: 26px; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--gray-lt); line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--bg-section); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 64px;
  position: relative;
}
/* Connecting line */
.process-steps::before {
  content:'';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 900;
  color: var(--green);
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: 0 0 0 rgba(57,255,20,0);
}
.process-step:hover .process-step-num {
  border-color: var(--green);
  background: rgba(57,255,20,0.08);
  box-shadow: 0 0 30px rgba(57,255,20,0.4);
  transform: scale(1.08);
}
.process-step-icon { font-size: 26px; margin-bottom: 10px; }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13.5px; color: var(--gray-lt); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--bg-root); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 56px;
}
.testimonial-card {
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(57,255,20,0.25);
  box-shadow: 0 0 30px rgba(57,255,20,0.08);
  transform: translateY(-3px);
}
.stars { color: #39FF14; font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; text-shadow: 0 0 8px rgba(57,255,20,0.5); }
.testimonial-quote {
  font-size: 14px; color: var(--gray-lt);
  line-height: 1.85; margin-bottom: 22px; font-style: italic;
}
.testimonial-quote::before { content:'"'; color: var(--green); font-size: 1.6em; font-style: normal; line-height: 0; vertical-align: -0.3em; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: #000; flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 700; }
.author-company { font-size: 12px; color: var(--gray-md); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--bg-section); }
.faq-wrap { max-width: 760px; margin: 56px auto 0; }
.faq-item {
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition);
}
.faq-item.open {
  border-color: rgba(57,255,20,0.3);
  box-shadow: 0 0 20px rgba(57,255,20,0.07);
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 26px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--white); gap: 20px;
  cursor: pointer;
}
.faq-question:hover { color: var(--green); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(57,255,20,0.07);
  border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--transition);
  font-size: 18px; color: var(--green);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(57,255,20,0.14); border-color: var(--border); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer-inner { padding: 0 26px 20px; font-size: 14px; color: var(--gray-lt); line-height: 1.85; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--bg-root); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem,3vw,2.4rem); font-weight: 900; margin-bottom: 14px; }
.contact-info p { color: var(--gray-lt); font-size: 15px; margin-bottom: 32px; line-height: 1.85; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
}
.contact-method:hover {
  border-color: var(--border);
  background: rgba(57,255,20,0.04);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(57,255,20,0.08);
}
.contact-method-icon {
  width: 42px; height: 42px;
  background: rgba(57,255,20,0.07);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-method-label { font-size: 11px; color: var(--gray-md); }
.contact-method-value { font-size: 14px; font-weight: 600; color: var(--white); }
.contact-form-wrap {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
}
.contact-form-wrap h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--gray-lt); letter-spacing: 0.04em; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--border);
  background: rgba(57,255,20,0.03);
  box-shadow: 0 0 0 3px rgba(57,255,20,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-md); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-group select option { background: var(--bg-card); color: var(--white); }
.form-submit { width: 100%; margin-top: 6px; justify-content: center; border-radius: var(--radius-sm); }
.form-success { display:none; text-align:center; padding:24px; color: var(--green); font-weight:600; font-size:15px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(57,255,20,0.05) 0%, rgba(0,0,0,0) 100%);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content:'';
  position: absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(57,255,20,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(1.9rem,4vw,3rem); font-weight: 900; margin-bottom: 14px; }
.cta-banner p { color: var(--gray-lt); font-size: 1.05rem; margin-bottom: 36px; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-dim);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border-dim);
}
.footer-brand p {
  font-size: 14px; color: var(--gray-lt);
  line-height: 1.85; margin-top: 16px; max-width: 280px;
}
.footer-logo-img {
  height: 56px; width: auto;
  filter: drop-shadow(0 0 10px rgba(57,255,20,0.4));
}

/* ---- Premium Social Icons ---- */
.footer-social { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.social-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(.23,1,.32,1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.social-icon svg {
  width: 20px; height: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

/* Instagram — gradient */
.social-icon.si-instagram { stroke: #e1306c; }
.social-icon.si-instagram::before { background: radial-gradient(circle at 30% 30%, rgba(255,100,55,0.15), rgba(225,48,108,0.12), rgba(130,58,180,0.1)); }
.social-icon.si-instagram:hover {
  border-color: #e1306c;
  box-shadow: 0 0 20px rgba(225,48,108,0.3), 0 6px 20px rgba(225,48,108,0.15);
  transform: translateY(-3px) scale(1.05);
}
.social-icon.si-instagram:hover svg { filter: drop-shadow(0 0 6px rgba(225,48,108,0.8)); stroke: #e1306c; }
.social-icon.si-instagram:hover::before { opacity: 1; }

/* Facebook — blue */
.social-icon.si-facebook svg { stroke: #1877f2; }
.social-icon.si-facebook::before { background: rgba(24,119,242,0.1); }
.social-icon.si-facebook:hover {
  border-color: #1877f2;
  box-shadow: 0 0 20px rgba(24,119,242,0.3), 0 6px 20px rgba(24,119,242,0.15);
  transform: translateY(-3px) scale(1.05);
}
.social-icon.si-facebook:hover svg { filter: drop-shadow(0 0 6px rgba(24,119,242,0.8)); }
.social-icon.si-facebook:hover::before { opacity: 1; }

/* WhatsApp — green */
.social-icon.si-whatsapp svg { stroke: #25d366; }
.social-icon.si-whatsapp::before { background: rgba(37,211,102,0.1); }
.social-icon.si-whatsapp:hover {
  border-color: #25d366;
  box-shadow: 0 0 20px rgba(37,211,102,0.3), 0 6px 20px rgba(37,211,102,0.15);
  transform: translateY(-3px) scale(1.05);
}
.social-icon.si-whatsapp:hover svg { filter: drop-shadow(0 0 6px rgba(37,211,102,0.8)); }
.social-icon.si-whatsapp:hover::before { opacity: 1; }

/* LinkedIn — blue */
.social-icon.si-linkedin svg { stroke: #0a66c2; }
.social-icon.si-linkedin::before { background: rgba(10,102,194,0.1); }
.social-icon.si-linkedin:hover {
  border-color: #0a66c2;
  box-shadow: 0 0 20px rgba(10,102,194,0.3), 0 6px 20px rgba(10,102,194,0.15);
  transform: translateY(-3px) scale(1.05);
}
.social-icon.si-linkedin:hover svg { filter: drop-shadow(0 0 6px rgba(10,102,194,0.8)); }
.social-icon.si-linkedin:hover::before { opacity: 1; }

/* YouTube — red */
.social-icon.si-youtube svg { stroke: #ff0000; }
.social-icon.si-youtube::before { background: rgba(255,0,0,0.09); }
.social-icon.si-youtube:hover {
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255,0,0,0.3), 0 6px 20px rgba(255,0,0,0.15);
  transform: translateY(-3px) scale(1.05);
}
.social-icon.si-youtube:hover svg { filter: drop-shadow(0 0 6px rgba(255,0,0,0.8)); }
.social-icon.si-youtube:hover::before { opacity: 1; }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-md); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: var(--gray-md); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green); padding-left: 4px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--gray-md);
  margin-bottom: 12px; text-decoration: none; transition: var(--transition);
}
.footer-contact-item:hover { color: var(--green); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
  font-size: 13px; color: var(--gray-md);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: var(--green); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity:0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid,
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; max-width: 680px; margin: 0 auto; }
  .about-content-inner { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .nav-menu {
    display: none; position: fixed;
    inset: 0; top: 64px;
    background: rgba(0,0,0,0.97);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; backdrop-filter: blur(20px);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.2rem; }
  .nav-menu .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .services-grid, .why-grid, .testimonials-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; border-top: 1px solid var(--border-dim); padding-top: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .btn { padding: 12px 22px; font-size: 13px; }
  .hero-actions { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px; }
}

/* ============================================================
   ULTRA PREMIUM CUSTOM CURSOR — Neon Core + Magnetic Aura
   ============================================================ */
*, *::before, *::after { cursor: none !important; }

/* Core sharp dot */
#sx-cursor-core {
  position: fixed;
  top: 0; left: 0;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  will-change: transform;
  box-shadow: 0 0 8px #39ff14, 0 0 16px #39ff14, 0 0 32px rgba(57,255,20,.5);
  transition: width .15s ease, height .15s ease, background .15s ease, opacity .25s ease;
}

/* Morphing outer aura */
#sx-cursor-aura {
  position: fixed;
  top: 0; left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  will-change: transform;
  border: 1px solid rgba(57, 255, 20, 0.5);
  background: radial-gradient(circle, rgba(57,255,20,0.07) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(57,255,20,0.12), inset 0 0 20px rgba(57,255,20,0.04);
  transition: width .4s cubic-bezier(.23,1,.32,1),
              height .4s cubic-bezier(.23,1,.32,1),
              border-color .4s ease,
              background .4s ease,
              box-shadow .4s ease,
              border-radius .4s ease,
              opacity .25s ease;
}

/* Particle trail dots */
.sx-trail {
  position: fixed;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999997;
  transform: translate(-50%, -50%);
  background: #39ff14;
  opacity: 0;
  animation: sx-trail-fade 0.6s ease-out forwards;
}
@keyframes sx-trail-fade {
  0%   { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(0); }
}

/* Hover state — pill morph on links/buttons */
body.sx-hovering #sx-cursor-core {
  width: 10px;
  height: 10px;
  background: #39ff14;
  box-shadow: 0 0 12px #39ff14, 0 0 24px #39ff14, 0 0 48px rgba(57,255,20,.6);
}
body.sx-hovering #sx-cursor-aura {
  width: 64px;
  height: 64px;
  border-color: rgba(57, 255, 20, 0.9);
  background: radial-gradient(circle, rgba(57,255,20,0.14) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(57,255,20,0.25), 0 0 80px rgba(57,255,20,0.1), inset 0 0 30px rgba(57,255,20,0.07);
}

/* Click burst — implode then explode */
body.sx-clicking #sx-cursor-core {
  width: 4px;
  height: 4px;
  background: #fff;
}
body.sx-clicking #sx-cursor-aura {
  width: 80px;
  height: 80px;
  border-color: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 60px rgba(57,255,20,0.3), 0 0 120px rgba(57,255,20,0.15);
  background: radial-gradient(circle, rgba(57,255,20,0.04) 0%, transparent 70%);
}

/* Text cursor state — thin vertical line style */
body.sx-text #sx-cursor-core {
  width: 2px;
  height: 20px;
  border-radius: 2px;
  background: #39ff14;
  box-shadow: 0 0 8px #39ff14;
}
body.sx-text #sx-cursor-aura {
  opacity: 0;
}

/* Hide on mobile / touch */
@media (max-width: 768px) {
  #sx-cursor-core, #sx-cursor-aura, .sx-trail { display: none; }
  *, *::before, *::after { cursor: auto !important; }
}

/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-section {
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(57,255,20,0.05) 0%, transparent 68%);
  pointer-events: none;
}

/* Grid — wider photo col, content capped at 620px */
.founder-grid {
  display: grid;
  grid-template-columns: 480px minmax(0, 640px);
  gap: 100px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Photo ---- */
.founder-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.founder-photo-frame {
  position: relative;
  width: 440px;
  height: 540px;
  flex-shrink: 0;
}
.founder-photo-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at 50% 85%, rgba(57,255,20,0.22) 0%, transparent 68%);
  border-radius: 50%;
  animation: founder-pulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes founder-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 28px 28px 90px 28px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 70px rgba(0,0,0,0.65)) drop-shadow(0 0 50px rgba(57,255,20,0.18));
  transition: filter 0.4s ease, transform 0.4s ease;
}
.founder-photo-frame:hover .founder-photo {
  transform: translateY(-8px) scale(1.015);
  filter: drop-shadow(0 36px 90px rgba(0,0,0,0.75)) drop-shadow(0 0 70px rgba(57,255,20,0.28));
}

/* Corner accent brackets */
.founder-photo-frame::before,
.founder-photo-frame::after {
  content: '';
  position: absolute;
  border-color: var(--green);
  border-style: solid;
  z-index: 2;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
}
.founder-photo-frame::before {
  top: -10px; left: -10px;
  width: 55px; height: 55px;
  border-width: 2.5px 0 0 2.5px;
  border-radius: 6px 0 0 0;
  box-shadow: -4px -4px 0 rgba(57,255,20,0.08);
}
.founder-photo-frame::after {
  bottom: -10px; right: -10px;
  width: 55px; height: 55px;
  border-width: 0 2.5px 2.5px 0;
  border-radius: 0 0 6px 0;
  box-shadow: 4px 4px 0 rgba(57,255,20,0.08);
}
.founder-photo-frame:hover::before,
.founder-photo-frame:hover::after {
  width: 80px; height: 80px;
  box-shadow: 0 0 16px rgba(57,255,20,0.45);
}

/* Founder & CEO badge */
.founder-badge-tag {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(57,255,20,0.45);
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 24px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 0 24px rgba(57,255,20,0.18), inset 0 0 12px rgba(57,255,20,0.06);
}

/* ---- Content ---- */
.founder-content-inner {
  max-width: 600px;
}

.founder-name {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--clr-white);
  margin: 10px 0 8px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.founder-role-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
}
.founder-role-tag::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--green);
  box-shadow: 0 0 8px rgba(57,255,20,0.6);
}

.founder-bio {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--clr-gray-light);
  max-width: 580px;
}
.founder-bio + .founder-bio { margin-top: 16px; }

/* Stats strip */
.founder-stats {
  display: flex;
  gap: 0;
  margin: 32px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.founder-stats::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.5), transparent);
}
.founder-stats::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57,255,20,0.2), transparent);
}
.founder-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  text-align: center;
  padding: 24px 20px;
  position: relative;
}
.founder-stat + .founder-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-dim);
}
.founder-stat-val {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  text-shadow: 0 0 24px rgba(57,255,20,0.55);
  letter-spacing: -0.03em;
  line-height: 1;
}
.founder-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Social pill links */
.founder-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.founder-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(57,255,20,0.04);
  border: 1px solid var(--border-dim);
  border-radius: 100px;
  color: var(--clr-gray-light);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(.23,1,.32,1);
  text-decoration: none;
}
.founder-social-link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.founder-social-link:hover {
  background: rgba(57,255,20,0.1);
  border-color: rgba(57,255,20,0.5);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(57,255,20,0.14);
}
.founder-social-link:hover svg {
  stroke: var(--green);
  filter: drop-shadow(0 0 6px rgba(57,255,20,0.65));
}

/* Responsive */
@media (max-width: 1100px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
  }
  .founder-photo-frame {
    width: 340px;
    height: 420px;
    margin: 0 auto;
  }
  .founder-stats { justify-content: center; }
  .founder-socials { justify-content: center; }
  .founder-bio { max-width: 100%; }
  .founder-role-tag { justify-content: center; }
  .founder-content-inner { max-width: 100%; }
}
@media (max-width: 480px) {
  .founder-photo-frame { width: 280px; height: 350px; }
  .founder-stat-val { font-size: 24px; }
  .founder-stat { padding: 18px 12px; }
  .founder-social-link span { display: none; }
  .founder-social-link { padding: 10px 14px; }
}
