.elementor-2681 .elementor-element.elementor-element-9dadf3b{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-843ddd5{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-ffac8ab{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-0328919{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-4c469b5{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-21d2aa1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-3518963{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-56aa70d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2681 .elementor-element.elementor-element-2d73716{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d009a79 *//* ============================================================
   SECTION: HERO
   BEM: .section--hero
   Mobile-first | Secure | No inline styles
   FIXES: background bleed, mobile gaps, spacing issues
   ============================================================ */

/* ── Reset & Box Model ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS Custom Properties ── */
:root {
  --color-primary:         #1a3c6e;
  --color-primary-dark:    #122d54;
  --color-accent:          #c8960c;
  --color-accent-light:    #f5c842;
  --color-white:           #ffffff;
  --color-text-dark:       #1a1a2e;
  --color-text-body:       #3d3d3d;
  --color-text-muted:      #6b7280;
  --color-bg-hero:         #f0f4f8;
  --color-bg-card:         #ffffff;
  --color-bg-badge:        #e8f0fe;
  --color-badge-text:      #1a3c6e;
  --color-border:          #d1d5db;
  --color-highlight:       #fff8e1;
  --color-ai-bg:           #eef6ff;
  --color-ai-border:       #93c5fd;
  --color-checklist-bg:    #f9fafb;
  --color-stat-bg:         #1a3c6e;
  --color-stat-border:     rgba(255, 255, 255, 0.15);
  --color-footer-dot:      #4ade80;

  --font-primary:          'Inter', 'Segoe UI', Arial, sans-serif;
  --font-weight-regular:   400;
  --font-weight-medium:    500;
  --font-weight-semibold:  600;
  --font-weight-bold:      700;
  --font-weight-extrabold: 800;

  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;

  --shadow-card: 0 4px 24px rgba(26, 60, 110, 0.10),
                 0 1px 4px  rgba(26, 60, 110, 0.06);
  --shadow-btn:  0 2px 8px  rgba(26, 60, 110, 0.18);

  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;

  --max-width:           1200px;

  /* ── Mobile base spacing ── */
  --section-padding-x:   1rem;
  --section-padding-y:   2.5rem;

  /* ── Inner gap (mobile → desktop) ── */
  --inner-gap-mobile:    1.5rem;
  --inner-gap-desktop:   4rem;

  /* ── Content gap ── */
  --content-gap-mobile:  1.25rem;
  --content-gap-desktop: 1.5rem;
}

/* ============================================================
   SECTION WRAPPER
   FIX: background now fills edge-to-edge with no bleed/gap
   ============================================================ */
.section--hero {
  background-color: var(--color-bg-hero);

  /* FIX: use padding shorthand to prevent any margin collapse */
  padding: var(--section-padding-y) var(--section-padding-x);

  /* FIX: width 100% ensures full bleed on all screen sizes */
  width: 100%;

  /* FIX: explicit min-width prevents horizontal scroll gap */
  min-width: 0;

  position: relative;
  overflow: hidden;

  /* FIX: isolate stacking context — prevents z-index bleed */
  isolation: isolate;
}

/* ── Background Gradient Pattern ── */
/* FIX: position fixed to section, not viewport */
.section--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(26, 60, 110, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(200, 150, 12, 0.06) 0%, transparent 50%);
  pointer-events: none;

  /* FIX: z-index -1 keeps pattern behind ALL content */
  z-index: -1;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.section__container {
  max-width: var(--max-width);
  width: 100%;
  margin-inline: auto;

  /* FIX: no extra padding here — padding lives on section */
  padding: 0;

  position: relative;
  z-index: 1;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.section__breadcrumb {
  /* FIX: tighter bottom margin on mobile */
  margin-bottom: 1.25rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-family: var(--font-primary);
}

.breadcrumb__item--active {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
}

.breadcrumb__link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-family: var(--font-primary);
}

.breadcrumb__link:hover,
.breadcrumb__link:focus-visible {
  color: var(--color-primary);
  text-decoration: underline;
  outline: none;
}

.breadcrumb__separator {
  color: var(--color-border);
  font-size: 0.75rem;
  user-select: none;
}

/* ============================================================
   HERO INNER
   FIX: column on mobile, row on desktop
   FIX: gap uses variable — tighter on mobile
   ============================================================ */
.section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--inner-gap-mobile);

  /* FIX: no extra margin or padding */
  margin: 0;
  padding: 0;
  width: 100%;
}

/* ============================================================
   CONTENT COLUMN
   FIX: gap tighter on mobile
   ============================================================ */
.section__content {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap-mobile);

  /* FIX: full width on mobile — no leftover space */
  width: 100%;
  min-width: 0;
}

/* ============================================================
   BADGE
   ============================================================ */
.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-bg-badge);
  color: var(--color-badge-text);
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: var(--font-weight-semibold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xl);
  width: fit-content;
  letter-spacing: 0.01em;
  border: 1px solid rgba(26, 60, 110, 0.12);
  user-select: none;

  /* FIX: prevent badge from stretching full width on mobile */
  align-self: flex-start;
}

.badge__icon {
  font-size: 1rem;
  line-height: 1;
}

/* ============================================================
   H1 TITLE
   FIX: fluid font size — no overflow on small screens
   ============================================================ */
.section__title--hero {
  font-family: var(--font-primary);

  /* FIX: clamp min set lower for tiny screens */
  font-size: clamp(1.5rem, 6vw, 2.75rem);

  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;

  /* FIX: full width on mobile, constrained on desktop */
  max-width: 100%;

  /* FIX: break long words on very small screens */
  overflow-wrap: break-word;
  word-break: break-word;
}

.section__title-highlight {
  color: var(--color-primary);
  display: inline;
}

/* ============================================================
   AI ANSWER BLOCK
   ============================================================ */
.section__ai-answer {
  background-color: var(--color-ai-bg);
  border-left: 4px solid var(--color-ai-border);
  border-radius: var(--radius-md);

  /* FIX: smaller padding on mobile */
  padding: 0.875rem 1rem;
}

.ai-answer__text {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-body);
  margin: 0;
}

.ai-answer__text strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

/* ============================================================
   INTRO PARAGRAPH
   ============================================================ */
.section__intro {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-text-body);

  /* FIX: max-width as 100% on mobile */
  max-width: 100%;
}

/* ============================================================
   CHECKLIST WRAPPER
   FIX: padding tighter on mobile
   ============================================================ */
.section__checklist-wrapper {
  background-color: var(--color-checklist-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem;

  /* FIX: no horizontal overflow */
  width: 100%;
  min-width: 0;
}

.checklist__heading {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;

  /* FIX: tighter gap on mobile */
  gap: 0.5rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checklist__icon {
  font-size: 1rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.checklist__text {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-text-body);
  font-weight: var(--font-weight-medium);

  /* FIX: prevent overflow on narrow screens */
  min-width: 0;
  overflow-wrap: break-word;
}

/* ============================================================
   CTA ROW
   FIX: stack buttons vertically on very small screens
   ============================================================ */
.section__cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}

/* ============================================================
   CTA BUTTONS
   FIX: full width on mobile, auto on tablet+
   ============================================================ */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition:
    background-color var(--transition-normal),
    box-shadow      var(--transition-normal),
    transform       var(--transition-fast),
    border-color    var(--transition-normal);
  white-space: nowrap;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  text-align: center;

  /* FIX: full width on mobile */
  width: 100%;
}

.cta-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-btn);
}

.cta-btn--primary:hover,
.cta-btn--primary:focus-visible {
  background-color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(26, 60, 110, 0.3);
  transform: translateY(-1px);
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.cta-btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-btn);
}

.cta-btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cta-btn--secondary:hover,
.cta-btn--secondary:focus-visible {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

.cta-btn--secondary:active {
  transform: translateY(0);
}

.cta-btn__arrow {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
  display: inline-block;
  flex-shrink: 0;
}

.cta-btn--primary:hover .cta-btn__arrow {
  transform: translateX(3px);
}

/* ============================================================
   PARTNER NOTE
   ============================================================ */
.section__partner-note {
  font-family: var(--font-primary);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  max-width: 100%;
  overflow-wrap: break-word;
}

.section__partner-note strong {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-semibold);
}

