/* ================================
   AdElemental – custom2.css
================================ */

/* ---------- Brand ---------- */
:root{
  --ae-primary: #FE4000;
  --ae-primary-dark: #E23900;
  --ae-growth: #7BD444;
  --ae-radius: 18px;
}

/* ======================================
   THEME TOKENS
====================================== */
html[data-theme="light"]{
  --ae-bg: #f8f9fb;
  --ae-text: #1a1a1a;
  --ae-muted: #6b7280;

  --ae-panel: #eef1f5;
  --ae-surface: #ffffff;
  --ae-surface-soft: #ffffff;
  --ae-surface-alt: #f3f5f8;

  --ae-nav-bg: rgba(255,255,255,.92);
  --ae-nav-border: rgba(0,0,0,.08);

  --ae-hero-bg: #ffffff;
  --ae-hero-text: #111111;
  --ae-hero-lead: rgba(17,17,17,.78);

  --ae-ghost-border: rgba(0,0,0,.16);
  --ae-ghost-text: #111111;

  --ae-trust-bg: rgba(255,255,255,.95);
  --ae-trust-border: rgba(0,0,0,.08);

  --ae-footer-bg: #ffffff;
  --ae-footer-text: rgba(17,17,17,.72);

  --ae-line: rgba(0,0,0,.08);
  --ae-line-strong: rgba(0,0,0,.12);

  --ae-shadow-soft: 0 12px 28px rgba(0,0,0,.06);
  --ae-shadow-hover: 0 18px 40px rgba(0,0,0,.10);
}

html[data-theme="dark"]{
  --ae-bg: #0b0d10;
  --ae-text: #f3f4f6;
  --ae-muted: rgba(255,255,255,.62);

  --ae-panel: #11151a;
  --ae-surface: #171b21;
  --ae-surface-soft: #1b2027;
  --ae-surface-alt: #12161b;

  --ae-nav-bg: rgba(11,13,16,.90);
  --ae-nav-border: rgba(255,255,255,.08);

  --ae-hero-bg: #0b0b0d;
  --ae-hero-text: #ffffff;
  --ae-hero-lead: rgba(255,255,255,.82);

  --ae-ghost-border: rgba(255,255,255,.22);
  --ae-ghost-text: #ffffff;

  --ae-trust-bg: rgba(20,23,28,.82);
  --ae-trust-border: rgba(255,255,255,.10);

  --ae-footer-bg: #0b0b0d;
  --ae-footer-text: rgba(255,255,255,.74);

  --ae-line: rgba(255,255,255,.08);
  --ae-line-strong: rgba(255,255,255,.12);

  --ae-shadow-soft: 0 10px 26px rgba(0,0,0,.24);
  --ae-shadow-hover: 0 18px 46px rgba(0,0,0,.34);
}

/* ---------- Base ---------- */
html{
  scroll-behavior: smooth;
}

body{
  padding-top: 82px;
  background: var(--ae-bg);
  color: var(--ae-text);
  overflow-x: hidden;
}

a{
  color: var(--ae-primary);
}

a:hover{
  color: var(--ae-primary-dark);
  text-decoration: none;
}

p,
li,
label,
small{
  color: inherit;
}

h1, h2, h3, h4, h5, h6{
  color: inherit;
}

.text-muted{
  color: var(--ae-muted) !important;
}

.text-dark{
  color: inherit !important;
}

hr{
  border-color: var(--ae-line);
}

/* ---------- Navbar ---------- */
.ae-navbar{
  background: var(--ae-nav-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ae-nav-border);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}

.ae-nav-container{
  max-width: 1600px;
  padding-left: 60px;
  padding-right: 60px;
}

.ae-brand{
  display: inline-flex;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
}

.ae-hero-logo-clear{
  display: block;
  height: 80px;
  width: auto;
  max-width: 400px;
  object-fit: contain;
}

.ae-navbar .navbar-brand img{
  transition: transform .2s ease, opacity .2s ease;
}

.ae-navbar .navbar-brand:hover img{
  transform: scale(1.02);
  opacity: .96;
}

