/* ─── ROOT TOKENS ─────────────────────────────────────────── */
:root {
  --mok-primary: #7BC950;
  --mok-forest: #2E7A1F;
  --mok-mid: #4DA831;
  --mok-tint: #EFF7EB;
  --mok-ghost: rgba(123,201,80,0.10);
  --mok-orange: #F4823C;
  --mok-coral: #E8476A;
  --mok-magenta: #D63384;
  --mok-text: #1E2620;
  --mok-body: #4A5044;
  --mok-muted: #B8BFB4;
  --mok-light: #EEF0EC;
  --mok-offwhite: #F8F6F1;
  --mok-white: #FFFFFF;
  --mok-error: #C0392B;
  --mok-stars: #F4C430;
  --mok-font-display: 'Playfair Display', Georgia, serif;
  --mok-font-body: 'Inter', system-ui, sans-serif;
  --mok-font-meta: 'DM Sans', sans-serif;
  --mok-radius-sm: 8px;
  --mok-radius-md: 16px;
  --mok-radius-lg: 24px;
  --mok-radius-full: 9999px;
  --mok-shadow-sm: 0 2px 8px rgba(30,38,32,.08), 0 1px 3px rgba(30,38,32,.05);
  --mok-shadow-md: 0 4px 16px rgba(30,38,32,.12), 0 2px 6px rgba(30,38,32,.07);
  --mok-shadow-lg: 0 12px 32px rgba(30,38,32,.16), 0 4px 12px rgba(30,38,32,.08);
  --mok-shadow-xl: 0 20px 48px rgba(30,38,32,.20), 0 8px 20px rgba(30,38,32,.10);
  --mok-shadow-glow: 0 4px 16px rgba(123,201,80,.35), 0 2px 8px rgba(46,122,31,.20);
  --mok-gradient-passion: linear-gradient(135deg, #F4823C 0%, #E8476A 60%, #D63384 100%);
  --mok-gradient-nature: linear-gradient(135deg, #7BC950 0%, #4DA831 50%, #2E7A1F 100%);
  --mok-gradient-hero: linear-gradient(160deg, #F8F6F1 0%, #EFF7EB 100%);
  --mok-gradient-dark: linear-gradient(135deg, #1E2620 0%, #2D3D2A 100%);
  --mok-gradient-overlay: linear-gradient(to top, rgba(30,38,32,.75) 0%, transparent 60%);
  --mok-gradient-accent: linear-gradient(90deg, #F4823C 0%, #E8476A 100%);
  --mok-ease-out: cubic-bezier(0,0,.2,1);
  --mok-ease-spring: cubic-bezier(.34,1.56,.64,1);
  --mok-z-sticky: 200;
  --mok-z-overlay: 300;
}

/* ─── GLOBAL RESET ────────────────────────────────────────── */
.mok-landing * { box-sizing: border-box; }
.mok-landing { font-family: var(--mok-font-body); color: var(--mok-body); background: var(--mok-offwhite); overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.mok-landing img { max-width: 100%; height: auto; }
.mok-landing a { color: var(--mok-forest); text-decoration: none; transition: color .15s ease; }
.mok-landing a:hover { color: var(--mok-primary); }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
.mok-landing h1, .mok-landing h2, .mok-landing h3 { font-family: var(--mok-font-display); color: var(--mok-text); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 0; }
.mok-landing h1 { font-size: clamp(32px, 5vw + 1rem, 60px); font-weight: 700; }
.mok-landing h2 { font-size: clamp(26px, 3.5vw + .5rem, 40px); font-weight: 600; }
.mok-landing h3 { font-size: clamp(22px, 2.5vw + .25rem, 28px); font-weight: 600; }
.mok-landing h4 { font-family: var(--mok-font-body); font-size: clamp(18px, 1.8vw, 22px); font-weight: 600; color: var(--mok-text); }
.mok-landing p { font-size: clamp(16px, 1vw + .5rem, 18px); line-height: 1.7; color: var(--mok-body); }
.mok-landing .mok-lead { font-size: clamp(18px, 1.5vw + .5rem, 20px); line-height: 1.6; }
.mok-landing .mok-meta { font-family: var(--mok-font-meta); font-size: 14px; color: var(--mok-muted); }
.mok-landing .mok-overline { font-family: var(--mok-font-body); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--mok-primary); margin-bottom: 12px; display: block; }

/* Section heading accent bar */
.mok-landing .mok-section-heading { position: relative; text-align: center; margin-bottom: 48px; }
.mok-landing .mok-section-heading::after { content: ''; display: block; width: 60px; height: 4px; background: var(--mok-gradient-accent); border-radius: 2px; margin: 16px auto 0; }
.mok-landing .mok-section-heading h2 { color: var(--mok-forest); }
.mok-landing .mok-section-subtitle { font-size: clamp(16px, 1.2vw, 18px); color: var(--mok-body); max-width: 640px; margin: 16px auto 0; line-height: 1.6; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.mok-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--mok-primary); color: var(--mok-text); font-family: var(--mok-font-body); font-weight: 600; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; padding: 16px 36px; border-radius: var(--mok-radius-full); border: none; cursor: pointer; transition: all .3s var(--mok-ease-out); box-shadow: var(--mok-shadow-glow); text-decoration: none; min-height: 52px; }
.mok-btn-primary:hover { background: var(--mok-forest); color: var(--mok-white); transform: translateY(-2px); box-shadow: var(--mok-shadow-lg); }
.mok-btn-primary:active { transform: translateY(0); }
.mok-btn-primary .material-icons-outlined { font-size: 20px; }

.mok-btn-outline { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--mok-forest); font-family: var(--mok-font-body); font-weight: 600; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; padding: 14px 32px; border-radius: var(--mok-radius-full); border: 2px solid var(--mok-forest); cursor: pointer; transition: all .3s var(--mok-ease-out); text-decoration: none; min-height: 52px; }
.mok-btn-outline:hover { background: var(--mok-tint); color: var(--mok-forest); transform: translateY(-2px); }

.mok-btn-sm { padding: 10px 24px; font-size: 13px; min-height: 42px; }

/* ─── SECTION SPACING ─────────────────────────────────────── */
.mok-section { padding: 80px 0; position: relative; }
@media (max-width: 767px) { .mok-section { padding: 56px 0; } }
.mok-section--light { background: var(--mok-offwhite); }
.mok-section--white { background: var(--mok-white); }
.mok-section--tint { background: var(--mok-tint); }
.mok-section--dark { background: var(--mok-gradient-dark); color: var(--mok-light); }
.mok-section--dark h2, .mok-section--dark h3, .mok-section--dark h4 { color: var(--mok-white); }
.mok-section--dark p { color: rgba(238,240,236,.85); }
.mok-section--dark .mok-section-heading::after { background: var(--mok-primary); }
.mok-section--dark .mok-overline { color: var(--mok-primary); }

/* ─── S1: HERO ────────────────────────────────────────────── */
.mok-hero { min-height: 92vh; display: flex; align-items: center; background: var(--mok-gradient-hero); position: relative; overflow: hidden; padding: 120px 0 80px; }
.mok-hero__bg { position: absolute; inset: 0; z-index: 0; }
.mok-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .18; }
.mok-hero__content { position: relative; z-index: 1; }
.mok-hero__badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(123,201,80,.15); color: var(--mok-forest); font-family: var(--mok-font-body); font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: var(--mok-radius-full); margin-bottom: 24px; backdrop-filter: blur(4px); }
.mok-hero__badge .mok-stars { color: var(--mok-stars); font-size: 16px; }
.mok-hero h1 { margin-bottom: 20px; max-width: 720px; }
.mok-hero h1 span { color: var(--mok-forest); }
.mok-hero__subtitle { font-size: clamp(18px, 1.5vw + .5rem, 22px); line-height: 1.6; color: var(--mok-body); max-width: 580px; margin-bottom: 36px; }
.mok-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 40px; }
.mok-hero__phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mok-font-body); font-weight: 600; font-size: 18px; color: var(--mok-forest); text-decoration: none; }
.mok-hero__phone .material-icons-outlined { font-size: 22px; color: var(--mok-primary); }
.mok-hero__phone:hover { color: var(--mok-primary); }
.mok-hero__features { display: flex; flex-wrap: wrap; gap: 24px; }
.mok-hero__feature { display: flex; align-items: center; gap: 8px; font-size: 15px; color: var(--mok-body); }
.mok-hero__feature .material-icons-outlined { font-size: 20px; color: var(--mok-primary); }