.section__inline-link {
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26, 60, 110, 0.4);
  transition:
    color var(--transition-fast),
    text-decoration-color var(--transition-fast);
}

.section__inline-link:hover,
.section__inline-link:focus-visible {
  color: var(--color-primary-dark);
  text-decoration-color: var(--color-primary-dark);
  outline: none;
}

/* ============================================================
   VISUAL COLUMN
   FIX: full width on mobile, no overflow
   ============================================================ */
.section__visual {
  width: 100%;
  min-width: 0;
}

/* ============================================================
   VISUAL CARD
   FIX: padding reduced on mobile to prevent gap/overflow
   ============================================================ */
.visual__card {
  background: linear-gradient(
    145deg,
    var(--color-primary)      0%,
    var(--color-primary-dark) 100%
  );
  border-radius: var(--radius-xl);

  /* FIX: smaller padding on mobile */
  padding: 1.5rem 1.25rem 1.25rem;

  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Decorative ring — pure CSS */
.visual__card::after {
  content: '';
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   STAT GRID
   FIX: 2x2 grid on mobile — no overflow
   ============================================================ */
.visual__stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  /* FIX: tighter gap on mobile */
  gap: 0.75rem;

  position: relative;
  z-index: 1;
}

.visual__stat-item {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-stat-border);
  border-radius: var(--radius-md);

  /* FIX: smaller padding on mobile */
  padding: 0.875rem 0.625rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  transition: background-color var(--transition-normal);
}

.visual__stat-item:hover {
  background-color: rgba(255, 255, 255, 0.13);
}

