/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
author: Elementor
Author URI: https://elementor.com/
Description: Hello Elementor Child theme for Thrilling Marketing.
Version: 1.0.16
Text Domain: hello-elementor-child
Template: hello-elementor
*/

/* ============================================================
   Thrilling Marketing — Child Theme Styles
   Design tokens map 1:1 to Elementor Global Colors / Typography
   ============================================================ */

:root {
  --tm-primary: #00163a;
  --tm-primary-deep: #001029;
  --tm-accent: #ff6101;
  --tm-accent-hover: #e85700;
  --tm-bg-light: #f7f9fc;
  --tm-white: #ffffff;
  --tm-text: #2c2c2c;
  --tm-text-muted: #555555;
  --tm-border: #e3e9f1;
  --tm-primary-tint: #e7ecf6;
  --tm-accent-tint: #fdede3;
  --tm-shadow: 0 18px 50px -18px rgba(0, 22, 58, 0.35);
  --tm-radius: 14px;
  --tm-container: 1200px;
  --tm-font-head: 'Poppins', 'Open Sans', Arial, sans-serif;
  --tm-font-body: 'Inter', 'Open Sans', Arial, sans-serif;
}

/* ---------- Reset / base ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--tm-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tm-text);
  background: var(--tm-white);
  -webkit-font-smoothing: antialiased;
}

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

a,
a:visited,
.page-content a,
.page-content a:visited {
  color: var(--tm-accent);
  text-decoration: none;
}

.page-content .elementor-button,
.page-content .elementor-button-link {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.page-content p {
  margin-block-end: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--tm-font-head);
  line-height: 1.15;
  color: var(--tm-primary);
}

:focus-visible {
  outline: 3px solid var(--tm-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--tm-container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--tm-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
  background: var(--tm-accent);
  color: var(--tm-white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--tm-accent-hover);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--tm-white);
  background: transparent;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--tm-white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-ghost-dark {
  border-color: rgba(0, 22, 58, 0.35);
  color: var(--tm-primary);
  background: transparent;
}

.btn-ghost-dark:hover,
.btn-ghost-dark:focus-visible {
  border-color: var(--tm-primary);
  background: rgba(0, 22, 58, 0.05);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-large {
  padding: 18px 42px;
  font-size: 1.05rem;
}

/* Elementor button normalization: match prototype .btn metrics so
   solid and outline buttons share the same 50px height. */
.elementor-button {
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  line-height: 1 !important;
}

.get-started {
  background: var(--tm-accent);
  color: var(--tm-white);
}

.get-started:hover,
.get-started:focus-visible {
  background: var(--tm-accent-hover);
}

/* ---------- Header ---------- */

/* Sticky lives on #masthead (the HFE outer wrapper). The inner .tm-header's
   parent (.elementor-31) is only as tall as the header itself, so position:
   sticky there never engages and the header scrolls away. #masthead sits
   directly inside the full-height #page wrapper, so it sticks correctly.
   `body.ehf-header` prefix beats HFE's `.ehf-header #masthead` rule (spec
   1,1,1) which forces position:relative. */
body.ehf-header #masthead {
  position: sticky;
  top: 0;
  z-index: 99;
}

.site-header {
  background: var(--tm-white);
  border-bottom: 1px solid var(--tm-border);
}

/* Scroll-shrink state (`.tm-scrolled` toggled by js/header-nav.js) */
#masthead .header-inner,
#masthead .brand-logo,
#masthead .brand-logo img {
  transition: min-height 0.3s ease, padding 0.3s ease, height 0.3s ease;
}

#masthead.tm-scrolled .header-inner {
  min-height: 56px;
  padding-top: 6px;
  padding-bottom: 6px;
}

#masthead.tm-scrolled .tm-header .elementor-widget-image.brand-logo img {
  height: 64px;
  width: auto;
}

#masthead.tm-scrolled {
  box-shadow: 0 12px 24px -20px rgba(0, 22, 58, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tm-primary);
}

