/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ================= ROOT TOKENS ================= */
:root {
  --blue-950: #071b3a;
  --blue-900: #0b2a55;
  --blue-800: #123a7a;
  --blue-700: #1e4fa3;
  --blue-accent: #2f7df6;
  --blue-100: #eef5ff;

  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #e5edff;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;

  --shadow-soft: 0 10px 30px rgba(15, 40, 90, 0.12);
  --shadow-card: 0 20px 45px rgba(15, 42, 95, 0.18);

  --lh-heading: 1.15;
  --lh-body: 1.65;

  --max-width: 1200px;
  --font-body: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Merriweather Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ================= BASE ================= */
body {
  font-family: var(--font-body), Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: var(--lh-body);
  background: #ffffff;
}

h1, h2, h3, h4 {
  line-height: var(--lh-heading);
  font-weight: 700;
  font-family: var(--font-heading), system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

p,span,li,a{
    font-family: var(--font-body), system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

h1 { font-size: 44px; }
h2 { font-size: 34px; }
h3 { font-size: 26px; }
h4 { font-size: 18px; }

p {
  font-size: 16px;
}

/* ================= LAYOUT ================= */
.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 80px 24px 0px;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 80px 0;
}

.center,
.text-center {
  text-align: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}


.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.align-center {
  align-items: center;
}

.hero-wrapper {
  min-height: 100vh;
  position: relative;

  /* background:url("../images/hero-bg.jpeg"); */

  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 0;
}

/* ================= HEADER / NAVBAR ================= */
/* .header {
  background: url("images/hero-bg.jpeg")
  background: var(--blue-900);
} */

.header{
  background: transparent;
  position: relative;
  z-index: 10;
}
 

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  color: white;
  font-weight: 700;
  font-size: 18px;
}

.nav a {
  color: var(--text-light);
  margin-left: 22px;
  font-size: 14px;
  text-decoration: none;
}

.nav a.active {
  color: #ffffff;
  font-weight: 600;
}

/* === Mobile Nav Toggle (ADD ONLY) === */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Mobile navbar */
@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    /* background: var(--blue-900); */
    background:url("../images/hero-bg.jpeg");
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 1000;
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a {
    margin: 12px 0;
    font-size: 16px;
  }
  .nav-toggle {
    display: block;
  }
}


/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2f7df6, #1e5fe0);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(47,125,246,0.35);
}

.btn.small {
  padding: 9px 16px;
  font-size: 13px;
}


/* ================= HERO (GRAIN) ================= */
.hero {
  /* height: 85vh; */
  background: none;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  /* background:
  url("images/hero-bg.jpeg"),
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  color: white;
  padding: auto;
  overflow: hidden;
}
/* ================= HERO BAND (NON-HERO DARK SECTION) ================= */
.hero-band {
  position: relative;
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: white;
  /* padding: 110px 0; */
}


.hero-content {
  position: relative;
  max-width: 780px;
  margin: auto;
  text-align: center;
}
.hero-content > * {
  margin-bottom: 22px;
}

/* remove extra space after last element */
.hero-content > *:last-child {
  margin-bottom: 0;
}


.hero h1 {
  margin: 18px 0;
}

.hero p {
  font-size: 18px;
  color: var(--text-light);
}

.eyebrow {
  letter-spacing: 0.4px;
  opacity: 0.9;
}
@media (max-width: 900px) {
  .hero {
    background-position: center bottom;
    background-size: 85%;
    padding: 100px 0 140px;
  }

  .hero-content {
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
  }
}


/* ================= PANELS (Teachers / Students / Admins) ================= */
.panel {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}

.panel.reverse {
  grid-template-columns: 1fr 1.2fr;
}

.panel h2 {
  font-size: 34px;
  margin-bottom: 16px;
}

.panel ul {
  padding-left: 18px;
}

.panel li {
  margin-bottom: 10px;
}

.dark-panel{
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  background:url("../images/hero-bg.jpeg");
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  color: white;
  padding: 20%;
  overflow: hidden;
  border-radius: 25px;
}


/* ================= ETHICAL AI ================= */
.ethical {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: white;
}

.ethical-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.ethical-card {
  background: #ffffff;
  color: var(--text-dark);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.proven-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  margin-top: 48px;
  justify-content: center;
}

.proven-card {
  background: #EAEEF9;
  color: var(--text-dark);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.index-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  margin-top: 48px;
  justify-content: center;
}

.index-card {
  background: white;
  color: var(--text-dark);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-card);
}