.stat__value {
  font-family: var(--font-primary);

  /* FIX: fluid font — readable on tiny screens */
  font-size: clamp(1.25rem, 5vw, 2rem);

  font-weight: var(--font-weight-extrabold);
  color: var(--color-accent-light);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat__label {
  font-family: var(--font-primary);

  /* FIX: slightly smaller on mobile */
  font-size: 0.72rem;

  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  text-align: center;
}

/* ============================================================
   CARD FOOTER
   ============================================================ */
.visual__card-footer {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  position: relative;
  z-index: 1;
}

.card-footer__dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background-color: var(--color-footer-dot);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

.card-footer__text {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin: 0;
  overflow-wrap: break-word;
  min-width: 0;
}

/* ============================================================
   PULSE ANIMATION
   ============================================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .card-footer__dot {
    animation: none;
  }
  .cta-btn,
  .cta-btn--primary:hover,
  .cta-btn--secondary:hover {
    transform: none;
    transition: none;
  }
  .cta-btn__arrow {
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE FIX: 375px–479px
   Prevents any horizontal overflow or padding bleed
   ============================================================ */
@media (max-width: 29.9375em) {
  :root {
    --section-padding-x: 0.875rem;
    --section-padding-y: 2rem;
  }

  .section__title--hero {
    font-size: clamp(1.375rem, 7vw, 1.75rem);
  }

  .visual__card {
    padding: 1.25rem 1rem 1rem;
  }

  .stat__value {
    font-size: clamp(1.1rem, 5vw, 1.5rem);
  }

  .stat__label {
    font-size: 0.68rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE LANDSCAPE / PHABLET: 480px+
   ============================================================ */
@media (min-width: 30em) {
  :root {
    --section-padding-x: 1.25rem;
    --section-padding-y: 3rem;
  }

  /* FIX: side-by-side buttons once there's enough room */
  .section__cta-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .cta-btn {
    width: auto;
    flex: 1 1 auto;
  }
}

/* ============================================================
   RESPONSIVE — TABLET: 768px+
   ============================================================ */
@media (min-width: 48em) {
  :root {
    --section-padding-x:    2rem;
    --section-padding-y:    4.5rem;
    --inner-gap-mobile:     2rem;
    --content-gap-mobile:   1.5rem;
  }

  .section__title--hero {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    max-width: 36ch;
  }

  .section__intro {
    max-width: 65ch;
  }

  .section__partner-note {
    max-width: 60ch;
  }

  .visual__card {
    padding: 2rem;
    gap: 1.5rem;
  }

  .visual__stat-grid {
    gap: 1rem;
  }

  .visual__stat-item {
    padding: 1rem 0.875rem;
  }

  .stat__label {
    font-size: 0.78rem;
  }

  .section__checklist-wrapper {
    padding: 1.25rem;
  }

  .section__checklist {
    gap: 0.625rem;
  }

  .ai-answer__text {
    font-size: 0.95rem;
  }

  .section__ai-answer {
    padding: 1rem 1.25rem;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP: 1024px+
   ============================================================ */
@media (min-width: 64em) {
  :root {
    --section-padding-x: 3rem;
    --section-padding-y: 6rem;
  }

  /* FIX: side-by-side layout */
  .section__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--inner-gap-desktop);
  }

  .section__content {
    flex: 1 1 55%;
    max-width: 640px;
    gap: var(--content-gap-desktop);
  }

  .section__visual {
    flex: 1 1 40%;
    max-width: 420px;

    /* FIX: align card to top on desktop */
    align-self: stretch;
    display: flex;
    align-items: center;
  }

  .visual__card {
    padding: 2.5rem;
    width: 100%;
  }

  .section__title--hero {
    font-size: clamp(2.125rem, 2.8vw, 3rem);
    max-width: 38ch;
  }

  .section__cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
  }

  .cta-btn {
    width: auto;
  }
}

/* ============================================================
   RESPONSIVE — LARGE DESKTOP: 1280px+
   ============================================================ */
@media (min-width: 80em) {
  :root {
    --section-padding-x: 4rem;
  }

  .section__content {
    max-width: 660px;
  }

  .section__visual {
    max-width: 440px;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .section--hero {
    background: none !important;
    padding: 1rem 0;
  }

  .section--hero::before {
    display: none;
  }

  .section__inner {
    flex-direction: column;
  }

  .visual__card {
    background: none !important;
    border: 1px solid #ccc;
    box-shadow: none;
  }

  .cta-btn {
    display: none !important;
  }

  .stat__value,
  .stat__label {
    color: var(--color-text-dark) !important;
  }

  .card-footer__dot {
    display: none;
  }

  .section__badge {
    border: 1px solid #ccc;
    background: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c9f6b94 *//* ============================================================
   SECTION: KEY TAKEAWAYS
   File: section--key-takeaways.css
   Scope: Isolated — all .elementor-2681 .elementor-element.elementor-element-c9f6b94s scoped to .section--key-takeaways
   ============================================================ */

/* ── Reset & Box Model ── */
.section--key-takeaways *,
.section--key-takeaways *::before,
.section--key-takeaways *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section Wrapper ── */
.section--key-takeaways {
  background-color: #ffffff;
  padding: 80px 20px;
  width: 100%;
}

/* ── Container ── */
.section--key-takeaways .section__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Section Label ── */
.section--key-takeaways .section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8860b;
  background-color: #fef9ec;
  border: 1px solid #f0d580;
  border-radius: 4px;
  padding: 4px 12px;
  width: fit-content;
}

/* ── Section Title ── */
.section--key-takeaways .section__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* ── AI Answer Paragraph ── */
.section--key-takeaways .section__ai-answer {
  font-size: 1rem;
  line-height: 1.75;
  color: #444444;
  max-width: 820px;
  border-left: 4px solid #c8a951;
  padding-left: 16px;
}

/* ── Highlight Box ── */
.section--key-takeaways .section__highlight-box {
  background-color: #fdf6e3;
  border: 1px solid #e8d08a;
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section--key-takeaways .section__highlight-box-text {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #7a5c00;
  letter-spacing: 0.01em;
}

/* ── Table Wrapper (Scrollable on Mobile) ── */
.section--key-takeaways .section__table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* ── Table ── */
.section--key-takeaways .section__comparison-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background-color: #ffffff;
  font-size: 0.9375rem;
}

/* ── Table Head ── */
.section--key-takeaways .section__table-th {
  background-color: #1a1a2e;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
}

.section--key-takeaways .section__table-th--number {
  width: 56px;
  text-align: center;
}

/* ── Table Rows ── */
.section--key-takeaways .section__table-row {
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.section--key-takeaways .section__table-row:last-child {
  border-bottom: none;
}

.section--key-takeaways .section__table-row:nth-child(even) {
  background-color: #fafafa;
}

.section--key-takeaways .section__table-row:hover {
  background-color: #fef9ec;
}

/* ── Table Cells ── */
.section--key-takeaways .section__table-td {
  padding: 16px 20px;
  color: #2a2a2a;
  vertical-align: middle;
  line-height: 1.5;
}

.section--key-takeaways .section__table-td--number {
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  color: #c8a951;
  width: 56px;
}

.section--key-takeaways .section__table-td--benefit {
  font-weight: 600;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section--key-takeaways .section__table-td--impact {
  color: #555555;
  font-weight: 400;
}

/* ── Table Icon ── */
.section--key-takeaways .section__table-icon {
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ── CTA Link Row ── */
.section--key-takeaways .section__cta-link-wrap {
  padding-top: 4px;
}

.section--key-takeaways .section__cta-link-text {
  font-size: 0.9375rem;
  color: #555555;
  line-height: 1.6;
}

.section--key-takeaways .section__cta-link {
  color: #b8860b;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.section--key-takeaways .section__cta-link:hover,
.section--key-takeaways .section__cta-link:focus-visible {
  color: #7a5c00;
  opacity: 0.9;
  outline: 2px solid #c8a951;
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Focus Visible: Table Wrapper ── */
.section--key-takeaways .section__table-wrapper:focus-visible {
  outline: 2px solid #c8a951;
  outline-offset: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet ── */
@media (max-width: 768px) {
  .section--key-takeaways {
    padding: 60px 16px;
  }

  .section--key-takeaways .section__container {
    gap: 22px;
  }

  .section--key-takeaways .section__title {
    font-size: 1.5rem;
  }

  .section--key-takeaways .section__comparison-table {
    font-size: 0.875rem;
  }

  .section--key-takeaways .section__table-td {
    padding: 14px 16px;
  }

  .section--key-takeaways .section__table-th {
    padding: 12px 16px;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .section--key-takeaways {
    padding: 48px 12px;
  }

  .section--key-takeaways .section__title {
    font-size: 1.3125rem;
  }

  .section--key-takeaways .section__ai-answer {
    font-size: 0.9375rem;
  }

  .section--key-takeaways .section__highlight-box {
    padding: 12px 16px;
  }

  .section--key-takeaways .section__table-td--benefit {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .section--key-takeaways {
    padding: 20px 0;
    box-shadow: none;
  }

  .section--key-takeaways .section__table-row:hover {
    background-color: transparent;
  }

  .section--key-takeaways .section__cta-link::after {
    content: " (" attr(href) ")";
    font-size: 0.75rem;
    color: #888888;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3632aa7 *//* ============================================================
   SECTION: Financial & Tax Overview
   BEM: .section--financial-tax-overview
   Background: White
   ============================================================ */

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

/* ── Section Wrapper ── */
.section--financial-tax-overview {
  background-color: #ffffff;
  padding: 80px 24px;
  width: 100%;
  overflow: hidden;
}

/* ── Container ── */
.section--financial-tax-overview .section__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Eyebrow Label ── */
.section--financial-tax-overview .section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1B4FD8;
  background-color: #EEF3FF;
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}

/* ── Heading ── */
.section--financial-tax-overview .section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #0A0A0A;
  max-width: 760px;
}

/* ── AI Answer Block ── */
.section--financial-tax-overview .section__ai-answer {
  background-color: #F5F8FF;
  border-left: 4px solid #1B4FD8;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  max-width: 860px;
}

.section--financial-tax-overview .section__ai-answer p {
  font-size: 1rem;
  line-height: 1.75;
  color: #1A1A2E;
}

.section--financial-tax-overview .section__ai-answer strong {
  color: #1B4FD8;
  font-weight: 700;
}

/* ── Intro Paragraph ── */
.section--financial-tax-overview .section__intro {
  font-size: 1rem;
  line-height: 1.8;
  color: #444444;
  max-width: 860px;
}

/* ── Inline Link ── */
.section--financial-tax-overview .section__inline-link {
  color: #1B4FD8;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.section--financial-tax-overview .section__inline-link:hover,
.section--financial-tax-overview .section__inline-link:focus-visible {
  color: #1340B0;
  text-decoration-color: #1340B0;
  outline: none;
}

.section--financial-tax-overview .section__inline-link:focus-visible {
  outline: 2px solid #1B4FD8;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ── Card Grid ── */
.section--financial-tax-overview .section__card-grid {
  display: grid;
  gap: 28px;
  width: 100%;
}

.section--financial-tax-overview .section__card-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

/* ── Card ── */
.section--financial-tax-overview .section__card {
  background-color: #ffffff;
  border: 1px solid #E8EDF8;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: 0 2px 12px rgba(27, 79, 216, 0.06);
}

.section--financial-tax-overview .section__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1B4FD8 0%, #4F8EF7 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.section--financial-tax-overview .section__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27, 79, 216, 0.12);
  border-color: #C5D5F8;
}

.section--financial-tax-overview .section__card:hover::before {
  opacity: 1;
}

/* Card Modifiers — subtle accent differentiation */
.section--financial-tax-overview .section__card--profit {
  background-color: #ffffff;
}

.section--financial-tax-overview .section__card--capital {
  background-color: #FAFBFF;
}

.section--financial-tax-overview .section__card--growth {
  background-color: #ffffff;
}

/* ── Card Icon ── */
.section--financial-tax-overview .section__card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 64px;
  height: 64px;
  background-color: #EEF3FF;
  border-radius: 12px;
  padding: 10px;
  flex-shrink: 0;
}

.section--financial-tax-overview .section__card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Card Title ── */
.section--financial-tax-overview .section__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.3;
}

/* ── Card Text ── */
.section--financial-tax-overview .section__card-text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1;
}

/* ── Card List ── */
.section--financial-tax-overview .section__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  border-top: 1px solid #EEF3FF;
  padding-top: 16px;
}

.section--financial-tax-overview .section__card-list li {
  font-size: 0.875rem;
  color: #333333;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.section--financial-tax-overview .section__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: #EEF3FF;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' width='14' height='14'%3E%3Cpath d='M3 7l3 3 5-5' stroke='%231B4FD8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet: 2 columns ── */
@media (max-width: 1024px) {
  .section--financial-tax-overview {
    padding: 64px 20px;
  }

  .section--financial-tax-overview .section__card-grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile: 1 column ── */
@media (max-width: 640px) {
  .section--financial-tax-overview {
    padding: 48px 16px;
  }

  .section--financial-tax-overview .section__container {
    gap: 24px;
  }

  .section--financial-tax-overview .section__card-grid--3col {
    grid-template-columns: 1fr;
  }

  .section--financial-tax-overview .section__ai-answer {
    padding: 16px 18px;
  }

  .section--financial-tax-overview .section__card {
    padding: 24px 20px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .section--financial-tax-overview .section__card,
  .section--financial-tax-overview .section__card::before,
  .section--financial-tax-overview .section__inline-link {
    transition: none;
  }

  .section--financial-tax-overview .section__card:hover {
    transform: none;
  }
}

/* High contrast mode support */
@media (forced-colors: active) {
  .section--financial-tax-overview .section__card {
    border: 2px solid ButtonText;
  }

  .section--financial-tax-overview .section__card::before {
    background: Highlight;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a39f9c1 *//* ============================================================
   SECTION: Tax Breakdown
   Scope: .section--tax-breakdown
   Theme: White background, clean, card-based layout
   ============================================================ */

/* ---------- CSS Custom Properties (Section Scope) ---------- */
.section--tax-breakdown {
  --tax-white:          #ffffff;
  --tax-bg:             #ffffff;
  --tax-border:         #e8ecf0;
  --tax-radius:         16px;
  --tax-shadow:         0 2px 16px rgba(0, 0, 0, 0.07);
  --tax-shadow-hover:   0 8px 32px rgba(0, 0, 0, 0.13);
  --tax-accent:         #1a73e8;
  --tax-accent-dark:    #1557b0;
  --tax-featured-bg:    #1a73e8;
  --tax-featured-text:  #ffffff;
  --tax-green:          #1a8a4a;
  --tax-green-bg:       #f0faf4;
  --tax-label-color:    #6b7280;
  --tax-title-color:    #111827;
  --tax-body-color:     #374151;
  --tax-check-color:    #1a8a4a;
  --tax-badge-personal: #e8f4ff;
  --tax-badge-personal-text: #1a73e8;
  --tax-badge-free:     #f0faf4;
  --tax-badge-free-text: #1a8a4a;
  --tax-transition:     0.25s ease;
  --tax-font-sans:      'Inter', 'Segoe UI', Arial, sans-serif;

  background-color: var(--tax-bg);
  padding-block: clamp(48px, 7vw, 96px);
  padding-inline: clamp(16px, 4vw, 32px);
  font-family: var(--tax-font-sans);
}

/* ---------- Container ---------- */
.section--tax-breakdown .section__container {
  max-width: 1140px;
  margin-inline: auto;
  width: 100%;
}

/* ---------- Section Label ---------- */
.section--tax-breakdown .section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tax-accent);
  background-color: #e8f4ff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

/* ---------- Section Title ---------- */
.section--tax-breakdown .section__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--tax-title-color);
  line-height: 1.25;
  margin: 0 0 16px;
  max-width: 740px;
}

/* ---------- AI Answer ---------- */
.section--tax-breakdown .section__ai-answer {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  color: var(--tax-body-color);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 0 48px;
  padding: 18px 22px;
  background-color: #f8fafc;
  border-left: 4px solid var(--tax-accent);
  border-radius: 0 8px 8px 0;
}

.section--tax-breakdown .section__ai-answer strong {
  color: var(--tax-title-color);
  font-weight: 600;
}

/* ============================================================
   TAX CARDS GRID
   ============================================================ */

.section--tax-breakdown .tax-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* ---------- Individual Card ---------- */
.section--tax-breakdown .tax-card {
  position: relative;
  background-color: var(--tax-white);
  border: 1px solid var(--tax-border);
  border-radius: var(--tax-radius);
  padding: 32px 28px;
  box-shadow: var(--tax-shadow);
  transition:
    transform var(--tax-transition),
    box-shadow var(--tax-transition),
    border-color var(--tax-transition);
  overflow: hidden;
}

/* Subtle top accent bar */
.section--tax-breakdown .tax-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 4px;
  background-color: var(--tax-border);
  transition: background-color var(--tax-transition);
}

.section--tax-breakdown .tax-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tax-shadow-hover);
  border-color: var(--tax-accent);
}

.section--tax-breakdown .tax-card:hover::before {
  background-color: var(--tax-accent);
}

/* ---------- Personal Tax Card ---------- */
.section--tax-breakdown .tax-card--personal::before {
  background-color: var(--tax-accent);
}

/* ---------- Free Zone Card ---------- */
.section--tax-breakdown .tax-card--freezone::before {
  background-color: var(--tax-green);
}

.section--tax-breakdown .tax-card--freezone:hover {
  border-color: var(--tax-green);
}

/* ---------- Featured Card (Corporate) ---------- */
.section--tax-breakdown .tax-card--featured {
  border-color: var(--tax-accent);
  background: linear-gradient(160deg, #f0f6ff 0%, #ffffff 60%);
  box-shadow: 0 4px 24px rgba(26, 115, 232, 0.14);
}

.section--tax-breakdown .tax-card--featured::before {
  background-color: var(--tax-accent);
  height: 5px;
}

.section--tax-breakdown .tax-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.2);
}

/* ---------- Icon Wrap ---------- */
.section--tax-breakdown .tax-card__icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--tax-accent);
}

.section--tax-breakdown .tax-card--freezone .tax-card__icon-wrap {
  color: var(--tax-green);
}

.section--tax-breakdown .tax-card__icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Badge (0% / 9%) ---------- */
.section--tax-breakdown .tax-card__badge {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--tax-accent);
  background-color: var(--tax-badge-personal);
  padding: 6px 16px;
  border-radius: 8px;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section--tax-breakdown .tax-card--freezone .tax-card__badge {
  color: var(--tax-green);
  background-color: var(--tax-badge-free);
}

.section--tax-breakdown .tax-card__badge--featured {
  color: var(--tax-accent);
  background-color: #dbeafe;
}

/* ---------- "Most Popular" Tag ---------- */
.section--tax-breakdown .tax-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tax-white);
  background-color: var(--tax-accent);
  padding: 3px 10px;
  border-radius: 100px;
  pointer-events: none;
  user-select: none;
}

/* ---------- Card Title ---------- */
.section--tax-breakdown .tax-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tax-title-color);
  margin: 0 0 4px;
  line-height: 1.3;
}

/* ---------- Card Subtitle ---------- */
.section--tax-breakdown .tax-card__subtitle {
  font-size: 0.85rem;
  color: var(--tax-label-color);
  margin: 0 0 20px;
  font-weight: 500;
}

/* ---------- Card List ---------- */
.section--tax-breakdown .tax-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section--tax-breakdown .tax-card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--tax-body-color);
  line-height: 1.55;
}

