/* ==============================
   Root Variables
============================== */
:root {
  --primary: #1430b4;
  --text-dark: #111;
  --text-light: #464646;
  --bg-light: #fafbfc;
  --gradient: linear-gradient(180deg, #dfe3ff00 0%, #dfe3ff 100%);
  --radius: 1.5rem;
  --transition: all 0.3s ease;

  /* Typography */
  --font-body: "Kumbh Sans", sans-serif;

  /* Responsive Font Sizes (using clamp) */
  --fs-h1: clamp(2rem, 5vw + 1rem, 4rem);
  --fs-h2: clamp(1.6rem, 3.5vw + 0.5rem, 3rem);
  --fs-h3: clamp(1.3rem, 2.5vw + 0.4rem, 2.5rem);
  --fs-h4: clamp(1rem, 1.5vw + 0.3rem, 1.3rem);
  --fs-h5: clamp(1rem, 1.5vw + 0.3rem, 1, 5rem);
  --fs-body: clamp(0.95rem, 1vw + 0.3rem, 1.0625rem); /* ~17px */
}

/* ==============================
   Global Resets
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   Text Styles
============================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  font-size: var(--fs-body);
  line-height: 140%;
  overflow-x: hidden;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2 {
  font-weight: 700;
}

h4,
h5 {
  font-weight: 500;
}

h1 {
  font-size: var(--fs-h1);
  margin-bottom: 1.75rem;
}
h2 {
  font-size: var(--fs-h2);
  margin-bottom: 1.75rem;
}
h3 {
  font-size: var(--fs-h3);
  margin-bottom: 1.875rem;
  font-weight: 600;
}
h4 {
  font-size: var(--fs-h4);
  margin-bottom: 1.125rem;
}

h5 {
  font-size: var(--fs-h5);
  margin-bottom: 1.75rem;
}

/* Paragraphs & Small Text */
p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: var(--fs-body);
}

small {
  color: var(--text-light);
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
}

/* Utility Text Classes */
.text-center {
  text-align: center;
}
.text-light {
  color: var(--text-light);
}
.text-dark {
  color: var(--text-dark);
}

/* ==============================
   Layout Containers
============================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==============================
   Navbar
============================== */
.navbar {
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo */
.logo img {
  width: 7.5rem;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-ligh);
  text-decoration: none;
  font-weight: 300;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 1.2rem;
  gap: 0.25rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 2px;
}

/* ==============================
   Hero Section
============================== */
.hero {
  background: var(--gradient);
  text-align: center;
  padding: 2rem 0 4rem;
}

.tagline {
  color: var(--primary);
  font-size: clamp(0.90rem, 1vw, 1.0rem);
  font-weight: 600;
  position: relative;
}

.tagline::after {
  content: "";
  display: block;
  width: 660px;
  height: 0px;
  background: var(--text-light);
  margin: 18px auto 0;
}

.hero h1 {
  margin-top: 38px;
}

.subtitle {
  max-width: 40rem;
  margin: 0 auto 0;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 140%;
}

.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  font-size: clamp(0.95rem, 1vw, 1rem);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 40px;
}

.primary-btn:hover {
  background: #3046d9;
}

.hero-image img {
  margin-top: 50px;
  height: 350px;
  z-index: 15;
  margin-bottom: 10px;
}

.hero_img_mob { visibility: hidden; display: none; }

/* ==============================
   Comparison Section
============================== */

.comparison img {
  height: 21px;
}

.comparison {
  position: relative;
  background-color: white;
  padding: 5rem 6rem;
  margin: -10.3rem auto 0;
  border-radius: var(--radius);
}

.comparison {
  position: relative;
  background: transparent; /* remove solid white */
  z-index: 2;
}

.comparison::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2b3d93, #ff77dd, #78a8b0, #a06dff);
  filter: blur(30px);
  opacity: 0.3;
  margin-top: 2rem;
  transform: scale(0.7);
  z-index: -1; /* put above the bg but below content */
}

