/* ════════════════════════════════════════════════
   BRAVART STUDIO — exam-lab.css
════════════════════════════════════════════════ */

/* ── HERO ── */
.el-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 57px);
  background: var(--ink);
}
.el-hero-l {
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.el-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin: 1.5rem 0 2rem;
}
.el-hero-title em { font-style: italic; color: var(--s2); }
.el-hero-sub {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  max-width: 440px;
  margin-bottom: 2.5rem;
}
.el-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.el-hero-creds {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  margin-top: 1rem;
}
.el-cred { text-align: left; padding: 0 1rem 0 0; }
.el-cred-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--s2);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.el-cred-label {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(248,243,235,0.35);
  line-height: 1.4;
  font-weight: 300;
}
.el-hero-r {
  display: flex;
  flex-direction: column;
  background: var(--ink2);
}
.el-hero-artwork {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.el-hero-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.4s;
}
.el-hero-artwork:hover img { opacity: 0.9; }
.el-hero-artwork-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(14,12,10,0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.el-hw-tag {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--s2);
}
.el-hw-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--cream);
  font-weight: 400;
}
.el-hero-quote {
  padding: 2rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.el-hq-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--s2);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 0.5rem;
}
.el-hq-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(248,243,235,0.65);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.el-hq-attr {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--s2);
}

/* ── GUARANTEE ── */
.el-guarantee {
  background: var(--ink2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.el-guarantee-inner {
  display: grid;
  grid-template-columns: auto 1px 1fr 1px auto;
  align-items: center;
  min-height: 200px;
}
.el-g-stat {
  padding: 3.5rem 4rem;
  text-align: center;
}
.el-g-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--s2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.el-g-num span { font-size: 2.2rem; color: var(--sienna); font-weight: 400; }
.el-g-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.35);
  margin-top: 0.6rem;
  max-width: 160px;
  line-height: 1.5;
}
.el-g-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.07);
}
.el-g-statement {
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.el-g-statement p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(248,243,235,0.55);
  line-height: 1.5;
}
.el-g-statement em { font-style: italic; color: var(--s2); }
.el-g-statement p:last-child {
  font-size: 1rem;
  color: rgba(248,243,235,0.3);
}
.el-g-boards {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.el-board {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.el-board:last-child { border-bottom: none; padding-bottom: 0; }
.el-board-name {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.35);
  margin-bottom: 0.2rem;
}
.el-board-code {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--s2);
  font-weight: 400;
}

/* ── METHOD ── */
.el-method {
  background: var(--cream2);
  padding: 6rem 3.5rem;
}
.el-method-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}
.el-method-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
}
.el-method-title em { font-style: italic; color: var(--sienna); }
.el-method-sub {
  font-size: 0.95rem;
  color: var(--muted2);
  line-height: 1.9;
  font-weight: 300;
  max-width: 520px;
}
.el-method-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: white;
  border: 1px solid var(--cream3);
  padding: 1.2rem 1.5rem;
  max-width: 280px;
  align-self: end;
}
.el-mn-icon { font-size: 1.2rem; flex-shrink: 0; }
.el-mn-text {
  font-size: 0.78rem;
  color: var(--muted2);
  line-height: 1.6;
  font-weight: 300;
}
.el-ao-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: var(--cream3);
}
.el-ao-card {
  background: white;
  display: flex;
  flex-direction: column;
  transition: background var(--transition);
}
.el-ao-card:hover { background: #fdf9f4; }
.el-ao-accent { background: var(--ink); }
.el-ao-accent:hover { background: var(--ink2); }
.el-ao-accent .el-ao-name { color: var(--cream); }
.el-ao-accent .el-ao-body p { color: rgba(248,243,235,0.6); }
.el-ao-accent .el-ao-skills span { background: rgba(255,255,255,0.08); color: rgba(248,243,235,0.55); }
.el-ao-accent .el-ao-footer { border-top-color: rgba(255,255,255,0.08); }
.el-ao-accent .el-ao-weight { color: var(--s2); }
.el-ao-header {
  padding: 2rem 1.8rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.el-ao-accent .el-ao-header { border-bottom-color: rgba(255,255,255,0.08); }
.el-ao-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--sienna);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.el-ao-accent .el-ao-num { color: var(--s2); opacity: 0.6; }
.el-ao-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
}
.el-ao-body {
  padding: 1.5rem 1.8rem;
  flex: 1;
}
.el-ao-body p {
  font-size: 0.85rem;
  color: #5a4a3a;
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.2rem;
}
.el-ao-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.el-ao-skills span {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.06);
  color: #7a6a58;
  padding: 0.22rem 0.6rem;
}
.el-ao-footer {
  padding: 1rem 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.el-ao-weight {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sienna);
  font-weight: 500;
}