.brand-logo {
  display: block;
  width: auto;
}

.brand-logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--tm-white);
  border-radius: 10px;
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  background: var(--tm-white);
  border-bottom: 1px solid var(--tm-border);
  box-shadow: 0 18px 30px -18px rgba(0, 22, 58, 0.25);
  padding: 14px 20px 22px;
}

.nav-toggle-input:checked ~ .site-nav {
  display: flex;
}

.nav-toggle-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px 8px;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle-label:hover {
  background: var(--tm-bg-light);
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--tm-primary);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-input:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked ~ .nav-toggle-label .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--tm-text);
  padding: 12px 8px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--tm-accent);
  background: var(--tm-bg-light);
}

.site-nav .btn {
  margin-top: 10px;
}

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(60% 90% at 85% -10%, rgba(255, 97, 1, 0.22) 0%, transparent 55%),
    radial-gradient(50% 80% at 0% 0%, rgba(55, 96, 178, 0.35) 0%, transparent 60%),
    var(--tm-primary);
  color: var(--tm-white);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: 40px;
  padding-block: 64px 72px;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm-accent);
  margin-bottom: 14px;
}

.eyebrow-light {
  color: #ff9a5c;
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 700;
  color: var(--tm-white);
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

/* Alert card — the signature hero element */

.hero-visual {
  position: relative;
  max-width: 480px;
}

.alert-card {
  position: relative;
  background: var(--tm-white);
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow);
  padding: 24px;
  color: var(--tm-text);
}

.alert-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

.alert-card-title {
  font-family: var(--tm-font-head);
  font-weight: 600;
  color: var(--tm-primary);
}

.alert-card-time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--tm-text-muted);
}

.alert-card-source {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tm-accent);
  margin-bottom: 12px;
}

.alert-card-msg {
  font-size: 0.95rem;
  color: var(--tm-text);
  margin-bottom: 14px;
}

.alert-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--tm-primary);
  background: var(--tm-bg-light);
  border: 1px solid var(--tm-border);
  border-radius: 999px;
  padding: 5px 12px;
}

.alert-card-foot {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--tm-text-muted);
}

.alert-stack {
  display: none;
}

/* ---------- Stats ---------- */

.stats {
  position: relative;
  background:
    radial-gradient(42% 90% at 6% 10%, rgba(255, 97, 1, 0.06) 0%, transparent 60%),
    radial-gradient(42% 90% at 94% 90%, rgba(0, 22, 58, 0.07) 0%, transparent 60%),
    var(--tm-bg-light);
  padding-block: 72px;
  overflow: hidden;
}

.section-head-compact {
  margin-bottom: 40px;
}

.section-head-compact .section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 12px 34px -22px rgba(0, 22, 58, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: var(--tm-bg-light);
  border: 1px solid var(--tm-border);
  color: var(--tm-accent);
  margin-bottom: 16px;
  line-height: .7;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
}