/* ================= FOOTER ================= */
.footer {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: var(--text-light);
  padding: 48px 24px;
  text-align: center;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  h1 { font-size: 34px; }
  h2 { font-size: 28px; }

  .two-col,
  .three-col,
  .panel,
  .panel.reverse {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}


.compliance-cards {
  margin-top: 60px;
}

.compliance-card {
  background: #eef2ff;
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
}

.compliance-card h4 {
  margin-top: 18px;
  font-size: 18px;
}

.compliance-card p {
  font-size: 15px;
}

.responsible-grid {
  margin-top: 70px;
}

.responsible-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.responsible-card h4 {
  margin: 18px 0 10px;
}

.soft-panel {
  background: linear-gradient(135deg, #f4f7ff, #ffffff);
  border-radius: var(--radius-xl);
  padding: 60px;
}


.featured-section {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: white;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
}

.section-title span {
  font-weight: 300;
}

.section-subtitle {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 600;
}

.section-desc {
  margin: 12px auto 60px;
  max-width: 720px;
  opacity: 0.9;
}

/* White Card */
.feature-card {
  background: white;
  border-radius: 24px;
  padding: 50px;
  color: #1a1a1a;
}

/* Top Row */
.feature-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.feature-logo img {
  max-width: 100%;
}

.feature-quote p {
  font-size: 18px;
  line-height: 1.6;
}

.feature-quote span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: #264CAF;
}

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

.stat-card {
  background: #eef2ff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.stat-card strong {
  color: #264CAF;
}

@media (max-width: 768px) {
  .feature-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .feature-stats {
    grid-template-columns: 1fr;
  }
}


.integrations-section {
  padding: 0 0;
  background: #ffffff;
}

.integration-section-title {
  font-size: 44px;
  font-weight: 700;
  color: #264CAF;
}

.integration-section-subtitle {
  font-size: 28px;
  font-weight: 600;
  margin-top: 12px;
  color: #000;
}

.integration-intro {
  margin: 50px auto;
  max-width: 760px;
  border: 2px dashed #7a95ff;
  border-radius: 14px;
  padding: 28px;
  background-color: #E2E2E252;
}

.integration-intro h4 {
  color: #264CAF;
  font-size: 20px;
  margin-bottom: 10px;
}

.integration-intro p {
  color: #444;
  line-height: 1.6;
}

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

.integration-card {
  background: #f3f6ff;
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  border: 1px solid #d6ddff;
}

.integration-card h4 {
  color: #000;
  font-size: 18px;
  margin-bottom: 8px;
}

.integration-card p {
  color: #444;
  line-height: 1.5;
}

.integration-card.highlighted {
  background: #eef3ff;
  box-shadow: 0 8px 20px rgba(38, 76, 175, 0.15);
}

.integration-cta {
  margin-top: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #3b6cff, #264CAF);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}


.safety-section {
  padding: 80px 0;
  background: #ffffff;
}

.safety-card {
  background: #eef2f8;
  border-radius: 26px;
  padding: 60px;
  border: 4px solid #5c9cff;
}

/* Headings */
.safety-card h2 {
  font-size: 34px;
  font-weight: 700;
}

.safety-card h2 span {
  color: #264CAF;
}

.safety-subtitle {
  margin-top: 14px;
  color: #264CAF;
  font-weight: 600;
}

/* GRID */
.safety-grid {
  /* margin-top: 30px; */
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.safety-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.safety-visual img {
  max-width: 100%;
  max-height: 360px;   /* desktop cap */
  width: auto;
  height: auto;
  margin-bottom: 10%;
}

.safety-desc {
  color: #444;
  line-height: 1.6;
}

.safety-list {
  margin-top: 18px;
  padding-left: 18px;
}

.safety-list li {
  margin-bottom: 8px;
  color: #333;
}

.btn-secondary {
  display: inline-block;
  margin-top: 24px;
  background: #3b6cff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* CONTAINER & SECTION SETUP */
.safety-section {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Merriweather Sans', sans-serif; /* Matching your existing font stack */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* GRID LAYOUT */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Left column slightly smaller than right */
  gap: 60px;
  align-items: start; /* Aligns content to the top */
}

/* LEFT COLUMN (Headline + Image) */
.safety-left {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.safety-title {
  font-size: 48px;
  line-height: 1.15;
  color: #1A3688; /* The deep blue from your screenshot */
  font-weight: 700;
  margin-bottom: 40px;
}

.safety-visual img {
  width: 100%;
  max-width: 320px; /* Adjust based on actual image aspect ratio */
  height: auto;
  display: block;
}

/* RIGHT COLUMN (List) */
.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.safety-list li {
  margin-bottom: 30px;
  font-size: 17px;
  line-height: 1.5;
  color: #4b5563; /* Dark grey for description text */
  font-family: 'Montserrat', sans-serif;
}

.safety-list li strong {
  display: block; /* Forces the description to the next line */
  font-size: 20px;
  color: #1A3688; /* Blue title */
  font-weight: 700;
  margin-bottom: 6px;
  font-family: 'Merriweather Sans', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .safety-left {
    align-items: center;
    text-align: center;
  }
  
  .safety-title {
    font-size: 36px;
  }

  .safety-visual img {
    max-width: 280px;
  }
}

@media (max-width: 900px) {
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .safety-card {
    padding: 32px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .safety-visual img {
    max-height: 260px; /* smaller on mobile */
  }

  .safety-list {
    text-align: left;
    display: inline-block;
  }
}

.impact-section {
  padding: 0;
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: white;
}

/* Headings */
.impact-title {
  font-size: 52px;
  font-weight: 700;
}

.impact-subtitle {
  margin-top: 10px;
  font-size: 44px;
  font-weight: 600;
  opacity: 0.95;
}

/* Cards */
.impact-cards {
  margin: 60px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
}

.impact-card {
  background: white;
  color: #1a1a1a;
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
}

.impact-card img {
  height: 120px;
  margin-bottom: 18px;
}

.impact-card p {
  font-size: 18px;
  line-height: 1.5;
}

/* Description */
.impact-description {
  max-width: 820px;
  margin: 40px auto;
  font-size: 16px;
  opacity: 0.95;
}

.impact-description p {
  margin-bottom: 14px;
  font-size: 22px;
}

/* Button */
.btn-impact {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(135deg, #4f8cff, #2b5cff);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 900px) {
  .impact-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .impact-card img {
    height: 100px;
  }

  .impact-title {
    font-size: 34px;
  }

  .impact-subtitle {
    font-size: 22px;
  }
}
/* ================= NEXT STEPS ================= */

.next-steps {
  background: #ffffff;
  padding: 0;
}

.next-steps-title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* Grid */
.next-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Image */
.next-steps-visual {
  display: flex;
  justify-content: center;
}

.next-steps-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 360px;   /* desktop visual height */
  height: auto;
  object-fit: contain;
}


/* Content */
.next-steps-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 14px;
}

.next-steps-content p {
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 520px;
}

@media (max-width: 900px) {
  .next-steps-title {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .next-steps-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .next-steps-visual img {
    max-width: 340px;
    max-height: 280px;
  }
}

@media (max-width: 600px) {
  .next-steps-title {
    font-size: 28px;
  }

  .next-steps-content h3 {
    font-size: 22px;
  }

  .next-steps-content p {
    font-size: 15px;
  }

  .next-steps-visual img {
    max-width: 260px;
    max-height: 220px;
  }
}

/* ================= EDUCHAT FOR TEACHERS ================= */

.teachers-section {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

/* Main grid */
.teachers-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

/* LEFT COLUMN */
.teachers-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.teachers-title {
  font-size: 42px;
  color: var(--blue-700);
}

/* Image block */
.teachers-visual {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  justify-content: center;
}

.teachers-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 320px;
  height: auto;
  object-fit: contain;
}

/* Callout */
.teachers-callout {
  background: #e9f4ff;
  border-radius: var(--radius-lg);
  padding: 30px;
}

.teachers-callout h3 {
  font-size: 32px;
  color: var(--blue-700);
}

.teachers-callout p {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-accent);
}

/* RIGHT COLUMN */
.teachers-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.teachers-subtitle {
  font-size: 40px;
  color: var(--blue-700);
}

.teachers-intro {
  margin-top: 10px;
  font-size: 24px;
  color: var(--text-muted);
}

.teachers-list {
  list-style: none;
}

.teachers-list li {
  font-size: 22px;
  line-height: var(--lh-body);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.teachers-list strong {
  font-size: 22px;
  color: var(--blue-700);
}

@media (max-width: 900px) {
  .teachers-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .teachers-left,
  .teachers-right {
    align-items: center;
    text-align: center;
  }

  .teachers-visual img {
    max-width: 300px;
    max-height: 260px;
  }

  .teachers-subtitle {
    font-size: 26px;
  }

  .teachers-intro {
    font-size: 18px;
  }

  .teachers-list li {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .teachers-title {
    font-size: 32px;
  }

  .teachers-subtitle {
    font-size: 22px;
  }

  .teachers-callout h3 {
    font-size: 26px;
  }

  .teachers-callout p {
    font-size: 20px;
  }
  .teachers-visual img {
    max-width: 250px;
    max-height: 240px;
  }
}

/* ================= EDUCHAT FOR STUDENTS ================= */

.students-section {
  background: linear-gradient(135deg, #ffffff, #eef5ff);
}

/* Main grid — MIRRORED */
.students-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: start;
}

/* LEFT COLUMN (TEXT) */
.students-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.students-subtitle {
  font-size: 40px;
  color: var(--blue-700);
}

.students-intro {
  margin-top: 10px;
  font-size: 24px;
  color: var(--text-muted);
}

.students-list {
  list-style: none;
}

.students-list li {
  font-size: 22px;
  line-height: var(--lh-body);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.students-list strong {
  font-size: 22px;
  color: var(--blue-700);
}

/* RIGHT COLUMN */
.students-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Title */
.students-title {
  font-size: 42px;
  color: var(--blue-700);
  text-align: left;
}

/* Image block */
.students-visual {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  justify-content: center;
}

.students-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 320px;
  height: auto;
  object-fit: contain;
}

/* Callout */
.students-callout {
  background: #e9f4ff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: left;
}

.students-callout h3 {
  font-size: 32px;
  color: var(--blue-700);
}

.students-callout p {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-accent);
}

@media (max-width: 900px) {
  .students-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .students-left,
  .students-right {
    align-items: center;
    text-align: center;
  }

  .students-title {
    text-align: center;
  }

  .students-visual img {
    max-width: 300px;
    max-height: 260px;
  }

  .students-subtitle {
    font-size: 26px;
  }

  .students-intro {
    font-size: 18px;
  }

  .students-list li {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .students-title {
    font-size: 32px;
  }

  .students-subtitle {
    font-size: 22px;
  }

  .students-callout h3 {
    font-size: 26px;
  }

  .students-callout p {
    font-size: 20px;
  }

  .students-visual img {
    max-width: 250px;
    max-height: 240px;
  }
}


/* ================= EDUCHAT FOR ADMINS ================= */

.admins-section {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

/* Main grid */
.admins-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}

/* LEFT COLUMN */
.admins-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.admins-title {
  font-size: 42px;
  color: var(--blue-700);
}

/* Image block */
.admins-visual {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  justify-content: center;
}

.admins-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 320px;
  height: auto;
  object-fit: contain;
}

/* Callout */
.admins-callout {
  background: #e9f4ff;
  border-radius: var(--radius-lg);
  padding: 30px;
}

.admins-callout h3 {
  font-size: 32px;
  color: var(--blue-700);
}

.admins-callout p {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-accent);
}

/* RIGHT COLUMN */
.admins-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.admins-subtitle {
  font-size: 40px;
  color: var(--blue-700);
}

.admins-intro {
  margin-top: 10px;
  font-size: 24px;
  color: var(--text-muted);
}

.admins-list {
  list-style: none;
}

.admins-list li {
  font-size: 22px;
  line-height: var(--lh-body);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.admins-list strong {
  font-size: 22px;
  color: var(--blue-700);
}

@media (max-width: 900px) {
  .admins-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .admins-left,
  .admins-right {
    align-items: center;
    text-align: center;
  }

  .admins-visual img {
    max-width: 300px;
    max-height: 260px;
  }

  .admins-subtitle {
    font-size: 26px;
  }

  .admins-intro {
    font-size: 18px;
  }

  .admins-list li {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .admins-title {
    font-size: 32px;
  }

  .admins-subtitle {
    font-size: 22px;
  }

  .admins-callout h3 {
    font-size: 26px;
  }

  .admins-callout p {
    font-size: 20px;
  }

  .admins-visual img {
    max-width: 250px;
    max-height: 240px;
  }
}

/* ================= ONE PLATFORM ================= */

.platform-section {
  background: #ffffff;
}

/* Headings */
.platform-title {
  font-size: 44px;
  color: var(--blue-700);
  margin-bottom: 12px;
}

.platform-title span {
  font-weight: 300;
  color: #000;
}

.platform-subtitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--blue-700);
  margin-bottom: 20px;
}

.platform-intro {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Card */
.platform-card {
  background: #eef2f8;
  border-radius: var(--radius-xl);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Illustration */
.platform-visual {
  display: flex;
  justify-content: center;
}

.platform-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 300px;
  height: auto;
  object-fit: contain;
}

/* Content */
.platform-content {
  text-align: left;
}

.platform-content p {
  font-size: 22px;
  color: var(--blue-700);
  line-height: 1.6;
  margin-bottom: 26px;
}

.platform-content strong {
  font-weight: 700;
}

@media (max-width: 900px) {
  .platform-title {
    font-size: 34px;
  }

  .platform-subtitle {
    font-size: 22px;
  }

  .platform-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 40px;
  }

  .platform-content {
    text-align: center;
  }

  .platform-content p {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .platform-title {
    font-size: 28px;
  }

  .platform-subtitle {
    font-size: 20px;
  }

  .platform-intro {
    font-size: 16px;
  }

  .platform-visual img {
    max-width: 260px;
    max-height: 220px;
  }

  .platform-content p {
    font-size: 18px;
  }
}


/* ================= ETHICAL AI TRUST ================= */

.ethical-trust-section {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
    background:url("../images/hero-bg.jpeg");
  color: white;
}

/* Title */
.ethical-title {
  font-size: 44px;
  margin-bottom: 18px;
}

.ethical-subtitle {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Cards grid */
.ethical-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 60px;
}

/* Card */
.ethical-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.ethical-card img {
  height: 120px;
  margin-bottom: 22px;
}

.ethical-card h4 {
  font-size: 22px;
  color: var(--blue-700);
  margin-bottom: 14px;
}

.ethical-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Footer line */
.ethical-footer {
  font-size: 16px;
  opacity: 0.9;
}

.ethical-footer strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .ethical-title {
    font-size: 34px;
  }

  .ethical-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .ethical-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ethical-card {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .ethical-title {
    font-size: 28px;
  }

  .ethical-card h4 {
    font-size: 20px;
  }

  .ethical-card p {
    font-size: 15px;
  }
}


/* ================= SECURE BY DESIGN ================= */

.secure-section {
  background: #ffffff;
}

/* Grid */
.secure-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  /* align-items: center; */
  align-items: stretch;
}

/* Illustration */
.secure-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.secure-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 360px;
  height: auto;
  object-fit: contain;
}

/* Content */
.secure-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.secure-title {
  font-size: 42px;
  color: #1A3688;
}

.secure-intro {
  font-size: 24px;
  color: var(--text-muted);
  line-height: 1.6;
}

.secure-intro span {
  background: #e7f0ff;
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--blue-700);
  font-weight: 600;
}

/* List */
.secure-list {
  list-style: none;
  margin-bottom: 30px;
}

.secure-list li {
  font-size: 20px;
  line-height: var(--lh-body);
  color: #434343;
  margin-bottom: 20px;
  font-family:'Montserrat', sans-serif;
}

.secure-list strong {
  font-size: 24px;
  font-weight: 700;
  color: #1A3688;
  font-family:'Merriweather Sans', sans-serif;
}

@media (max-width: 900px) {
  .secure-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .secure-visual img {
    max-width: 300px;
    max-height: 260px;
  }

  .secure-title {
    font-size: 32px;
  }

  .secure-intro {
    font-size: 18px;
  }

  .secure-list {
    text-align: left;
  }

  .secure-list li {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .secure-title {
    font-size: 28px;
  }

  .secure-visual img {
    max-width: 260px;
    max-height: 240px;
  }
}

/* ================= EASY ACCESS ================= */

.access-section {
  background: #ffffff;
}

/* Grid */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Left card */
.access-card {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  color: #ffffff;
}

.access-card h2 {
  font-size: 44px;
  line-height: 1.2;
  font-weight: 700;
}

/* Right content */
.access-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.access-content p {
  font-size: 22px;
  line-height: 1.6;
  color: var(--text-dark);
}

.access-content strong {
  font-size: 22px;
  color: var(--blue-700);
}

@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .access-card {
    padding: 60px 40px;
  }

  .access-card h2 {
    font-size: 34px;
  }

  .access-content {
    align-items: center;
  }

  .access-content p {
    font-size: 18px;
    max-width: 520px;
  }
}

@media (max-width: 600px) {
  .access-card {
    padding: 50px 30px;
  }

  .access-card h2 {
    font-size: 28px;
  }

  .access-content p {
    font-size: 16px;
  }
}

/* ================= RESPONSIBLE AI ================= */

.rai-section {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: white;
}

/* Heading */
.rai-title {
  font-size: 44px;
  margin-bottom: 14px;
}

.rai-subtitle {
  max-width: 820px;
  margin: 0 auto 60px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}

/* Grid */
.rai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-bottom: 60px;
}

/* Card */
.rai-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.rai-card img {
  height: 72px;
  margin-bottom: 20px;
}

.rai-card h4 {
  font-size: 22px;
  color: var(--blue-700);
  margin-bottom: 10px;
}

.rai-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Footer */
.rai-footer {
  font-size: 16px;
  opacity: 0.9;
}

.rai-footer strong {
  color: #ffffff;
}

@media (max-width: 1100px) {
  .rai-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .rai-title {
    font-size: 34px;
  }

  .rai-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .rai-grid {
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .rai-grid {
    grid-template-columns: 1fr;
  }

  .rai-title {
    font-size: 28px;
  }

  .rai-card h4 {
    font-size: 20px;
  }

  .rai-card p {
    font-size: 15px;
  }
}

/* ================= COMPLIANCE TRUST ================= */

.compliance-trust-section {
  background: #ffffff;
}

/* Heading */
.compliance-trust-title {
  font-size: 44px;
  font-family: 'Merriweather Sans', 'sans-serif';
  font-weight: 700;
  color: #264CAF;
  margin-bottom: 12px;
}

.compliance-trust-subtitle {
  font-size: 20px;
  font-family: 'Montserrat';
  color: #434343;
  font-weight: 500;
  margin-bottom: 70px;
}

/* Grid */
.compliance-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: stretch;
  padding: 0px 0px 80px 0px;
}

/* Card */
.compliance-trust-card {
  background: #eef2f8;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.25s ease;
}

/* Highlighted card (FERPA) */
.compliance-trust-card.active {
  background: #e9f1ff;
  border: 3px solid #5c9cff;
}

/* Illustration */
.compliance-trust-card img {
  width: auto;
  max-width: 220px;
  height: auto;
  margin-bottom: 22px;
}

/* Text */
.compliance-trust-card h3 {
  font-size: 24px;
  font-family: 'Merriweather Sans', 'sans-serif';
  color: #1A3688;
  margin-bottom: 10px;
}

.compliance-trust-card p {
  font-family: 'Montserrat', 'sans-serif';
  font-size: 24px;
  color: #444;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 900px) {
  .compliance-trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .compliance-trust-title {
    font-size: 32px;
  }

  .compliance-trust-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .compliance-trust-card img {
    max-width: 180px;
  }
}

@media (max-width: 600px) {
  .compliance-trust-title {
    font-size: 28px;
  }

  .compliance-trust-card h4 {
    font-size: 20px;
  }

  .compliance-trust-card p {
    font-size: 15px;
  }
}

/* ================= SAFETY FOR PARENTS & COMMUNITIES ================= */

.parents-safety-section {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

/* Card */
.parents-safety-card {
  background: #f6f9ff;
  border-radius: var(--radius-xl);
  padding: 60px;
}

/* Grid */
.parents-safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.parents-safety-title {
  font-size: 42px;
  color: var(--blue-700);
  margin-bottom: 18px;
}

.parents-safety-intro {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* List */
.parents-safety-list {
  list-style: disc;
  padding-left: 22px;
}

.parents-safety-list li {
  font-size: 18px;
  line-height: var(--lh-body);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.parents-safety-list strong {
  color: var(--blue-700);
}

/* RIGHT VISUAL */
.parents-safety-visual {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
    background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  justify-content: center;
}

.parents-safety-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 280px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .parents-safety-card {
    padding: 36px;
  }

  .parents-safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .parents-safety-list {
    text-align: left;
    display: inline-block;
  }

  .parents-safety-title {
    font-size: 32px;
  }

  .parents-safety-intro {
    font-size: 18px;
  }

  .parents-safety-visual img {
    max-width: 300px;
    max-height: 240px;
  }
}

@media (max-width: 600px) {
  .parents-safety-title {
    font-size: 28px;
  }

  .parents-safety-list li {
    font-size: 16px;
  }

  .parents-safety-visual img {
    max-width: 250px;
    max-height: 220px;
  }
}

/* ================= SECURE CTA ================= */

.secure-cta-section {
  background: #ffffff;
  padding: 60px 0;
}

/* Layout */
.secure-cta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}

/* Visual */
.secure-cta-visual img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* Content */
.secure-cta-text {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 22px;
  max-width: 640px;
}

/* Button */
.secure-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4fa3ff, #3b6cff);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(47,125,246,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.secure-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(47,125,246,0.45);
}

@media (max-width: 900px) {
  .secure-cta-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .secure-cta-visual img {
    max-width: 150px;
    margin: 0 auto;
  }

  .secure-cta-text {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .secure-cta-text {
    font-size: 16px;
  }

  .secure-cta-button {
    font-size: 14px;
    padding: 12px 22px;
  }
}


/* ================= NO PER-USER FEES ================= */

.pricing-flat-section {
  background: #ffffff;
}

/* Layout */
.pricing-flat-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* Visual */
.pricing-flat-visual {
  display: flex;
  justify-content: center;
}

.pricing-flat-visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Content */
.pricing-flat-title {
  font-size: 42px;
  color: var(--blue-700);
  margin-bottom: 18px;
}

.pricing-flat-intro {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-flat-intro span {
  background: #dbeafe;
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--blue-700);
  font-weight: 600;
}

/* List */
.pricing-flat-list {
  list-style: disc;
  padding-left: 22px;
}

.pricing-flat-list li {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.pricing-flat-list strong {
  color: var(--blue-700);
}

@media (max-width: 900px) {
  .pricing-flat-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .pricing-flat-visual img {
    max-width: 280px;
  }

  .pricing-flat-list {
    text-align: left;
    display: inline-block;
  }

  .pricing-flat-title {
    font-size: 32px;
  }

  .pricing-flat-intro {
    font-size: 18px;
  }

  .pricing-flat-list li {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .pricing-flat-title {
    font-size: 28px;
  }

  .pricing-flat-visual img {
    max-width: 240px;
  }

  .pricing-flat-intro {
    font-size: 16px;
  }
}

/* ================= ETHICAL AI TRUST ================= */

.ethical-trust-section {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  color: #ffffff;
}

/* Heading */
.ethical-trust-title {
  font-size: 44px;
  margin-bottom: 18px;
}

.ethical-trust-subtitle {
  max-width: 880px;
  margin: 0 auto 70px;
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

/* Grid */
.ethical-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.ethical-trust-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

/* Icon */
.ethical-trust-card img {
  width: 100%;
  max-width: 110px;
  height: auto;
  max-height: 120px;
  margin-bottom: 20px;
}

/* Card text */
.ethical-trust-card h4 {
  font-size: 22px;
  color: var(--blue-700);
  margin-bottom: 12px;
}

.ethical-trust-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 900px) {
  .ethical-trust-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ethical-trust-title {
    font-size: 32px;
  }

  .ethical-trust-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .ethical-trust-card img {
    max-width: 90px;
  }
}

@media (max-width: 600px) {
  .ethical-trust-title {
    font-size: 28px;
  }

  .ethical-trust-card h4 {
    font-size: 20px;
  }

  .ethical-trust-card p {
    font-size: 15px;
  }
}

/* ================= PREDICTABLE MONTHLY SUPPORT ================= */

.pricing-support-section {
  background: #ffffff;
}

/* Layout */
.pricing-support-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* LEFT PANEL */
.pricing-support-panel {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  min-height: 260px;
}

.pricing-support-panel h2 {
  color: #ffffff;
  font-size: 42px;
  line-height: 1.2;
}

/* RIGHT CONTENT */
.pricing-support-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-support-intro {
  font-size: 20px;
  color: var(--text-muted);
}

/* List */
.pricing-support-list {
  list-style: none;
  padding-left: 0;
}

.pricing-support-list li {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
}

.pricing-support-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue-700);
  font-weight: 700;
}

.pricing-support-list strong {
  color: var(--blue-700);
}

/* CTA */
.pricing-support-btn {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, #4fa3ff, #3b6cff);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(47,125,246,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-support-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(47,125,246,0.45);
}

@media (max-width: 900px) {
  .pricing-support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .pricing-support-panel {
    justify-content: center;
    padding: 40px;
  }

  .pricing-support-panel h2 {
    font-size: 32px;
  }

  .pricing-support-list {
    text-align: left;
    display: inline-block;
  }

  .pricing-support-intro {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .pricing-support-panel h2 {
    font-size: 28px;
  }

  .pricing-support-list li {
    font-size: 16px;
  }

  .pricing-support-btn {
    font-size: 14px;
    padding: 12px 22px;
  }
}

/* ================= COST SAVINGS ================= */

.cost-savings-section {
  background: linear-gradient(135deg, #eef2f8, #f6fbff);
}

/* Headings */
.cost-savings-title {
  font-size: 44px;
  color: var(--blue-700);
  margin-bottom: 18px;
}

.cost-savings-title span {
  color: #000;
}

.cost-savings-intro {
  font-size: 20px;
  color: #000;
  margin-bottom: 60px;
}

/* Grid */
.cost-savings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

/* Card */
.cost-savings-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.cost-savings-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 190px;
  margin-bottom: 24px;
}

.cost-savings-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Footer text */
.cost-savings-footer-title {
  font-size: 26px;
  color: var(--blue-700);
  margin-bottom: 14px;
}

.cost-savings-footer-text {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .cost-savings-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cost-savings-title {
    font-size: 32px;
  }

  .cost-savings-intro {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .cost-savings-card img {
    max-width: 160px;
  }

  .cost-savings-footer-title {
    font-size: 22px;
  }

  .cost-savings-footer-text {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .cost-savings-title {
    font-size: 28px;
  }

  .cost-savings-card p {
    font-size: 16px;
  }
}

/* ================= AFFORDABLE SCALE ================= */

.affordable-scale-section {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

/* Card wrapper */
.affordable-scale-card {
  background: #f6f9ff;
  border-radius: var(--radius-xl);
  padding: 60px;
}

/* Grid */
.affordable-scale-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT CONTENT */
.affordable-scale-title {
  font-size: 42px;
  color: var(--blue-700);
  margin-bottom: 20px;
}

.affordable-scale-intro {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}

.affordable-scale-intro span {
  background: linear-gradient(
    transparent 60%,
    rgba(79,163,255,0.5) 60%
  );
  font-weight: 600;
}

/* List */
.affordable-scale-list {
  list-style: disc;
  padding-left: 22px;
}

.affordable-scale-list li {
  font-size: 18px;
  line-height: var(--lh-body);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.affordable-scale-list strong {
  color: var(--blue-700);
}

/* RIGHT VISUAL */
.affordable-scale-visual {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
    background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  justify-content: center;
}

.affordable-scale-visual img {
  width: 100%;
  max-width: 420px;
  max-height: 300px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 900px) {
  .affordable-scale-card {
    padding: 36px;
  }

  .affordable-scale-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .affordable-scale-title {
    font-size: 32px;
  }

  .affordable-scale-intro {
    font-size: 18px;
  }

  .affordable-scale-list {
    text-align: left;
    display: inline-block;
  }

  .affordable-scale-visual img {
    max-width: 300px;
    max-height: 240px;
  }
}

@media (max-width: 600px) {
  .affordable-scale-title {
    font-size: 28px;
  }

  .affordable-scale-list li {
    font-size: 16px;
  }

  .affordable-scale-visual img {
    max-width: 250px;
    max-height: 220px;
  }
}

/* ================= AFFORDABLE CTA ================= */

.affordable-cta-section {
  background: #ffffff;
  padding: 0;
}

/* Layout */
.affordable-cta-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 70px;
  align-items: center;
}

/* Visual */
.affordable-cta-visual img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

/* Content */
.affordable-cta-title {
  font-size: 42px;
  color: var(--blue-700);
  margin-bottom: 16px;
}

.affordable-cta-text {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 26px;
  max-width: 520px;
}

/* Button */
.affordable-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4fa3ff, #3b6cff);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(47,125,246,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.affordable-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(47,125,246,0.45);
}

@media (max-width: 900px) {
  .affordable-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .affordable-cta-visual img {
    max-width: 220px;
    margin: 0 auto;
  }

  .affordable-cta-title {
    font-size: 32px;
  }

  .affordable-cta-text {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .affordable-cta-title {
    font-size: 28px;
  }

  .affordable-cta-text {
    font-size: 16px;
  }

  .affordable-cta-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
}

/* ================= LMS & SIS INTEGRATIONS ================= */

.integrations-lms-section {
  padding: 0;
  background: #ffffff;
}

.integrations-lms-card {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  border-radius: var(--radius-xl);
  padding: 60px;
}

/* Grid */
.integrations-lms-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* Content */
.integrations-lms-title {
  font-size: 40px;
  color: var(--blue-700);
  margin-bottom: 18px;
}

.integrations-lms-text {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* List */
.integrations-lms-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 28px;
}

.integrations-lms-list li {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

/* Note */
.integrations-lms-note {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-700);
  line-height: 1.4;
}

/* Visual */
.integrations-lms-visual {
  display: flex;
  justify-content: center;
}

.integrations-lms-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

@media (max-width: 900px) {
  .integrations-lms-card {
    padding: 36px;
  }

  .integrations-lms-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .integrations-lms-list {
    display: inline-block;
    text-align: left;
  }

  .integrations-lms-title {
    font-size: 30px;
  }

  .integrations-lms-text {
    font-size: 18px;
  }

  .integrations-lms-list li {
    font-size: 17px;
  }

  .integrations-lms-note {
    font-size: 18px;
  }

  .integrations-lms-visual img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .integrations-lms-title {
    font-size: 26px;
  }

  .integrations-lms-note {
    font-size: 16px;
  }

  .integrations-lms-visual img {
    max-width: 260px;
  }
}

/* ================= GOOGLE & MICROSOFT INTEGRATION ================= */

.integrations-suite-section {
  padding: 0;
  background: #ffffff;
}

.integrations-suite-card {
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  border-radius: var(--radius-xl);
  padding: 60px;
}

/* Grid */
.integrations-suite-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* Visual */
.integrations-suite-visual {
  display: flex;
  justify-content: center;
}

.integrations-suite-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Content */
.integrations-suite-title {
  font-size: 40px;
  color: var(--blue-700);
  margin-bottom: 16px;
}

.integrations-suite-intro {
  font-size: 22px;
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* List */
.integrations-suite-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 30px;
}

.integrations-suite-list li {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

/* Highlight */
.integrations-suite-highlight {
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-700);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .integrations-suite-card {
    padding: 36px;
  }

  .integrations-suite-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .integrations-suite-list {
    display: inline-block;
    text-align: left;
  }

  .integrations-suite-title {
    font-size: 30px;
  }

  .integrations-suite-intro {
    font-size: 18px;
  }

  .integrations-suite-list li {
    font-size: 17px;
  }

  .integrations-suite-highlight {
    font-size: 18px;
  }

  .integrations-suite-visual img {
    max-width: 320px;
  }
}

@media (max-width: 600px) {
  .integrations-suite-title {
    font-size: 26px;
  }

  .integrations-suite-highlight {
    font-size: 16px;
  }

  .integrations-suite-visual img {
    max-width: 260px;
  }
}
/* ================= CUSTOM WORKFLOWS ================= */

.workflows-section {
  padding: 0;
  color: #ffffff;
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
}

/* Headings */
.workflows-title {
  font-size: 42px;
  color: white;
  margin-bottom: 10px;
}

.workflows-subtitle {
  font-size: 22px;
  color: white;
  margin-bottom: 60px;
}

/* Cards grid */
.workflows-cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  
}

/* Blue band behind cards */
/* .workflows-cards::before {
  content: "";
  position: absolute;
  left: -100vw;
  right: -100vw;
  top: 35%;
  height: 120px;
  background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    );
  z-index: 0;
} */

/* Individual card */
.workflows-card {
  position: relative;
  background: #f1f4fb;
  border-radius: var(--radius-lg);
  padding: 36px 30px 40px;
  box-shadow: var(--shadow-soft);
  z-index: 1;
  text-align: center;
}

/* Image */
.workflows-card img {
  max-width: 160px;
  max-height: 180px;
  width: auto;
  height: auto;
  margin-bottom: 22px;
}

/* Text */
.workflows-card p {
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .workflows-title {
    font-size: 30px;
  }

  .workflows-subtitle {
    font-size: 18px;
  }

  .workflows-cards {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .workflows-cards::before {
    display: none; /* cleaner on mobile */
  }

  .workflows-card img {
    max-width: 140px;
  }

  .workflows-card p {
    font-size: 17px;
  }
}

@media (max-width: 600px) {
  .workflows-title {
    font-size: 26px;
  }

  .workflows-subtitle {
    font-size: 16px;
  }

  .workflows-card {
    padding: 28px 24px 32px;
  }
}

/* ================= EASY DEPLOY SECTION ================= */

.deploy-section {
  padding: 0;
  background: #ffffff;
}

/* Layout */
.deploy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT SLAB */
.deploy-slab {
  /* background:
    radial-gradient(circle at 30% 30%, #1e4fa3, #0b2a55),
    repeating-radial-gradient(
      circle at center,
      rgba(255,255,255,0.04) 0,
      rgba(255,255,255,0.04) 1px,
      transparent 1px,
      transparent 2px
    ); */
  background:url("../images/hero-bg.jpeg");
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Slab heading */
.deploy-slab h2 {
  color: #ffffff;
  font-size: 44px;
  line-height: 1.2;
}

/* RIGHT CONTENT */
.deploy-content ul {
  list-style: none;
  padding-left: 0;
}

.deploy-content li {
  font-size: 22px;
  line-height: var(--lh-body);
  color: var(--text-dark);
  margin-bottom: 18px;
}

.deploy-content strong {
  color: var(--blue-700);
  font-weight: 700;
}

@media (max-width: 900px) {
  .deploy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .deploy-slab {
    padding: 60px 40px;
  }

  .deploy-slab h2 {
    font-size: 32px;
  }

  .deploy-content {
    text-align: center;
  }

  .deploy-content li {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .deploy-slab {
    padding: 50px 28px;
  }

  .deploy-slab h2 {
    font-size: 26px;
  }

  .deploy-content li {
    font-size: 16px;
  }
}

/* ================= AI THAT FITS YOUR SCHOOL ================= */

.fit-section {
  /* padding: 0; */
  background: #ffffff;
}

/* Layout */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
  padding-top: 100px;
}

/* Illustration */
.fit-visual {
  display: flex;
  justify-content: center;
}

.fit-visual img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

/* Content */
.fit-content h2 {
  font-size: 44px;
  color: var(--blue-700);
  margin-bottom: 18px;
}

.fit-content p {
  font-size: 22px;
  line-height: var(--lh-body);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.fit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fit-checklist li {
  display: flex;
  align-items: flex-start; /* correct */
  gap: 18px;
}

/* ICON */
.fit-checklist li img {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: block;        /* removes inline baseline */
  margin-top: 8px;       /* optical alignment with first text line */
}

/* TEXT */
.fit-checklist li span {
  display: block;        /* KEY FIX */
  font-size: 28px;
  line-height: 1.45;
  color: #1A3688;
}

.fit-checklist li strong {
  font-weight: 700;
}

@media (max-width: 900px) {
  .fit-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    /* text-align: center; */
  }

  .fit-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .fit-visual img {
    max-width: 300px;
    /* align-self: center; */
  }

  .fit-content h2 {
    font-size: 32px;
  }

  .fit-content p {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .fit-content h2 {
    font-size: 26px;
  }

  .fit-content p {
    font-size: 16px;
  }

  .fit-visual img {
    max-width: 240px;
  }
}

@media (max-width: 900px) {
  .fit-checklist li span {
    font-size: 22px;
  }

  .fit-checklist li img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 600px) {
  .fit-checklist li span {
    font-size: 18px;
  }

  .fit-checklist {
    gap: 24px;
  }
  .fit-grid{
    padding: 20px;
  }
}

:root {
  --primary-color: #4F46E5; /* Indigo-600 */
  --primary-hover: #4338CA; /* Indigo-700 */
  --secondary-bg: #F3F4F6; /* Gray-100 */
  --text-dark: #111827; /* Gray-900 */
  --text-light: #6B7280; /* Gray-500 */
  --bg-light: #F9FAFB; /* Gray-50 */
  --border-color: #E5E7EB; /* Gray-200 */
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --radius: 0.5rem; /* 8px */
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  padding: 40px 20px;
}

.content-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.section-main {
  flex: 2;
}

.section-sidebar {
  flex: 1;
}

h1 {
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.subtitle {
  font-size: 1.125rem; /* 18px */
  color: var(--text-light);
  margin-bottom: 32px;
}

/* Button Styles */
button {
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: none;
  border-radius: var(--radius);
}

.btn-primary {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--secondary-bg);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.btn-secondary:hover {
  background-color: #E5E7EB;
}

/* Listing Grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.listing-card {
  background-color: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

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

.listing-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.listing-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  line-height: 1.4;
}

.listing-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.listing-card .description {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1rem;
  flex-grow: 1;
}

.listing-card .features {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.listing-card .features span {
  display: flex;
  align-items: center;
}

.listing-card .features .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: #9CA3AF; /* Gray-400 */
}

/* Sidebar styles */
.search-box, .featured-agents {
  background-color: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  margin-bottom: 32px;
}

.search-box h3, .featured-agents h3 {
  margin-bottom: 24px;
}

.search-box select {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: #fff;
  cursor: pointer;
}

.search-box select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-box .btn-primary {
  width: 100%;
}

.agent-list {
  list-style: none;
  padding: 0;
}

.agent-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.agent-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.agent-list li img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 16px;
  object-fit: cover;
}

.agent-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.agent-info p {
  margin: 4px 0 0;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 900px) {
  .content-container {
      flex-direction: column;
  }

  .section-sidebar {
      order: -1; /* Moves sidebar above main content on mobile */
  }
  
  .listing-grid {
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}


/* ================= TOP NAV ================= */
.top-nav {
  background: #122867;
  padding: 14px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  /* justify-content: space-between; */
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 40px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.brand-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.nav-links {
  display: flex;
  gap: 34px;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  position: relative;
  font-size: 18px;
  opacity: 1;
  font-weight: 600;
  font-family: 'Montserrat';
}

.nav-links a.active {
  opacity: 1;
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  /* 👈 GAP between text & underline */
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}

.nav-cta {
  background: linear-gradient(135deg, #2f7df6, #1e5fe0);
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-left: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(47, 125, 246, 0.35);
}


/* ================= NAV RESPONSIVE ================= */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 105px;
    left: 0;
    right: 0;
    background: #122867;
    flex-direction: column;
    gap: 22px;
    padding: 28px;
    display: none;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-cta {
    padding: 9px 18px;
    font-size: 13px;
    margin-left: 12px;
  }
}

@media (max-width: 768px) {
  .nav-cta {
    padding: 10px 16px;
    font-size: 13px;
    margin-left: 0;
    margin-top: 12px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
  .nav-cta {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .model-logos {
    justify-content: center;
  }
}

/* SECTION BACKGROUND */
.access-section {
  padding: 40px 24px;
  background: linear-gradient(
    90deg,
    #cfd9f2 0%,
    #e8f6ff 50%,
    #bfe9ff 100%
  );
}

/* WHITE CARD */
.access-wrapper {
  max-width: 1400px;
  margin: auto;
  background: linear-gradient(
    135deg,
    #f5f7fb 0%,
    #f8fdff 60%,
    #e9f6ff 100%
  );
  border-radius: 20px;
  padding: 80px 90px;
}

/* GRID */
.access-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 80px;
}

/* LEFT TEXT */
.access-text h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.access-item {
  margin-bottom: 28px;
}

.access-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.access-item p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.6;
}

/* RIGHT IMAGE */
.access-visual {
  display: flex;
  justify-content: center;
}

.access-visual img {
  max-width: 360px;
  width: 100%;
  height: auto;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .access-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .access-wrapper {
    padding: 60px 40px;
  }

  .access-visual {
    margin-top: 30px;
  }
}

@media (max-width: 600px) {
  .access-section {
    padding: 80px 16px;
  }

  .access-wrapper {
    padding: 40px 24px;
  }

  .access-text h2 {
    font-size: 32px;
  }

  .access-item h4 {
    font-size: 18px;
  }

  .access-item p {
    font-size: 16px;
  }
}


.site-footer {
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.06),
      transparent 40%),
    linear-gradient(180deg, #1e3a8a 0%, #0b1026 100%);
  padding: 60px 50px 60px;
  color: #ffffff;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
}

/* BRAND */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 80px;
}

.footer-brand img {
  height: 80px;
  display: flex;
  align-self: flex-start;
}

.footer-brand span {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.6px;
}

/* COLUMNS */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 80px;
  margin-bottom: 90px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
}

.footer-col a {
  display: block;
  font-size: 16px;
  color: white;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-col span {
  display: block;
  font-size: 16px;
  color: rgba(222, 222, 222, 0.85);
  text-decoration: none;
  margin-bottom: 16px;
}

/* COMING SOON */
.soon-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}


.soon-badge {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

/* LEGAL */
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-bottom a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
  }
}

@media (max-width: 600px) {
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
  }
}

/* @media (max-width: 600px) {
  h1 {
    font-size: 34px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  p {
    font-size: 16px !important;
  }
} */
@media (max-width: 600px) {
  .site-footer {
    padding: 80px 16px 50px;
  }

  .footer-col h4 {
    font-size: 16px;
  }

  .footer-col a {
    font-size: 15px;
  }

  .soon-wrap {
    flex-wrap: wrap;
  }
}

.scroll-nudge {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #e7f6ff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: #1E3565;
  z-index: 9999;
  cursor: pointer;
  animation: nudge 2.2s infinite;
}

.scroll-nudge-arrow {
  font-size: 18px;
}

@keyframes nudge {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}



.pricing-container {
  --font-main: 'Inter', sans-serif;
  --color-text-dark: #1e293b;
  --color-text-light: #475569;
  --color-primary-blue: #2563eb;
  --color-bg-basic: #ffffff;
  --color-bg-pro: #e0f2fe;
  --color-bg-elite-start: #3b82f6;
  --color-bg-elite-end: #1d4ed8;
  --border-radius: 24px;
  --spacer-lg: 2.5rem;

  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: var(--font-main);
  padding-top: 60px;
  
}

.pricing-container * {
  box-sizing: border-box;
}

.pricing-wrapper {
  display: flex;
  flex-direction: column; /* Mobile first: Stacked */
  background-color: transparent; /* Changed from white to allow gaps to show */
  gap: 1rem; /* Space between cards on mobile */
}

/* Base Card Styling */
.pricing-card {
  flex: 1;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius); /* Default radius for mobile */
}

/* --- Typography & Elements --- */
.pricing-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #172554;
}

.pricing-card .subtitle {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--color-text-light);
}

.pricing-card .includes {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.pricing-card .section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 0;
  color: var(--color-primary-blue);
}

.mt-large { margin-top: var(--spacer-lg) !important; }

/* --- Lists --- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%231e293b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.bold-item { font-weight: 700; }

/* --- Colors --- */
/* Basic */
.pricing-card.basic { background-color: var(--color-bg-basic); }
.pricing-card.basic h2 { color: #1e3a8a; }
.pricing-card.basic .section-title { color: #334155; }

/* Pro */
.pricing-card.pro { background-color: var(--color-bg-pro); }
.pricing-card.pro h2 { color: #1e3a8a; }
.pricing-card.pro .section-title { color: #2563eb; }
.pricing-card.pro .includes { color: #334155; }

/* Elite */
.pricing-card.elite {
  background: linear-gradient(135deg, var(--color-bg-elite-start), var(--color-bg-elite-end));
  color: white;
  /* Elite uses white checkmarks */
}
.pricing-card.elite h2, 
.pricing-card.elite .subtitle, 
.pricing-card.elite .includes, 
.pricing-card.elite .section-title, 
.pricing-card.elite .feature-list li { color: white; }
.pricing-card.elite .feature-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5' /%3E%3C/svg%3E");
}

.pricing-footer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 44px;
  font-weight: 400;
  font-style: italic;
  color: #1e3a8a;
  font-family: 'Merriweather Sans';
  margin-bottom: 2.5rem;
}

/* --- DESKTOP LAYOUT (Where the radius magic happens) --- */
@media (min-width: 900px) {
  .pricing-wrapper {
      flex-direction: row;
      gap: 0; /* Remove gap so they touch */
      border-radius: var(--border-radius);
      background-color: transparent; /* Restore background for Basic/container */
      /* To allow Elite/Pro to bulge out, we remove overflow:hidden on desktop */
      overflow: visible; 
  }

  /* Basic: Radius on left side only (default for first item in wrapper) */
  .pricing-card.basic {
      border-radius: 24px;
      border-right: 1px solid #f1f5f9;
      z-index: 1;
  }

  /* Pro: Radius on Left Side */
  .pricing-card.pro {
      border-radius: 24px; /* TL=24, TR=0, BR=0, BL=24 */
      
      /* Optional: Add a shadow to emphasize the overlap if desired */
      box-shadow: -10px 0 20px -10px rgba(0,0,0,0.1); 
      z-index: 2; /* Sit on top of Basic */
  }

  /* Elite: Radius on Both Sides */
  .pricing-card.elite {
      border-radius: 24px; /* All corners rounded */
      
      /* Optional: Add a shadow to emphasize it sits on top */
      box-shadow: -10px 0 30px -10px rgba(0,0,0,0.2);
      z-index: 3; /* Sit on top of Pro */
      
      /* Visual tweak: slightly larger or overlapping? */
      /* margin-left: -5px; Uncomment to tighten the overlap */
  }
}