:root{
  --bg:#0b0f17;
  --card:#0f1624;
  --text:#e8eefc;
  --muted:#a9b4cf;
  --line:rgba(255,255,255,.08);
  --accent:#4f8cff;
  --accent2:#22c55e;
  --accent-glow:rgba(79,140,255,0.3);
  --accent2-glow:rgba(34,197,94,0.3);
  --shadow:rgba(0,0,0,0.2);
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family:'Segoe UI',system-ui,-apple-system,Roboto,'Helvetica Neue',Arial,sans-serif;
  background:radial-gradient(900px 600px at 20% 10%, rgba(79,140,255,.25), transparent 55%),
             radial-gradient(900px 600px at 80% 20%, rgba(34,197,94,.18), transparent 55%),
             linear-gradient(180deg, #0b0f17 0%, #0a0e15 100%);
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
}
.container{
  max-width:1100px;
  margin:0 auto;
  padding:24px 16px;
}

/* Typography Enhancements */
h1,h2,h3{
  background:linear-gradient(135deg, #e8eefc 0%, #a9b4cf 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.highlight{
  color:var(--accent);
  position:relative;
  display:inline-block;
}
.highlight::after{
  content:'';
  position:absolute;
  bottom:2px;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius:2px;
}
.pill{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  padding:7px 12px;
  border-radius:999px;
  color:var(--muted);
  background:rgba(11,15,23,.45);
  font-size:13px;
  margin-bottom:10px;
}
.section-title{
  margin:0 0 10px;
  font-size:18px;
}
.muted{ color:var(--muted); line-height:1.55; }
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.hero-card{ padding:22px; position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:16px; align-items:stretch; }
.hero-left h1{ margin:0 0 10px; }
.hero-right{ display:flex; flex-direction:column; gap:12px; }
@media(max-width:900px){
  .hero-grid{ grid-template-columns:1fr; }
}
.ui-preview{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(11,15,23,.45);
  overflow:hidden;
}
.ui-top{
  display:flex;
  align-items:center;
  gap:8px;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  background:rgba(15,22,36,.55);
}
.dot{ width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,.18); }
.ui-title{ margin-left:auto; color:var(--muted); font-size:12px; }
.ui-body{ padding:14px; }
.ui-row{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.ui-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background:rgba(15,22,36,.40);
}
.ui-k{ color:var(--muted); font-size:12px; }
.ui-v{ font-weight:800; font-size:18px; margin-top:4px; }
.ui-line{ height:1px; background:var(--line); margin:14px 0; }
.ui-list{ display:grid; gap:10px; }
.ui-item{
  display:flex; gap:10px; align-items:flex-start;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(15,22,36,.35);
}
.ui-badge{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid rgba(79,140,255,.35);
  color:var(--text);
}
.ui-badge2{ border-color: rgba(34,197,94,.35); }
.ui-badge3{ border-color: rgba(255,255,255,.18); }
.ui-text{ color:var(--muted); line-height:1.45; font-size:13px; }
.mini-proof{ display:flex; gap:10px; flex-wrap:wrap; }
.mini-proof-item{
  border:1px solid var(--line);
  padding:7px 10px;
  border-radius:999px;
  color:var(--muted);
  background:rgba(11,15,23,.35);
  font-size:12px;
}
.clean-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}
.clean-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:var(--muted);
  line-height:1.55;
  padding:10px 0;
  border-bottom:1px solid var(--line);
}
.clean-list li:last-child{ border-bottom:none; }
.list-dot{
  width:8px;
  height:8px;
  margin-top:7px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  flex-shrink:0;
}
.best-for{
  margin-top:16px;
  border-top:1px solid var(--line);
  padding-top:14px;
  display:flex;
  gap:14px;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.best-for-left{ max-width:720px; }
.how-box{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  background:rgba(11,15,23,.45);
}

/* Cards with Enhanced Effects */
.card{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(15,22,36,0.78);
  backdrop-filter:blur(10px);
  padding:22px;
  position:relative;
  overflow:hidden;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  box-shadow:0 4px 6px var(--shadow);
}
.card:hover{
  border-color:var(--accent-glow);
  box-shadow:0 8px 24px rgba(79,140,255,0.15),
             0 2px 8px rgba(34,197,94,0.1);
  transform:translateY(-4px);
}

/* Hero Section */
.hero-bg-glow{
  position:absolute;
  top:-50%;
  right:-20%;
  width:300px;
  height:300px;
  background:radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter:blur(40px);
  opacity:0.5;
  z-index:0;
}

/* Trust Strip */
.trust-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:14px 0 26px;
  justify-content:center;
}
.trust-strip span{
  border:1px solid var(--line);
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  background:rgba(11,15,23,0.5);
  transition:all 0.3s ease;
  display:flex;
  align-items:center;
  gap:6px;
}
.trust-strip span:hover{
  border-color:var(--accent);
  background:rgba(79,140,255,0.1);
  transform:translateY(-2px);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 20px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(79,140,255,0.95);
  color:#061021;
  font-weight:700;
  text-decoration:none;
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition:left 0.7s;
}
.btn:hover::before{
  left:100%;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(79,140,255,0.3);
}
.btn-gradient{
  background:linear-gradient(135deg, #4f8cff 0%, #22c55e 100%);
  border:none;
}
.btn-pulse{
  animation:pulse 2s infinite;
}
.btn-wide{
  width:100%;
  padding:14px;
}
.btn-icon{
  font-size:1.1em;
}

/* Grid */
.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
@media(max-width:768px){
  .grid2{
    grid-template-columns:1fr;
  }
}

/* List Items */
.animated-list{
  list-style:none;
  padding:0;
  margin:0;
}
.list-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  transition:all 0.3s ease;
}
.list-item:last-child{
  border-bottom:none;
}
.list-item:hover{
  transform:translateX(4px);
  border-bottom-color:var(--accent);
}
.list-icon{
  font-size:1.2em;
  flex-shrink:0;
}

