/* ============================================================
   DESIGMA CLONE — style.css
   Font: Poppins (Google Fonts)
   Cores exatas de desigma.com.br (Elementor/WordPress)
   ============================================================ */

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

:root {
  --orange:       #FF6316;
  --orange-dark:  #993B0D;
  --dark:         #1A1A1A;
  --dark-mid:     #141514;
  --dark-card:    #151515;
  --beige:        #BEB298;
  --beige-light:  #E3DBCA;
  --cream:        #F3DECB;
  --cream-btn:    #FFDEC6;
  --text-hero:    #E1D6D6;
  --text-body:    #C0BABA;
  --container:    1140px;
  --transition:   0.35s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark);
  color: var(--cream);
  line-height: 1.3;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1 strong, h2 strong, h3 strong {
  font-weight: 600;
}

/* ---------- NOISE OVERLAY ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('assets/noise.gif') repeat;
  opacity: 0.035;
  pointer-events: none;
  z-index: 9999;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  border: 2px solid var(--orange);
  cursor: pointer;
  border-radius: 10px;
  text-align: center;
  transition: opacity var(--transition), transform var(--transition);
}

.btn--orange {
  background-image: linear-gradient(45deg, #FF6316 0%, #993B0D 100%);
  background-color: transparent;
  color: var(--cream-btn);
  border-color: var(--orange);
}

.btn--orange:hover {
  opacity: 0.88;
}

.btn--outline {
  background-image: linear-gradient(45deg, #FF6316 0%, #993B0D 100%);
  background-color: transparent;
  color: var(--cream-btn);
  border-color: var(--orange);
}

.btn--outline:hover {
  opacity: 0.88;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2em;
  letter-spacing: -1.2px;
  margin-bottom: 56px;
  color: var(--cream);
}

.section-title strong {
  color: var(--orange);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('assets/hero-section-4.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.97) 0%,
    rgba(26, 26, 26, 0.72) 36%,
    rgba(26, 26, 26, 0.00) 62%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 100px;
}

.hero__content {
  max-width: 440px;
}

.hero__logo {
  width: 180px;
  margin-bottom: 40px;
}

.hero__headline {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
  color: var(--cream);
}

.hero__headline em {
  color: var(--orange);
  font-style: normal;
}

.hero__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-hero);
  margin-bottom: 40px;
  line-height: 1.3em;
  max-width: 480px;
}

/* ============================================================
   BENEFITS (Por que estudar)
   ============================================================ */
.benefits {
  background-color: var(--dark);
  padding: 80px 0 96px;
}

.benefits__title {
  font-size: 48px;
  font-weight: 600;
  text-align: left;
  line-height: 1.2em;
  letter-spacing: -1.2px;
  margin-bottom: 48px;
  color: var(--cream);
}

.benefits__title strong {
  color: var(--orange);
}

.benefits__inner {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 48px;
  align-items: start;
}

.benefits__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.benefits__col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-item__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.benefit-item__text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.3em;
}

.benefit-item__text strong {
  color: var(--cream);
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefits__card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.benefits__quote {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  color: var(--cream);
  font-style: normal;
}

.benefits__card-text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.3em;
}

/* ============================================================
   FOR WHOM (Para quem é)
   ============================================================ */
.for-whom {
  background-color: var(--dark-mid);
  padding: 80px 0 96px;
}

.for-whom__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}

.for-whom__heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -1.2px;
  color: var(--cream);
}

.for-whom__heading h2 strong {
  color: var(--orange);
}

.for-whom__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.3em;
  padding-top: 8px;
}

.personas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.persona {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
}

.persona__img-wrap {
  aspect-ratio: 277 / 471;
  overflow: hidden;
}

.persona__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.persona:hover .persona__img-wrap img {
  transform: scale(1.04);
}

.persona__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15, 5, 0, 0.96));
  padding: 48px 16px 20px;
}

.persona__label h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3em;
  text-align: center;
}

/* ============================================================
   WHY FIGMA + SHOWCASE (merged)
   ============================================================ */
.why-figma {
  background-color: #1A1A1A;
  background-image: linear-gradient(180deg, rgba(26,26,26,0.08) 0%, rgba(255,99,22,0.08) 50%, rgba(26,26,26,0.08) 100%);
  padding: 80px 0 96px;
}

.why-figma__header {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}

.why-figma__title h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.2em;
  letter-spacing: -1.2px;
  color: var(--cream);
}

.why-figma__title h2 strong {
  color: var(--orange);
}

.why-figma__paras {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-figma__paras p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.3em;
}

.why-figma__bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.why-figma__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.3em;
}

.why-figma__bullets li img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-figma__showcase {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.55);
  max-width: 1140px;
  margin-inline: auto;
}

.why-figma__screen {
  width: 100%;
  display: block;
}

.why-figma__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   MODULES (beige section)
   ============================================================ */