/* ---------- Checkmark ---------- */
.section--tax-breakdown .tax-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: var(--tax-green-bg);
}

.section--tax-breakdown .tax-card__check::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid var(--tax-check-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ---------- Card Link ---------- */
.section--tax-breakdown .tax-card__link {
  color: var(--tax-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: text-decoration-color var(--tax-transition), color var(--tax-transition);
  word-break: break-word;
}

.section--tax-breakdown .tax-card__link:hover,
.section--tax-breakdown .tax-card__link:focus-visible {
  color: var(--tax-accent-dark);
  text-decoration-color: var(--tax-accent-dark);
}

.section--tax-breakdown .tax-card__link:focus-visible {
  outline: 2px solid var(--tax-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .section--tax-breakdown .tax-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Featured card spans full width on tablet */
  .section--tax-breakdown .tax-card--featured {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }
}

/* Mobile: 1 column */
@media (max-width: 560px) {
  .section--tax-breakdown {
    padding-block: 40px;
    padding-inline: 16px;
  }

  .section--tax-breakdown .tax-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section--tax-breakdown .tax-card--featured {
    grid-column: auto;
    max-width: 100%;
  }

  .section--tax-breakdown .tax-card {
    padding: 24px 20px;
  }

  .section--tax-breakdown .section__ai-answer {
    margin-bottom: 32px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .section--tax-breakdown .tax-card {
    transition: none;
  }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .section--tax-breakdown {
    padding-block: 24px;
  }

  .section--tax-breakdown .tax-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f131ad0 *//* ============================================================
   SECTION: section--foreign-ownership
   BEM Structure | Mobile-First | White Background
   ============================================================ */

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

/* ── Section Wrapper ── */
.section--foreign-ownership {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
}

/* ── Container ── */
.section--foreign-ownership .section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Label ── */
.section--foreign-ownership .section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  background-color: #fdf8ee;
  border: 1px solid #f0e0b0;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 16px;
}

/* ── Section Title ── */
.section--foreign-ownership .section__title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.25;
  max-width: 780px;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

/* ── AI Answer Block ── */
.section--foreign-ownership .section__ai-answer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #fdf8ee;
  border-left: 4px solid #C9A84C;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin-bottom: 48px;
  max-width: 860px;
}

.section--foreign-ownership .section__ai-answer-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.section--foreign-ownership .section__ai-answer-text {
  font-size: 0.975rem;
  color: #3a3a4a;
  line-height: 1.7;
}

.section--foreign-ownership .section__ai-answer-text strong {
  color: #1a1a2e;
  font-weight: 700;
}

/* ── Two Column Grid ── */
.section--foreign-ownership .section__two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .section--foreign-ownership .section__two-col {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── Card ── */
.section--foreign-ownership .section__card {
  background-color: #ffffff;
  border: 1px solid #ebebf0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.section--foreign-ownership .section__card:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.15);
  transform: translateY(-4px);
}

/* ── Card Image Wrapper ── */
.section--foreign-ownership .section__card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #f5f5f5;
}

.section--foreign-ownership .section__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.section--foreign-ownership .section__card:hover .section__card-image {
  transform: scale(1.04);
}

/* ── Card Image Badge ── */
.section--foreign-ownership .section__card-image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background-color: #C9A84C;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
}

.section--foreign-ownership .section__card-image-badge--green {
  background-color: #1a6b3c;
  box-shadow: 0 2px 8px rgba(26, 107, 60, 0.35);
}

/* ── Card Body ── */
.section--foreign-ownership .section__card-body {
  padding: 28px 26px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Card Icon ── */
.section--foreign-ownership .section__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fdf8ee;
  border: 1px solid #f0e0b0;
  border-radius: 12px;
  flex-shrink: 0;
}

/* ── Card Title ── */
.section--foreign-ownership .section__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-top: 4px;
}

/* ── Card Description ── */
.section--foreign-ownership .section__card-desc {
  font-size: 0.9rem;
  color: #6b6b80;
  line-height: 1.65;
}

/* ── Checklist ── */
.section--foreign-ownership .section__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.section--foreign-ownership .section__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #3a3a4a;
  line-height: 1.55;
}

