/* SaraS Academy — shared styles (multi-page)
   Typography: only Fraunces + Source Sans 3 (loaded from Google Fonts) */
:root {
  --font-body: "Source Sans 3", sans-serif;
  --font-display: "Fraunces", serif;
  --brand: #351c52;
  --brand-dark: #1f0f32;
  --brand-mid: #2d1845;
  --brand-soft: #5b3d7a;
  --brand-muted: rgba(53, 28, 82, 0.12);
  --ink: #141018;
  --ink-muted: #5a5260;
  --cream: #f3f0f7;
  --white: #ffffff;
  --accent: #e8c547;
  --accent-dark: #c9a227;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 24px 48px -12px rgba(53, 28, 82, 0.22);
  --shadow-sm: 0 8px 24px -8px rgba(53, 28, 82, 0.14);
  --max: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

a { color: var(--brand-soft); }
a:hover { color: var(--brand); }

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: var(--white);
  border-radius: 8px;
  width: auto;
  height: auto;
}

/* Top bar (Expertis-style strip) */
.top-bar {
  background: linear-gradient(90deg, var(--brand-dark) 0%, var(--brand-mid) 50%, var(--brand) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.875rem;
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
}
.top-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.top-bar a:hover { color: #fff; }
.top-bar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(53, 28, 82, 0.1);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo-link img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: var(--brand-muted);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--brand);
  border-radius: 1px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle span { transition: transform 0.2s ease, opacity 0.2s ease; }

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-main a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-muted);
}
.nav-main a:hover, .nav-main a[aria-current="page"] { color: var(--brand); }

/* Courses dropdown */
.nav-dd {
  position: relative;
}
.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-muted);
  cursor: pointer;
}
.nav-dd-btn::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 4px;
}
.nav-dd-btn:hover, .nav-dd:focus-within .nav-dd-btn { color: var(--brand); }
.nav-dd-panel {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  min-width: min(320px, 92vw);
  max-height: 70vh;
  overflow-y: auto;
  padding: 0.65rem;
  background: var(--white);
  border: 1px solid rgba(53, 28, 82, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dd-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.9rem;
}
.nav-dd-panel a:hover {
  background: var(--cream);
  color: var(--brand);
}

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-main {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--white);
    border-bottom: 1px solid rgba(53, 28, 82, 0.1);
    box-shadow: var(--shadow-sm);
  }
  .nav-main.is-open { display: flex; }
  .nav-dd-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 1px solid rgba(53, 28, 82, 0.08);
    margin-top: 0.35rem;
    max-height: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(53, 28, 82, 0.35);
}
.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 8px 26px rgba(53, 28, 82, 0.4);
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent-dark) 0%, #a8861f 100%);
  color: var(--brand-dark);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.35);
}
.btn-accent:hover { color: var(--brand-dark); }
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid rgba(53, 28, 82, 0.35);
}
.btn-outline:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

/* Hero home */
.hero-home {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.25rem clamp(3rem, 8vw, 5rem);
  background: linear-gradient(145deg, var(--cream) 0%, #e8e2f0 45%, var(--white) 100%);
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(53, 28, 82, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(232, 197, 71, 0.12), transparent 50%);
  pointer-events: none;
}
.hero-home-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-home-inner { grid-template-columns: 1.08fr 0.92fr; gap: 3rem; }
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  background: var(--white);
  border: 1px solid rgba(53, 28, 82, 0.12);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-home h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.35rem);
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 18ch;
}
.hero-home .lead {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 48ch;
  margin: 0 0 1.5rem;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(53, 28, 82, 0.1);
  box-shadow: var(--shadow);
}
.hero-panel h2 {
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero-panel li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(53, 28, 82, 0.07);
  font-size: 0.96rem;
  color: var(--ink-muted);
  padding-left: 1.5rem;
  position: relative;
}
.hero-panel li:last-child { border-bottom: none; }
.hero-panel li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

/* Inner page hero */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 55%, var(--brand-mid) 100%);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3.25rem) 1.25rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232, 197, 71, 0.12), transparent 45%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; color: #fff; }
.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  margin: 0 0 0.75rem;
  color: var(--white);
}
.page-hero .sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 58ch;
  margin: 0;
}

/* Course layout */
.course-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1.25rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .course-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}
.course-main section {
  margin-bottom: 2.25rem;
}
.course-main h2 {
  font-size: 1.45rem;
  margin: 0 0 1rem;
  color: var(--brand-dark);
}
.course-main p, .course-main li {
  color: var(--ink-muted);
  font-size: 1.02rem;
}
.course-main ul {
  padding-left: 1.25rem;
}
.course-main li { margin-bottom: 0.4rem; }

.course-sidebar {
  position: sticky;
  top: 88px;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(53, 28, 82, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.sidebar-card h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin: 0 0 0.75rem;
}
.sidebar-card .btn { width: 100%; margin-bottom: 0.5rem; }
.sidebar-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}
.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-list a {
  display: block;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(53, 28, 82, 0.08);
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink);
}
.sidebar-list a:hover { color: var(--brand); }