/* Benefit Cards */
.benefit-cards{
  display:grid;
  gap:12px;
  margin-top:12px;
}
.benefit-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px;
  background:rgba(11,15,23,0.45);
  transition:all 0.3s ease;
}
.benefit-card:hover{
  background:rgba(79,140,255,0.1);
  border-color:var(--accent);
}
.benefit-icon{
  font-size:1.5em;
  margin-bottom:8px;
}

/* Process Steps */
.process-step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  margin-bottom:12px;
}
.step-number{
  width:28px;
  height:28px;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:bold;
  font-size:14px;
  flex-shrink:0;
}

/* Features Section */
.features{
  margin-top:16px;
}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
  margin-top:16px;
}
.feature-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:20px;
  background:rgba(11,15,23,0.45);
  transition:all 0.3s ease;
  height:100%;
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(79,140,255,0.15);
  border-color:var(--accent);
}
.feature-icon{
  width:48px;
  height:48px;
  margin-bottom:12px;
  filter:drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Proof Items */
.proof-item{
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  background:rgba(11,15,23,0.45);
  margin-bottom:12px;
  transition:all 0.3s ease;
}
.proof-item:hover{
  background:rgba(79,140,255,0.1);
  border-color:var(--accent);
}
.proof-icon{
  font-size:1.5em;
  margin-bottom:8px;
}
.proof-muted{
  color:var(--muted);
  margin-top:6px;
  line-height:1.5;
  font-size:14px;
}

/* About Founder */
.about-founder{
  background:linear-gradient(135deg, rgba(15,22,36,0.9) 0%, rgba(11,15,23,0.9) 100%);
}
.founder-image-container{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.founder-image{
  width:70%;
  border-radius:20px;
  position:relative;
  z-index:2;
  box-shadow:0 12px 32px rgba(0,0,0,0.3);
}
.founder-glow{
  position:absolute;
  width:80%;
  height:80%;
  background:linear-gradient(135deg, var(--accent-glow), var(--accent2-glow));
  filter:blur(30px);
  border-radius:20px;
  opacity:0.5;
}

/* Section Icons */
.section-icon{
  font-size:2em;
  margin-bottom:12px;
  display:inline-block;
}

/* Hover Effects */
.hover-lift{
  transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
}
.hover-lift:hover{
  transform:translateY(-4px);
}

/* Footer */
.footer{
  margin-top:24px;
  border-top:1px solid var(--line);
  padding-top:24px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* Responsive Design */
@media(max-width:640px){
  .hero h1{
    font-size:32px;
    line-height:1.2;
  }
  .card{
    padding:16px;
  }
  .btn{
    width:100%;
    justify-content:center;
  }
  .trust-strip{
    font-size:12px;
  }
  .trust-strip span{
    padding:6px 10px;
  }
}
.section-head{ margin-bottom:10px; }

.module-card{
  border:1px solid var(--line);
  border-radius:14px;
  padding:16px;
  background:rgba(11,15,23,.45);
  margin-bottom:12px;
}
.module-title{
  font-weight:800;
  margin-bottom:6px;
}

.faq{ display:grid; gap:12px; margin-top:10px; }
.faq-item{
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 16px;
  background:rgba(11,15,23,.45);
}
.faq-q{ font-weight:800; margin-bottom:6px; }
.faq-a{ color:var(--muted); line-height:1.55; }
/* Quote generator */
.quote-packages{ display:grid; gap:12px; }
.pkg-card{
  display:block;
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 14px;
  background:rgba(11,15,23,.45);
  cursor:pointer;
  position:relative;
}
.pkg-card input{ position:absolute; opacity:0; pointer-events:none; }
.pkg-card:hover{ border-color:rgba(79,140,255,.35); }

.pkg-head{ display:flex; justify-content:space-between; gap:10px; align-items:flex-start; }
.pkg-name{ font-weight:900; }
.pkg-desc{ color:var(--muted); margin-top:6px; line-height:1.55; }

.pkg-price{ color:var(--muted); font-size:13px; white-space:nowrap; }
.pkg-badge{
  display:inline-flex;
  margin-left:8px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.35);
  color:var(--text);
  font-size:11px;
  font-weight:800;
}

.quote-box{
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
  background:rgba(11,15,23,.45);
}
.quote-top{ display:flex; justify-content:space-between; gap:12px; align-items:flex-start; }
.quote-row{ display:flex; justify-content:space-between; gap:10px; padding:8px 0; }
.quote-line{ height:1px; background:var(--line); margin:12px 0; }
.quote-label{ color:var(--muted); font-size:13px; }
.quote-value{ font-weight:900; }
.quote-total .quote-value{ font-size:18px; }

.pkg-card:has(input:checked){
  border-color:rgba(34,197,94,.35);
  box-shadow:0 8px 24px rgba(34,197,94,.10);
}
/* Contact / Forms */
.form{
  max-width: 880px;
  margin: 0 auto;
}

label{
  display:block;
  font-weight:700;
  margin: 0 0 8px;
  color: var(--text);
}

input, select, textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(11,15,23,.55);
  color: var(--text);
  outline: none;
  transition: all .2s ease;
}

input::placeholder, textarea::placeholder{
  color: rgba(169,180,207,.75);
}

input:focus, select:focus, textarea:focus{
  border-color: rgba(79,140,255,.55);
  box-shadow: 0 0 0 4px rgba(79,140,255,.12);
}

select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(232,238,252,.7) 50%),
    linear-gradient(135deg, rgba(232,238,252,.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% + 2px),
    calc(100% - 12px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

input[disabled]{
  opacity:.85;
  cursor:not-allowed;
}

.form .grid2 > div{
  display:flex;
  flex-direction:column;
}

.form .grid2{
  gap: 14px;
}

.fineprint{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Alert box */
.alert{
  max-width: 880px;
  margin: 0 auto 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(15,22,36,.78);
  border-left: 3px solid rgba(79,140,255,.8);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--text);
}

.alert ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* Headings spacing on contact */
.hero h1{
  margin: 0 0 10px;
}
.hero .sub{
  margin: 0 0 14px;
}
.price-big{
  font-size:22px;
  font-weight:900;
  margin-top:8px;
}
/* Admin tables */
.admin-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:900px;
}
.admin-table th, .admin-table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
  font-size:14px;
}
.admin-table th{
  color:var(--muted);
  font-weight:800;
  background:rgba(11,15,23,.35);
}
.admin-table tr:hover td{
  background:rgba(79,140,255,.06);
}

/* Status pills */
.status-pill{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.12);
}
.status-pill.s-pending{ border-color:rgba(255,255,255,.18); color:var(--text); }
.status-pill.s-awaiting_proof{ border-color:rgba(79,140,255,.35); color:var(--text); }
.status-pill.s-paid{ border-color:rgba(34,197,94,.35); color:var(--text); }
.status-pill.s-expired{ border-color:rgba(255,255,255,.12); color:rgba(169,180,207,.9); }
