:root{
  --bg:#080b14;
  --bg2:#0c111e;
  --panel:rgba(255,255,255,.04);
  --panel2:rgba(255,255,255,.07);
  --text:#eef1f8;
  --muted:#9aa6bd;
  --border:rgba(255,255,255,.09);
  --accent:#34d399;
  --accent2:#5b6ee1;
  --accent3:#38bdf8;
  --grad:linear-gradient(135deg,#5b6ee1 0%,#34d399 100%);
  --grad2:linear-gradient(135deg,#34d399,#38bdf8);
  --grad3:linear-gradient(135deg,#34d399 0%,#5b6ee1 50%,#38bdf8 100%);
  --mono:'JetBrains Mono',ui-monospace,'SFMono-Regular',Menlo,Consolas,monospace;
  --sans:'Inter',system-ui,-apple-system,sans-serif;
  --display:'Poppins','Inter',sans-serif;
}

/* ====== ROOT ELEMENTS & BACKGROUND ====== */
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--sans);
  background:var(--bg);
  color:var(--text);
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  position:relative
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.5;
  background:radial-gradient(60vw 60vw at 80% -10%,rgba(91,110,225,.18),transparent 60%),
  radial-gradient(50vw 50vw at -10% 30%,rgba(52,211,153,.14),transparent 55%);
}
a{color:inherit;text-decoration:none}
img{max-width:100%}

/* Gradient text utilities */
.grad-text{
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.grad2{
  background:linear-gradient(135deg,#34d399,#38bdf8);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.grad3{
  background:var(--grad3);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}

/* ====== CONTAINER ====== */
.container{max-width:1120px;margin:0 auto;padding:0 28px;position:relative;z-index:1}

/* ====== PROGRESS BAR ====== */
.progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0;
  background:var(--grad);
  z-index:300;
  transition:width .1s
}

/* ====== TOP NAV ====== */
.topnav{
  position:sticky;
  top:0;
  z-index:200;
  background:rgba(8,11,20,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--border)
}
.topnav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px
}
.brand{
  font-family:var(--display);
  font-weight:800;
  font-size:22px;
  letter-spacing:-.3px;
  display:flex;
  align-items:center;
  gap:12px
}
.brand .logo-img{height:68px;width:auto;border-radius:10px;display:block}
.brand .logo-img:hover{opacity:0.85}
.brand .ah{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.navlinks{
  display:flex;
  align-items:center;
  gap:8px
}
.navlinks a{
  font-size:14px;
  font-weight:500;
  color:var(--muted);
  padding:9px 14px;
  border-radius:9px;
  transition:.2s;
  position:relative
}
.navlinks a::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:50%;
  width:0;
  height:2px;
  background:var(--grad);
  transition:.3s;
  transform:translateX(-50%)
}
.navlinks a:hover{
  color:var(--text);
  background:var(--panel)
}
.navlinks a:hover::after{
  width:100%
}
.navlinks a.active{
  color:var(--text);
  background:var(--panel)
}
.nav-cta{
  margin-left:8px
}
.menu-btn{
  display:none;
  background:none;
  border:1px solid var(--border);
  color:var(--text);
  font-size:20px;
  width:42px;
  height:38px;
  border-radius:9px;
  cursor:pointer
}

/* ====== HERO ====== */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  position:relative;
  padding:90px 0 70px
}
.hero .inner{position:relative;z-index:2}
.hero-blobs{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0;
  pointer-events:none
}
.hero-blobs span{
  position:absolute;
  border-radius:50%;
  filter:blur(95px);
  opacity:.4;
  animation:float 16s ease-in-out infinite
}
.hero-blobs .b1{
  width:520px;
  height:520px;
  background:#5b6ee1;
  top:-180px;
  right:-160px;
  animation-delay:-4s
}
.hero-blobs .b2{
  width:440px;
  height:440px;
  background:#34d399;
  bottom:-200px;
  left:0;
  animation-delay:-8s
}
.hero-blobs .b3{
  width:360px;
  height:360px;
  background:#38bdf8;
  top:30px;
  right:30px;
  opacity:.25;
  animation-delay:-12s
}
@keyframes float{
  0%,100%{transform:translate(0,0)}
  50%{transform:translate(40px,-50px)}
}
.hero .hi{
  font-family:var(--mono);
  color:var(--accent);
  font-size:16px;
  letter-spacing:1px;
  margin-bottom:16px
}
.hero h1{
  font-family:var(--display);
  font-size:68px;
  font-weight:900;
  line-height:.95;
  letter-spacing:-2px;
  margin-bottom:18px
}
.hero h1 .name{background:var(--grad);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero h2{
  font-family:var(--display);
  font-size:32px;
  font-weight:550;
  letter-spacing:-1px;
  margin-bottom:22px
}
.hero h2 em{
  font-style:normal;
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.hero p{
  color:var(--muted);
  font-size:17px;
  max-width:580px;
  margin:24px 0 30px;
  line-height:1.7
}
.hero-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 32px;
  border-radius:14px;
  font-weight:600;
  font-size:15px;
  transition:.28s;
  cursor:pointer;
  border:1px solid var(--border);
  background:var(--panel)
}
.btn-primary{
  background:var(--grad);
  color:#05121d;
  border:none;
  box-shadow:0 16px 42px rgba(52,211,153,.35)
}
.btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 54px rgba(52,211,153,.45)
}
.btn-ghost:hover{
  border-color:var(--accent);
  color:#fff;
  background:var(--panel2)
}
.hero-photo{display:none}

