/* ================================
   Classroom to Company — styles.css
   ================================ */

/* ---------- Root Theme ---------- */
:root {
  --accent: #F38375;   /* coral – primary */
  --sage:   #A7C4A0;   /* calm green – supportive */
  --ink:    #333333;   /* dark text */
  --bg:     #F8F4EC;   /* warm paper */
  --line:   #e5e7eb;   /* soft divider */
  --radius: 0.75rem;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* ---------- Global ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--ink);
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

a {
  color: var(--accent);
  transition: color 0.2s ease;
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--sage);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Nav ---------- */
.nav {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* aligns tagline + menu to the right */
  gap: 6px; /* small spacing between tagline and menu */
}

.brand-logo {
  width: 120px;
  height: auto;
}

.tag {
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #555;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  font-weight: 500;
  color: #444;
  font-size: 0.95rem;
}

.menu a:hover {
  color: #000; /* or your accent color */
}


.logo {
  font-size: 1.2rem;
}

.brand-text {
  font-family: "DM Sans", system-ui, sans-serif;
}


.accent {
  color: var(--accent);
}

.tag {
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #444;

  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 0px solid var(--line);
  box-shadow: 0 0px 0px rgba(0,0,0,0.04);
}


/* ---------- Section Base ---------- */
.section,
.section-alt {
  padding: 80px 0;
}

.section-alt {
  background: #fafafa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Headings ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: "DM Sans", sans-serif;
  letter-spacing: -0.5px;
  margin-top: 0;
}

h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 12px 0;
}

/* ---------- Body / Subheading Text ---------- */
.sub {
  font-size: 1.05rem;
  color: #333;
  max-width: 680px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.micro {
  font-size: 0.85rem;
  color: #666;
}

.fine {
  font-size: 0.8rem;
  color: #777;
}

.sub.center,
p.center,
.center.sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;

}

.sub {
  max-width: 720px; /* expand or reduce depending on taste */
}



/* ---------- Hero Base ---------- */
.hero {
  padding: 72px 0 56px 0;
}

/* Glow-up wrapper */
.hero-glow {
  background: linear-gradient(
    135deg,
    rgba(243, 131, 117, 0.12),
    rgba(167, 196, 160, 0.10)
  );
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Glow circles (subtle background shapes) */
.hero-glow::before,
.hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.hero-glow::before {
  width: 300px;
  height: 300px;
  background: rgba(243, 131, 117, 0.25);
  top: -80px;
  left: -60px;
}

.hero-glow::after {
  width: 340px;
  height: 340px;
  background: rgba(167, 196, 160, 0.25);
  bottom: -100px;
  right: -40px;
}

/* Hero grid */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.hero-kicker {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #666;
  margin: 0 0 8px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Hero image block */
.hero-image-wrap {
  display: flex;
  justify-content: center;
}

.hero-image-card {
  background: transparent;
  border-radius: 20px;
  padding: 0;
  transform: translateY(20px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.hero-image-card:hover {
  transform: translateY(8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.hero-image {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* ---------- Bullets ---------- */
.bullets,
ul {
  list-style: none;
  padding-left: 0;
  margin: 18px 0;
}

.bullets li,
ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}

.bullets li::before,
ul li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* ---------- Grid / Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.step {
  background: #fff;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.step-number {
  width: 38px;
  height: 38px;
  background: var(--accent);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ---------- Trust Box (hero side) ---------- */
.trust-box {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.trust-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.trust-note {
  font-size: 0.9rem;
  color: #444;
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-block;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn-primary:hover {
  background: #b02e28;
}

.btn-secondary {
  background: #fff;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
}

.btn-ghost:hover {
  text-decoration: underline;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

/* ---------- Forms / Messages ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
}

.form input,
.form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.msg {
  margin-top: 8px;
  font-size: 0.9rem;
}

.msg.ok {
  color: #166534; /* green */
}

.msg.err {
  color: #b91c1c; /* red */
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 18px 0;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.faq-item p {
  margin: 0 0 10px 0;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 18px 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer .links {
  display: flex;
  gap: 12px;
}

.footer a {
  color: #555;
}
.footer a:hover {
  color: var(--accent);
}

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

  .hero-image-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}



.center {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.pricing-card.highlight {
  border: 2px solid var(--accent);
  transform: scale(1.03);
  box-shadow: 0 22px 40px rgba(0,0,0,0.1);
}

.most-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

.price {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 4px 0;
  color: var(--ink);
}

.tagline {
  color: #666;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.pricing-features li {
  margin-bottom: 10px;
}

.full {
  width: 100%;
  text-align: center;
  display: block;
  margin-top: 18px;
}



.center {
  text-align: center;
}

/* make centered subheadings actually sit in the middle of the page */
.sub.center {
  margin-left: auto;
  margin-right: auto;
}


html {
  scroll-behavior: smooth;
}


#audit .audit-form {
  max-width: 500px;
  margin: 0 auto;        /* centers the form */
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