.mok-hero__image { position: relative; }
.mok-hero__image img { border-radius: var(--mok-radius-lg); box-shadow: var(--mok-shadow-xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.mok-hero__image-badge { position: absolute; bottom: -16px; left: 24px; background: var(--mok-white); border-radius: var(--mok-radius-md); padding: 16px 20px; box-shadow: var(--mok-shadow-lg); display: flex; align-items: center; gap: 12px; }
.mok-hero__image-badge strong { font-size: 28px; color: var(--mok-forest); line-height: 1; }
.mok-hero__image-badge span { font-size: 13px; color: var(--mok-muted); line-height: 1.3; }

@media (max-width: 991px) {
  .mok-hero { min-height: auto; padding: 100px 0 60px; text-align: center; }
  .mok-hero h1, .mok-hero__subtitle { max-width: 100%; }
  .mok-hero__actions { justify-content: center; }
  .mok-hero__features { justify-content: center; }
  .mok-hero__image { margin-top: 40px; }
  .mok-hero__image-badge { left: 50%; transform: translateX(-50%); white-space: nowrap; }
}

/* ─── S2: TRUST BAR ───────────────────────────────────────── */
.mok-trust { background: var(--mok-white); border-top: 1px solid var(--mok-light); border-bottom: 1px solid var(--mok-light); padding: 28px 0; }
.mok-trust__grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 32px; }
.mok-trust__item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--mok-text); white-space: nowrap; }
.mok-trust__item .material-icons-outlined { font-size: 28px; color: var(--mok-primary); }
.mok-trust__item strong { font-weight: 700; color: var(--mok-forest); }
@media (max-width: 767px) {
  .mok-trust__grid { gap: 20px; }
  .mok-trust__item { font-size: 13px; }
  .mok-trust__item .material-icons-outlined { font-size: 24px; }
}

