*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,sans-serif;}
body{background:#0b0b0f;color:#fff;}

html, body {
    overflow-y: scroll;      /* keep vertical scroll */
    scrollbar-width: none;   /* Firefox */
}

html::-webkit-scrollbar {
    display: none;           /* Chrome, Safari */
}

.gradient-bg{
  position:fixed;
  width:100%;
  height:100%;
  z-index:-1;
  background: radial-gradient(circle at 20% 30%, var(--primary), transparent 40%),
              radial-gradient(circle at 80% 70%, var(--accent), transparent 40%),
              radial-gradient(circle at 50% 80%, var(--secondary), transparent 40%);
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0 20px;
  position: relative;
}

.hero h1{
  font-size:60px;

}

.hero p{
  margin-top:20px;
  opacity:.8;
  font-size:18px;
}

.btn{
  display:inline-block;
  margin:20px 10px 0;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
}

.primary{background:#ff7a00;color:#fff;}
.secondary{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
}
/* ===========================
   GLASS SECTION PANEL
=========================== */

.section {
  position: relative;
  padding: 80px 60px;
  margin: 15px auto;
  max-width: 2000px;

  border-radius: 30px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  overflow: hidden;
  transition: 0.4s ease;
}

/* Subtle default glow */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 122, 0, 0.15),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Activate glow on hover */
.section:hover::before {
  opacity: 1;
}

/* Stronger border on hover */
.section:hover {
  border-color: rgba(255,255,255,0.2);
}

/* ===========================
   SECTION HEADING STYLE
=========================== */

/* ===========================
   SECTION HEADING STYLE
=========================== */

/* ===========================
   SECTION HEADING STYLE
=========================== */

.section h2 {
  position: relative;
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Auto width underline (matches text width) */
.section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;

  width: 100%;          /* Auto match text width */
  height: 4px;          /* Bold thickness */
  background: var(--secondary);
  border-radius: 4px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:60px;
}

.glass-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(20px);
  border-radius:20px;
  padding:40px;
}

.price{
  font-size:36px;
  margin:20px 0;
}

.cta-section{
  padding:100px 20px;
}

.cta-box{
  max-width:800px;
  margin:auto;
  padding:60px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
}
/* ===========================
   HERO SECTION - PROFESSIONAL ALIGNMENT
=========================== */



/* .hero-content {
  max-width: 950px;
} */

/* Main Headings */
.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Small tag line */
.hero p {
  margin-top: 20px;
  font-size: 16px;
  opacity: 0.85;
  letter-spacing: 0.5px;
}

/* Long description */
.hero h2 {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  /* max-width: 900px; */
}

/* Buttons */
.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Button refinement */
.hero .btn {
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: 0.3s ease;
}

/* Make secondary buttons slightly glass */
.hero .btn.secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.hero .btn.secondary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

/* Clickable cards */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link .glass-card {
  height: 100%;
}

.section-subtext {
  max-width: 800px;
  margin: 20px auto 50px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.6;
}