/* ====== SECTION ====== */
.section{
  padding:112px 0;
  border-bottom:1px solid var(--border)
}
.kicker{
  font-family:var(--mono);
  font-size:14px;
  color:var(--accent);
  letter-spacing:1.5px;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:12px
}
.kicker::before{
  content:"";
  width:35px;
  height:1px;
  background:var(--accent);
  display:inline-block;
  opacity:.6
}
.sec-title{
  font-family:var(--display);
  font-size:42px;
  font-weight:800;
  letter-spacing:-1px;
  margin-bottom:24px;
  line-height:1.15
}
.sec-intro{
  color:var(--muted);
  font-size:16px;
  max-width:580px;
  margin-bottom:48px;
  line-height:1.7
}
.center{text-align:center}
.center .sec-intro{margin-left:auto;margin:right:auto}

/* ====== ABOUT ====== */
.about-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:56px;
  align-items:start
}
.about-text p{
  color:var(--muted);
  margin-bottom:20px;
  font-size:16px
}
.about-text b{color:var(--text)}
.skill{
  margin-bottom:24px
}
.skill-top{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px
}
.bar{
  height:10px;
  border-radius:8px;
  background:var(--panel);
  overflow:hidden;
  border:1px solid var(--border)
}
.bar span{
  display:block;
  height:100%;
  background:var(--grad);
  border-radius:8px;
  position:relative
}
.bar span::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.25),transparent);
  animation:shimmer 3s infinite
}
@keyframes shimmer{
  0%{transform:translateX(-100%)}
  100%{transform:translateX(100%)}
}
.about-photo{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:0 32px 80px rgba(0,0,0,.45);
  position:relative
}
.about-photo img{
  width:100%;
  display:block;
  transition:.5s
}
.about-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:var(--grad);
  opacity:0;
  mix-blend-mode:overlay;
  transition:.4s
}
.about-photo:hover::after{opacity:.2}
.about-photo:hover img{transform:scale(1.03)}

/* ====== SERVICES ====== */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:16px
}
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:20px;
  padding:32px;
  transition:.3s;
  position:relative;
  overflow:hidden
}
.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--grad);
  opacity:0;
  transition:.3s;
  mix-blend-mode:overlay
}
.card:hover{
  transform:translateY(-8px);
  border-color:var(--accent);
  box-shadow:0 32px 64px rgba(0,0,0,.45)
}
.card:hover::before{opacity:.15}
.card .ic{
  width:56px;
  height:56px;
  border-radius:16px;
  background:var(--grad);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  box-shadow:0 8px 24px rgba(52,211,153,.25)
}
.card .ic img{
  width:30px;
  height:30px;
  filter:brightness(0) invert(1)
}
.card h4{
  font-family:var(--display);
  font-size:19px;
  margin-bottom:12px;
  font-weight:600
}
.card p{
  color:var(--muted);
  font-size:14.5px
}

/* ====== TIMELINE ====== */
.tl{
  position:relative;
  padding-left:32px;
  margin-top:12px
}
.tl::before{
  content:"";
  position:absolute;
  left:8px;
  top:12px;
  bottom:12px;
  width:2px;
  background:linear-gradient(180deg,var(--accent),transparent)
}
.tl-item{
  position:relative;
  margin-bottom:32px
}
.tl-item::before{
  content:"";
  position:absolute;
  left:-36px;
  top:8px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:var(--grad);
  box-shadow:0 0 0 6px rgba(52,211,153,.14)
}
.tl-item .yr{
  font-family:var(--mono);
  font-size:13px;
  color:var(--accent);
  font-weight:600
}
.tl-item h4{
  font-family:var(--display);
  font-size:17px;
  margin:8px 0;
  font-weight:600
}
.tl-item p{
  color:var(--muted);
  font-size:14px
}