.section--foreign-ownership .section__check-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #fdf8ee;
  border-radius: 50%;
  border: 1px solid #f0e0b0;
}

/* ── Reform Banner ── */
.section--foreign-ownership .section__reform-banner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: #f7f9ff;
  border: 1px solid #dce5f5;
  border-left: 4px solid #2c5fbe;
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
}

.section--foreign-ownership .section__reform-banner-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.section--foreign-ownership .section__reform-banner-icon svg circle,
.section--foreign-ownership .section__reform-banner-icon svg path {
  stroke: #2c5fbe;
}

.section--foreign-ownership .section__reform-banner-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section--foreign-ownership .section__reform-banner-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
}

.section--foreign-ownership .section__reform-banner-text {
  font-size: 0.875rem;
  color: #4a4a60;
  line-height: 1.65;
}

.section--foreign-ownership .section__reform-banner-text strong {
  color: #1a1a2e;
  font-weight: 700;
}

/* ── Inline Link ── */
.section--foreign-ownership .section__link {
  color: #2c5fbe;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  cursor: pointer;
}

.section--foreign-ownership .section__link:hover,
.section--foreign-ownership .section__link:focus-visible {
  color: #C9A84C;
  text-decoration-color: #C9A84C;
  outline: none;
}

.section--foreign-ownership .section__link:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .section--foreign-ownership .section__card,
  .section--foreign-ownership .section__card-image,
  .section--foreign-ownership .section__link {
    transition: none;
  }

  .section--foreign-ownership .section__card:hover {
    transform: none;
  }

  .section--foreign-ownership .section__card:hover .section__card-image {
    transform: none;
  }
}

/* ── Print ── */
@media print {
  .section--foreign-ownership {
    padding: 20px 0;
    box-shadow: none;
  }

  .section--foreign-ownership .section__card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b80f3aa *//* ============================================================
   SECTION: section--import-export
   BEM naming | Mobile-first | White background
   ============================================================ */

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

/* ── Section Wrapper ── */
.section--import-export {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* ── Container ── */
.section--import-export .section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Label ── */
.section--import-export .section__label {
  display: inline-block;
  background-color: #eff6ff;
  color: #1a56db;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid #bfdbfe;
}

/* ── Section Title ── */
.section--import-export .section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 28px;
  max-width: 780px;
}

/* ── AI Answer Block ── */
.section--import-export .section__ai-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f0f7ff;
  border-left: 4px solid #1a56db;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 52px;
  max-width: 900px;
}

.section--import-export .section__ai-answer-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.section--import-export .section__ai-answer-text {
  font-size: 0.975rem;
  color: #1e3a5f;
  line-height: 1.7;
  font-style: italic;
}

/* ── Content Grid (Image + Checklist) ── */
.section--import-export .section__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
  align-items: center;
}

@media (min-width: 900px) {
  .section--import-export .section__content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* ── Image ── */
.section--import-export .section__image-wrapper {
  width: 100%;
}

.section--import-export .section__figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.10);
  position: relative;
}

.section--import-export .section__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.section--import-export .section__figure:hover .section__image {
  transform: scale(1.03);
}

.section--import-export .section__figcaption {
  font-size: 0.78rem;
  color: #64748b;
  text-align: center;
  padding: 10px 12px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* ── Sub Title ── */
.section--import-export .section__sub-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
  line-height: 1.4;
}

.section--import-export .section__sub-title--center {
  text-align: center;
}

/* ── Checklist ── */
.section--import-export .section__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section--import-export .section__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.section--import-export .section__checklist-item:hover {
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.08);
  border-color: #bfdbfe;
}

.section--import-export .section__check-icon {
  flex-shrink: 0;
  margin-top: 1px;
}

.section--import-export .section__checklist-text {
  font-size: 0.925rem;
  color: #334155;
  line-height: 1.6;
}

.section--import-export .section__checklist-text strong {
  color: #0f172a;
  font-weight: 700;
}

/* ── Use-Case Block ── */
.section--import-export .section__usecase-block {
  margin-bottom: 64px;
}

/* ── Use-Case Grid ── */
.section--import-export .section__usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
}

@media (min-width: 600px) {
  .section--import-export .section__usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section--import-export .section__usecase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Use-Case Card ── */
.section--import-export .section__usecase-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section--import-export .section__usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26, 86, 219, 0.12);
  border-color: #93c5fd;
}

/* ── Use-Case Card Image ── */
.section--import-export .section__usecase-image-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f1f5f9;
}

.section--import-export .section__usecase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.section--import-export .section__usecase-card:hover .section__usecase-image {
  transform: scale(1.06);
}

/* ── Use-Case Card Body ── */
.section--import-export .section__usecase-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* ── Use-Case Icon ── */
.section--import-export .section__usecase-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Use-Case Title ── */
.section--import-export .section__usecase-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
}

/* ── Use-Case Description ── */
.section--import-export .section__usecase-desc {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.65;
}

/* ── CTA Strip ── */
.section--import-export .section__cta-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .section--import-export .section__cta-strip {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 24px;
  }
}

.section--import-export .section__cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1e3a5f;
  flex: 1;
  line-height: 1.5;
}

/* ── CTA Buttons ── */
.section--import-export .section__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  /* Security: prevent clickjacking visual tricks */
  position: relative;
  z-index: 1;
}

/* Primary Button */
.section--import-export .section__cta-btn:not(.section__cta-btn--outline) {
  background-color: #1a56db;
  color: #ffffff;
}

.section--import-export .section__cta-btn:not(.section__cta-btn--outline):hover {
  background-color: #1648c0;
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.3);
  transform: translateY(-2px);
}

.section--import-export .section__cta-btn:not(.section__cta-btn--outline):focus-visible {
  outline: 3px solid #1a56db;
  outline-offset: 3px;
}

/* Outline Button */
.section--import-export .section__cta-btn--outline {
  background-color: transparent;
  color: #1a56db;
  border-color: #1a56db;
}

.section--import-export .section__cta-btn--outline:hover {
  background-color: #1a56db;
  color: #ffffff;
  transform: translateY(-2px);
}

.section--import-export .section__cta-btn--outline:focus-visible {
  outline: 3px solid #1a56db;
  outline-offset: 3px;
}