/* ─── S3: PROBLEM → SOLUTION ──────────────────────────────── */
.mok-problems__card { background: var(--mok-light); border-radius: var(--mok-radius-md); padding: 32px 28px; text-align: center; height: 100%; transition: all .3s ease; }
.mok-problems__card:hover { transform: translateY(-4px); box-shadow: var(--mok-shadow-md); }
.mok-problems__card-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(123,201,80,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.mok-problems__card-icon .material-icons-outlined { font-size: 30px; color: var(--mok-coral); }
.mok-problems__card h4 { margin-bottom: 12px; }
.mok-problems__solution { background: var(--mok-tint); border-radius: var(--mok-radius-lg); padding: 40px; margin-top: 48px; text-align: center; border: 2px solid rgba(123,201,80,.2); }
.mok-problems__solution-icon { font-size: 48px; color: var(--mok-primary); margin-bottom: 16px; }

/* ─── S4: SERVICE CARDS ───────────────────────────────────── */
.mok-service-card { background: var(--mok-white); border-radius: var(--mok-radius-md); overflow: hidden; border: 2px solid transparent; transition: all .3s var(--mok-ease-out); height: 100%; display: flex; flex-direction: column; box-shadow: var(--mok-shadow-sm); position: relative; }
.mok-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--mok-gradient-accent); opacity: 0; transition: opacity .3s ease; }
.mok-service-card:hover { border-color: var(--mok-primary); box-shadow: var(--mok-shadow-lg); transform: translateY(-6px); }
.mok-service-card:hover::before { opacity: 1; }
.mok-service-card__image { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
.mok-service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--mok-ease-out); }
.mok-service-card:hover .mok-service-card__image img { transform: scale(1.06); }
.mok-service-card__body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.mok-service-card__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--mok-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mok-service-card__icon .material-icons-outlined { font-size: 26px; color: var(--mok-forest); }
.mok-service-card__body h3 { font-size: clamp(20px, 2vw, 24px); margin-bottom: 12px; }
.mok-service-card__body p { font-size: 15px; line-height: 1.65; flex: 1; }
.mok-service-card__price { font-family: var(--mok-font-meta); font-size: 14px; color: var(--mok-forest); font-weight: 500; margin: 12px 0 16px; padding: 8px 12px; background: var(--mok-tint); border-radius: var(--mok-radius-sm); display: inline-block; }
.mok-service-card__cta { margin-top: auto; padding-top: 8px; }