.modules {
  background-color: var(--beige);
  padding: 80px 0 96px;
  position: relative;
}

.modules::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/noise.gif') repeat;
  opacity: 0.05;
  pointer-events: none;
}

.modules__title {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2em;
  letter-spacing: -1.2px;
  margin-bottom: 48px;
  color: var(--dark);
}

.modules__title em {
  color: var(--orange);
  font-style: normal;
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.module-card {
  background: var(--beige-light);
  border-radius: 24px;
  overflow: hidden;
  transition: transform var(--transition);
}

.module-card:hover {
  transform: translateY(-4px);
}

.module-card__thumb {
  width: 100%;
  overflow: hidden;
}

.module-card__thumb img {
  width: 100%;
  aspect-ratio: 1024 / 430;
  object-fit: cover;
  display: block;
  border-radius: 24px 24px 0 0;
}

.module-card__body {
  padding: 24px 28px 32px;
}

.module-card__body h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.1em;
  letter-spacing: -0.3px;
}

.module-card__body p {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.3em;
  letter-spacing: -0.3px;
}

/* ---------- APÓS O DESIGMA (dentro de modules) ---------- */
.after-course {
  position: relative;
  z-index: 1;
  background-color: var(--beige-light);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
  padding: 56px 72px;
}

.after-course__heading h2 {
  font-size: 46px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -1.2px;
  color: var(--dark);
}

.after-course__heading h2 strong {
  color: var(--orange);
}

.after-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.after-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.3em;
}

.after-list li img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.modules__cta {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* ============================================================
   BONUSES
   ============================================================ */
.bonuses {
  background-color: var(--dark);
  padding: 80px 0 96px;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bonuses__grid img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.bonuses__grid img:hover {
  transform: scale(1.03);
}

/* ============================================================
   OFFER / PRICING
   ============================================================ */
.offer {
  background-color: var(--dark);
  padding: 80px 0 96px;
}

.offer .container {
  display: flex;
  justify-content: center;
}

.offer__card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 56px 48px 48px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.offer__logo {
  width: 160px;
  margin-bottom: 28px;
}

.offer__tagline {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3em;
  margin-bottom: 32px;
  text-align: center;
}

.offer__from {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.offer__from s {
  text-decoration: line-through;
  color: rgba(192, 186, 186, 0.55);
  text-decoration-color: rgba(192, 186, 186, 0.55);
}

.offer__installment-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  line-height: 1;
}

.offer__installment-count {
  font-size: 26px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.5px;
  align-self: center;
}

.offer__installment-value {
  font-size: 60px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -2px;
  line-height: 1;
}

.offer__cents {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  vertical-align: baseline;
}

.offer__cash {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 32px;
  margin-top: 2px;
}

.offer__cash strong {
  color: var(--cream);
  font-weight: 600;
}

.offer__card .btn {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

.offer__secure {
  font-size: 14px;
  color: var(--text-body);
}

/* ============================================================
   PRÉ-CHECKOUT MODAL
   ============================================================ */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.checkout-modal.active {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal__card {
  background: #1E1E1E;
  border: 1px solid rgba(255, 99, 22, 0.22);
  border-radius: 20px;
  padding: 48px 40px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  transform: translateY(28px);
  transition: transform 0.35s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.checkout-modal.active .checkout-modal__card {
  transform: translateY(0);
}

.checkout-modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-body);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.2s;
}

.checkout-modal__close:hover {
  color: var(--cream);
}

.checkout-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.6px;
  line-height: 1.2em;
}

.checkout-modal__sub {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.5em;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.form-field input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-field input:focus {
  border-color: rgba(255, 99, 22, 0.55);
}

.form-field input::placeholder {
  color: rgba(192, 186, 186, 0.4);
}

.phone-input-wrap {
  display: flex;
}

.phone-country {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 13px 10px 13px 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--cream);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C0BABA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 26px;
  min-width: 108px;
}

.phone-number {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 10px 10px 0;
  padding: 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s ease;
}

.phone-number:focus {
  border-color: rgba(255, 99, 22, 0.55);
}

.phone-number::placeholder {
  color: rgba(192, 186, 186, 0.4);
}

.form-field__error {
  font-size: 12px;
  color: #ff7070;
  display: none;
  font-weight: 500;
}

.form-field.has-error .form-field__error {
  display: block;
}

.form-field.has-error input,
.form-field.has-error .phone-number {
  border-color: rgba(255, 112, 112, 0.55);
}

.checkout-form__submit {
  margin-top: 6px;
  width: 100%;
  font-size: 15px;
  padding: 16px;
  border: none;
  font-family: 'Poppins', sans-serif;
}

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee {
  background-color: var(--dark);
  padding: 80px 0 96px;
}

.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
}

.guarantee__badge {
  flex-shrink: 0;
  width: 428px;
}

.guarantee__badge img {
  width: 100%;
  border-radius: 50%;
}

.guarantee__text h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
  color: var(--cream);
}

