/* ─── ROOT & RESET ─── */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

:root {
  --green:      #2EAA40;
  --green-dark: #1E7A2D;
  --green-light:#E8F7EA;
  --black:      #0E0E0E;
  --gray-900:   #1A1A1A;
  --gray-700:   #3D3D3D;
  --gray-500:   #6B6B6B;
  --gray-300:   #C4C4C4;
  --gray-100:   #F4F4F4;
  --white:      #FFFFFF;
  --border:     #E5E5E5;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── ELEMENTS ─── */
del {
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 400;
}
a {
  text-decoration: none;
  color: inherit;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links .nav-link {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-links .nav-link:hover { 
  color: var(--black); 
}

.nav-link.active {
  color: var(--green);
  font-weight: 700;
}

.nav-link.active:hover {
  color: var(--green-dark);
}

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: background 0.15s !important;
}

.nav-cta:hover { 
  background: var(--green-dark) !important; 
}

/* ─── HERO ─── */
.hero {
  padding: 140px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 6px; 
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 20px;
}

.hero h1 span { 
  color: var(--green); 
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { 
  background: var(--green-dark); 
  transform: translateY(-1px); 
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover { 
  background: var(--border); 
}

.hero-stats {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-num span { 
  color: var(--green); 
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Hero visual */
.hero-visual {
  background: var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-visual-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-visual-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}

.hero-visual-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 100px;
}

.hero-workshop-list {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-workshop-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background-color 0.15s, border-color 0.15s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-workshop-item:hover {
  background-color: rgba(46,170,64,0.04);
  border-color: var(--green);
}

.hero-workshop-item:first-child {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,170,64,0.08);
}

.hwi-left {}

.hwi-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}

.hwi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.01em;
}

.hwi-meta {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.hwi-right {
  text-align: right;
  flex-shrink: 0;
}

.hwi-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
}

.hwi-price-old {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 2px;
}

.hwi-mode {
  font-size: 11px;
  color: var(--gray-500);
}

/* ─── SECTION COMMON ─── */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin: -12px 12px  12px  12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.75;
}

.section-actions {
  margin: 24px 0;
  text-align: center;
}

.section-actions-end {
  margin: 48px 0 0;
  text-align: center;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 48px;
  margin-bottom: 48px;
}

.section-header-content {
  max-width: 600px;
}

.section-header-actions {
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .section-header-actions {
    justify-content: center;
    padding-top: 0;
  }

  .section-actions-end {
    margin-top: 32px;
  }
}

/* ─── JOURNEY SECTION ─── */
.step-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 10px;
}

/* ─── OPPORTUNITY ─── */
.opportunity {
  background: var(--black);
  padding: 100px 48px;
}

.opportunity-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
   align-items: start;
}

.opportunity h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
}

.opportunity h2 span { 
  color: var(--green); 
}

.opportunity p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.opportunity-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
}

.opportunity-cta:hover { 
  background: var(--green-dark); 
}

.opp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.opp-card {
  background: rgba(255,255,255,0.04);
  padding: 32px 28px;
}

.opp-card-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 14px;
}

.opp-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.opp-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

/* ─── PRODUCTS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(46,170,64,0.06);
}

.product-card.no-hover:hover {
  border-color: var(--border);
  box-shadow: none;
}

.product-card.featured {
  border-color: var(--green);
  background: var(--green-light);
}

.product-card.featured::before {
  content: 'Más popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.product-format {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.product-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}

.product-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.product-spec-row:last-child { 
  border-bottom: none; 
}

.spec-key {
  color: var(--gray-500);
}

.spec-val {
  font-weight: 600;
  color: var(--black);
  text-align: right;
}

/* ─── VALUE PROPS ─── */
.value-props {
  background: var(--gray-100);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.value-props-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.vp-card {
  background: var(--white);
  padding: 40px 32px;
}

.vp-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
}

.vp-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 10px;
}