/* ─── S5: USP ─────────────────────────────────────────────── */
.mok-usp__card { text-align: center; padding: 32px 20px; }
.mok-usp__card-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--mok-gradient-nature); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(123,201,80,.25); }
.mok-usp__card-icon .material-icons-outlined { font-size: 34px; color: var(--mok-white); }
.mok-usp__card h4 { margin-bottom: 10px; }
.mok-usp__card p { font-size: 15px; }

/* ─── S6: GALLERY BEFORE/AFTER ────────────────────────────── */
.mok-gallery__item { position: relative; border-radius: var(--mok-radius-lg); overflow: hidden; cursor: pointer; }
.mok-gallery__item img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s ease; }
.mok-gallery__item:hover img { transform: scale(1.05); }
.mok-gallery__item-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; background: var(--mok-gradient-overlay); color: var(--mok-white); transition: opacity .3s ease; }
.mok-gallery__item-overlay h4 { color: var(--mok-white); font-family: var(--mok-font-body); font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.mok-gallery__item-overlay p { font-size: 13px; color: rgba(255,255,255,.8); margin: 0; }
.mok-gallery__label { position: absolute; top: 16px; left: 16px; font-family: var(--mok-font-body); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 6px 14px; border-radius: var(--mok-radius-full); color: var(--mok-white); }
.mok-gallery__label--before { background: var(--mok-coral); }
.mok-gallery__label--after { background: var(--mok-primary); color: var(--mok-text); }

/* ─── S7: VIDEO ───────────────────────────────────────────── */
.mok-video__wrapper { position: relative; border-radius: var(--mok-radius-lg); overflow: hidden; box-shadow: var(--mok-shadow-xl); aspect-ratio: 16/9; background: var(--mok-text); }
.mok-video__wrapper iframe, .mok-video__wrapper video { width: 100%; height: 100%; border: 0; }
.mok-video__placeholder { position: relative; width: 100%; height: 100%; cursor: pointer; }
.mok-video__placeholder img { width: 100%; height: 100%; object-fit: cover; }
.mok-video__play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; background: rgba(123,201,80,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s ease; box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.mok-video__play-btn:hover { background: var(--mok-primary); transform: translate(-50%, -50%) scale(1.1); }
.mok-video__play-btn .material-icons-outlined { font-size: 40px; color: var(--mok-white); margin-left: 4px; }

/* ─── S8: REVIEWS ─────────────────────────────────────────── */
.mok-review-card { background: var(--mok-white); border-radius: var(--mok-radius-md); padding: 32px; box-shadow: var(--mok-shadow-sm); height: 100%; display: flex; flex-direction: column; border: 1px solid var(--mok-light); transition: all .3s ease; }
.mok-review-card:hover { box-shadow: var(--mok-shadow-md); transform: translateY(-4px); }
.mok-review-card__stars { color: var(--mok-stars); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.mok-review-card__text { font-size: 16px; line-height: 1.7; font-style: italic; color: var(--mok-body); flex: 1; position: relative; padding-left: 20px; border-left: 3px solid var(--mok-primary); }
.mok-review-card__author { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.mok-review-card__avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--mok-tint); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: var(--mok-forest); }
.mok-review-card__author-info { font-size: 14px; line-height: 1.4; }
.mok-review-card__author-info strong { color: var(--mok-text); display: block; }
.mok-review-card__author-info span { color: var(--mok-muted); font-size: 13px; }

/* ─── S9: PROCESS ─────────────────────────────────────────── */
.mok-process__step { text-align: center; position: relative; padding: 0 16px; }
.mok-process__step-number { width: 64px; height: 64px; border-radius: 50%; background: var(--mok-gradient-nature); color: var(--mok-white); font-family: var(--mok-font-display); font-size: 26px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(46,122,31,.25); position: relative; z-index: 2; }
.mok-process__step h4 { margin-bottom: 10px; }
.mok-process__step p { font-size: 15px; }
.mok-process__connector { display: none; }
@media (min-width: 768px) {
  .mok-process__connector { display: block; position: absolute; top: 32px; left: calc(50% + 40px); width: calc(100% - 80px); height: 2px; background: var(--mok-light); z-index: 1; }
  .mok-process__connector::after { content: ''; position: absolute; right: -6px; top: -4px; width: 10px; height: 10px; border-right: 2px solid var(--mok-primary); border-top: 2px solid var(--mok-primary); transform: rotate(45deg); }
}

/* ─── S10: CONTACT FORM ───────────────────────────────────── */
.mok-contact { padding: 80px 0; }
.mok-contact__info { color: rgba(238,240,236,.9); }
.mok-contact__info h2 { color: var(--mok-white); margin-bottom: 20px; }
.mok-contact__info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.mok-contact__info-item .material-icons-outlined { font-size: 24px; color: var(--mok-primary); margin-top: 2px; }
.mok-contact__info-item a { color: var(--mok-primary); font-weight: 600; font-size: 18px; }
.mok-contact__info-item a:hover { color: var(--mok-white); }
.mok-contact__form-wrapper { background: rgba(255,255,255,.07); border-radius: var(--mok-radius-lg); padding: 40px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.1); }
.mok-contact__form-wrapper .wpcf7-form label { color: rgba(248,246,241,.8); font-family: var(--mok-font-body); font-size: 14px; font-weight: 500; display: block; margin-bottom: 6px; }
.mok-contact__form-wrapper .wpcf7-form input[type="text"],
.mok-contact__form-wrapper .wpcf7-form input[type="tel"],
.mok-contact__form-wrapper .wpcf7-form input[type="email"],
.mok-contact__form-wrapper .wpcf7-form textarea,
.mok-contact__form-wrapper .wpcf7-form select {
  width: 100%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--mok-radius-sm); padding: 14px 16px; color: var(--mok-white); font-family: var(--mok-font-body); font-size: 16px; transition: all .2s ease; min-height: 52px;
}
.mok-contact__form-wrapper .wpcf7-form input:focus,
.mok-contact__form-wrapper .wpcf7-form textarea:focus {
  outline: none; border-color: var(--mok-primary); background: rgba(255,255,255,.15); box-shadow: 0 0 0 3px rgba(123,201,80,.25);
}
.mok-contact__form-wrapper .wpcf7-form textarea { min-height: 120px; resize: vertical; }
.mok-contact__form-wrapper .wpcf7-form input[type="submit"] { width: 100%; background: var(--mok-primary); color: var(--mok-text); font-family: var(--mok-font-body); font-weight: 600; font-size: 16px; letter-spacing: .04em; text-transform: uppercase; border: none; border-radius: var(--mok-radius-full); padding: 16px 32px; cursor: pointer; transition: all .3s ease; min-height: 56px; box-shadow: var(--mok-shadow-glow); }
.mok-contact__form-wrapper .wpcf7-form input[type="submit"]:hover { background: var(--mok-forest); color: var(--mok-white); transform: translateY(-2px); }
.mok-contact__free-note { text-align: center; margin-top: 16px; font-size: 13px; color: rgba(238,240,236,.6); }
.mok-contact__free-note .material-icons-outlined { font-size: 16px; vertical-align: middle; }

