/*
Theme Name: BrandGROVA
Version: 1.0
*/

:root{
  --bg:#05070A;
  --bg2:#0A1017;
  --surface:#0E141B;
  --surface2:#121A23;
  --text:#F5F7FA;
  --muted:#AAB4C0;
  --accent:#43D17A;
  --accent2:#1E8F52;
  --border:rgba(255,255,255,.10);
  --shadow:0 24px 70px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at top left, rgba(67,209,122,.16), transparent 28%),
    radial-gradient(circle at top right, rgba(67,209,122,.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none;transition:.25s ease}
a:hover{color:var(--accent)}
img{max-width:100%;height:auto;display:block}
button,input,textarea,select{font:inherit}

.container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

.skip-link{
  position:absolute;left:-999px;top:auto;
}
.skip-link:focus{
  left:16px;top:16px;z-index:9999;
  background:#fff;color:#000;padding:12px 16px;border-radius:10px;
}

.header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(5,7,10,.72);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:.5px;
}
.logo-badge{
  width:42px;height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#041007;
  font-weight:900;
  box-shadow:0 18px 40px rgba(67,209,122,.18);
}
.nav-links{
  display:flex;
  gap:22px;
  color:var(--muted);
}
.nav-links a:hover{color:var(--accent)}
.menu-btn{
  display:none;
  width:48px;height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}

.overlay-menu{
  position:fixed;
  inset:0;
  z-index:999;
  background:rgba(5,7,10,.96);
  backdrop-filter:blur(18px);
  display:grid;
  place-items:center;
  opacity:0;
  pointer-events:none;
  transform:translateY(-8px);
  transition:.28s ease;
}
.overlay-menu.open{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.overlay-menu nav{
  display:grid;
  gap:16px;
  text-align:center;
}
.overlay-menu a{
  font-size:clamp(1.8rem,4vw,3.8rem);
  font-weight:800;
  letter-spacing:-.04em;
}
.overlay-close{
  position:absolute;
  top:24px;right:24px;
  width:48px;height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}

.hero{
  min-height:100vh;
  display:grid;
  align-items:center;
  padding:120px 0 80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:40px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid rgba(67,209,122,.18);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.03);
  margin-bottom:18px;
}
.kicker::before{
  content:"";
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(67,209,122,.12);
}
h1,h2,h3,h4{
  margin:0;
  letter-spacing:-.05em;
}
h1{
  font-size:clamp(3rem,7vw,6.2rem);
  line-height:.94;
}
h2{
  font-size:clamp(2rem,4vw,3.4rem);
  line-height:1.02;
}
p{
  color:var(--muted);
  line-height:1.8;
}
.lead{
  font-size:1.08rem;
  max-width:620px;
}

.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:14px;
  border:1px solid var(--border);
  font-weight:700;
}
.btn.primary{
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#041007;
  box-shadow:0 18px 40px rgba(67,209,122,.14);
}
.btn:hover{transform:translateY(-2px)}

.panel{
  position:relative;
  min-height:560px;
  border-radius:30px;
  border:1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
    rgba(16,24,42,.72);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform-style:preserve-3d;
}
.orb{
  position:absolute;
  border-radius:50%;
  filter:blur(8px);
}
.orb.one{width:180px;height:180px;left:40px;top:50px;background:rgba(67,209,122,.55)}
.orb.two{width:240px;height:240px;right:20px;bottom:30px;background:rgba(30,143,82,.45)}
.orb.three{width:120px;height:120px;right:120px;top:120px;background:rgba(255,255,255,.12)}

.glass-card{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) perspective(1200px) rotateX(12deg) rotateY(-14deg);
  width:min(430px,86%);
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}
.stat{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:20px;
}
.stat div{
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.section{
  padding:96px 0;
}
.section-title{
  max-width:740px;
  margin-bottom:28px;
}

.grid-2{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.story-visual{
  position:relative;
  min-height:360px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(18,26,35,.88), rgba(14,20,27,.88));
  border:1px solid rgba(255,255,255,.1);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.glow-orb{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:220px;height:220px;
  border-radius:50%;
  background:rgba(67,209,122,.18);
  filter:blur(30px);
}
.keyword{
  position:absolute;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(67,209,122,.18);
  color:var(--text);
  backdrop-filter:blur(14px);
  animation:float 5s ease-in-out infinite;
}
.k1{top:22%;left:16%}
.k2{top:18%;right:18%;animation-delay:1s}
.k3{bottom:24%;left:18%;animation-delay:2s}
.k4{bottom:18%;right:14%;animation-delay:3s}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

.service-grid,
.portfolio-grid,
.stats-grid,
.testimonial-grid{
  display:grid;
  gap:18px;
}
.service-grid{grid-template-columns:repeat(2,1fr)}
.portfolio-grid{grid-template-columns:repeat(3,1fr)}
.stats-grid{grid-template-columns:repeat(3,1fr)}
.testimonial-grid{grid-template-columns:repeat(3,1fr)}

.card,
.service-card,
.portfolio-card,
.stat-card,
.testimonial,
.timeline-item,
.modal-body,
.contact-box,
.form{
  background:linear-gradient(180deg, rgba(18,26,35,.92), rgba(14,20,27,.92));
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.service-card{
  padding:26px;
  border-radius:24px;
  transition:.25s ease;
  transform-style:preserve-3d;
}
.service-card:hover{
  transform:translateY(-6px) rotateX(4deg) rotateY(-4deg);
  border-color:rgba(67,209,122,.28);
  box-shadow:0 24px 70px rgba(67,209,122,.12);
}

.portfolio-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  min-height:280px;
  cursor:pointer;
}
.portfolio-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .35s ease;
}
.portfolio-card:hover img{transform:scale(1.08)}
.portfolio-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:22px;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.82));
}

.stat-card{
  padding:28px;
  border-radius:24px;
  text-align:center;
}
.stat-card .num{
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:900;
  color:var(--accent);
  display:block;
}

.timeline{
  display:grid;
  gap:16px;
}
.timeline-item{
  padding:22px 24px;
  border-radius:22px;
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.timeline-dot{
  width:14px;height:14px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 8px rgba(67,209,122,.12);
  margin-top:7px;
  flex:0 0 auto;
}

.testimonial{
  padding:24px;
  border-radius:24px;
}

.cta{
  text-align:center;
  padding:80px 0;
  border-radius:30px;
  background:
    radial-gradient(circle at center, rgba(67,209,122,.18), transparent 35%),
    linear-gradient(180deg, rgba(18,26,35,.92), rgba(14,20,27,.92));
  box-shadow:var(--shadow);
  border:1px solid rgba(67,209,122,.16);
}

.footer{
  padding:30px 0 50px;
  color:var(--muted);
}

.modal{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(5,7,10,.96);
  display:none;
  padding:24px;
}
.modal.open{display:grid;place-items:center}
.modal-body{
  width:min(1100px,100%);
  max-height:90vh;
  overflow:auto;
  border-radius:28px;
  padding:28px;
  position:relative;
}
.modal-close{
  position:absolute;
  top