/* ── Accessibility: Reduce Motion ── */
@media (prefers-reduced-motion: reduce) {
  .section--import-export .section__image,
  .section--import-export .section__usecase-image,
  .section--import-export .section__usecase-card,
  .section--import-export .section__cta-btn {
    transition: none;
  }
}

/* ── Print Styles ── */
@media print {
  .section--import-export .section__cta-strip {
    display: none;
  }
  .section--import-export .section__usecase-image-wrapper {
    display: none;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-30914b2 *//* ============================================================
   SECTION: Strategic Location
   BEM: .section--strategic-location
   Background: #FFFFFF
   Accent: #C8A96E (gold)
   Dark: #1A1A2E
   ============================================================ */

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ── Section Wrapper ── */
.section--strategic-location {
  background-color: #ffffff;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

/* ── Container ── */
.section--strategic-location .section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ── Section Label ── */
.section--strategic-location .section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8A96E;
  background-color: #fdf8f0;
  border: 1px solid #e8d9b8;
  border-radius: 4px;
  padding: 5px 14px;
  margin-bottom: 18px;
  user-select: none;
}

/* ── Section Title ── */
.section--strategic-location .section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1A1A2E;
  line-height: 1.25;
  margin: 0 0 28px 0;
  max-width: 780px;
}

/* ── AI Answer Block ── */
.section--strategic-location .section__ai-answer {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #fdf8f0;
  border-left: 4px solid #C8A96E;
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin-bottom: 48px;
  max-width: 860px;
}

.section--strategic-location .section__ai-answer-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--strategic-location .section__ai-answer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.section--strategic-location .section__ai-answer-text strong {
  color: #1A1A2E;
}

/* ── Content Grid (Map + Body) ── */
.section--strategic-location .section__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

/* ── Map Wrapper ── */
.section--strategic-location .section__map-wrapper {
  position: relative;
}

.section--strategic-location .section__map-graphic {
  background-color: #f8f6f2;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ede9e0;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
}

.section--strategic-location .section__map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.section--strategic-location .section__map-caption {
  font-size: 0.78rem;
  color: #888;
  text-align: center;
  padding: 10px 16px 14px;
  margin: 0;
  border-top: 1px solid #ede9e0;
  font-style: italic;
}

/* ── Content Body ── */
.section--strategic-location .section__content-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section--strategic-location .section__intro-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  margin: 0;
}

.section--strategic-location .section__intro-text strong {
  color: #1A1A2E;
}

/* ── Advantage List ── */
.section--strategic-location .section__advantage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section--strategic-location .section__advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0ece4;
  transition: background-color 0.2s ease;
}

.section--strategic-location .section__advantage-item:last-child {
  border-bottom: none;
}

.section--strategic-location .section__advantage-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
  line-height: 1;
  margin-top: 2px;
}

.section--strategic-location .section__advantage-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.section--strategic-location .section__advantage-content strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A2E;
  display: block;
}

.section--strategic-location .section__advantage-content span {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

/* ── Body CTA Link ── */
.section--strategic-location .section__body-cta {
  margin-top: 4px;
}

.section--strategic-location .section__body-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #C8A96E;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.section--strategic-location .section__body-cta-link:hover,
.section--strategic-location .section__body-cta-link:focus-visible {
  border-bottom-color: #C8A96E;
  color: #b8944e;
}

.section--strategic-location .section__body-cta-link:focus-visible {
  outline: 3px solid #C8A96E;
  outline-offset: 4px;
  border-radius: 2px;
}

.section--strategic-location .section__body-cta-link svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.section--strategic-location .section__body-cta-link:hover svg {
  transform: translateX(4px);
}

/* ── Stat Cards Row ── */
.section--strategic-location .section__stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.section--strategic-location .section__stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ede9e0;
  border-radius: 12px;
  padding: 28px 20px;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.section--strategic-location .section__stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(200, 169, 110, 0.16);
  border-color: #C8A96E;
}

.section--strategic-location .section__stat-icon {
  width: 52px;
  height: 52px;
  background-color: #fdf8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.section--strategic-location .section__stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  color: #1A1A2E;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.section--strategic-location .section__stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #888;
  line-height: 1.4;
  max-width: 120px;
}

/* ============================================================
   RESPONSIVE: Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .section--strategic-location {
    padding: 64px 0;
  }

  .section--strategic-location .section__content-grid {
    gap: 32px;
  }

  .section--strategic-location .section__stat-cards {
    gap: 16px;
  }

  .section--strategic-location .section__stat-card {
    padding: 22px 14px;
  }

  .section--strategic-location .section__stat-number {
    font-size: 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE: Mobile landscape (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section--strategic-location {
    padding: 48px 0;
  }

  .section--strategic-location .section__content-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section--strategic-location .section__stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .section--strategic-location .section__title {
    margin-bottom: 20px;
  }

  .section--strategic-location .section__ai-answer {
    margin-bottom: 36px;
  }
}

/* ============================================================
   RESPONSIVE: Mobile portrait (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .section--strategic-location .section__container {
    padding: 0 16px;
  }

  .section--strategic-location .section__stat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .section--strategic-location .section__stat-card {
    padding: 18px 12px;
  }

  .section--strategic-location .section__stat-number {
    font-size: 1.35rem;
  }

  .section--strategic-location .section__stat-label {
    font-size: 0.75rem;
  }

  .section--strategic-location .section__advantage-item {
    gap: 12px;
  }

  .section--strategic-location .section__ai-answer {
    padding: 14px 16px;
  }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .section--strategic-location .section__stat-card,
  .section--strategic-location .section__body-cta-link,
  .section--strategic-location .section__body-cta-link svg {
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  /* Intentionally left empty — white background enforced by design */
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b747c47 *//* ============================================
   AAC CALCULATOR — CSS
   Scoped with .aac- prefix (no bleed)
============================================ */

.aac-calc-section {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
  max-width: 1260px;
  margin: 0 auto;
  padding: 72px 40px;
  background: #f7f8fa;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ============ LEFT PANEL ============ */
.aac-left {
  position: sticky;
  top: 100px;
}

.aac-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #fac5c5;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

.aac-heading {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  color: #0d1b2e;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}

.aac-heading span {
  color: #c0392b;
}

.aac-subtext {
  font-size: 17px;
  color: #4a5568;
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 460px;
}

/* Trust List */
.aac-trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aac-trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #2d3748;
}

.aac-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Review Card */
.aac-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  position: relative;
  border: 1px solid #eef0f4;
}

.aac-verified-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: #f0b429;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.aac-review-body {}

.aac-reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.aac-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a2540, #1a3a5c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.aac-reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2e;
  margin-bottom: 3px;
}

.aac-stars {
  color: #f0b429;
  font-size: 13px;
  letter-spacing: 1px;
}

.aac-review-source {
  margin-left: auto;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.aac-review-text {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* ============ RIGHT PANEL ============ */
.aac-right {}

.aac-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.10);
  overflow: hidden;
  border: 1px solid #eef0f4;
}

/* Progress Bar */
.aac-progress-bar-wrap {
  padding: 20px 28px 0;
}