.vp-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ─── FOR WHO ─── */
.for-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.for-who-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.for-who-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.for-who-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.for-who-card:first-child .for-who-icon { 
  background: var(--green-light); 
}

.for-who-card:last-child .for-who-icon { 
  background: #EEF2FF; 
}

.for-who-header h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
}

.for-who-header p {
  font-size: 13px;
  color: var(--gray-500);
}

.for-who-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.for-who-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.for-who-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ─── FEATURED WORKSHOPS ─── */
.workshops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

.workshop-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: block;
}

.workshop-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.workshop-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
}

.workshop-card:hover .workshop-card-img { 
  filter: grayscale(0%); 
}

.workshop-card-body {
  padding: 28px 28px 24px;
}

.workshop-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.workshop-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.2;
}

.workshop-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.workshop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.workshop-card-meta {
  font-size: 11px;
  color: var(--gray-500);
}

.workshop-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 4px 0;
}

.workshop-card-price-current {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.workshop-card-price-old {
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-500);
}

.workshop-card-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* ─── CTA ─── */
.cta {
  padding: 100px 48px;
}

.cta-inner {
  max-width: 1200px;
  margin: 10px auto;
  background: var(--green);
  border-radius: 16px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}

.btn-white:hover { 
  background: var(--gray-100); 
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.15s;
  cursor: pointer;
}

.btn-outline-white:hover { 
  border-color: rgba(255,255,255,0.8); 
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer-logo-mark {
  width: 26px;
  height: 26px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: var(--gray-500);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-col a:hover { 
  color: var(--black); 
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-300);
}

/* ─── MODAL ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.45);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 24px;
  border: 1px solid var(--border);
  width: 90%;
  max-width: 500px;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.close {
  color: var(--gray-500);
  float: right;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: var(--black);
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-content .field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-content label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  background: var(--white);
}

.modal-content textarea {
  min-height: 100px;
  resize: vertical;
}

.modal-content button {
  background: var(--green);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.modal-content button:hover {
  background: var(--green-dark);
}

/* ─── CREDIBILITY / TESTIMONIALS ─── */
.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cred-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.cred-stat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}

.cred-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.4;
}

.testimonial-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-card {
  background: var(--gray-100);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-quote::before {
  content: '"';
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
  line-height: 0;
  vertical-align: -10px;
  margin-right: 4px;
  font-style: normal;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.testimonial-role {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { 
    padding: 0 24px; 
  }
  
  .hero { 
    grid-template-columns: 1fr; 
    padding: 120px 24px 72px; 
  }
  
  .hero-visual { 
    display: none; 
  }
  
  .section { 
    padding: 72px 24px; 
  }
  
  .opportunity { 
    padding: 72px 24px; 
  }
  
  .opportunity-inner { 
    grid-template-columns: 1fr; 
    gap: 48px; 
  }
  
  .products-grid { 
    grid-template-columns: 1fr; 
  }
  
  .value-props { 
    padding: 72px 24px; 
  }
  
  .value-props-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .cred-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .for-who-grid {
    grid-template-columns: 1fr;
  }
  
  .workshops-grid { 
    grid-template-columns: 1fr; 
  }
  
  .cta { 
    padding: 72px 24px; 
  }
  
  .cta-inner { 
    grid-template-columns: 1fr; 
    padding: 48px 36px; 
    gap: 36px; 
  }
  
  .cta-buttons { 
    flex-direction: row; 
  }
  
  footer { 
    padding: 48px 24px 32px; 
  }
  
  .footer-inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 36px; 
  }
}

@media (max-width: 768px) {
  .nav-links { 
    display: none; 
  }
  
  .hero h1 { 
    font-size: 38px; 
  }
  
  .hero-stats { 
    gap: 24px; 
  }
  
  .value-props-grid { 
    grid-template-columns: 1fr; 
  }
  
  .footer-inner { 
    grid-template-columns: 1fr; 
  }
  
  .footer-bottom { 
    flex-direction: column; 
    gap: 8px; 
  }
  
  .cta-buttons { 
    flex-direction: column; 
  }
}