/* ====== WORK ====== */
.work-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px
}
.work{
  position:relative;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  background:var(--panel);
  transition:.35s;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:32px
}
.work .wimg{
  position:absolute;
  inset:0;
  background:var(--grad);
  opacity:.14;
  transition:.4s
}
.work::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(11,15,26,.92) 0%, rgba(11,15,26,.55) 45%, rgba(11,15,26,.15) 100%);
  z-index:1;
  pointer-events:none
}
.work:hover .wimg{opacity:.22;transform:scale(1.05)}
.work:hover{
  border-color:var(--accent);
  transform:translateY(-8px);
  box-shadow:0 32px 64px rgba(0,0,0,.45)
}
.work .wtag,
.work h4,
.work p,
.work .wlink{
  position:relative;
  z-index:2
}
.work .wtag{
  font-family:var(--mono);
  font-size:13px;
  color:var(--accent);
  letter-spacing:1px;
  margin-bottom:16px
}
.work h4{
  font-family:var(--display);
  font-size:22px;
  margin:10px 0;
  font-weight:650
}
.work p{
  color:var(--muted);
  font-size:14px
}
.work .wlink{
  margin-top:16px;
  color:var(--accent3);
  font-size:14px;
  font-weight:600;
  letter-spacing:.3px
}
.work:hover .wlink{letter-spacing:1px;transition:.3s}

/* ====== FAQ / ACCORDION ====== */
.acc{display:flex;flex-direction:column;gap:14px;margin-top:18px}
.acc.center{max-width:820px;margin-left:auto;margin-right:auto}
.faq{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  transition:.3s
}
.faq.open{border-color:var(--accent)}
.faq:has(.faq-a.open){border-color:var(--accent)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 22px;
  font-family:var(--display);
  font-size:17px;font-weight:600;
  color:var(--text);
  cursor:pointer;user-select:none
}
.faq-q span{
  flex:0 0 auto;
  width:26px;height:26px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(52,211,153,.12);
  color:var(--accent);
  font-size:18px;line-height:1;
  transition:.3s
}
.faq.open .faq-q span{transform:rotate(45deg);background:var(--accent);color:#0b0f1a}
.faq-a{
  max-height:0;overflow:hidden;
  color:var(--muted);
  font-size:15px;line-height:1.6;
  padding:0 22px;
  transition:max-height .35s ease, padding .35s ease
}
.faq.open .faq-a{max-height:300px;padding:0 22px 20px}
.faq-a.open{max-height:300px;padding:0 22px 20px}

/* ====== STATS ====== */
.stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:16px
}
.stat{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:18px;
  padding:32px 24px;
  text-align:center;
  transition:.28s
}
.stat:hover{
  transform:translateY(-6px);
  border-color:var(--accent)
}
.stat .num{
  font-family:var(--display);
  font-size:42px;
  font-weight:850;
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent
}
.stat .lbl{
  font-size:13px;
  color:var(--muted);
  margin-top:8px;
  font-weight:500
}

/* ====== PRICING ====== */
.price-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:16px
}
.pcard{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:24px;
  padding:32px 26px;
  transition:.3s;
  position:relative;
  display:flex;
  flex-direction:column
}
.pcard:hover{
  transform:translateY(-8px);
  border-color:var(--accent)
}
.pcard.pop{
  border-color:var(--accent);
  box-shadow:0 32px 64px rgba(52,211,153,.2);
  background:linear-gradient(180deg,rgba(52,211,153,.06),var(--panel))
}
.pflag{
  position:absolute;
  top:-16px;
  left:50%;
  transform:translateX(-50%);
  background:var(--grad);
  color:#05121d;
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
  padding:6px 16px;
  border-radius:24px;
  text-transform:uppercase
}
.pcard h3{
  font-family:var(--display);
  font-size:20px;
  margin-bottom:4px;
  font-weight:600
}
.pcard .price{
  font-family:var(--display);
  font-size:42px;
  font-weight:850;
  margin:14px 0 4px
}
.pcard .price small{
  font-size:14px;
  color:var(--muted);
  font-weight:500
}
.pcard .pdesc{
  color:var(--muted);
  font-size:14px;
  margin-bottom:24px;
  min-height:44px;
  line-height:1.5
}
.pfeat{
  list-style:none;
  margin-bottom:28px;
  flex:1
}
.pfeat li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
  padding:8px 0;
  color:var(--text)
}
.pfeat li::before{
  content:"▹";
  color:var(--accent);
  font-weight:700
}
.pbtn{
  display:block;
  text-align:center;
  background:var(--grad);
  color:#05121d;
  font-weight:700;
  padding:15px;
  border-radius:14px;
  font-size:15px;
  transition:.2s
}
.pbtn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(52,211,153,.3)
}