html[data-theme="dark"] .navbar-dark .navbar-nav .nav-link{
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

html[data-theme="dark"] .navbar-dark .navbar-nav .nav-link:hover{
  color: var(--ae-primary);
}

html[data-theme="light"] .navbar-dark .navbar-nav .nav-link{
  color: rgba(17,17,17,.82);
  font-weight: 700;
}

html[data-theme="light"] .navbar-dark .navbar-nav .nav-link:hover{
  color: var(--ae-primary);
}

html[data-theme="light"] .navbar-dark .navbar-toggler{
  border-color: rgba(0,0,0,.18);
}

html[data-theme="light"] .navbar-dark .navbar-toggler-icon{
  filter: invert(1);
}

.ae-cta-nav{
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 800;
  white-space: nowrap;
}

/* ---------- iOS Theme Switch ---------- */
.ae-theme-switch{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  outline: none;
  transition: transform .15s ease;
}

.ae-theme-switch:hover{
  transform: translateY(-1px);
}

.ae-switch-label{
  font-size: 1rem;
  line-height: 1;
  opacity: .65;
  transition: opacity .2s ease, transform .2s ease;
}

.ae-switch-track{
  position: relative;
  width: 58px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,0,0,.14), rgba(0,0,0,.08));
  border: 1px solid rgba(0,0,0,.10);
  box-shadow:
    inset 0 1px 3px rgba(0,0,0,.12),
    0 4px 14px rgba(0,0,0,.08);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ae-switch-thumb{
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 2px 8px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .25s ease, background .25s ease;
}

.ae-theme-switch[data-mode="dark"] .ae-switch-thumb{
  transform: translateX(26px);
}

.ae-theme-switch[data-mode="dark"] .ae-switch-label-right{
  opacity: 1;
  transform: scale(1.05);
}

.ae-theme-switch[data-mode="dark"] .ae-switch-label-left{
  opacity: .45;
}

.ae-theme-switch[data-mode="light"] .ae-switch-thumb{
  transform: translateX(0);
}

.ae-theme-switch[data-mode="light"] .ae-switch-label-left{
  opacity: 1;
  transform: scale(1.05);
}

.ae-theme-switch[data-mode="light"] .ae-switch-label-right{
  opacity: .45;
}

html[data-theme="light"] .ae-switch-track{
  background: linear-gradient(180deg, rgba(254,64,0,.22), rgba(254,64,0,.10));
  border-color: rgba(0,0,0,.08);
}

html[data-theme="dark"] .ae-switch-track{
  background: linear-gradient(180deg, rgba(254,64,0,.24), rgba(255,255,255,.08));
  border-color: rgba(255,255,255,.12);
}

/* ---------- Buttons ---------- */
.btn-primary{
  background-color: var(--ae-primary) !important;
  border-color: var(--ae-primary) !important;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: .2px;
  border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, border-color .15s ease;
}

.btn-primary:hover{
  background-color: var(--ae-primary-dark) !important;
  border-color: var(--ae-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(254,64,0,.25);
}

.btn-outline-light{
  border-radius: 14px;
  font-weight: 800;
}

.ae-btn-ghost{
  color: var(--ae-ghost-text) !important;
  border-color: var(--ae-ghost-border) !important;
}

.ae-btn-ghost:hover{
  background: rgba(254,64,0,.10) !important;
  border-color: rgba(254,64,0,.28) !important;
}

/* ---------- Sections ---------- */
.ae-section{
  padding: 84px 0;
  background: var(--ae-bg);
}

.ae-section-muted{
  background: var(--ae-panel);
}

.ae-section-head h2{
  font-weight: 900;
  letter-spacing: .2px;
}

.cta-hint{
  font-size: .9rem;
}

/* ---------- Global Dark Section Handling ---------- */
html[data-theme="dark"] .ae-section{
  background: #0f1115;
}

html[data-theme="dark"] .ae-section-muted{
  background: #14171c;
}

html[data-theme="dark"] section:not(.ae-section):not(.ae-section-muted):not(.ae-final-cta):not(.ae-hero){
  background: #0f1115;
}

/* ---------- Cards ---------- */
.card{
  border: none;
  border-radius: var(--ae-radius);
  box-shadow: var(--ae-shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}

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

html[data-theme="light"] .card,
html[data-theme="light"] .card-soft{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

html[data-theme="dark"] .card{
  background: var(--ae-surface-soft);
  color: rgba(255,255,255,.92);
}

.ae-card{
  background: var(--ae-surface);
}

.ae-card-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254,64,0,.12);
  border: 1px solid rgba(254,64,0,.18);
  color: var(--ae-primary);
  margin-bottom: 14px;
  font-size: 20px;
}

/* ---------- Hero ---------- */
.ae-hero{
  position: relative;
  overflow: visible;
  padding: 10px 0 90px;
  background: var(--ae-hero-bg);
  color: var(--ae-hero-text);
}

html[data-theme="dark"] .ae-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 10% 20%, rgba(254,64,0,.22), transparent 60%),
    radial-gradient(700px 420px at 90% 10%, rgba(123,212,68,.16), transparent 60%),
    radial-gradient(800px 520px at 70% 90%, rgba(255,255,255,.06), transparent 60%);
  pointer-events: none;
}

