/* ============================================
   AstroSynth AI — Shared Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --green:       #1D9E75;
  --green-light: #E1F5EE;
  --green-dark:  #0F6E56;
  --text-1:      #111111;
  --text-2:      #5f5f5f;
  --border:      rgba(0,0,0,0.11);
  --bg:          #ffffff;
  --bg2:         #f7f7f5;
  --r-md:        8px;
  --r-lg:        12px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --text-1: #efefef;
    --text-2: #999;
    --border: rgba(255,255,255,0.11);
    --bg:  #111;
    --bg2: #1a1a1a;
    --green-light: #0a2e21;
    --green-dark:  #5DCAA5;
  }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* --- Nav --- */
nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 2.5rem;
  border-bottom: 0.5px solid var(--border);
  position: sticky; top: 0; background: var(--bg); z-index: 100;
}
.logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 19px; letter-spacing: -0.5px;
  color: var(--text-1); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.logo svg { width: 24px; height: 24px; flex-shrink: 0; }
.logo span { color: var(--green); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 13px; color: var(--text-2); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text-1); }
.nav-links a.active { color: var(--green); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--text-1); }
.nav-cta {
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  padding: 8px 18px; background: var(--green); color: #fff;
  border: none; border-radius: var(--r-md); cursor: pointer;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: .88; }
.nav-links.open {
  display: flex !important; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--bg); border-bottom: 0.5px solid var(--border);
  padding: 1.5rem 2rem; gap: 1.25rem; z-index: 99;
}

/* --- Hero --- */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 6rem 2.5rem 4rem;
  background: var(--bg);
}
@media (prefers-color-scheme: dark) {
  .hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #111 50%, #0a2e21 100%);
  }
}
.hero-mark { margin-bottom: 1.5rem; }
.hero-mark svg {
  width: clamp(56px, 8vw, 80px);
  height: clamp(56px, 8vw, 80px);
}
.pill {
  display: inline-block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green-dark);
  background: var(--green-light); padding: 5px 16px;
  border-radius: 20px; margin-bottom: 1.75rem;
}
.hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08;
  letter-spacing: -1.2px; margin-bottom: 1.4rem;
  max-width: 800px;
}
.hero h1 em {
  font-style: italic; font-family: 'DM Sans', sans-serif;
  font-weight: 300; color: var(--green);
}
.hero p {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: var(--text-2); max-width: 540px; margin-bottom: 2.75rem;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* --- Buttons --- */
.btn-p {
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 13px 30px; background: var(--green); color: #fff;
  border: none; border-radius: var(--r-md); cursor: pointer;
  text-decoration: none; transition: opacity .2s;
  display: inline-block;
}
.btn-p:hover { opacity: .88; }
.btn-s {
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  padding: 13px 30px; background: transparent; color: var(--text-1);
  border: 0.5px solid var(--border); border-radius: var(--r-md);
  cursor: pointer; text-decoration: none; transition: background .2s;
  display: inline-block;
}
.btn-s:hover { background: var(--bg2); }
.btn-p-inv { background: #fff; color: var(--green-dark); }
.btn-p-inv:hover { opacity: .92; }
.btn-s-inv { border-color: rgba(255,255,255,0.3); color: #fff; }
.btn-s-inv:hover { background: rgba(255,255,255,0.1); }

/* --- Mission Band --- */
.mission-band {
  background: var(--green); padding: 1.75rem 2.5rem; text-align: center;
}
.mission-band p {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #fff; letter-spacing: -0.2px; line-height: 1.4;
}
.mission-band span {
  font-style: italic; font-family: 'DM Sans', sans-serif;
  font-weight: 300; opacity: .88;
}

/* --- Divider --- */
.divider { height: 0.5px; background: var(--border); margin: 0 2.5rem; }

/* --- Eyebrow --- */
.eyebrow {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 1rem;
}

/* --- Body Copy --- */
.body-copy {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--text-2); margin-bottom: 1.25rem;
}

/* --- Audience / Pain --- */
.audience { padding: 4.5rem 2.5rem; max-width: 980px; margin: 0 auto; }
.audience-intro {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem); line-height: 1.25;
  letter-spacing: -0.3px; margin-bottom: 2rem; max-width: 600px;
}
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px; background: var(--border);
  border: 0.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.pain-card { background: var(--bg); padding: 1.5rem 1.25rem; }
.pain-num {
  font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--green-light); margin-bottom: 10px; line-height: 1;
}
.pain-card h3 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 7px;
}
.pain-card p {
  font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65;
}

/* --- Solution --- */
.solution {
  padding: 4.5rem 2.5rem;
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.solution-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.solution h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem); line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 1rem;
}
.uvp-box {
  margin-top: 1.5rem; padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--green);
  background: var(--green-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.uvp-label {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 5px;
}
.uvp-box p {
  font-size: 14px; font-weight: 400; color: var(--green-dark); line-height: 1.6;
}
.services { display: flex; flex-direction: column; gap: 10px; }
.svc-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; background: var(--bg);
  border-radius: var(--r-md); border: 0.5px solid var(--border);
}
.svc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); margin-top: 6px; flex-shrink: 0;
}
.svc-row h4 {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-1); margin-bottom: 3px;
}
.svc-row p {
  font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.55;
}

