/* ===== Base ===== */
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --brand:#6a5cff;
  --brand-2:#00c2ff;
  --card:#ffffff;
  --ring: rgba(106,92,255,0.25);
  --shadow: 0 10px 25px rgba(2,6,23,0.08), 0 2px 8px rgba(2,6,23,0.05);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

/* ===== Header ===== */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: color-mix(in srgb, #fff 60%, transparent);
  border-bottom:1px solid #eee;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:.6rem;
  font-weight:800; letter-spacing:.2px; color:var(--text); text-decoration:none;
}
.logo-dot{
  width:12px; height:12px; border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 6px var(--ring);
}
.nav a{
  color:var(--muted); text-decoration:none; margin-left:18px; font-weight:600;
}
.nav a:hover{ color:var(--text); }

/* ===== Hero ===== */
.comparison-section{
  background: linear-gradient(135deg, var(--bg-start), var(--bg-end)); /* as requested */
}
.hero{
  position:relative;
  padding: clamp(72px, 14vh, 150px) 0 clamp(56px, 10vh, 120px);
  overflow:hidden;
}
.hero__wrap{ text-align:center; }

.hero.comparison-section {
  background: linear-gradient(135deg, #e4e4e4, #dcdcdc); /* dark grey gradient */
}

.hero__title{
  margin:14px 0 10px; line-height:1.05;
  font-size: clamp(28px, 5vw, 56px);
}
.hero__lead{ margin:0 auto 4px; max-width: 820px; }
.hero__lead--muted{ margin:0 auto; max-width: 820px; color:var(--muted); }

.btn{
  display:inline-block; padding:12px 18px; border-radius:12px;
  text-decoration:none; font-weight:700; margin:6px; border:1px solid #e7e7e7;
}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color:white; border:0; box-shadow: var(--shadow);
}
.btn.ghost{ color:var(--text); background:#fff; }
.btn:active{ transform: translateY(1px); }

.hover-tilt {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease;
}
.hover-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg,#6a5cff,#00c2ff) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.hover-tilt:hover {
  transform: scale(1.03);
}
.hover-tilt:hover::after {
  opacity: 1;
}

/* ===== Comparison Section (your provided gradient) ===== */
.comparison-section {
  background: linear-gradient(135deg, #f9f9f9, #ececec);  /* light grey gradient */
  padding: 68px 0 90px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}
.section-head h2{ margin:0 0 6px; font-size: clamp(1.6rem, 1.6rem + 1.2vw, 2.2rem); }
.subhead{ color:var(--muted); margin:0 0 30px; }

.card{
  background:var(--card);
  border-radius:18px;
  padding:24px 22px;
  box-shadow: var(--shadow);
  border:1px solid #eee;
  margin:18px 0;
  transform-style: preserve-3d;
}
.card-icon{
  font-size:26px; line-height:1; margin-bottom:6px;
  transform: translateZ(24px);
}
.card h3{ margin:8px 0 8px; font-size:1.25rem; }
.card p{ margin:10px 0; color:#1f2937; }
.card .fix{
  background: linear-gradient(90deg, rgba(106,92,255,.08), rgba(0,194,255,.08));
  border-left:4px solid var(--brand);
  padding:12px 14px; border-radius:10px; color:#0b1324;
}

/* CTA Button */
.broken-cta {
  text-align: center;
  margin-top: 70px;
}

.broken-btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #111, #444);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.broken-btn:hover {
  background: linear-gradient(135deg, #444, #111);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* ===== Global Mobile Button Size (sab sections ke liye) ===== */
@media (max-width: 768px) {
  .broken-btn {
    padding: 18px 36px;
    font-size: 1.14rem;
    border-radius: 10px;   /* rectangular */
    min-width: 230px;
    line-height: 1.2;
  }
}

@media (max-width: 420px) {
  .broken-btn {
    padding: 16px 30px;
    font-size: 1.08rem;
    border-radius: 8px;    /* thoda aur rectangular */
    min-width: 210px;
  }
}
