/*
Theme Name: AskMeHow2SWL
Theme URI: https://www.askmehow2swl.com
Author: Dr. Sameer Parmar / MDS
Description: A lightweight, Elementor Free compatible WordPress theme for AskMeHow2SWL. Includes complete website pages, shared design system, responsive layout, interactive educational sections, and no Elementor Pro dependency.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: askmehow2swl
*/

/* =========================================================
   AskMeHow2SWL Design System
   Palette: Near Black + Off White + Signal Orange
   ========================================================= */

:root {
  --amh-primary: #FF6B35;
  --amh-primary-dark: #DD4F21;
  --amh-ink: #111111;
  --amh-ink-soft: #24211F;
  --amh-paper: #FAFAF7;
  --amh-paper-warm: #F3EEE7;
  --amh-paper-soft: #F8F5EF;
  --amh-white: #FFFFFF;
  --amh-text: #555555;
  --amh-muted: #77716B;
  --amh-line: #E5DED4;
  --amh-gold: #C6A15B;
  --amh-copper: #B7653C;
  --amh-green: #2F7D4F;
  --amh-warning: #A26300;
  --amh-danger: #B42318;
  --amh-radius-xl: 34px;
  --amh-radius-lg: 26px;
  --amh-radius-md: 18px;
  --amh-shadow-soft: 0 20px 60px rgba(17,17,17,.08);
  --amh-shadow-card: 0 12px 34px rgba(17,17,17,.07);
  --amh-max: 1180px;
}

/* WordPress reset and base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, var(--amh-paper) 0%, var(--amh-paper-soft) 100%);
  color: var(--amh-ink);
  font-size: 18px;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin-top: 0; }
main { min-height: 70vh; }

.amh-skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--amh-ink);
  color: white;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.amh-skip-link:focus { left: 12px; }

/* Header */
.amh-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,247,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229,222,212,.85);
}
.admin-bar .amh-site-header { top: 32px; }

.amh-navbar {
  max-width: var(--amh-max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.amh-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}
.amh-brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  border: 1px solid var(--amh-line);
  padding: 4px;
  transform: rotate(-3deg);
}
.amh-brand-title {
  display: block;
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.amh-brand-subtitle {
  display: block;
  font: 600 12px/1.3 "Inter", sans-serif;
  color: var(--amh-muted);
  margin-top: 3px;
}
.amh-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.amh-nav-links a {
  font: 700 14px/1 "Inter", sans-serif;
  color: var(--amh-muted);
  padding: 11px 12px;
  border-radius: 999px;
  transition: .2s ease;
}
.amh-nav-links a:hover,
.amh-nav-links a.current-menu-item,
.amh-nav-links .current-menu-item > a,
.amh-nav-links a[aria-current="page"] {
  color: var(--amh-primary);
  background: var(--amh-paper-warm);
}
.amh-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.amh-mobile-toggle {
  display: none;
  border: 1px solid var(--amh-line);
  background: var(--amh-white);
  color: var(--amh-ink);
  border-radius: 999px;
  padding: 10px 14px;
  font: 800 14px/1 "Inter", sans-serif;
  cursor: pointer;
}

/* Layout */
.amh-container {
  max-width: var(--amh-max);
  margin: 0 auto;
  padding: 0 22px;
}
.amh-hero { padding: 92px 0 72px; }
.amh-section { padding: 92px 0; }
.amh-section-tight { padding: 58px 0; }
.amh-soft-band { background: var(--amh-paper-warm); }
.amh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 48px;
  align-items: center;
}
.amh-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.amh-grid-2 { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.amh-grid-3 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.amh-grid-4 { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }

/* Type */
.amh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  font: 800 13px/1 "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 22px;
}
.amh-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amh-gold);
}
.amh-kicker {
  color: var(--amh-primary);
  font: 800 13px/1 "Inter", sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.amh-title, .amh-h2, .amh-h3 {
  color: var(--amh-ink);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}
.amh-title {
  font: 700 clamp(46px, 7vw, 82px)/.96 "IBM Plex Serif", Georgia, serif;
  max-width: 880px;
}
.amh-h2 {
  font: 700 clamp(34px, 4.6vw, 58px)/1.02 "IBM Plex Serif", Georgia, serif;
}
.amh-h3 {
  font: 700 28px/1.12 "IBM Plex Serif", Georgia, serif;
}
.amh-lead {
  color: var(--amh-text);
  font-size: 22px;
  line-height: 1.58;
  margin: 24px 0 0;
  max-width: 800px;
}
.amh-small-copy {
  color: var(--amh-muted);
  font: 600 15px/1.55 "Inter", sans-serif;
}
.amh-section-header {
  max-width: 780px;
  margin-bottom: 36px;
}
.amh-section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.amh-section-intro {
  color: var(--amh-text);
  font-size: 20px;
  max-width: 760px;
  margin: 18px 0 0;
}
.center .amh-section-intro { margin-left: auto; margin-right: auto; }
.amh-breadcrumb {
  color: var(--amh-muted);
  font: 700 13px/1.2 "Inter", sans-serif;
  margin-bottom: 18px;
}
.amh-breadcrumb a { color: var(--amh-primary); }

/* Buttons */
.amh-hero-actions,
.amh-section-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.amh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 14px 21px;
  font: 800 14px/1 "Inter", sans-serif;
  cursor: pointer;
  transition: .2s ease;
  white-space: nowrap;
}
.amh-btn-primary {
  background: var(--amh-primary);
  color: white;
  box-shadow: 0 12px 28px rgba(255,107,53,.22);
}
.amh-btn-primary:hover { background: var(--amh-primary-dark); color: white; transform: translateY(-1px); }
.amh-btn-secondary {
  background: var(--amh-white);
  color: var(--amh-ink);
  border: 1px solid var(--amh-line);
}
.amh-btn-secondary:hover {
  border-color: rgba(255,107,53,.45);
  color: var(--amh-primary);
  transform: translateY(-1px);
}
.amh-btn-gold { background: var(--amh-gold); color: var(--amh-ink); }