/* --- Training --- */
.training {
  padding: 5rem 2.5rem;
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.training-inner { max-width: 980px; margin: 0 auto; }
.training-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start; margin-bottom: 3rem;
}
.training h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem); line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 1rem;
}
.training-band {
  background: var(--green); border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem; margin-top: 1rem;
}
.training-band p {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 15px; color: #fff; line-height: 1.5;
}
.training-band span {
  font-family: 'DM Sans', sans-serif; font-weight: 300;
  font-style: italic; opacity: .9;
}
.training-steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin-bottom: 2.5rem;
}
.step-card {
  background: var(--bg2); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem; position: relative;
}
.step-num {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.step-card h4 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 6px;
}
.step-card p {
  font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.6;
}
.step-arrow {
  position: absolute; top: 50%; right: -18px;
  transform: translateY(-50%);
  font-size: 18px; color: var(--green); font-weight: 700;
  display: none;
}
.training-programs {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin-bottom: 2rem;
}
.program-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem; overflow: hidden;
}
.program-tag {
  display: inline-block; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-dark);
  background: var(--green-light); padding: 3px 10px;
  border-radius: 20px; margin-bottom: 12px;
}
.program-card h4 {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--text-1); margin-bottom: 8px;
}
.program-card p {
  font-size: 13px; font-weight: 300; color: var(--text-2);
  line-height: 1.65; margin-bottom: 12px;
}
.program-outcomes { display: flex; flex-direction: column; gap: 6px; }
.outcome-row { display: flex; align-items: flex-start; gap: 8px; }
.outcome-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); margin-top: 7px; flex-shrink: 0;
}
.outcome-row span {
  font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.5;
}
.training-cta-row {
  display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
  padding: 1.5rem; background: var(--green-light);
  border-radius: var(--r-lg); border: 0.5px solid rgba(29,158,117,0.2);
}
.training-cta-row p {
  font-size: 14px; font-weight: 400; color: var(--green-dark);
  flex: 1; min-width: 200px; line-height: 1.6;
}

/* --- Why Us --- */
.why { padding: 4.5rem 2.5rem; max-width: 980px; margin: 0 auto; }
.why h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem); line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 2rem;
}
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
}
.why-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem;
}
.why-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 13px; color: var(--green);
}
.why-icon svg { width: 16px; height: 16px; }
.why-card h3 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 7px;
}
.why-card p {
  font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65;
}

/* --- Brand Feel --- */
.brand-feel {
  padding: 4rem 2.5rem;
  background: var(--bg2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.brand-feel-inner { max-width: 980px; margin: 0 auto; }
.brand-feel h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem); letter-spacing: -0.5px;
  margin-bottom: 2rem;
}
.brand-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px;
}
.brand-card {
  background: var(--bg); border: 0.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.4rem;
}
.brand-tag {
  display: inline-block; font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green-dark);
  background: var(--green-light); padding: 3px 10px;
  border-radius: 20px; margin-bottom: 10px;
}
.brand-card h3 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 6px;
}
.brand-card p {
  font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.6;
}

/* --- Testimonials (hidden) --- */
.testimonials {
  display: none; padding: 4rem 2.5rem; max-width: 980px; margin: 0 auto;
}
.testimonials h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3.5vw, 1.9rem); letter-spacing: -.6px;
  margin-bottom: 2rem; text-align: center;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  padding: 2rem; border: 0.5px solid var(--border); border-radius: var(--r-lg);
}
.testimonial-card blockquote {
  font-size: 14px; font-weight: 300; color: var(--text-2);
  line-height: 1.7; font-style: italic; margin-bottom: 1.25rem;
}
.testimonial-card .tc-name {
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px;
}
.testimonial-card .tc-role { font-size: 12px; color: var(--text-2); }

/* --- About --- */
.about { padding: 5rem 2.5rem; max-width: 980px; margin: 0 auto; }
.about-inner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 4rem; align-items: start;
}
.about-left { display: flex; flex-direction: column; gap: 1.5rem; }
.about-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 36px; color: #fff; flex-shrink: 0;
}
.about-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.4rem; letter-spacing: -0.3px; line-height: 1.2;
  margin-bottom: 4px;
}
.about-title {
  font-size: 13px; font-weight: 300; color: var(--green);
  margin-bottom: 1rem; line-height: 1.5;
}
.about-creds { display: flex; flex-direction: column; gap: 8px; }
.about-cred {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  background: var(--bg2); border-radius: var(--r-md);
  border: 0.5px solid var(--border);
}
.about-cred-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); margin-top: 6px; flex-shrink: 0;
}
.about-cred p {
  font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.5;
}
.about-cred strong { font-weight: 400; color: var(--text-1); }
.about-right h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 1.8rem); line-height: 1.15;
  letter-spacing: -0.5px; margin-bottom: 1.25rem;
}
.about-right p {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: var(--text-2); margin-bottom: 1.1rem;
}
.about-skills {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem;
}
.skill-tag {
  font-size: 12px; font-weight: 400; color: var(--green-dark);
  background: var(--green-light); padding: 6px 14px;
  border-radius: 20px;
}
.about-exp { margin-top: 2rem; display: flex; flex-direction: column; gap: 12px; }
.exp-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; background: var(--bg);
  border-radius: var(--r-md); border: 0.5px solid var(--border);
}
.exp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); margin-top: 6px; flex-shrink: 0;
}
.exp-row h4 {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-1); margin-bottom: 2px;
}
.exp-row p {
  font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.5;
}