html[data-theme="light"] .ae-hero-bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 450px at 10% 10%, rgba(254,64,0,.08), transparent 60%);
  pointer-events: none;
}

/* ---------- Hero Image ---------- */
.hero-image{
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hero-image img{
  width: 100%;
  height: auto;
  display: block;
}

.ae-hero-title{
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1;
  font-size: 60px;

}
.ae-hero-title-1{
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1.05;
  font-size: 50px;
	display: block;
	margin-top: 30px;
}	
.ae-highlight{
  color: var(--ae-primary);
}
.var-1{ 
	color: var(--ae-primary);
	padding: 0px 5px 0 10px;
	}
.ae-hero-lead,
.ae-hero .lead{
  color: var(--ae-hero-lead);
  font-size: 1.08rem;
  line-height: 1.6;
}

.ae-hero-sub{
  color: var(--ae-hero-lead);
  font-weight: 700;
	font-size: 1.93rem;
  letter-spacing: .2px;
}
.fa-star{
	color: #DBD50A;
	}
/* ---------- Hero Card ---------- */
.ae-hero-card{
  background: var(--ae-surface);
  border: 1px solid var(--ae-line);
  border-radius: var(--ae-radius);
  overflow: hidden;
  box-shadow: var(--ae-shadow-soft);
}

html[data-theme="dark"] .ae-hero-card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.ae-hero-card-top{
  padding: 18px;
  background: rgba(0,0,0,.03);
  border-bottom: 1px solid var(--ae-line);
}

html[data-theme="dark"] .ae-hero-card-top{
  background: rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.ae-hero-logo{
  border-radius: 14px;
  width: 100%;
  height: auto;
  display: block;
}

.ae-hero-card-intro{
  padding: 22px 22px 18px;
}

.ae-hero-card-kicker{
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ae-primary);
}

.ae-hero-card-heading{
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 900;
  margin: 0;
}

.ae-hero-metrics{
  padding: 18px;
  display: grid;
  gap: 14px;
}

.ae-metric{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.02);
  border: 1px solid var(--ae-line);
}

html[data-theme="dark"] .ae-metric{
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
}

.ae-metric-icon{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254,64,0,.12);
  border: 1px solid rgba(254,64,0,.18);
  color: var(--ae-primary);
}

html[data-theme="dark"] .ae-metric-icon{
  color: #fff;
  background: rgba(254,64,0,.18);
  border: 1px solid rgba(254,64,0,.28);
}

.ae-metric-title{
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 3px;
}

.ae-metric-text{
  color: rgba(17,17,17,.72);
  font-size: .95rem;
}

html[data-theme="dark"] .ae-metric-text{
  color: rgba(255,255,255,.78);
}

.ae-hero-card-bottom{
  padding: 14px 18px;
  border-top: 1px solid var(--ae-line);
}

html[data-theme="dark"] .ae-hero-card-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
}

