:root{
  --bg: #0b0c10;
  --bg2:#0f1118;
  --card:#121525;
  --text:#e9e9ee;
  --muted: rgba(233,233,238,.75);
  --line: rgba(255,255,255,.10);
  --accent:#8b5cf6;

  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(139,92,246,.28), transparent 55%),
              radial-gradient(900px 600px at 90% 0%, rgba(139,92,246,.18), transparent 60%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; }
.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,12,16,.65);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
  position: relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width: 220px;
}
.logo {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  overflow: hidden;        /* important for circle */
  background: transparent;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the circle perfectly */
  display: block;
}


.brand-name{ font-weight: 800; letter-spacing: .2px; }
.brand-tag{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.links{
  display:flex;
  align-items:center;
  gap: 16px;
}
.links a{
  text-decoration:none;
  color: rgba(233,233,238,.85);
}
.links a:hover{ color: #fff; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  border: 1px solid rgba(139,92,246,.40);
  background: rgba(139,92,246,.18);
  box-shadow: 0 10px 20px rgba(0,0,0,.25);
}
.btn:hover{
  background: rgba(139,92,246,.26);
}
.btn-small{ padding: 10px 14px; border-radius: 12px; }
.btn-ghost{
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(255,255,255,.06); }

.menu-btn{
  display:none;
  width:44px;
  height:44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 14px;
  cursor:pointer;

  /* stack lines perfectly */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-btn span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(233,233,238,.9);
  border-radius: 2px;
  margin: 2px 0; /* controls spacing between lines */
}



/* Mobile menu panel */
.mobile-menu{
  display:none;
  position:absolute;
  top: 66px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: min(520px, calc(100% - 12px));
  background: rgba(15,17,24,.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
}
.mobile-menu a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration:none;
  color: rgba(233,233,238,.92);
}
.mobile-menu a:hover{
  background: rgba(255,255,255,.06);
}
.mobile-menu.open{ display:block; }

.hero{
  padding: 54px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 24px;
  align-items: start;
}
.pill{
  display:inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: rgba(233,233,238,.85);
  font-size: 13px;
}
h1{
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 16px 0 12px;
}
.accent{ color: var(--accent); }
.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

.cta-row{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 18px;
}

.trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.trust-item{
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.trust-big{ font-weight: 900; font-size: 18px; }
.trust-small{ color: var(--muted); font-size: 12px; margin-top: 3px; }

.card{
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card .card{ position: sticky; top: 90px; }

.divider{
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.section{
  padding: 54px 0;
}
.section-alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head p{ margin:0; }
h2{ margin:0; font-size: 26px; }
h3{ margin:0 0 8px; }

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.grid{
  display:grid;
  gap: 16px;
}
.cards-3{
  grid-template-columns: repeat(3, 1fr);
}
.contact-grid{
  grid-template-columns: repeat(2, 1fr);
}

.bullets, .checklist{
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(233,233,238,.85);
}
.checklist{
  list-style: none;
  padding-left: 0;
}
.checklist li{
  position: relative;
  padding-left: 24px;
  margin: 10px 0;
  color: rgba(233,233,238,.85);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: rgba(139,92,246,.9);
  font-weight: 900;
}

.price-top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 10px;
  margin-bottom: 6px;
}
.price-tag{
  margin:0;
  font-weight: 800;
  color: rgba(233,233,238,.92);
}

.price.featured{
  border-color: rgba(139,92,246,.45);
  background: linear-gradient(180deg, rgba(139,92,246,.18), rgba(255,255,255,.02));
}
.badge{
  display:inline-block;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(139,92,246,.22);
  border: 1px solid rgba(139,92,246,.40);
  margin-bottom: 10px;
}

.social-card{
  overflow:hidden;
}

.cta-banner{
  margin-top: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.site-footer{
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card .card{ position: static; }
  .trust{ grid-template-columns: 1fr; }
}

@media (max-width: 860px){
  .desktop-links{ display:none; }
  .menu-btn{ display:flex; }
  .cards-3{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction: column; align-items: flex-start; }
  .cta-banner{ flex-direction: column; align-items: flex-start; }
}

/* Remove DesignDetail watermark completely */
.dd-watermark {
  display: none !important;
}

/* Burger button */
.burger{
  font-size: 26px;
  background: transparent;
  border: 0;
  color: var(--text);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 12px;
  z-index: 1001;
}
.burger:hover{
  background: rgba(255,255,255,.06);
}

/* Side drawer menu */
.burger-menu{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  background: rgba(11,13,18,.98);
  border-left: 1px solid var(--line);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;

  /* hidden by default */
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 1000;
}

.burger-menu a{
  text-decoration: none;
  color: var(--text);
  font-size: 16px;
}

.burger-menu.open{
  transform: translateX(0);
}

/* Overlay behind menu */
.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 999;
}

.menu-overlay.show{
  opacity: 1;
  pointer-events: all;
}





/* Hide old nav links if still present */
.links{ display:none; }