/* Cards and panels */
.amh-card {
  background: var(--amh-white);
  border: 1px solid var(--amh-line);
  border-radius: var(--amh-radius-lg);
  box-shadow: var(--amh-shadow-card);
  padding: 26px;
}
.amh-card.hoverable { transition: .24s ease; }
.amh-card.hoverable:hover {
  transform: translateY(-4px);
  box-shadow: var(--amh-shadow-soft);
  border-color: rgba(255,107,53,.32);
}
.amh-card p {
  color: var(--amh-text);
  font-size: 16px;
  line-height: 1.58;
  margin: 12px 0 0;
}
.amh-micro {
  color: var(--amh-muted);
  font: 700 12px/1.2 "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.amh-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  display: grid;
  place-items: center;
  font: 900 16px/1 "Inter", sans-serif;
  margin-bottom: 18px;
}
.amh-stat-card {
  background: white;
  border: 1px solid var(--amh-line);
  border-radius: 22px;
  box-shadow: var(--amh-shadow-card);
  padding: 20px;
}
.amh-stat-card strong {
  display: block;
  font: 900 30px/1 "Inter", sans-serif;
  color: var(--amh-primary);
}
.amh-stat-card span {
  display: block;
  margin-top: 7px;
  color: var(--amh-muted);
  font: 700 14px/1.35 "Inter", sans-serif;
}
.amh-dark-panel {
  background: var(--amh-ink);
  color: white;
  border-radius: var(--amh-radius-xl);
  padding: 40px;
  box-shadow: var(--amh-shadow-soft);
  position: relative;
  overflow: hidden;
}
.amh-dark-panel::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,107,53,.25), transparent 68%);
  border-radius: 50%;
}
.amh-dark-panel > * { position: relative; z-index: 1; }
.amh-dark-panel .amh-h2,
.amh-dark-panel .amh-h3 { color: white; }
.amh-dark-panel p { color: #F4E7DF; }

/* Utility components */
.amh-pill-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.amh-pill {
  display: inline-flex;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  border: 1px solid var(--amh-line);
  border-radius: 999px;
  padding: 7px 11px;
  font: 800 12px/1 "Inter", sans-serif;
}
.amh-check-list { display: grid; gap: 12px; margin-top: 22px; }
.amh-check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--amh-line);
  border-radius: var(--amh-radius-md);
  padding: 16px;
  color: var(--amh-text);
}
.amh-check {
  width: 24px; height: 24px;
  border-radius: 9px;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  display: grid;
  place-items: center;
  font: 900 13px/1 "Inter", sans-serif;
  flex: 0 0 auto;
}
.amh-callout {
  border-radius: var(--amh-radius-lg);
  padding: 26px;
  border: 1px solid var(--amh-line);
  background: white;
  box-shadow: var(--amh-shadow-card);
}
.amh-callout.safety { background: #FFF4F0; border-color: rgba(180,35,24,.18); }
.amh-callout.safety .amh-kicker { color: var(--amh-danger); }
.amh-callout.gold { background: #FFF8E9; border-color: rgba(198,161,91,.32); }

/* Forms and interactions */
.amh-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin: 24px 0; }
.amh-label {
  display: block;
  color: var(--amh-ink);
  font: 800 13px/1.2 "Inter", sans-serif;
  margin-bottom: 7px;
}
.amh-input, .amh-select, .amh-textarea {
  width: 100%;
  border: 1px solid var(--amh-line);
  background: white;
  border-radius: 16px;
  padding: 14px;
  color: var(--amh-ink);
  font: 600 15px/1.3 "Inter", sans-serif;
  outline: none;
  transition: .18s ease;
}
.amh-input:focus, .amh-select:focus, .amh-textarea:focus {
  border-color: var(--amh-primary);
  box-shadow: 0 0 0 4px rgba(255,107,53,.10);
}
.amh-textarea { resize: vertical; min-height: 150px; }
.amh-result-box {
  display: none;
  margin-top: 18px;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--amh-line);
  background: var(--amh-paper-soft);
  color: var(--amh-text);
}
.amh-result-box.show { display: block; animation: amhFadeIn .25s ease both; }
.amh-result-title {
  font: 900 18px/1.2 "Inter", sans-serif;
  margin-bottom: 8px;
}
.amh-result-box.good { border-color: rgba(47,125,79,.32); background: #F1FAF3; }
.amh-result-box.good .amh-result-title { color: var(--amh-green); }
.amh-result-box.care { border-color: rgba(198,161,91,.45); background: #FFF8E9; }
.amh-result-box.care .amh-result-title { color: var(--amh-warning); }
.amh-result-box.poor { border-color: rgba(180,35,24,.25); background: #FFF3F1; }
.amh-result-box.poor .amh-result-title { color: var(--amh-danger); }

.amh-quiz-options { display: grid; gap: 10px; margin-top: 22px; }
.amh-quiz-options button {
  text-align: left;
  border: 1px solid var(--amh-line);
  background: white;
  border-radius: 18px;
  padding: 15px 16px;
  font: 800 15px/1.3 "Inter", sans-serif;
  cursor: pointer;
  transition: .2s ease;
  color: var(--amh-ink);
}
.amh-quiz-options button:hover { border-color: rgba(255,107,53,.45); background: var(--amh-paper); }
.amh-quiz-options button.correct { border-color: rgba(47,125,79,.42); background: #F1FAF3; color: var(--amh-green); }
.amh-quiz-options button.wrong { border-color: rgba(180,35,24,.25); background: #FFF3F1; color: var(--amh-danger); }

.amh-formula-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.amh-formula-buttons button {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: white;
  border-radius: 999px;
  padding: 12px 16px;
  font: 900 14px/1 "Inter", sans-serif;
  cursor: pointer;
  transition: .2s ease;
}
.amh-formula-buttons button:hover,
.amh-formula-buttons button.active { background: white; color: var(--amh-primary); }
.amh-formula-detail {
  margin-top: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 22px;
  color: #F4E7DF;
}

.amh-ramping-box {
  background: white;
  border: 1px solid var(--amh-line);
  border-radius: var(--amh-radius-xl);
  padding: 32px;
  box-shadow: var(--amh-shadow-card);
}
.amh-phase-line {
  height: 10px;
  background: #ECE4DA;
  border-radius: 999px;
  overflow: hidden;
  margin: 28px 0;
}
.amh-phase-fill {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #111111, #FF6B35, #C6A15B);
  border-radius: 999px;
  transition: .4s ease;
}
.amh-phase-controls { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 12px; }
.amh-phase-controls button {
  border: 1px solid var(--amh-line);
  background: white;
  border-radius: 18px;
  padding: 14px 10px;
  font: 900 13px/1.2 "Inter", sans-serif;
  cursor: pointer;
  color: var(--amh-muted);
}
.amh-phase-controls button.active { background: var(--amh-primary); color: white; border-color: var(--amh-primary); }
.amh-phase-text { color: var(--amh-text); min-height: 72px; margin-top: 18px; }

.amh-journey { display: grid; gap: 12px; }
.amh-journey-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid var(--amh-line);
  border-radius: 20px;
  padding: 17px;
  cursor: pointer;
  transition: .2s ease;
}
.amh-journey-step:hover,
.amh-journey-step.active {
  border-color: rgba(255,107,53,.45);
  box-shadow: var(--amh-shadow-card);
}
.amh-step-num {
  width: 34px; height: 34px;
  border-radius: 12px;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  display: grid;
  place-items: center;
  font: 900 14px/1 "Inter", sans-serif;
  flex: 0 0 auto;
}
.amh-step-title { font: 900 16px/1.25 "Inter", sans-serif; }
.amh-step-copy {
  font-size: 15px;
  color: var(--amh-text);
  line-height: 1.45;
  margin-top: 5px;
  display: none;
}
.amh-journey-step.active .amh-step-copy { display: block; }

.amh-myth-card { perspective: 1000px; height: 260px; cursor: pointer; }
.amh-myth-inner { position: relative; width: 100%; height: 100%; transition: transform .55s; transform-style: preserve-3d; }
.amh-myth-card.flipped .amh-myth-inner { transform: rotateY(180deg); }
.amh-myth-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  background: white;
  border: 1px solid var(--amh-line);
  border-radius: var(--amh-radius-lg);
  padding: 24px;
  box-shadow: var(--amh-shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.amh-myth-back { transform: rotateY(180deg); background: var(--amh-ink); color: white; border-color: var(--amh-ink); }
.amh-myth-tag {
  font: 900 12px/1 "Inter", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amh-primary);
}
.amh-myth-back .amh-myth-tag { color: var(--amh-gold); }
.amh-myth-back .amh-h3 { color: white; }
.amh-myth-back p { color: #F4E7DF; }

.amh-profile-card {
  background: var(--amh-ink);
  border-radius: var(--amh-radius-xl);
  padding: 34px;
  color: white;
  box-shadow: var(--amh-shadow-soft);
  min-height: 430px;
  position: relative;
  overflow: hidden;
}
.amh-profile-card::after {
  content: "#AskMeHow2SWL";
  position: absolute;
  bottom: 24px;
  left: 24px;
  font: 900 28px/1 "Inter", sans-serif;
  color: rgba(255,255,255,.08);
  letter-spacing: -0.06em;
}
.amh-profile-avatar {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amh-paper-warm), white);
  border: 6px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  color: var(--amh-primary);
  font: 800 54px/1 "IBM Plex Serif", Georgia, serif;
  margin-bottom: 28px;
}
.amh-profile-card .amh-h2 { color: white; }
.amh-profile-card p { color: #F4E7DF; }

/* Footer */
.amh-page-footer {
  background: var(--amh-ink);
  color: white;
  padding: 48px 0;
  margin-top: 60px;
}
.amh-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.amh-page-footer p { color: #F4E7DF; margin: 8px 0 0; font-size: 15px; }
.amh-footer-links { display: flex; flex-wrap: wrap; gap: 9px; }
.amh-footer-links a {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 9px 12px;
  color: white;
  font: 800 13px/1 "Inter", sans-serif;
}

@keyframes amhFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Elementor compatibility */
.elementor-page .amh-site-content {
  overflow: hidden;
}
.elementor-widget-container .amh-container {
  padding-left: 0;
  padding-right: 0;
}

/* Responsive */
@media (max-width: 1020px) {
  .admin-bar .amh-site-header { top: 46px; }
  .amh-navbar { align-items: flex-start; flex-wrap: wrap; }
  .amh-mobile-toggle { display: inline-flex; }
  .amh-nav-links, .amh-nav-actions { display: none; width: 100%; }
  .amh-navbar.open .amh-nav-links,
  .amh-navbar.open .amh-nav-actions { display: flex; justify-content: flex-start; }
  .amh-hero-grid, .amh-split { grid-template-columns: 1fr; }
  .amh-grid-3, .amh-grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .amh-container, .amh-navbar { padding-left: 18px; padding-right: 18px; }
  .amh-hero { padding: 62px 0 48px; }
  .amh-section { padding: 66px 0; }
  .amh-section-tight { padding: 44px 0; }
  .amh-lead { font-size: 19px; }
  .amh-grid-2, .amh-grid-3, .amh-grid-4, .amh-form-grid, .amh-phase-controls { grid-template-columns: 1fr; }
  .amh-hero-actions, .amh-section-actions { flex-direction: column; align-items: stretch; }
  .amh-btn { width: 100%; }
  .amh-brand { min-width: 0; }
  .amh-brand-title { font-size: 20px; }
  .amh-brand-logo { width: 50px; height: 50px; }
  .amh-dark-panel, .amh-profile-card { padding: 28px; }
}



/* =========================================================
   Elementor Free editable page support
   ========================================================= */

.elementor-widget-heading .amh-el-title .elementor-heading-title,
.amh-el-title .elementor-heading-title {
  font: 700 clamp(46px, 7vw, 82px)/.96 "IBM Plex Serif", Georgia, serif !important;
  letter-spacing: -0.045em;
  color: var(--amh-ink);
}

.amh-el-h2 .elementor-heading-title {
  font: 700 clamp(34px, 4.6vw, 58px)/1.02 "IBM Plex Serif", Georgia, serif !important;
  letter-spacing: -0.045em;
  color: var(--amh-ink);
}

.amh-el-heading .elementor-heading-title {
  font-family: "IBM Plex Serif", Georgia, serif !important;
  letter-spacing: -0.04em;
}

.amh-el-lead,
.amh-el-lead .elementor-widget-container {
  color: var(--amh-text);
  font-size: 22px;
  line-height: 1.58;
  max-width: 800px;
}

.amh-el-text,
.amh-el-text .elementor-widget-container {
  color: var(--amh-text);
  font-size: 18px;
  line-height: 1.65;
}

.amh-el-small,
.amh-el-small .elementor-widget-container {
  color: var(--amh-muted);
  font: 600 15px/1.55 "Inter", sans-serif;
}

.amh-el-kicker .elementor-widget-container {
  color: var(--amh-primary);
  font: 800 13px/1 "Inter", sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.amh-el-eyebrow .elementor-widget-container {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  font: 800 13px/1 "Inter", sans-serif;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.amh-el-section-intro,
.amh-el-section-intro .elementor-widget-container {
  color: var(--amh-text);
  font-size: 20px;
  max-width: 760px;
}

.amh-el-center {
  text-align: center;
}

.amh-el-center .amh-el-section-intro,
.amh-el-center .amh-el-section-intro .elementor-widget-container,
.amh-el-section-intro.center,
.amh-el-section-intro.center .elementor-widget-container {
  margin-left: auto;
  margin-right: auto;
}

.amh-el-button-primary .elementor-button,
.amh-el-button-secondary .elementor-button {
  border-radius: 999px !important;
  padding: 14px 21px !important;
  font: 800 14px/1 "Inter", sans-serif !important;
}

.amh-el-button-primary .elementor-button {
  background: var(--amh-primary) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(255,107,53,.22);
}

.amh-el-button-secondary .elementor-button {
  background: var(--amh-white) !important;
  color: var(--amh-ink) !important;
  border: 1px solid var(--amh-line) !important;
}

.amh-el-card .elementor-icon-box-wrapper {
  background: var(--amh-white);
  border: 1px solid var(--amh-line);
  border-radius: var(--amh-radius-lg);
  box-shadow: var(--amh-shadow-card);
  padding: 26px;
  min-height: 260px;
  transition: .24s ease;
}

.amh-el-card .elementor-icon-box-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--amh-shadow-soft);
  border-color: rgba(255,107,53,.32);
}

.amh-el-card .elementor-icon {
  width: 48px;
  height: 48px;
  border-radius: 17px;
  background: var(--amh-paper-warm);
  color: var(--amh-primary);
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
}

.amh-el-card .elementor-icon i {
  font-size: 12px;
}

.amh-el-card .elementor-icon-box-title {
  font: 700 28px/1.12 "IBM Plex Serif", Georgia, serif !important;
  letter-spacing: -0.04em;
  margin: 0 0 12px !important;
}

.amh-el-card .elementor-icon-box-description {
  color: var(--amh-text) !important;
  font-size: 16px !important;
  line-height: 1.58 !important;
}

.amh-el-soft {
  background: var(--amh-paper-warm);
}

.amh-el-cards.no-top > .elementor-container {
  margin-top: -70px;
}

.amh-elementor-interactive-card {
  background: var(--amh-white);
  border: 1px solid var(--amh-line);
  border-radius: var(--amh-radius-lg);
  box-shadow: var(--amh-shadow-card);
  padding: 26px;
}

/* Fix Elementor default spacing */
.elementor-widget:not(:last-child) {
  margin-bottom: 18px;
}

.amh-el-button-primary,
.amh-el-button-secondary {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .amh-el-title .elementor-heading-title {
    font-size: 46px !important;
  }
  .amh-el-lead,
  .amh-el-lead .elementor-widget-container {
    font-size: 19px;
  }
  .amh-el-cards.no-top > .elementor-container {
    margin-top: 0;
  }
}
