:root {
  --forest: #263c88;
  --forest-2: #1b2c66;
  --cream: #fff8ef;
  --paper: #ffffff;
  --coral: #c21f30;
  --apricot: #fef200;
  --yellow: #fef200;
  --mint: #dff7f7;
  --ink: #0d1b3e;
  --muted: #56617e;
  --line: #e3e7f1;
  --white: #fff;
  --teal: #2bb3b3;
  --shadow: 0 18px 50px rgba(38, 60, 136, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }
h1, h2, h3, h4 {
  margin: 0 0 .7em;
  font-family: "Poppins", "Manrope", sans-serif;
  line-height: 1.14;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(2.55rem, 8vw, 5.6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.7rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--white);
}
.skip-link:focus { top: 1rem; }
.announcement {
  padding: .45rem 1rem;
  color: var(--white);
  background: var(--forest);
  font-size: .75rem;
  text-align: center;
}
.announcement span { color: var(--yellow); padding: 0 .35rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,61,52,.08);
}
.nav-wrap {
  min-height: 88px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 92px; height: 72px; object-fit: contain; object-position: left center; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 0;
  border-radius: 13px;
  background: var(--cream);
}
.menu-toggle span { width: 21px; height: 2px; background: var(--forest); }
.main-nav {
  position: fixed;
  inset: 103px 0 auto;
  max-height: calc(100vh - 103px);
  padding: 1.2rem;
  display: none;
  overflow: auto;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.main-nav.open { display: grid; }
.main-nav a { padding: .72rem .4rem; font-weight: 600; }
.main-nav a.active { color: var(--coral); }
.main-nav .nav-cta {
  margin-top: .5rem;
  padding: .8rem 1rem;
  color: var(--white);
  background: var(--coral);
  border-radius: 12px;
  text-align: center;
}

.section, .page-hero { padding: 4.5rem 1rem; }
.section-inner, .hero-inner, .footer-grid, .footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.hero {
  position: relative;
  min-height: 690px;
  padding: 4.5rem 1rem 3rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero::before { width: 360px; height: 360px; right: -190px; top: 10%; background: rgba(43,179,179,.2); }
.hero::after { width: 210px; height: 210px; left: -140px; bottom: 4%; background: var(--yellow); }
.hero-inner { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.2rem;
  color: var(--forest-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--coral); border-radius: 3px; }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-copy > p { max-width: 650px; color: var(--muted); font-size: 1.1rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.7rem; }
.button {
  min-height: 50px;
  padding: .8rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(20,61,52,.15); }
.button-primary { color: var(--white); background: var(--forest); }
.button-secondary { color: var(--forest); background: var(--white); border: 1px solid var(--line); }
.button-coral { color: var(--white); background: var(--coral); }
.button-whatsapp { color: var(--white); background: #168b62; }
.hero-visual {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}
.hero-photo {
  width: min(520px, 100%);
  height: 390px;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 42px 42px 42px 14px;
  box-shadow: var(--shadow);
}
.float-note {
  position: absolute;
  padding: .85rem 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-weight: 700;
  transform: rotate(-5deg);
}
.float-note.one { left: 0; top: 10px; }
.float-note.two { right: 0; bottom: 12px; background: var(--yellow); }

.section-head { margin-bottom: 2.2rem; }
.section-head p { max-width: 650px; color: var(--muted); font-size: 1.05rem; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.grid { display: grid; gap: 1rem; }
.card {
  padding: 1.55rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(20,61,52,.06);
}
.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--mint);
  border-radius: 15px;
  font-weight: 800;
}
.card p { color: var(--muted); }
.card-link { color: var(--forest-2); font-weight: 800; }
.tinted { background: var(--cream); }
.dark { color: var(--white); background: var(--forest); }
.dark .section-head p, .dark .card p { color: #c9ddd7; }
.dark .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.program-card { position: relative; overflow: hidden; }
.program-image {
  width: calc(100% + 3.1rem);
  height: 185px;
  margin: -1.55rem -1.55rem 1.25rem;
  object-fit: cover;
}
.program-card::after {
  content: attr(data-number);
  position: absolute;
  right: .7rem;
  top: -.9rem;
  color: rgba(20,61,52,.05);
  font: 800 6rem "Manrope", sans-serif;
}
.program-card .meta { display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pill {
  padding: .3rem .65rem;
  color: var(--forest);
  background: var(--cream);
  border-radius: 99px;
  font-size: .78rem;
  font-weight: 700;
}
.program-actions { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.2rem; }
.program-actions .button { min-height: 44px; padding: .65rem .85rem; font-size: .88rem; }
.split { display: grid; gap: 2rem; align-items: center; }
.feature-list { padding: 0; margin: 1.4rem 0; display: grid; gap: .7rem; list-style: none; }
.feature-list li { position: relative; padding-left: 1.75rem; }
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 900;
}
.device {
  width: min(320px, 84vw);
  margin: auto;
  padding: .65rem;
  background: #101a3d;
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.device-screen {
  min-height: 470px;
  padding: 1.4rem;
  background: linear-gradient(160deg, #fffaf0, #d7eee7);
  border-radius: 30px;
}
.real-device {
  width: min(390px, 80vw);
  max-height: 610px;
  margin: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(13,27,62,.25));
}
.content-image {
  width: 100%;
  max-height: 520px;
  margin-bottom: 2rem;
  object-fit: cover;
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--shadow);
}
.content-image.poster { object-fit: contain; background: var(--cream); }
.media-frame { position: relative; }
.media-frame::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -14px;
  bottom: 10px;
  z-index: -1;
  background: var(--yellow);
  border-radius: 50%;
}
.lms-preview {
  padding: .7rem;
  color: #16214c;
  background: #edf0fa;
  border: 3px solid #16214c;
  border-radius: 22px;
  box-shadow: 7px 7px 0 #16214c;
  font-family: "Poppins", sans-serif;
}
.lms-browser {
  padding: .55rem .7rem;
  display: flex;
  align-items: center;
  gap: .35rem;
  color: #5c6488;
  background: #fff;
  border: 2px solid #16214c;
  border-radius: 12px;
  font-size: .58rem;
}
.lms-browser span { width: 8px; height: 8px; border-radius: 50%; background: #ba1d2a; }
.lms-browser span:nth-child(2) { background: #ffd60a; }
.lms-browser span:nth-child(3) { background: #2c40a0; }
.lms-browser b { margin-left: .3rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lms-top { margin-top: .65rem; display: grid; grid-template-columns: 1fr 90px; gap: .55rem; }
.lms-welcome, .lms-level, .lms-stats > div, .lms-bottom > div {
  padding: .8rem;
  background: #fff;
  border: 2px solid #16214c;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #16214c;
}
.lms-welcome small {
  width: fit-content;
  padding: .15rem .45rem;
  display: block;
  background: #ffd60a;
  border: 1.5px solid #16214c;
  border-radius: 99px;
  font-size: .52rem;
  font-weight: 800;
}
.lms-welcome strong, .lms-welcome span, .lms-level b, .lms-level span { display: block; }
.lms-welcome strong { margin-top: .35rem; font-size: 1.25rem; }
.lms-welcome span { color: #5c6488; font-size: .62rem; }
.lms-level { display: grid; place-content: center; text-align: center; background: #cad3f3; }
.lms-level b { font-size: 1.25rem; }
.lms-level span { font-size: .56rem; font-weight: 700; }
.lms-stats { margin-top: .55rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; }
.lms-stats > div { padding: .55rem; }
.lms-stats i, .lms-stats b, .lms-stats span { display: block; }
.lms-stats i { font-style: normal; }
.lms-stats b { font-size: 1rem; }
.lms-stats span { color: #5c6488; font-size: .5rem; font-weight: 700; }
.lms-quest {
  margin-top: .55rem;
  padding: .7rem;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: .55rem;
  align-items: center;
  color: #fff;
  background: #2c40a0;
  border: 2px solid #16214c;
  border-radius: 14px;
  box-shadow: 3px 3px 0 #16214c;
}
.lms-quest > i { font-style: normal; font-size: 1.2rem; }
.lms-quest small, .lms-quest strong, .lms-quest span { display: block; }
.lms-quest small { color: #ffd60a; font-size: .48rem; font-weight: 800; }
.lms-quest strong { font-size: .72rem; }
.lms-quest span { font-size: .52rem; opacity: .8; }
.lms-quest > b { padding: .4rem .55rem; color: #16214c; background: #ffd60a; border: 2px solid #16214c; border-radius: 9px; font-size: .58rem; }
.lms-bottom { margin-top: .55rem; display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.lms-bottom strong, .lms-bottom span { display: block; }
.lms-bottom strong { font-size: .65rem; }
.lms-bottom span { margin-top: .25rem; color: #5c6488; font-size: .5rem; }
.device-screen .app-top { display: flex; justify-content: space-between; font-weight: 800; }
.progress-ring {
  width: 150px;
  height: 150px;
  margin: 2rem auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 78%, var(--white) 0);
}
.progress-ring span {
  width: 115px;
  height: 115px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border-radius: 50%;
  font: 800 2rem "Manrope", sans-serif;
}
.mini-task { margin-top: .7rem; padding: .8rem; background: rgba(255,255,255,.72); border-radius: 13px; font-weight: 700; }
.cta-band { padding: 2rem; text-align: center; border-radius: 30px; background: var(--yellow); }
.cta-band p { max-width: 620px; margin-inline: auto; }

.page-hero { padding-top: 4rem; background: var(--cream); }
.page-hero .hero-inner { display: block; }
.page-hero-grid { display: grid !important; gap: 2rem; align-items: center; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.5rem, 7vw, 4.9rem); }
.page-hero p { max-width: 690px; color: var(--muted); font-size: 1.08rem; }
.page-hero-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 7px solid var(--white);
  border-radius: 28px 28px 28px 8px;
  box-shadow: var(--shadow);
}
.page-hero-image[src*="stock-summer"] { object-position: center 45%; }
.page-hero-image[src*="stock-playgroup"] { object-position: center 38%; }
.page-hero-image[src*="stock-kids-course"] { object-position: center 48%; }
.page-hero-image[src*="stock-private"] { object-position: center 58%; }
.stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}
.stat { padding: 1rem; background: var(--white); border-radius: 16px; border: 1px solid var(--line); }
.stat strong { display: block; font: 800 1.15rem "Manrope", sans-serif; }
.stat span { color: var(--muted); font-size: .8rem; }
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.schedule div { padding: 1rem .5rem; background: var(--cream); border-radius: 14px; text-align: center; }
.schedule strong, .schedule span { display: block; }
.schedule span { color: var(--muted); font-size: .8rem; }
.detail-panel { padding: 1.5rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }

.lead-form {
  padding: 1.3rem;
  margin-bottom: 4.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.lead-form h2 { font-size: 1.75rem; }
.form-grid { display: grid; gap: .9rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: .84rem; font-weight: 700; }
.field input, .field select {
  width: 100%;
  min-height: 51px;
  padding: .75rem .9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #cddbd5;
  border-radius: 12px;
  outline: none;
}
.field input:focus, .field select:focus { border-color: var(--forest-2); box-shadow: 0 0 0 3px rgba(32,89,77,.11); }
.form-note { color: var(--muted); font-size: .75rem; }
.form-message { min-height: 24px; margin-top: .8rem; font-weight: 700; }
.form-message.success { color: #13704f; }
.form-message.error { color: #a6362f; }

.faq-section { background: var(--cream); }
.faq-inner { max-width: 900px; }
.faq-list { display: grid; gap: .75rem; }
.faq-item { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 8px 24px rgba(38,60,136,.05); }
.faq-question { width: 100%; padding: 1.15rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink); background: transparent; border: 0; text-align: left; font-weight: 800; cursor: pointer; }
.faq-question b { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; color: var(--forest); background: var(--mint); border-radius: 10px; font-size: 1.25rem; transition: transform .2s, background .2s; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer p { min-height: 0; overflow: hidden; margin: 0; padding: 0 1.3rem; color: var(--muted); }
.faq-item.open { border-color: rgba(38,60,136,.35); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 1.25rem; }
.faq-item.open .faq-question b { color: var(--white); background: var(--forest); transform: rotate(45deg); }
.faq-help { margin-top: 2rem; padding: 1.5rem; text-align: center; background: var(--white); border-radius: var(--radius); }
.faq-help .actions { justify-content: center; margin-top: .8rem; }

.blog-section { background: var(--cream); }
.blog-status, .blog-empty { grid-column: 1 / -1; padding: 3rem; color: var(--muted); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.blog-grid { display: grid; gap: 1.25rem; }
.blog-card { overflow: hidden; display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 34px rgba(38,60,136,.08); transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-image { height: 220px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--forest); font-weight: 800; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-body { padding: 1.35rem; display: flex; flex: 1; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; justify-content: space-between; gap: .7rem; color: var(--muted); font-size: .72rem; }
.blog-card-meta span { padding: .28rem .6rem; color: var(--forest); background: var(--mint); border-radius: 99px; font-weight: 800; }
.blog-card-body h2 { margin: 1rem 0 .65rem; font-size: 1.35rem; }
.blog-card-body p { flex: 1; color: var(--muted); }
.blog-read-link { margin-top: .8rem; color: var(--coral); font-weight: 800; }

.blog-detail-section { padding-top: 4rem; background: var(--cream); }
.blog-back { display: inline-flex; margin-bottom: 1.5rem; color: var(--coral); font-weight: 800; }
.blog-article-header { max-width: 880px; margin-bottom: 2.2rem; }
.blog-article-header h1 { margin: 1rem 0; font-size: clamp(2.35rem,6vw,4.9rem); }
.blog-article-header > p { color: var(--muted); font-size: 1.08rem; }
.blog-detail-layout { display: grid; gap: 2rem; align-items: start; }
.blog-article { min-width: 0; padding: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 36px rgba(38,60,136,.07); }
.blog-article-image { width: 100%; max-height: 520px; margin-bottom: 2rem; object-fit: cover; border-radius: 18px; }
.blog-article-content { color: #273754; font-size: 1.02rem; line-height: 1.85; overflow-wrap: anywhere; }
.blog-article-content p, .blog-article-content ul, .blog-article-content ol, .blog-article-content blockquote { margin: 0 0 1.25rem; }
.blog-article-content h2, .blog-article-content h3, .blog-article-content h4 { margin-top: 2rem; color: var(--forest); }
.blog-article-content ul, .blog-article-content ol { padding-left: 1.4rem; }
.blog-article-content blockquote { padding: 1rem 1.2rem; color: var(--forest); background: var(--mint); border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; }
.blog-sidebar { display: grid; gap: .75rem; padding: 1.2rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.blog-sidebar h2 { font-size: 1.35rem; }
.blog-sidebar > a { padding: .9rem 0; display: grid; gap: .3rem; border-bottom: 1px solid var(--line); }
.blog-sidebar > a span { color: var(--coral); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.blog-sidebar > a strong { line-height: 1.35; }
.blog-sidebar-cta { margin-top: .6rem; padding: 1rem; display: grid; gap: .9rem; background: var(--yellow); border-radius: 16px; }
.blog-sidebar-cta .button { min-height: 44px; }

.site-footer { padding: 4rem 1rem 6.5rem; color: #e6e9f5; background: #121f4a; }
.footer-grid { display: grid; gap: 2rem; }
.footer-grid > div:first-child p { max-width: 380px; margin-top: 1.2rem; }
.brand-light { padding: .5rem; background: var(--white); border-radius: 16px; }
.brand-light img { width: 125px; height: 90px; }
.footer-grid h3 { color: var(--white); margin-bottom: .7rem; }
.footer-grid a:not(.brand):not(.button) { display: block; padding: .25rem 0; color: #bed4cd; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.mobile-actions {
  position: fixed;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: .5rem;
  padding: .45rem;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow);
}
.mobile-actions a { padding: .75rem .5rem; border-radius: 12px; text-align: center; font-weight: 800; }
.mobile-actions .whatsapp { color: var(--white); background: #168b62; }
.mobile-actions .trial { color: var(--white); background: var(--coral); }

@media (min-width: 680px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .form-grid.two { grid-template-columns: repeat(2, 1fr); }
  .lead-form { padding: 2rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 980px) {
  .announcement { font-size: .82rem; }
  .nav-wrap { width: min(1320px, 100%); margin: auto; padding-inline: 1.5rem; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    padding: 0;
    display: flex;
    align-items: center;
    gap: .15rem;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .main-nav a { padding: .55rem .45rem; font-size: .75rem; white-space: nowrap; }
  .brand img { width: 112px; height: 76px; }
  .main-nav .nav-cta { margin: 0 0 0 .3rem; padding: .68rem .85rem; }
  .hero { min-height: 720px; padding-block: 5.5rem; }
  .hero-inner { grid-template-columns: 1.15fr .85fr; align-items: center; }
  .section, .page-hero { padding: 6.5rem 1.5rem; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: repeat(2, 1fr); gap: 5rem; }
  .page-hero-grid { grid-template-columns: 1.15fr .85fr; }
  .page-hero-copy { grid-column: 1; grid-row: 1; }
  .page-hero-image { height: 420px; grid-column: 2; grid-row: 1 / span 2; }
  .page-hero-grid > .stats { grid-column: 1; grid-row: 2; }
  .split.reverse > :first-child { order: 2; }
  .footer-grid { grid-template-columns: 1.7fr 1fr 1fr 1.2fr; }
  .mobile-actions { display: none; }
  .lead-form { margin-bottom: 0; }
  .site-footer { padding-bottom: 3rem; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-detail-layout { grid-template-columns: minmax(0, 1fr) 320px; }
  .blog-sidebar { position: sticky; top: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