/* ─── S11: MAP ────────────────────────────────────────────── */
.mok-map__embed { border-radius: var(--mok-radius-lg); overflow: hidden; box-shadow: var(--mok-shadow-lg); aspect-ratio: 16/9; }
.mok-map__embed iframe { width: 100%; height: 100%; border: 0; }
.mok-map__cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; justify-content: center; }
.mok-map__city { display: inline-flex; align-items: center; gap: 4px; padding: 8px 16px; background: var(--mok-tint); border-radius: var(--mok-radius-full); font-size: 14px; font-weight: 500; color: var(--mok-forest); transition: all .2s ease; }
.mok-map__city:hover { background: var(--mok-primary); color: var(--mok-white); }
.mok-map__city .material-icons-outlined { font-size: 16px; }

/* ─── S12: FAQ ────────────────────────────────────────────── */
.mok-faq__item { border: 1px solid var(--mok-light); border-radius: var(--mok-radius-md); margin-bottom: 12px; overflow: hidden; transition: all .3s ease; background: var(--mok-white); }
.mok-faq__item.active { border-color: var(--mok-primary); box-shadow: var(--mok-shadow-sm); }
.mok-faq__question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; font-family: var(--mok-font-body); font-size: 17px; font-weight: 600; color: var(--mok-text); transition: color .2s ease; }
.mok-faq__question:hover { color: var(--mok-forest); }
.mok-faq__question .material-icons-outlined { font-size: 24px; color: var(--mok-primary); transition: transform .3s var(--mok-ease-spring); flex-shrink: 0; }
.mok-faq__item.active .mok-faq__question .material-icons-outlined { transform: rotate(180deg); }
.mok-faq__answer { max-height: 0; overflow: hidden; transition: max-height .4s var(--mok-ease-out), padding .3s ease; }
.mok-faq__answer-inner { padding: 0 24px 20px; font-size: 16px; line-height: 1.7; color: var(--mok-body); }
.mok-faq__item.active .mok-faq__answer { max-height: 500px; }

