/* ═══════════════════════════════════════════════════
   GIENA CONSULTING GROUP — GLOBAL STYLESHEET
   Brand: Navy #000B2B | Lime #C5FF00 | White #FFFFFF
═══════════════════════════════════════════════════ */

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

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #000B2B;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000B2B; }
::-webkit-scrollbar-thumb { background: #C5FF00; border-radius: 2px; }

/* ── CSS VARIABLES ── */
:root {
  --navy: #000B2B;
  --navy-light: #001040;
  --lime: #C5FF00;
  --lime-dark: #9AE600;
  --white: #ffffff;
  --glass-bg: rgba(255,255,255,0.03);
  --glass-border: rgba(255,255,255,0.07);
  --lime-glass: rgba(197,255,0,0.05);
  --lime-border: rgba(197,255,0,0.15);
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.3);
}

/* ══════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp       { from { opacity:0; transform:translateY(50px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn       { from { opacity:0; } to { opacity:1; } }
@keyframes slideLeft    { from { opacity:0; transform:translateX(-60px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideRight   { from { opacity:0; transform:translateX(60px); } to { opacity:1; transform:translateX(0); } }
@keyframes floatY       { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-22px); } }
@keyframes glowPulse    { 0%,100% { box-shadow:0 0 20px rgba(197,255,0,.3),0 0 40px rgba(197,255,0,.1); } 50% { box-shadow:0 0 50px rgba(197,255,0,.7),0 0 80px rgba(197,255,0,.25); } }
@keyframes particleFloat { 0% { transform:translate(0,0); opacity:.4; } 40% { transform:translate(30px,-60px); opacity:.9; } 80% { transform:translate(-20px,-110px); opacity:.5; } 100% { transform:translate(0,0); opacity:.4; } }
@keyframes marquee      { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes spin         { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes spinRev      { from { transform:rotate(0deg); } to { transform:rotate(-360deg); } }
@keyframes shimmer      { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes borderGlow   { 0%,100% { border-color:rgba(197,255,0,.15); } 50% { border-color:rgba(197,255,0,.6); } }
@keyframes lineExpand   { from { width:0; } to { width:100%; } }
@keyframes scaleIn      { from { opacity:0; transform:scale(.85); } to { opacity:1; transform:scale(1); } }

/* ── ANIMATION UTILITY CLASSES ── */
.anim-fade-up    { opacity:0; animation:fadeUp .9s cubic-bezier(.16,1,.3,1) forwards; }
.anim-fade-in    { opacity:0; animation:fadeIn .9s ease forwards; }
.anim-slide-l    { opacity:0; animation:slideLeft .9s cubic-bezier(.16,1,.3,1) forwards; }
.anim-slide-r    { opacity:0; animation:slideRight .9s cubic-bezier(.16,1,.3,1) forwards; }
.anim-scale-in   { opacity:0; animation:scaleIn .8s cubic-bezier(.16,1,.3,1) forwards; }

.float           { animation:floatY 6s ease-in-out infinite; }
.float-slow      { animation:floatY 9s ease-in-out infinite; }
.float-fast      { animation:floatY 3.5s ease-in-out infinite; }
.glow-pulse      { animation:glowPulse 3s ease-in-out infinite; }
.spin-slow       { animation:spin 22s linear infinite; }
.spin-rev        { animation:spinRev 18s linear infinite; }
.border-glow     { animation:borderGlow 3s ease-in-out infinite; }

.d1 { animation-delay:.1s; }
.d2 { animation-delay:.2s; }
.d3 { animation-delay:.35s; }
.d4 { animation-delay:.5s; }
.d5 { animation-delay:.65s; }
.d6 { animation-delay:.8s; }
.d7 { animation-delay:.95s; }
.d8 { animation-delay:1.1s; }

/* ══════════════════════════════
   LAYOUT
══════════════════════════════ */
.container { max-width:1400px; margin:0 auto; padding:0 60px; }
.section   { padding:100px 0; }
.section-sm { padding:70px 0; }