.stat-num {
  font-family: var(--tm-font-head);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 700;
  color: var(--tm-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num em {
  font-style: normal;
  color: var(--tm-accent);
}

.stat-label {
  font-size: 0.92rem;
  color: var(--tm-text-muted);
}

/* ---------- Sections ---------- */

.section {
  padding-block: 72px;
}

.section-light {
  background: var(--tm-bg-light);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-lede {
  color: var(--tm-text-muted);
  font-size: 1.02rem;
}

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.step {
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  padding: 30px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tm-accent);
  color: var(--tm-white);
  font-family: var(--tm-font-head);
  font-weight: 600;
  margin-bottom: 18px;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-body {
  color: var(--tm-text-muted);
  font-size: 0.95rem;
}

/* ---------- Benefits cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.card {
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-top: 4px solid var(--tm-accent);
  border-radius: var(--tm-radius);
  padding: 28px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-body {
  color: var(--tm-text-muted);
  font-size: 0.95rem;
}

/* ---------- Industries ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.industry-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 20px 24px;
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--tm-text);
  box-shadow: 0 12px 28px -24px rgba(0, 22, 58, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.industry-item:hover {
  color: var(--tm-accent);
  border-color: rgba(255, 97, 1, 0.55);
  box-shadow: 0 18px 36px -24px rgba(255, 97, 1, 0.45);
  transform: translateY(-3px);
}

.section-footnote {
  margin-top: 28px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--tm-text-muted);
}

/* ---------- Pricing card ---------- */

.price-card {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow);
  padding: 40px 34px;
  text-align: center;
}

.elementor-widget-eael-pricing-table.price-card {
  width: 100%;
  max-width: 380px !important;
  margin-inline: auto;
  border-radius: var(--tm-radius) !important;
}

.price-name {
  font-family: var(--tm-font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--tm-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.price-amount {
  font-family: var(--tm-font-head);
  font-size: 3rem;
  font-weight: 700;
  color: var(--tm-primary);
  line-height: 1;
  margin-bottom: 26px;
}

.price-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--tm-text-muted);
}

.price-list {
  margin-bottom: 30px;
}

.price-list li {
  padding: 10px 0;
  border-top: 1px solid var(--tm-border);
  color: var(--tm-text);
  font-size: 0.95rem;
}

.elementor-widget-icon-list.price-list .elementor-icon-list-item {
  padding: 10px 0;
}

/* ---------- EA Price Table (Pricing page) ---------- */

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  text-align: center;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .header {
  padding-bottom: 0;
  margin-bottom: 12px;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .header:after,
.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag:after {
  display: none;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .header .title {
  margin: 0;
  font-family: var(--tm-font-head);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--tm-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .eael-pricing-tag {
  padding: 0 0 26px;
  margin-bottom: 0;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .price-tag {
  font-family: var(--tm-font-head);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--tm-primary);
}

body .elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .price-tag .original-price,
body .elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .price-tag .original-price .price-currency {
  font-size: inherit;
  font-weight: inherit;
  color: var(--tm-primary);
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .price-period {
  display: block;
  font-family: var(--tm-font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--tm-text-muted);
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .body ul {
  margin-bottom: 30px;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .body ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--tm-text);
  text-align: left;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .body ul li:last-child {
  border: 0;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .body ul li .li-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 12px;
  background: var(--tm-bg-light);
  border-radius: 50%;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .body ul li .li-icon i {
  color: var(--tm-accent);
  font-size: 12px;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .body ul li .li-icon svg {
  fill: var(--tm-accent);
  height: 12px;
  width: 12px;
}

/* Best-value badge: crown icon rendered as an Elementor Image widget
   (class `.price-badge`) so it stays editable in the builder. The icon
   pill overlaps the card's top edge. */
.price-card-wrap {
  position: relative;
}

.elementor-widget-image.price-badge {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 54px;
  height: 54px;
}

.elementor-widget-image.price-badge img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 10px;
  background: var(--tm-accent);
  border-radius: 50%;
  box-shadow: 0 10px 20px -10px rgba(255, 97, 1, 0.55);
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .footer .eael-pricing-button {
  display: block;
  padding: 15px 28px;
  background: var(--tm-accent);
  color: var(--tm-white);
  font-family: var(--tm-font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .footer .eael-pricing-button:hover,
.elementor-widget-eael-pricing-table.price-card .eael-pricing.style-1 .eael-pricing-item .footer .eael-pricing-button:focus {
  background: var(--tm-accent-hover);
  color: var(--tm-white);
}

.elementor-widget-text-editor.cta-sub {
  max-width: 44ch;
}

/* ---------- Final CTA ---------- */

.cta {
  background:
    radial-gradient(70% 120% at 50% 130%, rgba(255, 97, 1, 0.25) 0%, transparent 60%),
    var(--tm-primary);
  color: var(--tm-white);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 80px;
}

.cta-title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--tm-white);
  margin-bottom: 14px;
}

.cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 44ch;
  margin-bottom: 34px;
}

/* ---------- Anchor scroll offset (sticky header) ---------- */

#how-it-works,
#benefits,
#industries,
#pricing,
#register {
  scroll-margin-top: 100px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--tm-primary-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-block: 56px 40px;
}

.brand-footer {
  color: var(--tm-white);
  margin-bottom: 14px;
}

.brand-footer .brand-logo {
  height: 120px;
}

.footer-blurb {
  max-width: 34ch;
}

.footer-nav a,
.footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  padding-block: 4px;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-nav a:focus-visible,
.footer-contact a:focus-visible {
  color: var(--tm-accent);
}

.footer-head {
  font-family: var(--tm-font-head);
  font-weight: 600;
  color: var(--tm-white);
  margin-bottom: 12px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

/* ---------- Tablet ---------- */

@media (min-width: 768px) {
  .container {
    padding-inline: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .industry-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .alert-stack {
    display: block;
    position: absolute;
    bottom: -86px;
    right: -30px;
    width: 260px;
    background: var(--tm-white);
    border: 1px solid var(--tm-border);
    border-radius: 10px;
    box-shadow: var(--tm-shadow);
    padding: 12px 16px;
  }

  .alert-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    color: var(--tm-text-muted);
    padding-block: 6px;
  }

  .alert-row + .alert-row {
    border-top: 1px solid var(--tm-border);
  }

  .alert-row-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--tm-accent);
  }
}

/* ---------- Desktop ---------- */

@media (min-width: 1024px) {
  .nav-toggle-label {
    display: none;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-toggle-input:checked ~ .site-nav {
    display: flex;
  }

  .nav-link {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: var(--tm-accent);
    background: transparent;
  }

  .site-nav .btn {
    margin-top: 0;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
    padding-block: 92px 104px;
  }

  .hero-visual {
    justify-self: end;
    margin-bottom: 46px;
  }

  .section {
    padding-block: 96px;
  }

  .stats {
    padding-block: 96px;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Inner page hero (shared by Pricing / Registration)
   ============================================================ */

.page-hero {
  background:
    radial-gradient(55% 100% at 50% 0%, rgba(255, 97, 1, 0.08) 0%, transparent 65%),
    var(--tm-bg-light);
  border-bottom: 1px solid var(--tm-border);
}

.page-hero-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding-block: 56px 48px;
}

.page-hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.page-hero-sub {
  color: var(--tm-text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   Pricing page
   ============================================================ */

.guarantee-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 760px;
  margin: 44px auto 0;
  text-align: center;
}

.guarantee-item {
  background: var(--tm-bg-light);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  padding: 22px 20px;
}

.guarantee-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.guarantee-body {
  font-size: 0.88rem;
  color: var(--tm-text-muted);
}

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--tm-font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--tm-primary);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tm-bg-light);
  border: 1px solid var(--tm-border);
  font-family: var(--tm-font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tm-accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary {
  color: var(--tm-accent);
}

.faq-item[open] summary::after {
  content: '×';
  transform: rotate(90deg);
}

.faq-item summary:hover {
  color: var(--tm-accent);
}

.faq-answer {
  padding: 0 24px 22px;
  color: var(--tm-text-muted);
  font-size: 0.95rem;
}

/* ---------- Elementor Accordion as FAQ (Pricing page) ---------- */

.elementor-widget-accordion.faq .elementor-accordion-item {
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
}

.elementor-widget-accordion.faq .elementor-accordion-item:last-child {
  margin-bottom: 0;
}

.elementor-widget-accordion.faq .elementor-tab-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--tm-font-head);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.4;
  color: var(--tm-primary);
  cursor: pointer;
  transition: color 0.2s ease;
}

.elementor-widget-accordion.faq .elementor-tab-title.elementor-active,
.elementor-widget-accordion.faq .elementor-tab-title:hover,
.elementor-widget-accordion.faq .elementor-tab-title:focus {
  color: var(--tm-accent);
}

.elementor-widget-accordion.faq .elementor-accordion-title {
  order: 1;
  color: inherit;
}

.elementor-widget-accordion.faq .elementor-accordion-icon {
  order: 2;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tm-bg-light);
  border: 1px solid var(--tm-border);
  color: var(--tm-accent);
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* Swap Elementor's heavy FA solid SVG glyphs for the prototype's thin
   + / x marks, and drop the 90deg rotation that tilted the X. */
.elementor-widget-accordion.faq .elementor-accordion-icon svg {
  display: none;
}

.elementor-widget-accordion.faq .elementor-accordion-icon::after {
  content: '+';
  font-family: var(--tm-font-body);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--tm-accent);
}

.elementor-widget-accordion.faq .elementor-tab-title.elementor-active .elementor-accordion-icon {
  transform: none;
}

.elementor-widget-accordion.faq .elementor-tab-title.elementor-active .elementor-accordion-icon::after {
  content: '×';
}

.elementor-widget-accordion.faq .elementor-tab-content {
  border-top: 0;
  padding: 0 24px 22px;
  color: var(--tm-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   Registration page
   ============================================================ */

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

.reg-form-card {
  background: var(--tm-white);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  box-shadow: var(--tm-shadow);
  padding: 32px 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

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

.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tm-text);
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--tm-border);
  border-radius: 9px;
  background: var(--tm-white);
  font-family: var(--tm-font-body);
  font-size: 1rem;
  color: var(--tm-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f7d8e;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--tm-accent);
  box-shadow: 0 0 0 3px rgba(255, 97, 1, 0.15);
}

.recaptcha-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border: 1px dashed #c7d0dd;
  border-radius: 9px;
  background: var(--tm-bg-light);
  color: var(--tm-text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
}

.reg-form-foot {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--tm-text-muted);
}

.reg-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reg-side-card {
  background: var(--tm-bg-light);
  border: 1px solid var(--tm-border);
  border-radius: var(--tm-radius);
  padding: 26px 24px;
}

.reg-side-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.reg-steps {
  display: grid;
  gap: 14px;
}

.reg-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.reg-step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--tm-primary);
  color: var(--tm-white);
  font-family: var(--tm-font-head);
  font-weight: 600;
  font-size: 0.85rem;
}

.reg-step-body {
  font-size: 0.92rem;
  color: var(--tm-text-muted);
}

.reg-step-body strong {
  color: var(--tm-text);
  font-weight: 600;
}

/* ---------- WPForms overrides (scoped, modern render) ---------- */

div.wpforms-container-full .wpforms-form {
  font-family: var(--tm-font-body);
  color: var(--tm-text);
}

div.wpforms-container-full .wpforms-form .wpforms-field {
  padding: 0;
  margin-bottom: 18px;
}

div.wpforms-container-full .wpforms-form .wpforms-field-label {
  font-family: var(--tm-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tm-text);
  margin-bottom: 7px;
}

div.wpforms-container-full .wpforms-form input.wpforms-field-large,
div.wpforms-container-full .wpforms-form textarea.wpforms-field-large,
div.wpforms-container-full .wpforms-form input[type="text"],
div.wpforms-container-full .wpforms-form input[type="url"],
div.wpforms-container-full .wpforms-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--tm-border);
  border-radius: 9px;
  background: var(--tm-white);
  font-family: var(--tm-font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--tm-text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {
  min-height: 108px;
  resize: vertical;
}

div.wpforms-container-full .wpforms-form input::placeholder,
div.wpforms-container-full .wpforms-form textarea::placeholder {
  color: #6f7d8e;
  opacity: 1;
}

div.wpforms-container-full .wpforms-form input.wpforms-field-large:focus,
div.wpforms-container-full .wpforms-form textarea.wpforms-field-large:focus {
  outline: none;
  border-color: var(--tm-accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 97, 1, 0.15) !important;
}

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  width: 100%;
  padding-top: 6px;
}

div.wpforms-container-full .wpforms-form button.wpforms-submit {
  background: var(--tm-accent) !important;
  color: var(--tm-white) !important;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 15px 28px;
  width: 100%;
  height: auto;
  font-family: var(--tm-font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

div.wpforms-container-full .wpforms-form button.wpforms-submit:hover,
div.wpforms-container-full .wpforms-form button.wpforms-submit:focus {
  background: var(--tm-accent-hover) !important;
  color: var(--tm-white) !important;
  border-color: transparent;
}

div.wpforms-container-full .wpforms-form button.wpforms-submit:focus-visible {
  outline: 3px solid var(--tm-accent);
  outline-offset: 2px;
}

/* ---------- Tablet ---------- */

@media (min-width: 768px) {
  .guarantee-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

  .recaptcha-box,
  .reg-form-submit {
    grid-column: 1 / -1;
  }
}

/* ---------- Desktop ---------- */

@media (min-width: 1024px) {
  .reg-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .reg-side {
    position: sticky;
    top: 96px;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Focus rings on Elementor widget chrome (outline:none overrides) ---------- */

.elementor-accordion .elementor-tab-title:focus-visible {
  outline: 3px solid var(--tm-accent);
  outline-offset: 2px;
}

/* ---------- Elementor build: header ---------- */

.tm-header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
}

.tm-header.site-header .container.header-inner {
  width: 100%;
  max-width: var(--tm-container);
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-inline: 20px;
}

.tm-header .elementor-widget-image.brand-logo {
  width: auto;
}

.tm-header .elementor-widget-image.brand-logo img {
  height: 84px;
  width: auto;
}

.tm-header .eael-simple-menu-container .eael-simple-menu li a {
  font-family: var(--tm-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tm-text);
  padding: 12px 8px;
  line-height: 1.4;
}

.tm-header .eael-simple-menu-container .eael-simple-menu li a:hover,
.tm-header .eael-simple-menu-container .eael-simple-menu li a:focus {
  color: var(--tm-accent);
  background: var(--tm-bg-light);
}

.tm-header .eael-simple-menu-container .eael-simple-menu li a:focus-visible {
  outline: 3px solid var(--tm-accent);
  outline-offset: 2px;
}

.tm-header.site-header .eael-simple-menu-container {
  background-color: transparent;
}

.tm-header.site-header .eael-simple-menu-container .eael-simple-menu li a.eael-item-active,
.tm-header.site-header .eael-simple-menu-container .eael-simple-menu li.current-menu-item > a,
.tm-header.site-header .eael-simple-menu-container .eael-simple-menu li.current-menu-ancestor > a {
  background-color: transparent;
  color: var(--tm-text);
}

/* Desktop / tablet: inline horizontal menu */
@media (min-width: 768px) {
  .tm-header.site-header .tm-header-nav {
    flex: 0 0 auto;
    position: static;
  }

  .tm-header.site-header .tm-header-nav .eael-simple-menu-container {
    min-height: 0;
    position: static;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li.tm-menu-cta {
    margin-left: 0;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li.tm-menu-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tm-accent);
    color: var(--tm-white);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    padding: 10px 20px;
    border-radius: 999px;
    border: 2px solid transparent;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li.tm-menu-cta a:hover,
  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li.tm-menu-cta a:focus {
    background: var(--tm-accent-hover);
    color: var(--tm-white);
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li:not(.tm-menu-cta) > a {
    position: relative;
    z-index: 0;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li:not(.tm-menu-cta) > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -6px;
    right: -6px;
    height: 26px;
    border-radius: 20px;
    background: var(--tm-accent-tint);
    transform: translateY(-50%) scale(0.85);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
    pointer-events: none;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li:not(.tm-menu-cta) > a:hover,
  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li:not(.tm-menu-cta) > a:focus {
    color: var(--tm-primary);
    background: transparent;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li:not(.tm-menu-cta) > a:hover::before,
  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu li:not(.tm-menu-cta) > a:focus::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

/* Mobile: hamburger inline with logo, compact dropdown below */
@media (max-width: 767px) {
  .tm-header .elementor-widget-image.brand-logo img {
    height: 64px;
  }

  .tm-header.site-header .container.header-inner {
    position: relative;
  }

  .tm-header.site-header .tm-header-nav {
    flex: 0 0 auto;
    position: static;
  }

  .tm-header.site-header .tm-header-nav .eael-simple-menu-container {
    width: 0;
    min-height: 0;
    position: static;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 9px 8px;
    border-radius: 8px;
    cursor: pointer;
    background-color: transparent !important;
    color: var(--tm-primary);
    position: absolute;
    top: 50%;
    right: 20px;
    left: auto;
    bottom: auto;
    transform: translateY(-50%);
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu-toggle:hover,
  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu-toggle:focus-visible {
    background: var(--tm-bg-light);
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu-toggle:focus-visible {
    outline: 3px solid var(--tm-accent);
    outline-offset: 2px;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu-toggle svg {
    display: none !important;
  }

  .tm-header.site-header .eael-simple-menu-toggle .nav-toggle-bar {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 2px;
    background: var(--tm-primary);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .tm-header.site-header .eael-simple-menu-toggle.tm-nav-open .tm-bar-1 {
    transform: translateY(7px) rotate(45deg);
  }

  .tm-header.site-header .eael-simple-menu-toggle.tm-nav-open .tm-bar-2 {
    opacity: 0;
  }

  .tm-header.site-header .eael-simple-menu-toggle.tm-nav-open .tm-bar-3 {
    transform: translateY(-7px) rotate(-45deg);
  }

  .tm-header.site-header .eael-simple-menu-toggle-text {
    display: none;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive {
    position: absolute;
    top: 100% !important;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background-color: var(--tm-white) !important;
    border-bottom: 1px solid var(--tm-border);
    box-shadow: 0 18px 30px -18px rgba(0, 22, 58, 0.25);
    padding: 14px 20px 22px;
    margin: 0;
    list-style: none;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li {
    margin: 0;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li a {
    color: var(--tm-text);
    border-bottom: 0;
    border-radius: 8px;
    padding: 12px 8px;
    line-height: 1.4;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li a:hover,
  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li a:focus {
    color: var(--tm-accent);
    background-color: var(--tm-bg-light);
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li.tm-menu-cta {
    margin-top: 10px;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li.tm-menu-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tm-accent);
    color: var(--tm-white);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
    padding: 10px 20px;
    border-radius: 999px;
    border: 2px solid transparent;
    width: 100%;
  }

  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li.tm-menu-cta a:hover,
  .tm-header.site-header .eael-simple-menu-container .eael-simple-menu.eael-simple-menu-responsive li.tm-menu-cta a:focus {
    background: var(--tm-accent-hover);
    color: var(--tm-white);
  }
}

/* ---------- Elementor build: footer ---------- */

.tm-header.site-header,
.tm-footer.site-footer {
  width: 100%;
  max-width: 100%;
}

.tm-footer.site-footer {
  padding: 0;
}

.tm-footer .container.e-con {
  width: 100%;
  max-width: var(--tm-container);
  margin-inline: auto;
}

.tm-footer .footer-grid.e-con.e-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

@media (min-width: 768px) {
  .tm-footer .footer-grid.e-con.e-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.tm-footer .footer-grid > .e-con {
  min-width: 0;
}

.tm-footer .brand-logo-tile img {
  height: 120px;
  width: auto;
  display: block;
}

.tm-footer .elementor-widget-text-editor {
  color: rgba(255, 255, 255, 0.72);
}