.aac-progress-segments {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.aac-seg {
  flex: 1;
  height: 4px;
  border-radius: 10px;
  background: #e8ecf0;
  transition: background 0.4s ease;
}

.aac-seg-active {
  background: #c0392b;
}

.aac-seg-done {
  background: #c0392b;
}

.aac-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.aac-step-counter {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.aac-step-name {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Steps */
.aac-step {
  padding: 24px 28px 0;
  animation: aacFadeIn 0.3s ease;
}

.aac-step-hidden {
  display: none !important;
}

@keyframes aacFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.aac-step-header {
  margin-bottom: 20px;
}

.aac-step-title {
  font-size: 20px;
  font-weight: 800;
  color: #0d1b2e;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.aac-step-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Options List */
.aac-options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
  margin-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}

.aac-options-list::-webkit-scrollbar {
  width: 4px;
}

.aac-options-list::-webkit-scrollbar-track {
  background: transparent;
}

.aac-options-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}

.aac-options-list.aac-compact {
  max-height: none;
  overflow-y: visible;
}

/* Option Row */
.aac-option-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e8ecf0;
  border-radius: 12px;
  padding: 13px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
  user-select: none;
  position: relative;
}

.aac-option-row:hover {
  border-color: #c0392b;
  background: #fff9f9;
}

.aac-option-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.aac-option-row input[type="radio"]:checked ~ .aac-radio-dot {
  background: #c0392b;
  border-color: #c0392b;
}

.aac-option-row input[type="radio"]:checked ~ .aac-radio-dot::after {
  opacity: 1;
}

.aac-option-row:has(input:checked) {
  border-color: #c0392b;
  background: #fff9f9;
}

.aac-option-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.aac-option-icon {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64748b;
}

.aac-option-icon svg {
  width: 18px;
  height: 18px;
}

.aac-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aac-opt-title {
  font-size: 14px;
  font-weight: 700;
  color: #0d1b2e;
  line-height: 1.3;
}

.aac-opt-sub {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.3;
}

.aac-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  transition: all 0.2s ease;
  background: #fff;
}

.aac-radio-dot::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}

/* Counter / Pill Selectors */
.aac-counter-section {
  margin-bottom: 20px;
}

.aac-counter-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.aac-counter-label svg {
  color: #64748b;
  flex-shrink: 0;
}

.aac-pill-.elementor-2681 .elementor-element.elementor-element-b747c47 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aac-pill-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.aac-pill-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.aac-pill-btn.aac-pill-active,
.aac-pill-btn:focus {
  background: #c0392b;
  border-color: #c0392b;
  color: #fff;
  outline: none;
}

/* Sub Section */
.aac-sub-section {
  margin-bottom: 22px;
}

/* Toggle Pair */
.aac-toggle-pair {
  display: flex;
  gap: 10px;
}

.aac-toggle-btn {
  flex: 1;
  padding: 12px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.aac-toggle-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.aac-toggle-btn.aac-toggle-active {
  border-color: #c0392b;
  background: #fff9f9;
  color: #c0392b;
  font-weight: 700;
}

/* Timeline */
.aac-timeline-.elementor-2681 .elementor-element.elementor-element-b747c47 {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.aac-timeline-btn {
  padding: 10px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}

.aac-timeline-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}

.aac-timeline-btn.aac-timeline-active {
  border-color: #c0392b;
  background: #fff9f9;
  color: #c0392b;
  font-weight: 700;
}

/* Compare Link */
.aac-compare-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 4px;
  font-family: inherit;
  transition: opacity 0.2s;
}

.aac-compare-link:hover {
  opacity: 0.75;
}

/* Compare Table */
.aac-compare-table {
  border: 1px solid #e8ecf0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 12px;
  font-size: 12px;
}

.aac-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #f0f4f8;
}

.aac-compare-row:last-child {
  border-bottom: none;
}

.aac-compare-header {
  background: #f7f8fa;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.aac-compare-cell {
  padding: 9px 12px;
  color: #4a5568;
}

.aac-compare-label {
  font-weight: 600;
  color: #0d1b2e;
}

/* Contact Form */
.aac-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.aac-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.aac-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aac-form-label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.aac-form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #0d1b2e;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
font-family: inherit;
  box-sizing: border-box;
}

.aac-form-input:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}

.aac-form-input::placeholder {
  color: #cbd5e1;
}

/* Phone Field */
.aac-phone-wrap {
  display: flex;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.aac-phone-wrap:focus-within {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}

.aac-phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  background: #f7f8fa;
  border-right: 1.5px solid #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2e;
  white-space: nowrap;
  flex-shrink: 0;
}

.aac-flag {
  font-size: 18px;
  line-height: 1;
}

.aac-phone-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}

.aac-phone-input:focus {
  border: none;
  box-shadow: none;
}

/* Select */
.aac-select-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.aac-select-icon {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  pointer-events: none;
  z-index: 1;
}

.aac-form-select {
  width: 100%;
  padding: 13px 40px 13px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  color: #0d1b2e;
  background: #fff;
  outline: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s;
}

.aac-form-select:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.08);
}

.aac-select-arrow {
  position: absolute;
  right: 14px;
  color: #94a3b8;
  pointer-events: none;
}

/* Consent */
.aac-consent-row {
  margin-top: 4px;
}

.aac-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.aac-consent-check {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #c0392b;
  cursor: pointer;
}

.aac-link {
  color: #c0392b;
  text-decoration: underline;
}

.aac-link:hover {
  opacity: 0.75;
}

/* Secure Note */
.aac-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: #94a3b8;
  padding: 12px 28px 20px;
}

/* ============ CARD FOOTER ============ */
.aac-card-footer {
  padding: 20px 28px 0;
}

.aac-footer-with-back {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.aac-btn-continue {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: #c0392b;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: 0.2px;
}

.aac-btn-continue:hover {
  background: #a93226;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.35);
}

.aac-btn-continue:active {
  transform: translateY(0);
}

.aac-btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 18px;
  background: #fff;
  color: #4a5568;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.aac-btn-back:hover {
  border-color: #94a3b8;
  color: #0d1b2e;
  background: #f7f8fa;
}

.aac-btn-submit {
  font-size: 14px;
}

.aac-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: inherit;
}

.aac-btn-whatsapp:hover {
  background: #20b858;
  transform: translateY(-1px);
}

/* Footer Meta */
.aac-footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 28px 20px;
  border-top: 1px solid #f0f4f8;
  margin-top: 16px;
}

.aac-meta-standalone {
  border-top: 1px solid #f0f4f8;
  margin-top: 16px;
  padding-top: 14px;
  padding-bottom: 20px;
}

.aac-footer-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 500;
}

.aac-footer-meta svg {
  color: #94a3b8;
  flex-shrink: 0;
}

/* ============ RESULT SCREEN ============ */
.aac-result-wrap {
  padding-bottom: 28px;
  text-align: center;
}

.aac-result-icon {
  font-size: 44px;
  margin-bottom: 14px;
  display: block;
  animation: aacBounce 0.5s ease;
}

@keyframes aacBounce {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.aac-result-title {
  font-size: 20px;
  font-weight: 800;
  color: #0d1b2e;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.aac-result-title span {
  color: #c0392b;
}

.aac-result-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 22px 0;
  line-height: 1.6;
}

.aac-result-range-box {
  background: linear-gradient(135deg, #0a2540 0%, #1a3a5c 100%);
  border-radius: 14px;
  padding: 22px 28px;
  margin: 0 0 22px 0;
  text-align: center;
}

.aac-range-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.aac-range-value {
  font-size: 32px;
  font-weight: 800;
  color: #f0b429;
  line-height: 1;
  margin-bottom: 8px;
}

.aac-range-note {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

/* Breakdown */
.aac-breakdown-wrap {
  text-align: left;
  margin-bottom: 20px;
}

.aac-breakdown-title {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.aac-breakdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aac-breakdown-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #f7f8fa;
  border-radius: 8px;
  font-size: 13px;
  border-left: 3px solid #e2e8f0;
}

.aac-breakdown-list li.aac-bl-highlight {
  border-left-color: #c0392b;
  background: #fff9f9;
}

.aac-breakdown-list li span:first-child {
  color: #4a5568;
  font-weight: 500;
}

.aac-breakdown-list li span:last-child {
  color: #0d1b2e;
  font-weight: 700;
  white-space: nowrap;
}

.aac-breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  background: #0a2540;
  border-radius: 10px;
  margin-bottom: 18px;
}

.aac-breakdown-total span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}

.aac-breakdown-total span:last-child {
  font-size: 16px;
  font-weight: 800;
  color: #f0b429;
}

/* Result Actions */
.aac-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
  text-align: left;
}

.aac-restart-btn {
  background: none;
  border: none;
  font-size: 12px;
  color: #94a3b8;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  display: block;
  margin: 0 auto;
  padding: 4px;
  transition: color 0.2s;
}