.comparison-inner {
  position: relative;
  width: 100%;
  z-index: 2; /* ensure text is above glow */
  background-color: white; /* move white bg here */
  border-radius: var(--radius);
  padding: 5rem 6rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.comparison-inner {
  display: flex;
  justify-content: space-between;
}

.comparison-inner img {
  margin-right: 12px;
}

.comparison-block {
  flex: 1;
}

.comparison-block.left li,
.left h4 {
  color: #6b6b6b;
}

.comparison-block h4 {
  margin-bottom: 1.5rem;
}

.comparison-block ul {
  list-style: none;
  padding: 0;
}

.comparison-block li {
  position: relative;
  display: flex;
  margin: 1rem 0;
  line-height: 1.5;
  align-items: top;
}
/* ==============================
   Layer Section
============================== */
.layer {
  background: var(--bg-light);
  padding: 6rem 0;
}

.layer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

.layer-content h3 {
  margin-bottom: 1.875;
}

.layer-text blockquote {
  color: var(--primary);
  margin-top: 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.layer-img img {
  width: 35vw;
  margin-right: -4rem;
}

/* ==============================
   Features
============================== */
.features {
  background: linear-gradient(180deg, #edf4ff 100%, #edefff 100%);
  padding: 6rem 0 5rem;
}

.features-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.feature-card {
  background: #fff;
  border-radius: 1.875rem;
  padding: 2rem 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  max-width: 25rem;
  transition: var(--transition);
}

.feature-card p {
  font-size: 0.9375rem;
  line-height: 140%;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.07);
}

.features-quote {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-dark);
  margin-top: 3rem;
}
.feature-title {
  display: flex;
  align-items: top;
  gap: 1.25rem;
}

.feature-title img {
  width: 25px;
  height: 25px;
  margin-top: 0.3rem;
}

.features-mobile {
  background: linear-gradient(180deg, #edf4ff 100%, #edefff 100%);
  padding: 6rem 0 5rem;
}

.features-grid-mobile {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  justify-items: center;
}

/* Hide mobile version on desktop */
@media (min-width: 1024px) {
  .features-mobile {
    display: none;
  }
}

/* ==============================
   Pricing
============================== */
.pricing-grid {
  padding: 10rem 0 0rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.pricing-card-wrapper {
  position: relative;
  flex: 1;
  padding: 0;
  display: flex;
  justify-content: center;
}

.pricing-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  height: 18rem;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(156, 201, 255, 0.174),
    0 6px 6px rgba(0, 0, 0, 0.07);
}

.pricing-card-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #2b3d93, #ff77dd, #78a8b0, #a06dff);
  filter: blur(15px);
  opacity: 0.3;
  z-index: 1;
}

.pricing-card.highlight {
  height: 20rem;
  border: solid 1px #333;
}

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

.pricing-overlay {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 1.5rem;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  transition: background 0.3s ease;
}

.pricing-overlay p {
  font-size: 0.9375rem;
}

.price {
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 2.5vw, 2.375rem);
  font-weight: 500;
  color: var(--text-dark);
}

.price span {
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 500;
  margin-left: 0.2rem;
}

.pricing-quote-nonprofit {
  text-align: center;
  font-weight: 300;
  font-size: clamp(1rem, 1.0vw, 1.0rem);
  color: var(--text-dark);
  margin: 3rem 0 3rem 0;
}

.pricing-quote {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  color: var(--text-dark);
  margin-top: 3rem;
}

/* ==============================
   Section 6 — Activation + Footer
============================== */
.site-footer {
  background: var(--gradient);
  padding: 12rem 5rem 2rem;
  text-align: center;
  color: var(--text-dark);
}

.activation-inner {
  max-width: 720px;
  margin: 0 auto 4rem;
}

.activation-inner h2 {
  color: var(--primary);
}

.activation-body {
  margin-bottom: 3rem;
}

/* ---- White Form Box ---- */
.activation-box {
  background: #fff;
  margin: auto;
  padding: 2.8rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.activation-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-field label {
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-field input {
  padding: 0.8rem 1rem;
  border: 1px solid #e1e6f2;
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #f7f9fc;
}

.form-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(64, 92, 245, 0.15);
}

.form-field-short { width: 75%; }

.form-field select {
  padding: 0.8rem 1rem;
  border: 1px solid #e1e6f2;
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: #f7f9fc;
}

.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(64, 92, 245, 0.15);
}

/* ---- CTA Button ---- */
.activation-form .primary-btn {
  margin-top: 2rem;
  border-radius: 7px;
  font-size: 12px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  max-width: 280px;
  margin-inline: auto;
}

/* ---- Footer Bottom ---- */
.footer-bottom p {
  padding-top: 5rem;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  line-height: 1.6;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #3046d9;
}

/* ==============================
   Scroll-triggered entering animations
============================== */

/* Base state for elements */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s ease-out;
}

/* Activated state when visible */
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  transform: translateX(-20px);
}
.scroll-animate-right {
  transform: translateX(20px);
}
.scroll-animate.visible {
  transform: translate(0, 0);
  opacity: 1;
}