/* ── RESULTS ── */
.el-results {
  background: var(--ink);
  padding: 6rem 3.5rem;
}
.el-results-head { margin-bottom: 3.5rem; }
.el-results-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-top: 0.8rem;
}
.el-results-title em { font-style: italic; color: var(--s2); }
.el-results-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 2px;
}
.el-result {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--ink2);
  transition: background var(--transition);
}
.el-result:hover { background: #1e1812; }
.el-result-alt { background: var(--ink3); }
.el-result-alt:hover { background: #2a2016; }
.el-result-artwork {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.el-result-artwork img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.el-result:hover .el-result-artwork img { opacity: 0.95; transform: scale(1.03); }
.el-result-info {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
}
.el-result-grade {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.el-rg-before {
  font-size: 0.75rem;
  color: rgba(248,243,235,0.35);
  letter-spacing: 0.06em;
}
.el-rg-arrow { color: var(--s2); font-size: 1.2rem; }
.el-rg-after {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--s2);
  font-weight: 400;
}
.el-result-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 400;
}
.el-result-story {
  font-size: 0.9rem;
  color: rgba(248,243,235,0.5);
  line-height: 1.85;
  font-weight: 300;
  max-width: 540px;
}
.el-result-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--s2);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* ── GRADE WALL ── */
.el-grade-wall {
  background: var(--ink3);
  padding: 2.5rem;
}
.el-gw-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.3);
  margin-bottom: 1.5rem;
}
.el-gw-grades {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.el-gw-grade {
  padding: 1.5rem;
}
.el-gw-a { background: var(--sienna); }
.el-gw-b { background: #1e3a2a; }
.el-gw-c { background: #1e2e3a; }
.el-gw-none { background: var(--ink2); }
.el-gw-letter {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: white;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.el-gw-none .el-gw-letter { color: rgba(248,243,235,0.2); }
.el-gw-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-weight: 300;
}
.el-gw-none .el-gw-desc { color: rgba(248,243,235,0.35); }

/* ── PACKAGES ── */
.el-packages {
  background: var(--cream2);
  padding: 6rem 3.5rem;
}
.el-packages-head { margin-bottom: 3.5rem; }
.el-pkg-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin: 0.8rem 0 1rem;
}
.el-pkg-title em { font-style: italic; color: var(--sienna); }
.el-pkg-sub {
  font-size: 0.95rem;
  color: var(--muted2);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
}
.el-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--cream3);
}
.el-pkg-card {
  background: white;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  transition: background var(--transition);
}
.el-pkg-card:hover { background: #fdf9f4; }
.el-pkg-featured {
  background: var(--ink);
  border-top: 3px solid var(--s2);
}
.el-pkg-featured:hover { background: var(--ink2); }
.el-pkg-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--s2);
  color: white;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 1rem;
  white-space: nowrap;
}
.el-pkg-level {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-top: 0.5rem;
}
.el-pkg-featured .el-pkg-level { color: var(--s2); }
.el-pkg-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.1;
}
.el-pkg-featured .el-pkg-name { color: var(--cream); }
.el-pkg-desc {
  font-size: 0.85rem;
  color: #7a6a58;
  line-height: 1.75;
  font-weight: 300;
}
.el-pkg-featured .el-pkg-desc { color: rgba(248,243,235,0.5); }
.el-pkg-price {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--sienna);
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--cream3);
  line-height: 1;
}
.el-pkg-price span {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--muted2);
  letter-spacing: 0;
}
.el-pkg-featured .el-pkg-price {
  color: var(--s2);
  border-bottom-color: rgba(255,255,255,0.1);
}
.el-pkg-featured .el-pkg-price span { color: rgba(248,243,235,0.35); }
.el-pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.el-pkg-features li {
  font-size: 0.84rem;
  color: #7a6a58;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
  font-weight: 300;
}
.el-pkg-features li::before {
  content: '→';
  color: var(--sienna);
  flex-shrink: 0;
  font-size: 0.72rem;
}
.el-pkg-featured .el-pkg-features li { color: rgba(248,243,235,0.5); }
.el-pkg-featured .el-pkg-features li::before { color: var(--s2); }

/* ── WHO IS THIS FOR ── */
.el-who {
  background: var(--ink2);
  padding: 6rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.el-who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.el-who-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin: 0.8rem 0 1.5rem;
}
.el-who-title em { font-style: italic; color: var(--s2); }
.el-who-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2rem;
}
.el-who-list { display: flex; flex-direction: column; gap: 0; }
.el-who-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.el-who-item:last-child { border-bottom: none; }
.el-wi-check {
  color: var(--s2);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.el-wi-text {
  font-size: 0.88rem;
  color: rgba(248,243,235,0.6);
  line-height: 1.6;
  font-weight: 300;
}
.el-who-artwork-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.el-wa-item {
  position: relative;
  overflow: hidden;
}
.el-wa-item img {
  width: 100%;
  display: block;
  opacity: 0.75;
  transition: opacity 0.35s, transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.el-wa-item:hover img { opacity: 0.95; transform: scale(1.02); }
.el-wa-large img { max-height: 280px; object-fit: cover; }
.el-wa-item:not(.el-wa-large) img { max-height: 180px; object-fit: cover; }
.el-wa-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,243,235,0.6);
  background: linear-gradient(to top, rgba(14,12,10,0.8), transparent);
}