.aac-restart-btn:hover {
  color: #64748b;
}

/* ============ LOADING OVERLAY ============ */
.aac-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.94);
  border-radius: 20px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 50;
}

.aac-loading-overlay.aac-show {
  display: flex;
}

.aac-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid #f0f4f8;
  border-top-color: #c0392b;
  border-radius: 50%;
  animation: aacSpin 0.75s linear infinite;
}

@keyframes aacSpin {
  to { transform: rotate(360deg); }
}

.aac-spinner-text {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2e;
  animation: aacPulse 1.4s ease-in-out infinite;
}

@keyframes aacPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

/* ============ ERROR STATE ============ */
.aac-field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}

.aac-error-msg {
  font-size: 11px;
  color: #ef4444;
  margin-top: 3px;
  display: none;
}

.aac-error-msg.aac-show {
  display: block;
}

/* ============ TOAST ============ */
.aac-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #0a2540;
  color: #fff;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  max-width: 320px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.aac-toast.aac-toast-show {
  transform: translateY(0);
  opacity: 1;
}

.aac-toast.aac-toast-error {
  background: #ef4444;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .aac-calc-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 24px;
  }

  .aac-left {
    position: static;
    text-align: center;
  }

  .aac-trust-list {
    align-items: flex-start;
    text-align: left;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .aac-subtext {
    margin-left: auto;
    margin-right: auto;
  }

  .aac-reviewer-info {
    text-align: left;
  }

  .aac-pill {
    margin-left: auto;
    margin-right: auto;
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .aac-calc-section {
    padding: 36px 16px;
  }

  .aac-step {
    padding: 20px 20px 0;
  }

  .aac-card-footer,
  .aac-progress-bar-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .aac-footer-meta {
    padding-left: 20px;
    padding-right: 20px;
    gap: 10px;
  }

  .aac-step-title {
    font-size: 17px;
  }

  .aac-form-row {
    grid-template-columns: 1fr;
  }

  .aac-result-actions {
    grid-template-columns: 1fr;
  }

  .aac-pill-.elementor-2681 .elementor-element.elementor-element-b747c47 {
    gap: 6px;
  }

  .aac-pill-btn {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }

  .aac-timeline-.elementor-2681 .elementor-element.elementor-element-b747c47 {
    gap: 6px;
  }

  .aac-timeline-btn {
    padding: 9px 12px;
    font-size: 12px;
  }

  .aac-options-list {
    max-height: 340px;
  }

  .aac-range-value {
    font-size: 26px;
  }

  .aac-result-range-box {
    padding: 18px 20px;
  }

  .aac-footer-meta span {
    font-size: 10.5px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3d5d769 *//* ============================================
   FAQ SECTION — BEM
   White background, mobile-first, accessible
   ============================================ */

/* ── Variables ── */
:root {
  --faq-bg:              #ffffff;
  --faq-border:          #e5e7eb;
  --faq-border-active:   #c8922a;
  --faq-accent:          #c8922a;
  --faq-accent-light:    #fdf6ec;
  --faq-text-heading:    #111827;
  --faq-text-body:       #374151;
  --faq-text-muted:      #6b7280;
  --faq-link:            #c8922a;
  --faq-link-hover:      #a3741f;
  --faq-radius:          12px;
  --faq-radius-sm:       8px;
  --faq-transition:      0.28s ease;
  --faq-shadow-hover:    0 4px 20px rgba(0, 0, 0, 0.07);
  --faq-max-width:       860px;
  --faq-font-base:       1rem;
  --faq-font-question:   1.0625rem;
  --faq-font-title:      1.75rem;
}

/* ── Section wrapper ── */
.faq {
  background-color: var(--faq-bg);
  padding: 72px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ── Container ── */
.faq__container {
  max-width: var(--faq-max-width);
  margin: 0 auto;
  width: 100%;
}

/* ── Header ── */
.faq__header {
  text-align: center;
  margin-bottom: 48px;
}

.faq__title {
  font-size: var(--faq-font-title);
  font-weight: 700;
  color: var(--faq-text-heading);
  line-height: 1.3;
  margin: 0 0 12px 0;
  letter-spacing: -0.3px;
}

.faq__subtitle {
  font-size: 1rem;
  color: var(--faq-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── List ── */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Item ── */
.faq__item {
  background-color: #ffffff;
  border: 1.5px solid var(--faq-border);
  border-radius: var(--faq-radius);
  overflow: hidden;
  transition:
    border-color var(--faq-transition),
    box-shadow var(--faq-transition);
}

.faq__item:hover {
  border-color: var(--faq-border-active);
  box-shadow: var(--faq-shadow-hover);
}

.faq__item--active {
  border-color: var(--faq-border-active);
  box-shadow: var(--faq-shadow-hover);
}

/* ── Question button ── */
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--faq-text-heading);
  font-size: var(--faq-font-question);
  font-weight: 600;
  font-family: inherit;
  line-height: 1.5;
  transition: background-color var(--faq-transition);
  -webkit-tap-highlight-color: transparent;
  outline-offset: 3px;
}

.faq__question:hover {
  background-color: var(--faq-accent-light);
}

.faq__question:focus-visible {
  outline: 2px solid var(--faq-accent);
  outline-offset: -2px;
  border-radius: var(--faq-radius-sm);
}

/* Active state */
.faq__question[aria-expanded="true"] {
  background-color: var(--faq-accent-light);
  color: var(--faq-accent);
}

/* ── Question text ── */
.faq__question-text {
  flex: 1;
  pointer-events: none;
}

/* ── Icon wrapper ── */
.faq__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--faq-border);
  color: var(--faq-text-muted);
  transition:
    background-color var(--faq-transition),
    color var(--faq-transition),
    transform var(--faq-transition);
  pointer-events: none;
}

.faq__question[aria-expanded="true"] .faq__icon {
  background-color: var(--faq-accent);
  color: #ffffff;
  transform: rotate(180deg);
}

/* ── Icon SVG ── */
.faq__icon-svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* ── Answer panel ── */
.faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* JS removes hidden attr — max-height driven by JS */
.faq__answer:not([hidden]) {
  /* height controlled via JS inline style */
}

/* ── Answer inner ── */
.faq__answer-inner {
  padding: 0 24px 22px 24px;
  border-top: 1px solid var(--faq-border);
}

.faq__answer-inner p {
  font-size: var(--faq-font-base);
  color: var(--faq-text-body);
  line-height: 1.75;
  margin: 16px 0 0 0;
}

.faq__answer-inner strong {
  color: var(--faq-text-heading);
  font-weight: 600;
}

/* ── Answer links ── */
.faq__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.faq__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--faq-link);
  text-decoration: none;
  padding: 6px 14px;
  border: 1.5px solid var(--faq-accent);
  border-radius: 6px;
  transition:
    background-color var(--faq-transition),
    color var(--faq-transition);
  outline-offset: 3px;
}

.faq__link:hover {
  background-color: var(--faq-accent);
  color: #ffffff;
}

.faq__link:focus-visible {
  outline: 2px solid var(--faq-accent);
}

/* ── Responsive: Tablet ── */
@media (max-width: 768px) {
  .faq {
    padding: 52px 16px;
  }

  .faq__title {
    font-size: 1.5rem;
  }

  .faq__question {
    padding: 18px 18px;
    font-size: 1rem;
  }

  .faq__answer-inner {
    padding: 0 18px 18px 18px;
  }
}

/* ── Responsive: Mobile ── */
@media (max-width: 480px) {
  .faq {
    padding: 40px 12px;
  }

  .faq__title {
    font-size: 1.3rem;
  }

  .faq__question {
    padding: 16px 14px;
    font-size: 0.9375rem;
  }

  .faq__answer-inner {
    padding: 0 14px 16px 14px;
  }

  .faq__links {
    flex-direction: column;
  }

  .faq__link {
    width: 100%;
    justify-content: center;
  }
}

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .faq__answer,
  .faq__item,
  .faq__question,
  .faq__icon {
    transition: none;
  }
}/* End custom CSS */