/* ====== REVIEWS ====== */
.rev-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:12px
}
.rev{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:20px;
  padding:22px;
  transition:.3s;
  position:relative;
  overflow:hidden
}
.rev:hover{
  border-color:var(--accent);
  transform:translateY(-3px)
}
.rev::before{
  content:"\"\"\"";
  position:absolute;
  top:-18px;
  right:18px;
  font-family:var(--display);
  font-size:72px;
  color:var(--accent);
  opacity:.08;
  line-height:1
}
.rev .stars{
  color:#fbbf24;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:10px
}
.rev .fb{
  font-size:14px;
  color:var(--text);
  font-style:italic;
  margin-bottom:14px;
  line-height:1.6
}
.rev .who{
  display:flex;
  align-items:center;
  gap:12px
}
.rev .av{
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--grad);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#05121d;
  font-size:13px;
  object-fit:cover;
}
.rev .av-init{
  display:none;
}
.rev .nm{
  font-weight:700;
  font-size:14px
}
.rev .ct{
  font-size:12px;
  color:var(--muted)
}

/* ====== REVIEWS CAROUSEL ====== */
.rev-carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:18px
}
.rc-track{
  flex:1;
  overflow:hidden;
  border-radius:22px;
  border:1px solid var(--border);
  background:var(--panel)
}
.rc-slides{
  display:flex;
  transition:transform .45s ease;
  will-change:transform
}
.rc-slide{
  min-width:100%;
  padding:28px 30px;
  box-sizing:border-box
}
.rc-btn{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--panel);
  color:var(--text);
  font-size:22px;
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:.2s
}
.rc-btn:hover{
  border-color:var(--accent);
  color:var(--accent)
}
.rc-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:14px
}
.rc-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  border:1px solid var(--border);
  background:transparent;
  cursor:pointer;
  transition:.2s
}
.rc-dot.active{
  background:var(--accent);
  border-color:var(--accent)
}
@media(max-width:640px){
  .rc-btn{width:38px;height:38px;font-size:18px}
  .rc-slide{padding:20px}
}
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:16px
}
.bcard{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  transition:.3s;
  display:flex;
  flex-direction:column
}
.bcard:hover{
  transform:translateY(-8px);
  border-color:var(--accent);
  box-shadow:0 32px 64px rgba(0,0,0,.45)
}
.bthumb{
  height:200px;
  background:var(--grad);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden
}
.bthumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:none;
  opacity:1;
  z-index:2
}
.bthumb::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 30%,rgba(255,255,255,.25),transparent 60%)
}
.bbody{
  padding:28px
}
.bbody .tag{
  font-family:var(--mono);
  font-size:12px;
  color:var(--accent);
  letter-spacing:1px;
  text-transform:uppercase
}
.bbody h4{
  font-family:var(--display);
  font-size:20px;
  margin:12px 0;
  font-weight:600;
  line-height:1.3
}
.bbody p{
  color:var(--muted);
  font-size:14px;
  margin-bottom:16px;
  line-height:1.6
}
.bbody .more{
  color:var(--accent3);
  font-weight:600;
  font-size:14px
}

/* ====== CONTACT ====== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:56px;
  align-items:start
}
.cform{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:28px;
  padding:36px
}
.field{
  margin-bottom:20px
}
.field label{
  display:block;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
  color:var(--muted)
}
.field input,.field textarea{
  width:100%;
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:13px;
  padding:15px 18px;
  color:var(--text);
  font-family:inherit;
  font-size:15px;
  transition:.2s
}
.field input:focus,.field textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(52,211,153,.12)
}
.field textarea{
  resize:vertical;
  min-height:140px
}
.ci{
  display:flex;
  align-items:flex-start;
  gap:18px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  transition:.22s
}
.ci:hover{border-color:var(--accent)}
.ci .ic{
  width:50px;
  height:50px;
  border-radius:13px;
  background:var(--grad);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  flex-shrink:0;
  box-shadow:0 8px 24px rgba(52,211,153,.22)
}
.ci h4{
  font-family:var(--display);
  font-size:16px;
  margin-bottom:4px;
  font-weight:600
}
.ci a,.ci p{
  color:var(--muted);
  font-size:14px
}

/* ====== TOOLS / VALUE ====== */
.tools{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:12px
}
.tool{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 18px;
  font-size:14px;
  font-weight:500;
  transition:.2s
}
.tool:hover{
  border-color:var(--accent);
  transform:translateY(-3px)
}
.tool img{
  width:24px;
  height:24px
}