/* ── PROCESS ── */
.el-process {
  background: var(--cream2);
  padding: 6rem 3.5rem;
  border-top: 1px solid var(--cream3);
}
.el-process-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
  margin: 0.8rem 0 3.5rem;
}
.el-process-title em { font-style: italic; color: var(--sienna); }
.el-process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.el-step {
  flex: 1;
  background: white;
  border: 1px solid var(--cream3);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}
.el-step:hover { background: #fdf9f4; }
.el-step-highlight { background: var(--sienna); border-color: var(--sienna); }
.el-step-highlight:hover { background: #a84e20; }
.el-step-connector {
  width: 2px;
  background: var(--cream3);
  flex-shrink: 0;
  align-self: stretch;
  margin: 2rem 0;
}
.el-step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sienna);
  opacity: 0.3;
  line-height: 1;
  font-weight: 400;
}
.el-step-highlight .el-step-num { color: white; opacity: 0.5; }
.el-step-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
}
.el-step-highlight .el-step-title { color: white; }
.el-step-desc {
  font-size: 0.82rem;
  color: #7a6a58;
  line-height: 1.75;
  font-weight: 300;
}
.el-step-highlight .el-step-desc { color: rgba(255,255,255,0.8); }

/* ── TESTIMONIALS ── */
.el-testi {
  background: var(--ink2);
  padding: 6rem 3.5rem;
}
.el-testi-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin: 0.8rem 0 3rem;
}
.el-testi-title em { font-style: italic; color: var(--s2); }
.el-testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.el-tc {
  background: var(--ink2);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}
.el-tc:hover { background: #1e1812; }
.el-tc-alt { background: var(--sienna); }
.el-tc-alt:hover { background: #a84e20; }
.el-tc-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.el-tc-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.el-tc-author {
  font-size: 0.72rem;
  color: rgba(248,243,235,0.4);
  line-height: 1.5;
}
.el-tc-author strong {
  display: block;
  color: var(--s2);
  margin-bottom: 0.1rem;
  font-style: normal;
}
.el-tc-alt .el-tc-author { color: rgba(255,255,255,0.65); }
.el-tc-alt .el-tc-author strong { color: white; }

/* ── BOOKING ── */
.el-book {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.el-book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.el-book-l {
  padding: 5.5rem 3.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.el-book-r { padding: 5.5rem 3rem; background: var(--ink2); }
.el-book-title {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.08;
  margin: 0.8rem 0 1.3rem;
}
.el-book-title em { font-style: italic; color: var(--s2); }
.el-book-body {
  font-size: 0.95rem;
  color: rgba(248,243,235,0.42);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 2.2rem;
}
.el-book-info { display: flex; flex-direction: column; }
.el-bi {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.el-bi-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--s2);
}
.el-bi-val {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 300;
}
.el-bi-val a { color: var(--cream); transition: color var(--transition); }
.el-bi-val a:hover { color: var(--s2); }
.el-form { display: flex; flex-direction: column; gap: 1.1rem; }
.el-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .el-ao-grid { grid-template-columns: 1fr 1fr; }
  .el-process-steps { flex-direction: column; }
  .el-step-connector { width: auto; height: 2px; margin: 0 2rem; }
  .el-pkg-grid { grid-template-columns: 1fr; max-width: 480px; }
  .el-gw-grades { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .el-hero { grid-template-columns: 1fr; min-height: auto; }
  .el-hero-l { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .el-hero-creds { grid-template-columns: repeat(2,1fr); }
  .el-guarantee-inner { grid-template-columns: 1fr; }
  .el-g-divider { width: 100%; height: 1px; }
  .el-g-stat { padding: 2.5rem 2rem; }
  .el-g-statement { padding: 2.5rem 2rem; }
  .el-g-boards { padding: 2.5rem 2rem; flex-direction: row; gap: 2rem; }
  .el-method { padding: 4rem 2rem; }
  .el-method-head { grid-template-columns: 1fr; }
  .el-results { padding: 4rem 2rem; }
  .el-result { grid-template-columns: 1fr; }
  .el-result-artwork { min-height: 220px; }
  .el-who-inner { grid-template-columns: 1fr; gap: 3rem; }
  .el-book-inner { grid-template-columns: 1fr; }
  .el-book-l { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .el-book-r { padding: 4rem 2rem; }
  .el-testi-grid { grid-template-columns: 1fr; }
  .el-packages { padding: 4rem 2rem; }
  .el-who { padding: 4rem 2rem; }
  .el-testi { padding: 4rem 2rem; }
  .el-process { padding: 4rem 2rem; }
}
@media (max-width: 560px) {
  .el-hero-title { font-size: 2.8rem; }
  .el-ao-grid { grid-template-columns: 1fr; }
  .el-gw-grades { grid-template-columns: 1fr; }
  .el-form-row { grid-template-columns: 1fr; }
  .el-hero-creds { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .el-g-num { font-size: 4rem; }
  .el-method-title, .el-results-title, .el-pkg-title, .el-who-title, .el-process-title, .el-testi-title, .el-book-title { font-size: 2rem; }
}