@media(max-width:768px) {
  .container { padding:0 24px; }
  .section   { padding:70px 0; }
}

/* ══════════════════════════════
   TYPOGRAPHY
══════════════════════════════ */
.section-label {
  display:inline-flex; align-items:center; gap:12px;
  font-size:11px; font-weight:700; letter-spacing:.3em;
  text-transform:uppercase; color:var(--lime);
}
.section-label::before { content:''; width:30px; height:2px; background:var(--lime); flex-shrink:0; }

.section-title {
  font-size:clamp(36px,5.5vw,72px);
  font-weight:900; line-height:.95;
  letter-spacing:-.03em; text-transform:uppercase;
}
.section-title span { color:var(--lime); }

.hero-title {
  font-size:clamp(52px,8.5vw,112px);
  font-weight:900; line-height:.93;
  letter-spacing:-.03em; text-transform:uppercase;
}
.hero-title .accent { color:var(--lime); text-shadow:0 0 80px rgba(197,255,0,.45); }

/* ══════════════════════════════
   BACKGROUNDS
══════════════════════════════ */
.grid-bg {
  background-image:
    linear-gradient(rgba(197,255,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,255,0,.035) 1px, transparent 1px);
  background-size:60px 60px;
}
.grid-bg-sm {
  background-image:
    linear-gradient(rgba(197,255,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,255,0,.025) 1px, transparent 1px);
  background-size:30px 30px;
}
.hero-gradient {
  background:
    radial-gradient(ellipse at 18% 55%, rgba(197,255,0,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 15%, rgba(0,50,150,.3) 0%, transparent 50%),
    #000B2B;
}
.dark-section { background:rgba(0,5,20,.6); border-top:1px solid var(--glass-border); border-bottom:1px solid var(--glass-border); }
.lime-tint    { background:rgba(197,255,0,.03); border-top:1px solid rgba(197,255,0,.08); border-bottom:1px solid rgba(197,255,0,.08); }

/* ══════════════════════════════
   GLASSMORPHISM
══════════════════════════════ */
.glass {
  background:var(--glass-bg);
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  border:1px solid var(--glass-border);
}
.glass-lime {
  background:var(--lime-glass);
  backdrop-filter:blur(20px);
  border:1px solid var(--lime-border);
}
.glass-card {
  background:rgba(255,255,255,.02);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.06);
  transition:all .4s cubic-bezier(.16,1,.3,1);
}
.glass-card:hover {
  background:rgba(197,255,0,.04);
  border-color:rgba(197,255,0,.25);
  transform:translateY(-8px);
  box-shadow:0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(197,255,0,.1);
}

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif;
  font-weight:800; font-size:12px;
  letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; border:none; text-decoration:none;
  transition:all .3s cubic-bezier(.16,1,.3,1);
  clip-path:polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-lime  { background:var(--lime); color:var(--navy); padding:16px 40px; }
