/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0d0d0d;
  background: #fafafa;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  
  --accent: #2f6bff;
  --dark: #0d0d0d;
  --muted: #6b6b6b;
  --border: #ececec;
  --bg-soft: #f3f3f3;
  --green: #25d366;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 500; font-size: 15px;
  transition: transform .2s, opacity .2s, background .2s;
  cursor: pointer; border: none;
}
.btn:hover { transform: translateY(-1px); opacity: .92; }
.btn-dark  { background: var(--dark);  color: #fff; }
.btn-light { background: black; color: #fff }
.btn-green { background: var(--green); color: #fff; }
.btn-lg    { padding: 14px 28px; font-size: 16px; }
.btn.full  { width: 100%; justify-content: center; background: black; color: white; }
.arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,.18); font-size: 12px;
}
.btn-light .arrow { background:black ; }
.contact-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #111;
  color: #fff;

  padding: 10px 12px 10px 28px;

  border-radius: 999px;
  text-decoration: none;

  font-size: 18px;
  font-weight: 700px;
}

.arrow{
  height: 30px;
  width: 30px;

  background: #fff;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
}

/* ============ NAVBAR ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; }
.logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  color: #fff;
  display: grid; place-items: center; font-size: 14px;
   background: rgba(255,255,255,.18)
}
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 15px; color: #2a2a2a; font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

/* ============ HERO ============ */
.hero {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 24px 40px;
  text-align: center;
}
.trusted {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border);
  padding: 6px 14px 6px 6px; border-radius: 999px;
  font-size: 14px; margin-bottom: 28px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.avatars { display: flex; }
.avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #ffb86b, #ff5e7e);
  border: 2px solid #fff; margin-left: -8px;
}
.avatar:first-child { margin-left: 0; background: linear-gradient(135deg,#7ad0ff,#4a6cff); }
.avatar:nth-child(2) { background: linear-gradient(135deg,#b6f7c1,#3ad29f); }

.hero-title {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-icon {
  display: inline-grid; place-items: center;
  width: 0.9em; height: 0.9em;
  background: var(--accent); color: #fff;
  border-radius: 16px; font-size: 0.5em;
  vertical-align: middle; margin-left: 8px;
  transform: rotate(-8deg);
}
.accent { color: var(--accent); }
.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 520px; margin: 0 auto 32px;
}

/* hero showcase */
.hero-showcase {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 60px;
  
}
.card card-side card-left img{
  object-fit: contain;
}
.card {
  background: #ddd; border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  overflow: hidden;
  /* REPLACE backgrounds with your images via inline style or CSS */
}
.card-main {
  width: min(640px, 60vw); aspect-ratio: 16/10;
  background: linear-gradient(135deg,#222,#444);
}
.card-side {
  width: 180px; aspect-ratio: 3/4;
  background: linear-gradient(135deg,#555,#888);
}

.card-left img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-left  { transform: rotate(-8deg) translateY(20px); }
.card-right { transform: rotate(8deg) translateY(20px); }

/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff; padding: 20px 0;
  margin: 60px 0;
}
.marquee-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-size: 18px; font-weight: 600; color: #2a2a2a;
}
.marquee-track span { display: inline-block; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: 90px 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  background: #eaf0ff; padding: 4px 12px;
  border-radius: 999px; margin-bottom: 18px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 16px;
}
.section-sub {
  color: var(--muted); font-size: 17px;
  max-width: 600px; margin-bottom: 50px;
}

/* ============ WHY ============ */
.why-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.why-card.big { grid-column: span 2; }
.why-card h3 { font-size: 20px; font-weight: 700; }
.why-img {
  flex: 1; border-radius: 14px;
  background: linear-gradient(135deg,#eaeaea,);
  min-height: 140px;
}
.why-card.stats { gap: 22px; }
.stat h4 { font-size: 22px; font-weight: 700; }
.stat p  { font-size: 14px; color: var(--muted); }

/* ============ SHOWCASE ============ */
.showcase-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}
.show-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; padding: 14px;
}
.show-thumb {
  aspect-ratio: 16/9; border-radius: 12px;
  background: linear-gradient(135deg,);
  margin-bottom: 12px;
  
}
.show-thumb video{
  height: 200px;
  object-fit: cover;
  
}
.show-card p { font-weight: 600; padding: 4px 6px; }

/* ============ PROCESS ============ */
.steps {
  display: grid; gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}
.step {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 28px;
  position: relative;
}
.step-num {
  font-size: 13px; font-weight: 700;
  color: var(--accent);
}
.step-img {
  margin: 14px 0;
  aspect-ratio: 16/9; border-radius: 12px;
  background: linear-gradient(135deg,#f0f4ff,#dfe6ff);
}
.step h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--muted); }

/* ============ PRICING ============ */
.pricing-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(4, 1fr);
}
.price-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 26px;
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.popular {
  background:  #fff; border: 1px solid var(--border);
  border-radius: 22px; padding: 26px;
  position: relative;
  display: flex; flex-direction: column;
}


.tier { font-size: 14px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.btn{
  background-color: #000;
  color: #fff;
}
.discount {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: #fff;
  font-size: 10px; padding: 4px 10px; border-radius: 999px; 
}

.price { font-size: 42px; font-weight: 800; letter-spacing: -0.02em; }
.price span { font-size: 14px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.price-card.popular .price span { color: #aaa; }
.dur { color: var(--muted); font-size: 14px; margin: 4px 0 18px; }
.feat-title { font-size: 13px; font-weight: 600; margin: 18px 0 10px; }
.price-card ul { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #333; }
.price-card ul li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.off { color: var(--accent); font-size: 12px; margin-left: 6px; }

/* ---------- Base ---------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Inter','Segoe UI',sans-serif;
  background:#f6f6f4;
  color:#0d0d0d;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.container{max-width:1180px;margin:0 auto;padding:0 24px}
.eyebrow{
  display:inline-block;
  padding:6px 16px;
  border:1px solid #e3e3df;
  border-radius:999px;
  background:#fff;
  font-size:13px;
  font-weight:500;
  color:#444;
  margin-bottom:18px;
}
.section-title{
  font-size:clamp(34px,5vw,58px);
  font-weight:700;
  letter-spacing:-1.5px;
  line-height:1.05;
  margin-bottom:14px;
}
.accent{color:#1f6bff}
.section-sub{
  color:#5a5a5a;
  font-size:17px;
  max-width:620px;
  margin:0 auto 50px;
}
.center{text-align:center}

/* ---------- Reveal on load (pure CSS) ---------- */
@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:none}
}
section > .container{animation:fadeUp .9s ease both}

/* ---------- Reviews ---------- */
.reviews{padding:110px 0 90px;background:#f6f6f4}
.marquee{
  margin-top:30px;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
}
.marquee-track{
  display:flex;
  gap:24px;
  width:max-content;
  animation:scroll 38s linear infinite;
}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes scroll{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}
.review-card{
  width:340px;
  flex-shrink:0;
  background:#fff;
  border:1px solid #ececec;
  border-radius:20px;
  padding:24px;
  box-shadow:0 4px 18px rgba(0,0,0,.04);
  transition:transform .35s ease, box-shadow .35s ease;
}
.review-card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(0,0,0,.08)}
.review-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.avatar{
  width:46px;height:46px;border-radius:50%;
  background-size:cover;background-position:center;
  flex-shrink:0;border:2px solid #f1f1f1;
}
.handle{font-weight:600;font-size:15px}
.stars{color:#ffb400;font-size:14px;margin-top:2px}
.review-text{font-size:15px;color:#222;line-height:1.55}

/* ---------- WhatsApp / Contact ---------- */
.contact{padding:90px 0;background:#f6f6f4}
.contact-card{
  background:linear-gradient(135deg,#0e0e0e 0%,#1a1a1a 100%);
  color:#fff;
  border-radius:32px;
  padding:60px 50px;
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}
.contact-card::before{
  content:"";position:absolute;inset:-40%;
  background:radial-gradient(circle at 30% 30%,rgba(31,107,255,.25),transparent 55%);
  animation:floatGlow 9s ease-in-out infinite alternate;
}
@keyframes floatGlow{
  from{transform:translate(0,0)}
  to{transform:translate(60px,40px)}
}
.contact-inner{position:relative;z-index:2;display:grid;grid-template-columns:1.4fr 1fr;gap:40px;align-items:center}
.wa-icon{
  width:84px;height:84px;border-radius:24px;
  background:#25d366;display:flex;align-items:center;justify-content:center;
  font-size:42px;color:#fff;margin-bottom:22px;
  box-shadow:0 12px 30px rgba(37,211,102,.4);
  animation:pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{transform:scale(1);box-shadow:0 12px 30px rgba(37,211,102,.4)}
  50%{transform:scale(1.06);box-shadow:0 16px 40px rgba(37,211,102,.55)}
}
.contact-card h3{font-size:clamp(28px,3.5vw,42px);font-weight:700;letter-spacing:-1px;margin-bottom:14px}
.contact-card p{color:#bcbcbc;margin-bottom:24px;max-width:420px}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:14px 26px;border-radius:999px;
  background:#fff;color:#0d0d0d;text-decoration:none;
  font-weight:600;font-size:15px;
  transition:transform .25s ease, background .25s ease;
}
.btn:hover{transform:translateY(-2px);background:#1f6bff;color:#fff}
.btn .arrow{
  width:28px;height:28px;border-radius:50%;
  background:#0d0d0d;color:#fff;display:inline-flex;
  align-items:center;justify-content:center;font-size:13px;
  transition:transform .3s ease;
}
.btn:hover .arrow{transform:translateX(4px);background:#fff;color:#1f6bff}
.email-block{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;padding:28px;
  backdrop-filter:blur(8px);
}
.email-block .label{font-size:13px;color:#888;margin-bottom:6px}
.email-block a{color:#fff;font-size:18px;font-weight:600;text-decoration:none;word-break:break-all}
.email-block a:hover{color:#1f6bff}

/* tag marquee */
.tag-strip{
  margin-top:50px;overflow:hidden;
  border-top:1px solid #e6e6e2;border-bottom:1px solid #e6e6e2;
  padding:18px 0;background:#f6f6f4;
}
.tag-track{display:flex;gap:50px;width:max-content;animation:scroll 25s linear infinite}
.tag{display:flex;align-items:center;gap:14px;font-size:18px;font-weight:600;color:#222;white-space:nowrap}
.tag::before{content:"★";color:#1f6bff}

/* ---------- FAQ (pure CSS via <details>) ---------- */
.faq{padding:110px 0 90px;background:#fff}
.faq-list{max-width:820px;margin:0 auto}
.faq-item{
  border-bottom:1px solid #ececec;
  padding:22px 0;
}
.faq-q{
  display:flex;justify-content:space-between;align-items:center;
  font-size:18px;font-weight:600;color:#0d0d0d;
  list-style:none;cursor:pointer;
}
.faq-q::-webkit-details-marker{display:none}
.faq-toggle{
  width:34px;height:34px;border-radius:50%;
  background:#f1f1ee;display:flex;align-items:center;justify-content:center;
  font-size:18px;transition:transform .35s ease, background .25s ease, color .25s ease;
  flex-shrink:0;
}
.faq-item[open] .faq-toggle{transform:rotate(45deg);background:#1f6bff;color:#fff}
.faq-a{
  color:#5a5a5a;font-size:15.5px;line-height:1.65;
  padding-top:14px;
  animation:fadeUp .35s ease both;
}

/* ---------- CTA ---------- */
.cta{
  padding:120px 0;text-align:center;
  background:radial-gradient(ellipse at top,#eef2ff 0%,#f6f6f4 60%);
  position:relative;overflow:hidden;
}
.cta h2{
  font-size:clamp(40px,6vw,76px);
  font-weight:700;letter-spacing:-2px;line-height:1.05;
  margin-bottom:22px;
}
.cta p{color:#5a5a5a;max-width:580px;margin:0 auto 36px;font-size:17px}
.cta .btn{background:#0d0d0d;color:#fff;padding:16px 32px;font-size:16px}
.cta .btn .arrow{background:#1f6bff;color:#fff}
.cta .btn:hover{background:#1f6bff}
.cta .btn:hover .arrow{background:#fff;color:#1f6bff}

.floating-tag{
  position:absolute;background:#fff;border:1px solid #e3e3df;
  border-radius:999px;padding:10px 18px;font-size:14px;font-weight:500;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  animation:floatY 5s ease-in-out infinite;
}
.floating-tag.t1{top:18%;left:8%;animation-delay:0s}
.floating-tag.t2{top:30%;right:10%;animation-delay:.8s}
.floating-tag.t3{bottom:22%;left:14%;animation-delay:1.6s}
.floating-tag.t4{bottom:30%;right:12%;animation-delay:2.4s}
@keyframes floatY{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

footer{padding:30px 0;text-align:center;color:#888;font-size:14px;background:#f6f6f4;border-top:1px solid #ececec}

@media (max-width:760px){
  .contact-card{padding:40px 26px}
  .contact-inner{grid-template-columns:1fr;gap:28px}
  .floating-tag{display:none}
  .review-card{width:280px}
}

@media (max-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  /* grids fix */
  .why-grid,
  .showcase-grid,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr !important;
  }

  /* hero overflow fix */
  .hero-showcase {
    flex-wrap: wrap;
  }

  .card-left,
  .card-right {
    transform: none;
  }

  /* NAVBAR FIX */
  .nav-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

}