.ae-mini-note{
  color: rgba(17,17,17,.72);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

html[data-theme="dark"] .ae-mini-note{
  color: rgba(255,255,255,.78);
}


/* ---------- Hero Statement ---------- */
.ae-statement{
  text-align: center;
  margin: 30px auto 10px;
  max-width: 900px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .2px;
  opacity: .9;
}

html[data-theme="dark"] .ae-statement{
  color: rgba(255,255,255,.85);
}

html[data-theme="light"] .ae-statement{
  color: rgba(0,0,0,.75);
}

/* ---------- Trust Strip ---------- */
.ae-trust{
  position: relative;
  z-index: 5;
  max-width: 1200px;
  margin: 40px auto -130px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--ae-trust-border);
  background: var(--ae-trust-bg);
  box-shadow: 0 20px 40px rgba(0,0,0,.08);
  backdrop-filter: blur(14px);
}

html[data-theme="dark"] .ae-trust{
  background: rgba(20,23,28,.82);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 50px rgba(0,0,0,.22);
}

.ae-trust-left{
  padding: 20px 24px;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid var(--ae-trust-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ae-trust-chips{
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.ae-chip{
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.03);
  border: 1px solid var(--ae-line);
  font-weight: 700;
  font-size: .92rem;
}

html[data-theme="dark"] .ae-chip{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.88);
}

.ae-hero + main .ae-section:first-child{
  padding-top: 120px;
}

/* ---------- Service Cards ---------- */
.ae-service{
  overflow: hidden;
  background: var(--ae-surface);
}

.ae-service-media img{
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.ae-service-body{
  padding: 18px;
}

.ae-service-body h5{
  font-weight: 900;
  margin-bottom: 8px;
}

.ae-service-body p{
  color: rgba(17,17,17,.78);
  margin-bottom: 0;
}

html[data-theme="dark"] .ae-service-body p{
  color: rgba(255,255,255,.78);
}

/* ---------- Message Section ---------- */
.ae-message-section{
  padding: 90px 0;
  position: relative;
}

html[data-theme="light"] .ae-message-section{
  background: #ffffff;
}

html[data-theme="dark"] .ae-message-section{
  background: #0f1115;
}

.ae-message-block{
  max-width: 820px;
  margin: 0 auto;
}

.ae-message-top{
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .8;
}

.ae-message-highlight{
  position: relative;
  display: inline-block;
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: .3px;
  padding-bottom: 14px;
}

.ae-message-highlight::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 1000px;
  height: 2px;
  border-radius: 999px;
  background: var(--ae-primary);
}

.ae-message-bottom{
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .85;
}

html[data-theme="light"] .ae-message-highlight{
  color: #111111;
}

html[data-theme="dark"] .ae-message-highlight{
  color: #ffffff;
}

/* ---------- Founder / Wer wir sind ---------- */
.ae-founder-section{
  padding: 80px 0;
  background: var(--ae-bg);
}

.ae-founder-intro{
  max-width: 860px;
  margin: 0 auto 70px;
  text-align: center;
}

.ae-founder-intro p{
  line-height: 1.8;
}

.ae-founder-img{
  width: 100%;
  max-width: 450px;
  height: 375px;
  object-fit: cover;
  border-radius: 22px !important;
  border: 1px solid var(--ae-line);
  box-shadow: var(--ae-shadow-soft);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.ae-founder-section .font-weight-bold{
  font-size: 1.05rem;
  letter-spacing: .2px;
}

.ae-founder-content > p:first-child{
  font-size: .92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ae-primary);
  margin-bottom: 10px !important;
}

.ae-founder-content h1,
.ae-founder-content h2{
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 18px;
}

.ae-founder-content p{
  line-height: 1.75;
  color: inherit;
}

.ae-founder-content hr{
  width: 60px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 24px;
  border-top: 3px solid var(--ae-primary);
  opacity: 1;
}

html[data-theme="light"] .ae-founder-section{
  background: var(--ae-bg);
}

html[data-theme="dark"] .ae-founder-section{
  background: #0f1115;
}

html[data-theme="dark"] .ae-founder-img{
  border: 1px solid rgba(255,255,255,.10);
}

/* ---------- Soft Cards ---------- */
.card-soft{
  background: var(--ae-surface-soft);
  border-radius: var(--ae-radius);
  box-shadow: var(--ae-shadow-soft);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card-soft:hover{
  transform: translateY(-2px);
  box-shadow: var(--ae-shadow-hover);
}

.card-soft .card-body{
  padding: 28px 24px;
}

.card-soft h5,
.card-soft .card-title{
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.35;
}

.card-soft p,
.card-soft .card-text{
  line-height: 1.7;
  margin-bottom: 0;
  color: rgba(17,17,17,.78);
}

html[data-theme="dark"] .card-soft p,
html[data-theme="dark"] .card-soft .card-text{
  color: rgba(255,255,255,.78);
}

.ae-soft-row{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.ae-soft-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(254,64,0,.10);
  border: 1px solid rgba(254,64,0,.18);
  color: var(--ae-primary);
  font-size: 20px;
  flex-shrink: 0;
}

html[data-theme="dark"] .ae-soft-icon{
  background: rgba(254,64,0,.18);
  border: 1px solid rgba(254,64,0,.28);
  color: #fff;
}

/* ---------- Jumbotron / Service Section ---------- */
.jumbotron{
  background: var(--ae-surface-alt);
  border: 1px solid var(--ae-line);
  border-radius: 26px;
  box-shadow: var(--ae-shadow-soft);
  padding: 3.5rem 2rem;
}

html[data-theme="dark"] .jumbotron{
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.08);
}

.jumbotron h2{
  font-weight: 900;
}

.jumbotron h5{
  font-weight: 800;
  margin-bottom: 10px;
}

.jumbotron p{
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- Erfolgsformel ---------- */
.growth-arrow{
  margin-bottom: -200px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.15));
}