/* ====== FOOTER ====== */
.footer{
  border-top:1px solid var(--border);
  padding:48px 0;
  color:var(--muted);
  font-size:14px
}
.footer .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:18px
}
.footer b{color:var(--text)}
.foot-socials{
  display:flex;
  gap:12px
}
.foot-socials a{
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-family:var(--mono);
  font-size:13px;
  transition:.2s
}
.foot-socials a:hover{
  color:var(--accent);
  border-color:var(--accent);
  transform:translateY(-3px)
}

/* ====== REVEAL ====== */
.reveal{
  opacity:0;
  transform:translateY(30px);
  transition:opacity .9s cubic-bezier(.2,.7,.2,1),transform .9s cubic-bezier(.2,.7,.2,1)
}
.reveal.in{opacity:1;transform:none}

/* ====== RESPONSIVE ====== */
@media(max-width:880px){
  .navlinks{
    display:none;
    position:absolute;
    top:68px;
    left:0;
    right:0;
    flex-direction:column;
    background:var(--bg2);
    border-bottom:1px solid var(--border);
    padding:20px
  }
  .navlinks.open{display:flex}
  .menu-btn{display:block}
  .hero h1{font-size:64px}
  .hero h2{font-size:32px}
  .sec-title{font-size:34px}
  .about-grid,.work-grid,.rev-grid,.contact-grid,.cards,.price-grid,.stats,.blog-grid{
    grid-template-columns:1fr
  }
  .price-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:560px){
  .price-grid{grid-template-columns:1fr}
  .hero h1{font-size:48px}
  .hero h2{font-size:24px}
  .sec-title{font-size:28px}
  .kicker{font-size:12px}
  .navlinks a{
    padding:10px 12px;
    font-size:13px
  }
  .about-photo{margin-top:24px}
  .work{min-height:220px}
  .bcard{margin-bottom:16px}
}

/* ====== REDUCED MOTION ====== */
@media(prefers-reduced-motion:reduce){
  .hero-blobs span{
    animation:none
  }
  .reveal{
    opacity:1;
    transform:none;
    transition:none
  }
}
/* ====== TESTIMONIALS ====== */
.testimonials{padding:112px 0;border-bottom:1px solid var(--border)}
.testi-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:32px;margin-top:24px}
.testi-card{background:var(--panel);border:1px solid var(--border);border-radius:20px;padding:32px;transition:.3s;position:relative;overflow:hidden}
.testi-card::before{content:"";position:absolute;top:0;left:0;width:4px;height:100%;background:var(--grad);opacity:0;transition:.3s}
.testi-card:hover{transform:translateY(-4px);border-color:var(--accent)}
.testi-card:hover::before{opacity:.5}
.testi-card .stars{color:#fbbf24;font-size:18px;margin-bottom:16px}
.testi-card .fb{font-size:15px;color:var(--text);font-style:italic;margin-bottom:20px;line-height:1.6}
.testi-card .who{display:flex;align-items:center;gap:16px}
.testi-card .av{width:40px;height:40px;border-radius:50%;background:var(--grad);display:flex;align-items:center;justify-content:center;font-weight:800;color:#05121d;font-size:14px}
.testi-card .nm{font-weight:700;font-size:14px}
.testi-card .ct{font-size:12px;color:var(--muted)}

/* Pagination */
.pagination{display:flex;justify-content:center;align-items:center;gap:8px;margin:40px 0 20px;flex-wrap:wrap}
.pg-btn{background:var(--panel);border:1px solid var(--border);color:var(--text);padding:9px 18px;border-radius:10px;font-family:var(--display);font-size:14px;font-weight:500;cursor:pointer;transition:all .2s}
.pg-btn:hover:not(:disabled){background:var(--accent);color:#0b0f1a;border-color:var(--accent)}
.pg-btn.active{background:var(--accent);color:#0b0f1a;border-color:var(--accent)}
.pg-btn:disabled{opacity:.35;cursor:not-allowed}
