:root{
  --bg:#fff;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text:#111;
  --muted: rgba(0,0,0,.80);
  --muted2: rgba(0,0,0,.40);
  --line: rgba(0,0,0,.04);
  --brand:#f59e0b;
  --brand2:#22c55e;
  --shadow: 0 18px 60px rgba(0,0,0,.05);
  --radius: 18px;
  --radius2: 24px;
  --max: 1100px;
    --radius-lg: 16px;
  --radius-md: 12px;

  --shadow-soft: 0 10px 28px rgba(0,0,0,.08);
  --shadow-tight: 0 8px 20px rgba(0,0,0,.10);

  --border-soft: 1px solid rgba(0,0,0,.06);
  --tint: rgba(0,0,0,.035);
}


*{ box-sizing:border-box; }

html,body{ height:100%; overflow-x:hidden; }

html{
  background:
    radial-gradient(1100px 600px at 20% -10%, rgba(245,158,11,.22), transparent 55%),
    radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.16), transparent 55%),
    radial-gradient(1200px 800px at 50% 110%, rgba(99,102,241,.14), transparent 60%),
    #fff;
  background-attachment: fixed;
  border-top: 2px solid #feaa26;
}

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: transparent;
  line-height: 1.45;
}

a{ color: inherit; text-decoration:none; }
img{ display:block; max-width:100%; height:auto; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   Shared helpers/components
   ========================= */
section{ padding: 84px 0; }
@media (max-width: 700px){ section{ padding: 56px 0; } }

.container{ max-width: 1180px; }


section[id] {
  scroll-margin-top: 95px;
}


.card{
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

h1{
  letter-spacing: -0.03em;
  line-height: 1.10;
}

p, ul{
  color: var(--muted);
  line-height: 1.6;
}

/* Shared pill */
.pill{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245,158,11,.18);
  border: 1px solid rgba(245,158,11,.26);
  color: rgba(0,0,0,.88);
  font-weight: 800;
  font-size: 12px;
}

/* Shared page title block */
.section-title{
  display:flex;
  align-items:end;
  justify-content: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 14px;
}
.section-title > div{ text-align:center; }
.section-title p{
  margin:0;
  max-width: 60ch;
  font-size: 14px;
}

/* =========================
   Status banner (single source of truth)
   ========================= */
.status{
  display:none;
  border-radius: var(--radius2);
  padding: 14px 16px;
  margin: 14px 0;
  font-weight: 800;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(255,255,255,.75);
  box-shadow: 0 14px 50px rgba(0,0,0,.10);
}
.status.success{
  display:block;
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.10);
  color: rgba(0,0,0,.82);
}
.status.error{
  display:block;
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.10);
  color: rgba(0,0,0,.82);
}

/* =========================
   Forms (single source of truth)
   ========================= */
form{
  display:grid;
  gap: 12px;
  max-width: 620px;
  margin-top: 10px;
}
label{
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,.82);
  display:grid;
  gap: 8px;
}
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  color: var(--text);
  font-size: 14px;
  outline: none;
}
textarea{ min-height: 140px; resize: vertical; }

input:focus, textarea:focus, select:focus{
  border-color: rgba(254,170,38,.55);
  box-shadow: 0 0 0 4px rgba(254,170,38,.18);
}

.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.btn.submit{ border: 0; }
.helper{
  font-size: 13px;
  color: rgba(0,0,0,.45);
  font-weight: 700;
}

/* =========================
   Header / Nav
   ========================= */
header{
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.90);
  position: sticky;
  top: 0;
}

.brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand > div{ min-width:0; }

#templatecat img{
  display:block;
  max-width: 200px;
  width: 100%;
  height: auto;
  outline: none;
}

/* IMPORTANT: safer nav layout (brand left, nav pushed right) */
.nav{
  display:flex;
  align-items:center;
  padding: 14px 0;
  gap: 16px;
}
.nav nav{
  margin-left: auto;   /* pushes nav to the right */
}
.nav-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Nav links */
nav ul{
  list-style:none;
  display:flex;
  align-items:center;
  gap: 18px;
  margin:0;
  padding:0;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

nav a{
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .15s ease, color .15s ease;
  color:#000;
}
nav a:hover{
  background: rgba(0,0,0,.06);
  color:#000;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.06);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: transform .12s ease, background .12s ease;
  cursor:pointer;
  user-select:none;
}
.btn:hover{
  background: rgba(0,0,0,.08);
  transform: translateY(-1px);
}
.btn.primary{
  background: linear-gradient(90deg, rgba(254,170,38,1) 0%, rgba(254,225,38,1) 100%);
  color: rgba(0,0,0,.78);
}
.btn.primary:hover{
  transform: translateY(-2px);
  background: #FEE126;
}
.btn.small{
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}

.hamburger {
  background: none;
  border: none;
  padding: 0;
  margin: 0;

  font-size: 26px;
  line-height: 1;          /* IMPORTANT */
  display: flex;
  align-items: center;
  justify-content: center;

  height: 40px;            /* gives it a defined box */
  width: 40px;

  cursor: pointer;
  color: #111;
}

/* Mobile nav */
.mobile{
  display:none;
  padding: 0 0 14px 0;
}
.mobile a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  margin-top: 10px;
  color:#111;
  font-weight: 700;
  font-size: 14px;
}
.mobile a:hover{
  background: rgba(0,0,0,.06);
}

/* Back link */
.back-home{
  display:inline-block;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  font-weight: 700;
}

/* =========================
   Footer
   ========================= */
footer{
  padding-top: 24px;
  color: var(--muted);
  background: rgba(255,255,255,0);
  border-top: none;
}

.foot{
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0 34px 0;
}
.foot small{ color: var(--muted2); }

/* =========================
   Responsive
   ========================= */
@media (max-width: 920px){
  nav ul{ display:none; }
  .hamburger{ display:inline-grid; place-items:center; }
  .mobile{ display:none; }
  .mobile.open{ display:block; }
}

@media (max-width: 480px){
  #templatecat{ min-width: 160px; }
  #viewpacks{ display:none; }

  .nav{ gap: 12px; }

  .hamburger{
    font-size: 28px;
    padding: 12px;
    line-height: 1;
  }

  footer, footer .foot{
    text-align:center;
    flex-direction: column;
    align-items:center;
    justify-content:center;
    gap: 10px;
  }

  footer .foot > div{
    display:flex;
    flex-direction: column;
    align-items:center;
    text-align:center;
  }
}
.card, .pack-card, .hero-card, .faq-card, .compare-card{
  border-radius: var(--radius-lg);
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.band{
  background: var(--tint);
}
.band .card{
  background: #fff; /* or your current surface */
}

.final-cta-title{
  margin: 0;
  font-size: inherit;   /* or set a specific size you want */
  font-weight: 800;
  letter-spacing: -0.01em;
}