/* --- CTA Band --- */
.cta-band {
  padding: 5rem 2.5rem;
  background: var(--green);
  text-align: center;
}
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem); line-height: 1.15;
  letter-spacing: -0.7px; color: #fff; margin-bottom: 1rem;
}
.cta-band p {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.85);
  line-height: 1.8; margin-bottom: 2rem;
}

/* --- Contact Form --- */
.contact-form { width: 100%; max-width: 420px; margin: 0 auto; text-align: left; }
.contact-form input, .contact-form textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 14px;
  padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--r-md);
  background: var(--bg); color: var(--text-1); outline: none; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form label {
  font-size: 12px; color: var(--text-2); display: block;
  margin-bottom: 4px; margin-top: 1rem;
}
.contact-form label:first-child { margin-top: 0; }
.contact-form button {
  margin-top: 1.25rem; width: 100%; padding: 12px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
  background: var(--green); color: #fff; border: none; border-radius: var(--r-md);
  cursor: pointer; transition: opacity .2s;
}
.contact-form button:hover { opacity: .88; }
.form-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 2rem 0; width: 100%; max-width: 420px;
}
.form-divider::before, .form-divider::after {
  content: ''; flex: 1; height: 0.5px; background: var(--border);
}
.form-divider span { font-size: 12px; color: var(--text-2); white-space: nowrap; }

/* --- Contact Page --- */
.contact-hero {
  padding: 4rem 2.5rem 1.5rem;
  max-width: 980px; margin: 0 auto; text-align: center;
}
.contact-hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -1px;
  margin-bottom: 1rem;
}
.contact-hero p {
  font-size: 16px; font-weight: 300; color: var(--text-2);
  line-height: 1.7; max-width: 520px; margin: 0 auto;
}
.contact-main {
  padding: 2.5rem 2.5rem 4rem;
  max-width: 980px; margin: 0 auto;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.contact-form-col .contact-form { max-width: none; }
.contact-col-heading {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.2rem; letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}
.contact-col-sub {
  font-size: 14px; font-weight: 300; color: var(--text-2);
  margin-bottom: 1.5rem; line-height: 1.6;
}
.contact-email {
  margin-top: 1.5rem; font-size: 13px; color: var(--text-2);
}
.contact-email a { color: var(--green); text-decoration: none; }
.contact-email a:hover { text-decoration: underline; }
.calendly-container {
  border-radius: var(--r-lg); overflow: hidden;
  border: 0.5px solid var(--border);
  background: var(--bg2);
}

/* --- FAQ --- */
.contact-faq {
  padding: 3rem 2.5rem 4rem;
  max-width: 980px; margin: 0 auto;
  border-top: 0.5px solid var(--border);
}
.contact-faq h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.4rem; letter-spacing: -0.3px;
  margin-bottom: 2rem;
}
.faq-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.faq-card {
  padding: 1.4rem;
  background: var(--bg2); border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
}
.faq-card h3 {
  font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--text-1); margin-bottom: 8px;
}
.faq-card p {
  font-size: 13px; font-weight: 300; color: var(--text-2); line-height: 1.65;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Footer --- */
footer {
  padding: 1.5rem 2.5rem;
  border-top: 0.5px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
footer p { font-size: 12px; color: var(--text-2); }
.footer-badge {
  font-size: 11px; color: var(--green-dark);
  background: var(--green-light); padding: 4px 14px; border-radius: 20px;
  text-decoration: none; transition: opacity .2s;
}
.footer-badge:hover { opacity: .8; }
.footer-whisper {
  font-size: 10px; color: var(--text-2); opacity: 0.4;
  letter-spacing: 0.5px;
}

/* --- Responsive --- */
@media (max-width: 720px) {
  nav { padding: 1rem 1.25rem; position: relative; }
  .nav-toggle { display: block; }
  .nav-links { display: none; }
  .hero { min-height: 80vh; padding: 4rem 1.25rem 3rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .audience, .why { padding: 3rem 1.25rem; }
  .solution { padding: 3rem 1.25rem; }
  .solution-inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-feel { padding: 3rem 1.25rem; }
  .about { padding: 3rem 1.25rem; }
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-left { flex-direction: row; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .about-avatar { width: 80px; height: 80px; font-size: 26px; }
  .training { padding: 3rem 1.25rem; }
  .training-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-band { padding: 3.5rem 1.25rem; }
  .contact-hero { padding: 3rem 1.25rem 1rem; }
  .contact-main { padding: 1.5rem 1.25rem 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-faq { padding: 2rem 1.25rem 3rem; }
}