.ae-step{
  position: relative;
  min-height: 100%;
  background: var(--ae-surface);
  overflow: hidden;
}

.ae-step-badge{
  position: absolute;
  top: 16px;
  left: 10px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(254,64,0,.14);
  border: 1px solid rgba(254,64,0,.22);
  color: var(--ae-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

#erfolgsformel .row.text-center.align-items-stretch{
  align-items: flex-end !important;
}

@media (min-width: 768px){
  #erfolgsformel .col-md-4:nth-child(1){
    margin-top: 140px;
  }

  #erfolgsformel .col-md-4:nth-child(2){
    margin-top: 70px;
  }

  #erfolgsformel .col-md-4:nth-child(3){
    margin-top: 0;
  }

  #erfolgsformel .col-md-4:nth-child(1) .ae-step{
    min-height: 300px;
  }

  #erfolgsformel .col-md-4:nth-child(2) .ae-step{
    min-height: 380px;
  }

  #erfolgsformel .col-md-4:nth-child(3) .ae-step{
    min-height: 460px;
  }
}

/* ---------- About ---------- */
.ae-about-card{
  border-radius: var(--ae-radius);
  overflow: hidden;
  box-shadow: var(--ae-shadow-soft);
  background: var(--ae-surface);
}

.ae-about-img{
  width: 100%;
  height: auto;
  display: block;
}

.ae-checklist{
  display: grid;
  gap: 10px;
}

.ae-check{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: inherit;
}

.ae-check i{
  color: var(--ae-growth);
  font-size: 18px;
}

/* ---------- FAQ ---------- */
.accordion .card{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ae-shadow-soft);
}

.accordion .card-header{
  background: var(--ae-surface);
  border-bottom: 1px solid var(--ae-line);
  padding: 0;
}

html[data-theme="dark"] .accordion .card{
  background: var(--ae-surface-soft);
}

