:root{
  --bg0:#070B14;
  --bg1:#0A1223;
  --bg2:#0B1E3A;

  --card:#0B1426CC;
  --card2:#0B142299;

  --text:#EAF2FF;
  --muted:#A8B7D6;

  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.14);

  --blue:#2EA6FF;
  --blue2:#0077FF;

  --shadow: 0 18px 70px rgba(0,0,0,.45);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1100px 600px at 20% 15%, rgba(46,166,255,.22), transparent 60%),
              radial-gradient(900px 500px at 80% 30%, rgba(0,119,255,.16), transparent 60%),
              radial-gradient(900px 700px at 60% 95%, rgba(46,166,255,.10), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1) 40%, var(--bg2));
  overflow-x:hidden;
}

.no-scroll{overflow:hidden}

/* Creative background texture (social theme) */
.bg-wrap{
  position:relative;
}
.bg-wrap::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 10% 25%, rgba(255,255,255,.06), transparent 35%),
    radial-gradient(circle at 82% 12%, rgba(255,255,255,.05), transparent 38%),
    radial-gradient(circle at 70% 78%, rgba(255,255,255,.04), transparent 40%),
    linear-gradient(0deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  mix-blend-mode: overlay;
  opacity:.55;
  filter: blur(.2px);
}
.bg-wrap::after{
  /* subtle noise */
  content:"";
  position:fixed;
  inset:-20%;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
  opacity:.07;
  transform: rotate(8deg);
}

/* Floating orbs */
.bg-orbs{position:fixed; inset:0; pointer-events:none; z-index:0}
.orb{
  position:absolute;
  width:420px; height:420px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(46,166,255,.35), rgba(46,166,255,.08), transparent 70%);
  filter: blur(10px);
  opacity:.55;
  animation: float 12s ease-in-out infinite;
}
.o1{left:-120px; top:60px}
.o2{right:-160px; top:160px; animation-duration: 14s}
.o3{left:18%; bottom:-170px; width:520px; height:520px; animation-duration: 16s}
.o4{right:18%; bottom:-220px; width:520px; height:520px; opacity:.45; animation-duration: 18s}

@keyframes float{
  0%,100%{transform: translate3d(0,0,0) scale(1)}
  50%{transform: translate3d(0,-18px,0) scale(1.03)}
}

.container{
  width:min(1120px, 92vw);
  margin:0 auto;
  position:relative;
  z-index:1;
}

.section{
  padding:78px 0;
}

.kicker{
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  font-size:12px;
  color:rgba(234,242,255,.75);
  margin-bottom:10px;
}

.h1{
  font-size: clamp(32px, 4.2vw, 54px);
  line-height:1.05;
  margin:0 0 10px;
  letter-spacing:-.02em;
}
.h1-accent{
  background: linear-gradient(90deg, #EAF2FF, #2EA6FF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.h2{
  margin:0;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height:1.12;
  letter-spacing:-.02em;
}
.h3{
  margin:0;
  font-size: 20px;
  line-height:1.2;
}
.subhead{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
  max-width: 68ch;
}

.divider{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent);
  margin:18px 0;
}

/* NAV */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(6,10,18,.62);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
}
.brand-name{
  font-weight:800;
  letter-spacing:-.01em;
}
.logo-wrap{
  width:44px; height:44px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(46,166,255,.30), rgba(0,0,0,.25));
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  overflow:hidden;
}
.brand-logo{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
  display:block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.45));
}
.logo-wrap.fallback .logo-fallback{display:grid}
.logo-fallback{
  display:none;
  width:100%;
  height:100%;
  place-items:center;
  font-weight:900;
  color:#EAF2FF;
}
.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav-links a{
  color: rgba(234,242,255,.82);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.nav-links a:hover{
  background: rgba(46,166,255,.10);
  color: var(--text);
  transform: translateY(-1px);
}
.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border .2s ease;
}
.btn:hover{transform: translateY(-2px)}
.btn-primary{
  background: linear-gradient(180deg, rgba(46,166,255,.95), rgba(0,119,255,.92));
  border-color: rgba(46,166,255,.40);
  box-shadow: 0 18px 40px rgba(0,119,255,.18);
}
.btn-primary:hover{
  box-shadow: 0 22px 55px rgba(0,119,255,.25);
}
.btn-ghost{
  background: rgba(255,255,255,.06);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.20);
}

.hide-sm{display:inline-flex}

/* Hamburger */
.hamburger{
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:none;
  align-items:center;
  justify-content:center;
  gap:4px;
  flex-direction:column;
}
.hamburger span{
  width:18px;height:2px;border-radius:99px;
  background: rgba(234,242,255,.88);
}