/* ─── S13: FOOTER ─────────────────────────────────────────── */
.mok-footer { background: var(--mok-gradient-dark); padding: 64px 0 32px; color: var(--mok-light); }
.mok-footer a { color: var(--mok-primary); }
.mok-footer a:hover { color: var(--mok-white); }
.mok-footer__logo { margin-bottom: 20px; }
.mok-footer__logo img { height: 48px; width: auto; }
.mok-footer__desc { font-size: 15px; line-height: 1.7; color: rgba(238,240,236,.7); max-width: 320px; }
.mok-footer__heading { font-family: var(--mok-font-body); font-weight: 600; font-size: 16px; color: var(--mok-white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: .06em; }
.mok-footer__links { list-style: none; padding: 0; margin: 0; }
.mok-footer__links li { margin-bottom: 10px; }
.mok-footer__links li a { font-size: 15px; color: rgba(238,240,236,.7); display: flex; align-items: center; gap: 6px; }
.mok-footer__links li a:hover { color: var(--mok-primary); }
.mok-footer__bottom { border-top: 1px solid rgba(238,240,236,.12); margin-top: 48px; padding-top: 24px; text-align: center; font-size: 13px; color: rgba(238,240,236,.5); }

/* ─── STICKY CTA (MOBILE) ────────────────────────────────── */
.mok-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--mok-z-sticky); background: var(--mok-primary); padding: 0; box-shadow: 0 -4px 20px rgba(0,0,0,.15); }
.mok-sticky-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; height: 60px; color: var(--mok-text); font-family: var(--mok-font-body); font-weight: 700; font-size: 18px; text-decoration: none; letter-spacing: .02em; }
.mok-sticky-cta a .material-icons-outlined { font-size: 24px; animation: mok-pulse-phone 2s ease-in-out infinite; }
@keyframes mok-pulse-phone { 0%,100%{transform:scale(1)} 50%{transform:scale(1.15)} }
@media (max-width: 991px) { .mok-sticky-cta { display: block; } .mok-landing { padding-bottom: 60px; } }

/* ─── SMOOTH SCROLL ───────────────────────────────────────── */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* ─── PARALLAX HELPER ─────────────────────────────────────── */
.mok-parallax-bg { will-change: transform; }

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes mok-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.mok-float { animation: mok-float 4s ease-in-out infinite; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mok-landing *, .mok-landing *::before, .mok-landing *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}