.guarantee__text h2 strong {
  color: var(--orange);
}

.guarantee__text p {
  color: var(--text-body);
  line-height: 1.3em;
  font-size: 16px;
  margin-bottom: 16px;
}

.guarantee__text p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   ABOUT PROFESSOR
   ============================================================ */
.about {
  background-color: var(--dark-mid);
  padding: 80px 0 96px;
}

.about__inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: start;
}

.about__photo {
  border-radius: 12px;
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  display: block;
}

.about__bio h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1em;
  letter-spacing: -1.2px;
  margin-bottom: 28px;
  color: var(--cream);
}

.about__bio h2 strong {
  color: var(--orange);
}

.about__bio p {
  color: var(--text-body);
  line-height: 1.3em;
  font-size: 16px;
  margin-bottom: 20px;
}

.about__bio p:last-child {
  margin-bottom: 0;
}

.about__bio p strong {
  color: var(--cream);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background-color: var(--dark);
  padding: 80px 0 96px;
}

.faq__list {
  max-width: 782px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 99, 22, 0.18);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 99, 22, 0.18);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.3em;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--orange);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), color var(--transition);
  color: var(--orange);
}

.faq-item__icon::before {
  content: '›';
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transform: rotate(90deg);
  display: block;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding-bottom: 0;
}

.faq-item__answer.open {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.3em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  width: 160px;
  opacity: 0.8;
}

/* ============================================================
   STAGGER DELAYS
   ============================================================ */
.benefits__cols .benefit-item:nth-child(1) { transition-delay: 0.05s; }
.benefits__cols .benefit-item:nth-child(2) { transition-delay: 0.10s; }
.benefits__cols .benefit-item:nth-child(3) { transition-delay: 0.15s; }

.modules__grid .reveal:nth-child(1)  { transition-delay: 0.04s; }
.modules__grid .reveal:nth-child(2)  { transition-delay: 0.08s; }
.modules__grid .reveal:nth-child(3)  { transition-delay: 0.12s; }
.modules__grid .reveal:nth-child(4)  { transition-delay: 0.16s; }
.modules__grid .reveal:nth-child(5)  { transition-delay: 0.20s; }
.modules__grid .reveal:nth-child(6)  { transition-delay: 0.24s; }
.modules__grid .reveal:nth-child(7)  { transition-delay: 0.28s; }
.modules__grid .reveal:nth-child(8)  { transition-delay: 0.32s; }
.modules__grid .reveal:nth-child(9)  { transition-delay: 0.36s; }

.personas .reveal:nth-child(1) { transition-delay: 0.06s; }
.personas .reveal:nth-child(2) { transition-delay: 0.12s; }
.personas .reveal:nth-child(3) { transition-delay: 0.18s; }
.personas .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .benefits__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits__card {
    max-width: 100%;
  }

  .why-figma__header {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .why-figma__title {
    grid-column: 1 / -1;
  }

  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .after-course {
    padding: 40px;
    gap: 40px;
  }

  .personas {
    grid-template-columns: repeat(2, 1fr);
  }

  .modules__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: unset;
    background-image: url('assets/BG-Mobile.jpg');
    background-position: center top;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(26, 26, 26, 0.10) 0%,
      rgba(26, 26, 26, 0.72) 42%,
      rgba(26, 26, 26, 0.97) 62%
    );
  }

  .hero__inner {
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .hero__headline {
    font-size: 26px;
    letter-spacing: -1px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__logo {
    width: 150px;
    margin-bottom: 28px;
  }

  .benefits {
    padding: 64px 0;
  }

  .benefits__title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .benefits__cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .for-whom__heading h2 {
    font-size: 32px;
  }

  .for-whom__header {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .why-figma__title h2 {
    font-size: 30px;
  }

  .why-figma__header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .modules__title {
    font-size: 30px;
  }

  .modules__grid {
    grid-template-columns: 1fr;
  }

  .module-card__body h3 {
    font-size: 20px;
  }

  .after-course {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 32px;
    border-radius: 12px;
  }

  .after-course__heading h2 {
    font-size: 30px;
  }

  .section-title {
    font-size: 30px;
    letter-spacing: -0.8px;
    margin-bottom: 36px;
  }

  .bonuses__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .offer__card {
    padding: 40px 28px;
  }

  .offer__price {
    font-size: 36px;
  }

  .guarantee__inner {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

  .guarantee__text h2 {
    font-size: 32px;
  }

  .guarantee__badge {
    width: 160px;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__bio h2 {
    font-size: 32px;
  }

  .about__photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .faq-item__question {
    font-size: 15px;
    padding: 18px 0;
  }
}

/* ============================================================
   RESPONSIVE — Small Mobile (max 480px)
   ============================================================ */
@media (max-width: 480px) {
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }

  .bonuses__grid {
    grid-template-columns: 1fr 1fr;
  }
}