/* Mobile Menu */
.mobile-menu{
  display:none;
  position:fixed;
  inset:64px 0 0 0;
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(10px);
}
.mobile-menu.open{display:block}
.mobile-sheet{
  width:min(520px, 92vw);
  margin: 14px auto 0;
  border-radius: 18px;
  background: rgba(8,12,20,.84);
  border:1px solid rgba(255,255,255,.14);
  padding: 14px;
  box-shadow: var(--shadow);
}
.mnav{
  display:block;
  text-decoration:none;
  color: rgba(234,242,255,.86);
  font-weight:700;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid transparent;
}
.mnav:hover{
  background: rgba(46,166,255,.10);
  border-color: rgba(46,166,255,.20);
}

/* HERO */
.hero{
  padding-top: 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:18px;
  align-items:start;
}
.hero-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero-panel::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(500px 220px at 20% 10%, rgba(46,166,255,.20), transparent 55%);
  pointer-events:none;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.trust-pill{
  font-weight:700;
  font-size:12px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}
.metric{
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  padding: 12px;
}
.metric-big{font-weight:900}
.metric-small{color:rgba(234,242,255,.70); margin-top:6px; font-size:13px; line-height:1.4}

.hero-proof{
  display:grid;
  gap:14px;
}
.proof-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  padding:18px;
}
.proof-title{
  font-weight:900;
  margin-bottom:10px;
}
.checklist{
  list-style:none;
  padding:0;margin:0;
  display:grid;
  gap:10px;
}
.checklist li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:rgba(234,242,255,.88);
}
.check-dot{
  width:10px;height:10px;border-radius:99px;
  margin-top:4px;
  background: radial-gradient(circle at 30% 30%, #EAF2FF, #2EA6FF);
  box-shadow: 0 0 0 4px rgba(46,166,255,.14);
}
.chips{display:flex; flex-wrap:wrap; gap:8px}
.chip{
  font-weight:800;
  font-size:12px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* SECTION HEAD */
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
}

/* GRID */
.grid{display:grid; gap:14px}
.grid-3{grid-template-columns: repeat(3, 1fr)}
.grid-4{grid-template-columns: repeat(4, 1fr)}

.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  padding:16px;
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, border .2s ease, background .2s ease;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(46,166,255,.22);
  background: linear-gradient(180deg, rgba(46,166,255,.08), rgba(255,255,255,.03));
}
.icon{
  width:40px;height:40px;border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(46,166,255,.12);
  border:1px solid rgba(46,166,255,.18);
  margin-bottom:10px;
}
.card-title{
  font-weight:900;
  letter-spacing:-.01em;
}
.card-desc{
  margin:8px 0 0;
  color:rgba(234,242,255,.72);
  line-height:1.55;
  font-size:14px;
}
.mini-list{
  margin:12px 0 0;
  padding-left: 16px;
  color: rgba(234,242,255,.82);
  line-height:1.7;
  font-weight:600;
  font-size:13px;
}
.note{
  color: rgba(234,242,255,.66);
  line-height:1.6;
  font-size:13px;
}
code{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  padding:2px 8px;
  border-radius:10px;
}