html[data-theme="dark"] .accordion .card-header{
  background: var(--ae-surface-soft);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.btn.btn-link{
  font-weight: 900;
  color: inherit;
  text-decoration: none !important;
  padding: 20px 22px;
  white-space: normal;
}

.btn.btn-link:hover{
  color: var(--ae-primary);
}

.accordion .card-body{
  line-height: 1.75;
}

/* ---------- Final CTA ---------- */
.ae-final-cta{
  padding: 70px 0;
  background: var(--ae-hero-bg);
  color: var(--ae-hero-text);
}

html[data-theme="dark"] .ae-final-cta{
  background:
    radial-gradient(900px 500px at 15% 40%, rgba(254,64,0,.24), transparent 60%),
    radial-gradient(800px 520px at 85% 40%, rgba(123,212,68,.18), transparent 60%),
    #0b0b0d;
}

html[data-theme="light"] .ae-final-cta{
  background:
    radial-gradient(900px 500px at 15% 40%, rgba(254,64,0,.10), transparent 60%),
    #ffffff;
}

.ae-final-sub{
  color: var(--ae-hero-lead);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.social-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 6px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--ae-shadow-soft);
}

.social-btn.instagram{
  background: #E1306C;
}

.social-btn.facebook{
  background: #1877F2;
}

.social-btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--ae-shadow-hover);
}

footer.bg-light{
  background: var(--ae-footer-bg) !important;
  color: var(--ae-footer-text);
}

footer.bg-light a{
  color: inherit;
}

footer.bg-light a:hover{
  color: var(--ae-primary);
}

/* ---------- Modal ---------- */
.modal-content{
  border: 0;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
  background: var(--ae-surface);
  color: var(--ae-text);
}

.modal-header{
  border-bottom: 1px solid var(--ae-line);
}

.modal-footer{
  border-top: 1px solid var(--ae-line);
}

.form-control{
  border-radius: 12px;
  border: 1px solid var(--ae-line-strong);
  padding: 12px 14px;
  background: var(--ae-surface);
  color: var(--ae-text);
}

.form-control:focus{
  border-color: rgba(254,64,0,.40);
  box-shadow: 0 0 0 .2rem rgba(254,64,0,.12);
  background: var(--ae-surface);
  color: var(--ae-text);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px){
  body{
    padding-top: 74px;
  }

  .ae-nav-container{
    padding-left: 20px;
    padding-right: 20px;
  }

  .ae-theme-switch{
    margin: 6px 0 10px;
  }

  .ae-hero-logo-clear{
    height: 42px;
    max-width: 190px;
  }

  .ae-hero{
    padding: 95px 0 36px;
  }

  .hero-image{
    margin-bottom: 18px;
  }

  .hero-image img{
    max-width: 240px;
  }

  .ae-trust{
    max-width: 100%;
    margin: 30px auto -50px;
  }

  .ae-trust-left{
    border-right: 0;
    border-bottom: 1px solid var(--ae-trust-border);
  }

  .jumbotron{
    padding: 2.5rem 1.25rem;
  }

  .ae-founder-section{
    padding: 68px 0;
  }

  .ae-founder-content{
    text-align: center;
  }

  .ae-founder-content hr{
    margin-left: auto;
    margin-right: auto;
  }

  .ae-founder-intro{
    margin-bottom: 50px;
  }

  .ae-hero-card-heading{
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px){
  .ae-section{
    padding: 68px 0;
  }

  .ae-hero-title{
    font-size: 2.2rem;
  }

  .ae-hero .lead{
    font-size: 1rem;
  }

  .card-soft .card-body{
    padding: 24px 20px;
  }

  .growth-arrow{
    margin-bottom: -40px;
  }
}

@media (max-width: 575.98px){
  .ae-hero-logo-clear{
    height: 36px;
    max-width: 160px;
  }

  .ae-nav-container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-image img{
    max-width: 190px;
  }

  .btn.btn-link{
    padding: 16px 18px;
    font-size: .98rem;
  }

  .ae-trust{
    margin: 24px auto -40px;
    border-radius: 18px;
  }

  .ae-trust-left,
  .ae-trust-chips{
    padding: 16px 18px;
  }

  .ae-soft-row{
    grid-template-columns: 1fr;
  }

  .ae-soft-icon{
    margin-bottom: 10px;
  }

  .ae-message-section{
    padding: 70px 0;
  }

  .ae-message-highlight{
    font-size: 1.4rem;
  }
}