/* Sections generic */
section.block {
  padding: clamp(3rem, 6vw, 4.5rem) 1.25rem;
}
.block-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.block-white { background: var(--white); }
.block-muted { background: linear-gradient(180deg, var(--white), var(--cream)); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-soft);
  margin: 0 0 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.2rem);
  margin: 0 0 1rem;
}
.section-intro {
  color: var(--ink-muted);
  max-width: 65ch;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* Course grid home */
.cards-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 600px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(53, 28, 82, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.2s ease;
  height: 100%;
}
.course-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(53, 28, 82, 0.18);
}
.course-card h3 {
  font-size: 1.12rem;
  margin: 0 0 0.5rem;
  color: var(--brand-dark);
}
.course-card p {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  color: var(--ink-muted);
  flex: 1;
}
.course-card .more {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--brand);
}

/* Tech pills */
.tech-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}
.tech-pill {
  padding: 0.45rem 0.95rem;
  background: var(--white);
  border: 1px solid rgba(53, 28, 82, 0.14);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-dark);
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(53, 28, 82, 0.12);
  border-radius: var(--radius);
  background: var(--cream);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.faq-item summary {
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-muted);
  border-top: 1px solid rgba(53, 28, 82, 0.08);
  padding-top: 0.85rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  margin-bottom: 1.1rem;
  padding-left: 2rem;
  position: relative;
}
.contact-list li::before {
  position: absolute;
  left: 0;
  font-size: 1.05rem;
}
.contact-list li:nth-child(1)::before { content: "📍"; }
.contact-list li:nth-child(2)::before { content: "📞"; }
.contact-list li:nth-child(3)::before { content: "✉️"; }
.contact-list strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 0.2rem;
}
.form-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(53, 28, 82, 0.1);
}
.form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.9rem;
  font: inherit;
  border: 1px solid rgba(53, 28, 82, 0.18);
  border-radius: 10px;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 2px solid var(--brand-soft);
  outline-offset: 2px;
}
.form-card textarea { min-height: 110px; resize: vertical; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #1a0d28 0%, var(--brand-dark) 42%, #10081a 100%);
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0;
  margin-top: 0;
}
.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.25rem 2.25rem;
  display: grid;
  gap: 2.25rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 720px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.85fr 1.05fr 1fr;
    gap: 2rem;
    align-items: start;
  }
}
.footer-brand-col .footer-logo {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.footer-brand-col .footer-logo:hover {
  color: var(--accent);
}
.footer-desc {
  margin: 0 0 1.35rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  max-width: 38ch;
  font-size: 0.95rem;
}
.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-pills a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(232, 197, 71, 0.12);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8125rem;
  text-decoration: none;
  border: 1px solid rgba(232, 197, 71, 0.32);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer-pills a:hover {
  background: rgba(232, 197, 71, 0.22);
  color: var(--white);
  border-color: rgba(232, 197, 71, 0.5);
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 1.05rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--accent);
}
@media (min-width: 600px) {
  .footer-links-two {
    columns: 2;
    column-gap: 1.5rem;
  }
  .footer-links-two li {
    break-inside: avoid;
  }
}
.footer-address {
  font-style: normal;
  line-height: 1.65;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.footer-contact-line {
  margin: 0 0 0.35rem;
}
.footer-contact-line a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-contact-line a:hover {
  color: var(--accent);
}
.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.footer-cta-row a {
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}
.footer-cta-row a.footer-link-maps {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.footer-cta-row a.footer-link-maps:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.footer-cta-row a.footer-link-wa {
  color: #afffc8;
}
.footer-cta-row a.footer-link-wa:hover {
  color: #fff;
}
.footer-bar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.35rem 1.25rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
}
@media (max-width: 640px) {
  .footer-bar {
    flex-direction: column;
    text-align: center;
  }
}
.footer-bar p {
  margin: 0;
  font-family: var(--font-body);
}
.footer-bar strong {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* Reveal */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Home: FREE workshop banner */
.workshop-banner {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem) 1.25rem;
  background: linear-gradient(135deg, #2a1540 0%, var(--brand) 40%, #4a2666 100%);
  color: var(--white);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid rgba(232, 197, 71, 0.35);
}
.workshop-banner::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 140%;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.18), transparent 60%);
  pointer-events: none;
}
.workshop-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.workshop-badge {
  display: inline-block;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.workshop-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  margin: 0 auto 0.65rem;
  max-width: 36ch;
  color: var(--white);
  line-height: 1.25;
}
.workshop-sub {
  margin: 0 auto 1.5rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}
.workshop-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.workshop-cta .btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--brand-dark);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}
.workshop-cta .btn-primary:hover {
  color: var(--brand-dark);
  filter: brightness(1.05);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.btn-whatsapp:hover {
  color: #fff !important;
  filter: brightness(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
}
.workshop-urgency {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Home: Our method — Learning to Earning */
.method-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.method-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .method-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 960px) {
  .method-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.method-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(53, 28, 82, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.method-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.method-step-icon {
  font-size: 1.75rem;
  line-height: 1;
}
.method-step h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--brand-dark);
}
.method-step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.55;
}