/* Addons */
.addons{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.addon-card .note{margin-top:8px}

/* Steps */
.step-num{
  width:36px;height:36px;
  border-radius: 12px;
  display:grid; place-items:center;
  font-weight:900;
  background: rgba(46,166,255,.12);
  border:1px solid rgba(46,166,255,.18);
  margin-bottom:10px;
}

/* Work samples buttons */
.sample-card{
  text-align:left;
  cursor:pointer;
}
.sample-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.sample-count{
  margin-top:12px;
  font-weight:900;
  display:inline-flex;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* Case studies cards */
.dl-card .dl-top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.dl-icon{
  width:40px;height:40px;border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.dl-foot{
  margin-top:14px;
  font-weight:900;
  color: rgba(234,242,255,.85);
}

/* =======================
   PRICING (CLEAN FIX)
   ======================= */

.price-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:16px;
}

/* Top row */
.price-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

/* Price text */
.price{
  font-weight:900;
  font-size:22px;
  display:flex;
  align-items:baseline;
  gap:6px;
  white-space:nowrap;
}

.price span{
  font-size:12px;
  color: rgba(234,242,255,.70);
  font-weight:800;
}

/* USD text */
.price .usd{
  font-size:12px;
  opacity:.8;
  font-weight:800;
}

/* REMOVE featured effects completely */
.featured{
  border-color: rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

/* Ensure equal card height buttons */
.price-card .btn{
  margin-top:auto;
}

.custom-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

/* Contact */
.contact-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.contact-actions{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.social-row{
  margin-top:12px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.social-link{
  color: rgba(234,242,255,.86);
  text-decoration:none;
  font-weight:900;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  transition: transform .15s ease, background .2s ease;
}
.social-link:hover{
  transform: translateY(-2px);
  background: rgba(46,166,255,.10);
}
.contact-mini{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.16);
  padding:14px;
}
.mini-title{font-weight:900; margin-bottom:10px}
.mini-item{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color: rgba(234,242,255,.82);
  font-weight:700;
}
.mini-item span{color: rgba(234,242,255,.62)}
.mini-note{
  margin-top:12px;
  color: rgba(234,242,255,.70);
  line-height:1.6;
  font-size:13px;
}

/* Footer */
.footer{
  margin-top:22px;
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:10px;
  color: rgba(234,242,255,.72);
  font-weight:700;
}
.to-top{
  color: rgba(234,242,255,.82);
  text-decoration:none;
}
.to-top:hover{text-decoration:underline}

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:100;
}
.modal.open{display:block}
.modal-backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
}
.modal-panel{
  position:relative;
  width:min(980px, 92vw);
  margin: 90px auto 0;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(8,12,20,.90);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.modal-title{font-weight:900}
.modal-sub{margin-top:4px; color: rgba(234,242,255,.66); font-weight:700; font-size:13px}
.modal-close{
  width:44px;height:44px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
}
.modal-body{padding:16px}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.tile{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  overflow:hidden;
}
.tile-media{
  height:140px;
  position:relative;
  background:
    radial-gradient(500px 180px at 20% 20%, rgba(46,166,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.tile-glow{
  position:absolute; inset:-30%;
  background: radial-gradient(circle at 40% 40%, rgba(46,166,255,.30), transparent 55%);
  filter: blur(18px);
  opacity:.55;
}
.tile-badge{
  position:absolute;
  left:10px; top:10px;
  font-weight:900;
  font-size:12px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
}
.tile-meta{padding:12px}
.tile-title{font-weight:900}
.tile-desc{margin-top:6px; color: rgba(234,242,255,.66); font-weight:700; font-size:13px}

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px){
  .grid-4{grid-template-columns: repeat(2, 1fr)}
  .hero-grid{grid-template-columns: 1fr}
  .contact-card{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
}
@media (max-width: 720px){
  .grid-3{grid-template-columns: 1fr}
  .hero-metrics{grid-template-columns: 1fr}
  .nav-links{display:none}
  .hamburger{display:flex}
  .hide-sm{display:none}
  .modal-panel{margin-top: 70px}
  .gallery{grid-template-columns: 1fr}
}
/* ======================================================
   WORK SHOWCASE (Mixed Posts + Reels)
   ====================================================== */

.work-filters{
  display:flex;
  gap:10px;
  margin-top:16px;
  flex-wrap:wrap;
}

.filter-btn{
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: rgba(234,242,255,.85);
  transition: background .2s ease, border .2s ease, transform .15s ease;
}

.filter-btn:hover{
  background: rgba(46,166,255,.12);
  transform: translateY(-1px);
}

.filter-btn.active{
  background: linear-gradient(180deg, rgba(46,166,255,.95), rgba(0,119,255,.92));
  border-color: rgba(46,166,255,.45);
  color:#fff;
}

/* Grid */
.work-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

/* Item */
.work-item{
  cursor:pointer;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .18s ease, border .2s ease, background .2s ease;
}

.work-item:hover{
  transform: translateY(-4px);
  border-color: rgba(46,166,255,.28);
  background: linear-gradient(180deg, rgba(46,166,255,.08), rgba(255,255,255,.03));
}

/* Thumbnail */
.work-thumb{
  position:relative;
  height:180px;
  background:
    radial-gradient(500px 200px at 20% 20%, rgba(46,166,255,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display:flex;
  align-items:center;
  justify-content:center;
}

.work-thumb.post::after{
  content:"🖼️";
  font-size:34px;
  opacity:.35;
}

.work-thumb.reel::after{
  content:"🎬";
  font-size:34px;
  opacity:.35;
}

/* Play icon */
.play-icon{
  position:absolute;
  width:52px;
  height:52px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:20px;
  font-weight:900;
  color:#fff;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.25);
  box-shadow: 0 12px 28px rgba(0,0,0,.45);
}

/* Meta */
.work-meta{
  padding:12px;
}

.work-title{
  font-weight:900;
  letter-spacing:-.01em;
}

.work-type{
  margin-top:4px;
  font-size:12px;
  font-weight:800;
  color: rgba(234,242,255,.65);
}

/* Load more wrap */
.load-more-wrap{
  text-align:center;
  margin-top:22px;
}

/* Responsive */
@media (max-width: 980px){
  .work-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .work-grid{
    grid-template-columns: 1fr;
  }
}