.btn-lime:hover  { background:#D4FF00; box-shadow:0 0 40px rgba(197,255,0,.55); transform:translateY(-3px); }
.btn-outline {
  background:transparent; color:var(--lime); padding:14px 38px;
  border:2px solid rgba(197,255,0,.45);
  clip-path:polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-family:'Montserrat',sans-serif; font-weight:800;
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  cursor:pointer; transition:all .3s ease; text-decoration:none;
  display:inline-flex; align-items:center;
}
.btn-outline:hover { background:rgba(197,255,0,.1); border-color:var(--lime); box-shadow:0 0 30px rgba(197,255,0,.25); transform:translateY(-3px); }
.btn-white  { background:#fff; color:var(--navy); padding:16px 40px; }
.btn-white:hover { background:#f0f0f0; transform:translateY(-3px); box-shadow:0 20px 40px rgba(0,0,0,.3); }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  padding:22px 60px;
  display:flex; align-items:center; justify-content:space-between;
  transition:all .4s ease;
}
.navbar.scrolled {
  background:rgba(0,8,30,.92);
  backdrop-filter:blur(30px);
  -webkit-backdrop-filter:blur(30px);
  border-bottom:1px solid rgba(197,255,0,.1);
  padding:14px 60px;
}
.nav-links { display:flex; align-items:center; gap:40px; }
.nav-link {
  color:rgba(255,255,255,.65);
  font-size:12px; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  text-decoration:none;
  position:relative; padding:4px 0;
  transition:color .3s ease;
}
.nav-link::after {
  content:''; position:absolute; bottom:-2px; left:0;
  width:0; height:2px; background:var(--lime);
  transition:width .3s ease;
}
.nav-link:hover, .nav-link.active { color:var(--lime); }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

/* Wordmark */
.wordmark { display:flex; align-items:center; gap:12px; text-decoration:none; }
.wordmark-name {
  font-size:18px; font-weight:900;
  letter-spacing:.22em; color:#fff; line-height:1;
}
.wordmark-sub {
  font-size:8px; font-weight:600;
  letter-spacing:.32em; color:var(--lime);
  line-height:1; margin-top:3px;
}

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:#fff; transition:all .3s ease; }
.mobile-nav {
  display:none; position:fixed; inset:0; z-index:999;
  background:rgba(0,8,30,.98); backdrop-filter:blur(30px);
  flex-direction:column; align-items:center; justify-content:center;
  gap:40px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  font-size:36px; font-weight:900; letter-spacing:.06em;
  text-transform:uppercase; color:#fff; text-decoration:none;
  transition:color .3s ease;
}
.mobile-nav a:hover, .mobile-nav a.active { color:var(--lime); }

@media(max-width:900px) {
  .hamburger { display:flex; }
  .nav-links  { display:none; }
  .navbar     { padding:16px 24px; }
  .navbar.scrolled { padding:12px 24px; }
}

/* ══════════════════════════════
   MARQUEE STRIP
══════════════════════════════ */
.marquee-strip { overflow:hidden; background:var(--lime); padding:14px 0; }
.marquee-inner { display:flex; width:max-content; animation:marquee 22s linear infinite; }
.marquee-item  {
  color:var(--navy); font-weight:800;
  font-size:12px; letter-spacing:.16em;
  text-transform:uppercase; padding:0 40px;
  white-space:nowrap;
}
.marquee-item::after { content:'◆'; margin-left:40px; opacity:.4; }

/* ══════════════════════════════
   CARDS
══════════════════════════════ */
.service-card {
  padding:48px 40px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.06);
  position:relative; overflow:hidden;
  transition:all .4s ease;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0;
  width:100%; height:2px;
  background:linear-gradient(90deg, var(--lime), transparent);
  transform:scaleX(0); transform-origin:left;
  transition:transform .4s ease;
}
.service-card:hover { border-color:rgba(197,255,0,.2); transform:translateY(-6px); box-shadow:0 24px 60px rgba(0,0,0,.4); }
.service-card:hover::before { transform:scaleX(1); }
.service-icon {
  width:52px; height:52px;
  background:rgba(197,255,0,.08);
  border:1px solid rgba(197,255,0,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:24px;
  clip-path:polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ══════════════════════════════
   STAT CARDS
══════════════════════════════ */
.stat-card { padding:40px 32px; text-align:center; }
.stat-num  {
  font-size:clamp(48px,6vw,80px);
  font-weight:900; color:var(--lime);
  line-height:1; letter-spacing:-.03em;
}
.stat-label {
  font-size:11px; color:var(--text-muted);
  letter-spacing:.12em; text-transform:uppercase; margin-top:8px;
}

/* ══════════════════════════════
   FAQ ACCORDION
══════════════════════════════ */
.faq-item {
  border-bottom:1px solid rgba(255,255,255,.07);
  padding:26px 0; cursor:pointer;
  transition:border-color .3s ease;
}
.faq-item:hover { border-color:rgba(197,255,0,.3); }
.faq-header { display:flex; justify-content:space-between; align-items:center; gap:24px; }
.faq-question { font-size:17px; font-weight:700; letter-spacing:.01em; flex:1; }
.faq-toggle {
  width:34px; height:34px; flex-shrink:0;
  border:1px solid rgba(255,255,255,.2);
  display:flex; align-items:center; justify-content:center;
  font-weight:900; font-size:20px;
  transition:all .3s ease; background:transparent; color:#fff; cursor:pointer;
}
.faq-toggle.open { background:var(--lime); color:var(--navy); border-color:var(--lime); }
.faq-answer {
  max-height:0; overflow:hidden; opacity:0;
  transition:max-height .5s cubic-bezier(.16,1,.3,1), opacity .3s ease, padding .3s ease;
}
.faq-answer.open { max-height:300px; opacity:1; padding-top:20px; }
.faq-answer p { color:var(--text-muted); font-size:15px; line-height:1.85; }

/* ══════════════════════════════
   TIMELINE
══════════════════════════════ */
.timeline { position:relative; padding:20px 0; }
.timeline-line {
  position:absolute; left:50%; top:0; bottom:0;
  width:2px;
  background:linear-gradient(180deg, transparent 0%, var(--lime) 8%, var(--lime) 92%, transparent 100%);
  transform:translateX(-50%);
}
.timeline-item {
  display:flex;
  justify-content:flex-end;
  margin-bottom:48px;
  position:relative;
}
.timeline-item.right { justify-content:flex-start; }
.timeline-dot {
  position:absolute; left:50%; top:28px;
  width:16px; height:16px; background:var(--lime);
  transform:translateX(-50%);
  clip-path:polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.timeline-card {
  width:44%;
  padding:32px 32px 32px 36px;
}
.timeline-item.right .timeline-card { padding:32px 36px 32px 32px; }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testimonial-quote {
  font-size:90px; line-height:1; color:var(--lime);
  opacity:.2; font-weight:900; position:absolute; top:-15px; left:0;
  font-family:Georgia, serif;
}
.testimonial-dots { display:flex; gap:8px; justify-content:center; margin-top:32px; }
.testimonial-dot {
  height:4px; background:rgba(255,255,255,.2);
  border-radius:2px; border:none; cursor:pointer;
  transition:all .4s ease;
}
.testimonial-dot.active { background:var(--lime); width:40px; }
.testimonial-dot:not(.active) { width:14px; }

/* ══════════════════════════════
   FORM ELEMENTS
══════════════════════════════ */
.form-group { display:flex; flex-direction:column; gap:8px; }
.form-label {
  font-size:11px; font-weight:700;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.35);
}
.form-input, .form-select, .form-textarea {
  width:100%; font-family:'Montserrat',sans-serif;
  font-size:14px; color:#fff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  padding:16px 20px; outline:none;
  transition:all .3s ease;
  -webkit-appearance:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--lime);
  background:rgba(197,255,0,.04);
  box-shadow:0 0 0 3px rgba(197,255,0,.08);
}
.form-input::placeholder, .form-textarea::placeholder { color:rgba(255,255,255,.25); }
.form-select { appearance:none; cursor:pointer; }
.form-select option { background:#001040; color:#fff; }
.form-textarea { resize:vertical; min-height:140px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background:#000610;
  border-top:1px solid rgba(255,255,255,.06);
  padding:80px 0 40px;
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px; margin-bottom:64px;
}
.footer-heading {
  font-size:11px; font-weight:700;
  letter-spacing:.3em; text-transform:uppercase;
  color:var(--lime); margin-bottom:24px;
}
.footer-link {
  display:block; font-size:14px;
  color:rgba(255,255,255,.4); text-decoration:none;
  transition:color .25s ease; margin-bottom:12px;
}
.footer-link:hover { color:#fff; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:32px;
  display:flex; justify-content:space-between;
  align-items:center; flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:13px; color:rgba(255,255,255,.22); }
.footer-tag  { font-size:11px; color:rgba(255,255,255,.16); letter-spacing:.15em; text-transform:uppercase; }

@media(max-width:900px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
}
@media(max-width:600px) {
  .footer-grid { grid-template-columns:1fr; }
}

/* ══════════════════════════════
   MISC UTILITIES
══════════════════════════════ */
.clip-btn  { clip-path:polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
.divider   { height:1px; background:rgba(255,255,255,.06); }
.lime-bar  { width:50px; height:3px; background:var(--lime); }
.sr-only   { position:absolute; width:1px; height:1px; clip:rect(0,0,0,0); overflow:hidden; }
.overflow-hidden { overflow:hidden; }
.relative  { position:relative; }
.absolute  { position:absolute; }
.z-1 { z-index:1; }

/* Particle dot */
.particle {
  position:absolute; border-radius:50%;
  background:var(--lime); pointer-events:none;
  animation:particleFloat ease-in-out infinite;
}

/* Diagonal CTA section */
.cta-section {
  background:linear-gradient(135deg, var(--lime) 0%, #9AE600 100%);
  clip-path:polygon(0 7%, 100% 0, 100% 93%, 0 100%);
  padding:110px 60px;
  text-align:center;
}
.cta-section h2 {
  font-size:clamp(36px,5vw,72px);
  font-weight:900; color:var(--navy);
  text-transform:uppercase; line-height:.98;
  letter-spacing:-.02em; margin-bottom:20px;
}
.cta-section p { color:rgba(0,11,43,.65); font-size:17px; margin-bottom:44px; max-width:460px; margin-left:auto; margin-right:auto; }

/* Hover lift */
.hover-lift { transition:transform .35s ease, box-shadow .35s ease; }
.hover-lift:hover { transform:translateY(-7px); box-shadow:0 24px 60px rgba(0,0,0,.45); }

/* Hover glow border */
.hover-glow { transition:all .35s ease; }
.hover-glow:hover { border-color:rgba(197,255,0,.3) !important; box-shadow:0 0 30px rgba(197,255,0,.1); }

/* Open role row */
.role-row {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:16px; padding:26px 36px;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:all .3s ease; cursor:pointer;
}
.role-row:hover { background:rgba(197,255,0,.04); border-color:rgba(197,255,0,.2); }
.role-badge {
  display:inline-block; padding:5px 14px;
  background:rgba(197,255,0,.1); border:1px solid rgba(197,255,0,.3);
  color:var(--lime); font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
}

/* Contact info row */
.contact-row {
  display:flex; align-items:center; gap:20px;
  padding:22px 28px; border-bottom:1px solid rgba(255,255,255,.06);
}

/* Rings */
.ring {
  position:absolute; border-radius:50%;
  border:1px solid rgba(197,255,0,.06);
  pointer-events:none;
}

/* Number watermark */
.num-watermark {
  position:absolute;
  font-size:clamp(120px,18vw,200px);
  font-weight:900; color:rgba(197,255,0,.03);
  line-height:1; user-select:none; pointer-events:none;
  letter-spacing:-.05em; z-index:0;
}

/* Responsive Grids */
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:2px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.grid-auto { display:grid; grid-template-columns:repeat(auto-fit, minmax(280px, 1fr)); gap:2px; }
.grid-auto-lg { display:grid; grid-template-columns:repeat(auto-fit, minmax(320px, 1fr)); gap:2px; }

@media(max-width:1024px) { .grid-4 { grid-template-columns:repeat(2,1fr); } }
@media(max-width:768px)  {
  .grid-2 { grid-template-columns:1fr; gap:16px; }
  .grid-3 { grid-template-columns:1fr; gap:16px; }
  .grid-4 { grid-template-columns:1fr 1fr; }
  .hero-title { font-size:clamp(40px,10vw,68px); }
  .section-title { font-size:clamp(30px,8vw,52px); }
  .cta-section { clip-path:none; padding:80px 24px; }
  .timeline-line { left:20px; }
  .timeline-item, .timeline-item.right { justify-content:flex-end; }
  .timeline-card { width:calc(100% - 56px); }
  .timeline-dot  { left:20px; }
}
@media(max-width:480px)  { .grid-4 { grid-template-columns:1fr; } }
