:root {
  --primary: #076DF2;
  --secondary: #5288F2;
  --light: #F0F1F2;
  --dark: #0D0D0D;
  --muted: rgba(13,13,13,0.65);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* NAV */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.nav-links a {
  margin-left: 18px;
  text-decoration: none;
  color: var(--dark);
}

/* HERO */
.hero {
  padding: 160px 20px 100px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 62px);
  max-width: 900px;
  margin: auto;
  line-height: 1.1;
}

.hero p {
  margin-top: 20px;
  max-width: 650px;
  margin-inline: auto;
  color: var(--muted);
}

.tagline {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.container {
  width: min(1100px, 92%);
  margin: auto;
}

/* =========================
   PROCESS SECTION
========================= */

.process {
  text-align: center;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.process-card {
  background: white;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-6px);
}

/* STEP NUMBER */
.step {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--primary);
}

/* TEXT */
.process-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   PRICING SECTION
========================= */

.pricing {
  text-align: center;
}

.pricing-subtext {
  max-width: 700px;
  margin: 10px auto 40px;
  color: var(--muted);
  line-height: 1.6;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 40px;
}

/* CARD BASE */
.pricing-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(0,0,0,0.06);
  text-align: left;
  transition: 0.25s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

/* PRICE */
.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin: 10px 0 20px;
}

/* LIST */
.pricing-card ul {
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding-left: 16px;
}

.pricing-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* =========================
   FEATURED CARD (ELITE)
========================= */

.pricing-card.featured {
  border: 2px solid #38BDF2;
  box-shadow:
    0 0 25px rgba(56, 189, 242, 0.35),
    0 0 60px rgba(7, 109, 242, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

/* BADGE */
.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

/* CARDS */
.card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.img {
  width: 100%;
  height: 180px;              /* keeps all cards uniform */
  border-radius: 12px;
  background-size: cover;     /* KEY: prevents distortion */
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

/* Default placeholder style */
.img.placeholder {
  background: linear-gradient(135deg, #1f1f1f, #2c2c2c);
  position: relative;
  overflow: hidden;
}

/* Subtle animated shine effect (optional but clean) */
.img.placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  0% { left: -150%; }
  100% { left: 150%; }
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: var(--primary);
  color: white;
  border-radius: 999px;
  text-decoration: none;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
  margin-top: 30px;
}

input, textarea {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

/* FOOTER stays same */
.footer {
  margin-top: 100px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
  padding: 70px 20px 30px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* MAIN GRID FIX */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  align-items: start; /* FIXES uneven vertical spacing */
}

/* BRAND */
.footer-brand h3 {
  margin-bottom: 10px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

/* LINKS (FIX SPACING ISSUE HERE) */
.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px; /* reduced from default large spacing */
}

.footer-links a,
.footer-social a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  transition: 0.2s ease;
  line-height: 1.4; /* tighter text rhythm */
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--primary);
}

/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
  color: var(--muted);
}




.success-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.success-wrapper h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.success-wrapper p {
  max-width: 500px;
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
}