/*
Theme Name:        Agence Web Création — Élodie Gaborit
Theme URI:         https://agence-webcreation.fr
Description:       Child theme Hello Elementor pour Agence Web Création. Palette Prune & Or, typographie Cormorant Garamond + Outfit.
Author:            Élodie Gaborit
Author URI:        https://agence-webcreation.fr
Template:          hello-elementor
Version:           1.0.0
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       agence-webcreation
Tags:              elementor, one-column, custom-colors, custom-typography
*/

/* ══════════════════════════════════════════════════════════
   IMPORT GOOGLE FONTS
══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════ */
:root {
  /* Palette Prune */
  --p1: #3D0764;
  --p2: #5B1A8B;
  --p3: #7B2FBE;
  --p4: #A855F7;
  --p5: #E9D5FF;
  --p6: #F3EBFF;

  /* Or — signature premium */
  --or:  #C9A96E;
  --or2: #E8C98A;
  --or3: #FDF4E3;

  /* Ivoire — fondation chaleur */
  --iv:  #FDFAF6;
  --iv2: #F7F0E8;
  --iv3: #EDE5D8;

  /* Textes */
  --dark:  #1A0A2E;
  --dark2: #2D1557;
  --muted: #6B5E7A;
  --light: #9C8DAE;

  /* Ombres */
  --sh:  0 2px 16px rgba(26,10,46,.06);
  --sh2: 0 8px 40px rgba(26,10,46,.10);
  --sh3: 0 20px 64px rgba(26,10,46,.14);

  /* Glow prune */
  --glow-sm: 0 0 20px rgba(91,26,139,.12);
  --glow-md: 0 0 48px rgba(91,26,139,.18);
  --glow-lg: 0 0 80px rgba(91,26,139,.24);

  /* Glass */
  --glass:  rgba(253,250,246,.72);
  --glass2: rgba(253,250,246,.88);
  --glass3: rgba(253,250,246,.97);

  /* Borders */
  --br:  rgba(91,26,139,.10);
  --br2: rgba(91,26,139,.18);
  --bro: rgba(201,169,110,.25);

  /* Radius */
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
  --r20: 20px;
  --r24: 24px;
  --r50: 50px;
}

/* ══════════════════════════════════════════════════════════
   BASE
══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--iv);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--dark);
  line-height: 1.12;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

a {
  color: var(--p2);
  transition: color .25s;
}

a:hover {
  color: var(--p1);
}

img {
  max-width: 100%;
  height: auto;
}

/* ══════════════════════════════════════════════════════════
   HELLO ELEMENTOR OVERRIDES
══════════════════════════════════════════════════════════ */
.site-header,
.site-footer {
  display: none !important; /* On utilise le header/footer Elementor */
}

.site-main {
  padding: 0 !important;
  margin: 0 !important;
}

.page-content,
.entry-content {
  padding: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   GRADIENT TEXTE UTILITAIRE
══════════════════════════════════════════════════════════ */
.e-grad,
.grad {
  background: linear-gradient(125deg, #3D0764 0%, #7B2FBE 55%, #C9A96E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════════════════════════
   EYEBROW BADGE
══════════════════════════════════════════════════════════ */
.e-eyebrow,
.eyebrow-s {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--r50);
  background: linear-gradient(135deg, rgba(91,26,139,.07), rgba(201,169,110,.08));
  border: 1px solid var(--bro);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--p2);
  font-family: 'Outfit', sans-serif;
  letter-spacing: .3px;
}

/* ══════════════════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════════════════ */
.btn-fill,
.e-btn-fill {
  padding: 14px 30px;
  border-radius: var(--r50);
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: var(--or2) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,169,110,.2);
  transition: .3s;
  box-shadow: 0 4px 18px rgba(61,7,100,.28), var(--glow-md);
  font-family: 'Outfit', sans-serif;
  letter-spacing: .3px;
  cursor: pointer;
}

.btn-fill:hover,
.e-btn-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61,7,100,.38), var(--glow-lg);
  color: var(--or2) !important;
}

.btn-out,
.e-btn-out {
  padding: 14px 30px;
  border-radius: var(--r50);
  background: transparent;
  color: var(--p2) !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(91,26,139,.25);
  transition: .3s;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
}

.btn-out:hover,
.e-btn-out:hover {
  background: rgba(91,26,139,.06);
  border-color: rgba(91,26,139,.45);
  color: var(--p1) !important;
  transform: translateY(-2px);
}

/* Elementor button widget override */
.elementor-button.elementor-button-primary {
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: var(--or2);
  border-radius: var(--r50);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border: 1px solid rgba(201,169,110,.2);
  box-shadow: 0 4px 18px rgba(61,7,100,.28);
  transition: .3s;
}

.elementor-button.elementor-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(61,7,100,.38);
  background: linear-gradient(135deg, var(--p2), var(--p3));
}

/* ══════════════════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════════════════ */
.e-card,
.scard {
  background: var(--glass2);
  border: 1.5px solid var(--br);
  border-radius: var(--r20);
  padding: 28px 24px;
  transition: .35s;
  height: 100%;
}

.e-card:hover,
.scard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2), var(--glow-sm);
  border-color: var(--bro);
}

.e-card-ico,
.scard-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91,26,139,.06), rgba(201,169,110,.08));
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.e-card h3,
.scard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}

.e-card p,
.scard-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}

.e-card-price,
.scard-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--p2);
  padding: 4px 12px;
  background: var(--p6);
  border-radius: var(--r50);
  display: inline-block;
  border: 1px solid var(--br);
}

/* ══════════════════════════════════════════════════════════
   TÉMOIGNAGES
══════════════════════════════════════════════════════════ */
.e-testi,
.testi {
  background: var(--glass2);
  border: 1.5px solid var(--br);
  border-radius: var(--r20);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: .32s;
  height: 100%;
}

.e-testi::after,
.testi::after {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 16px;
  font-size: 52px;
  color: var(--p5);
  opacity: .8;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
  pointer-events: none;
}

.e-testi:hover,
.testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh2), var(--glow-md);
  border-color: var(--bro);
}

.e-stars,
.t-stars {
  color: var(--or);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.e-testi-txt,
.t-txt {
  font-size: 16px;
  line-height: 1.72;
  color: var(--dark2);
  margin-bottom: 17px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.e-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: var(--or2);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}

.e-av1, .av1 { background: linear-gradient(135deg, #3D0764, #7B2FBE); }
.e-av2, .av2 { background: linear-gradient(135deg, #5B1A8B, #C9A96E); }
.e-av3, .av3 { background: linear-gradient(135deg, #7B2FBE, #3D0764); }

.e-av-name, .t-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Cormorant Garamond', serif;
}

.e-av-role, .t-role {
  font-size: 11.5px;
  color: var(--light);
  margin-top: 2px;
}

.e-av-badge, .t-badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: var(--r50);
  background: rgba(91,26,139,.07);
  font-size: 10px;
  font-weight: 500;
  color: var(--p2);
  margin-top: 3px;
  border: 1px solid var(--br);
}

/* ══════════════════════════════════════════════════════════
   PROCESSUS STEPS
══════════════════════════════════════════════════════════ */
.e-pcard,
.pcard {
  background: var(--glass2);
  border: 1.5px solid var(--br);
  border-radius: var(--r20);
  padding: 22px 16px;
  text-align: center;
  transition: .3s;
}

.e-pcard:hover,
.pcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2), var(--glow-sm);
  border-color: var(--bro);
}

.e-pnum,
.pnum {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p1), var(--p2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--or2);
  margin: 0 auto 14px;
  box-shadow: 0 3px 14px rgba(61,7,100,.3), var(--glow-sm);
}

.e-pcard h3,
.pcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}

.e-pcard p,
.pcard-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.e-pcard-recv,
.pcard-recv {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 11px;
  border-radius: var(--r50);
  background: var(--p6);
  border: 1px solid var(--br);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--p2);
}

/* ══════════════════════════════════════════════════════════
   ARGUMENTS "POURQUOI MOI"
══════════════════════════════════════════════════════════ */
.e-arg,
.warg {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 16px;
  border-radius: var(--r12);
  background: var(--glass2);
  border: 1.5px solid var(--br);
  transition: .28s;
  margin-bottom: 10px;
}

.e-arg:hover,
.warg:hover {
  border-color: var(--bro);
  box-shadow: var(--sh), var(--glow-sm);
}

.e-arg-strong,
.warg-txt strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
  font-family: 'Cormorant Garamond', serif;
}

.warg-txt span,
.e-arg span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   CHIPS / TAGS
══════════════════════════════════════════════════════════ */
.e-chip,
.chip {
  padding: 5px 14px;
  border-radius: var(--r50);
  background: rgba(91,26,139,.06);
  border: 1px solid var(--br2);
  font-size: 12px;
  font-weight: 500;
  color: var(--p2);
  display: inline-block;
  margin: 3px;
}

/* ══════════════════════════════════════════════════════════
   STAT BOXES
══════════════════════════════════════════════════════════ */
.e-stat-box,
.reass-pill {
  background: var(--glass2);
  border: 1.5px solid var(--br);
  border-radius: var(--r20);
  padding: 16px;
  text-align: center;
}

.e-stat-num,
.rpil-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--p2);
  display: block;
  line-height: 1;
}

.e-stat-lbl,
.rpil-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   VILLES
══════════════════════════════════════════════════════════ */
.e-vc,
.vc {
  background: var(--glass2);
  border: 1.5px solid var(--br);
  border-radius: var(--r16);
  padding: 20px 14px;
  text-align: center;
  transition: .28s;
  position: relative;
  overflow: hidden;
}

.e-vc::after,
.vc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--or), transparent);
  transform: scaleX(0);
  transition: .28s;
  transform-origin: left;
}

.e-vc:hover,
.vc:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh), var(--glow-sm);
  border-color: var(--bro);
}

.e-vc:hover::after,
.vc:hover::after {
  transform: scaleX(1);
}

.e-vc.main,
.vc.main {
  border-color: rgba(201,169,110,.35);
  box-shadow: 0 0 0 3px rgba(91,26,139,.06), var(--glow-sm);
}

.e-vc.main::after,
.vc.main::after {
  transform: scaleX(1);
}

.e-vc-name,
.vc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.e-vc-dept,
.vc-dept {
  font-size: 11px;
  color: var(--light);
}

/* ══════════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════════ */
.e-fi,
.fi {
  background: var(--glass2);
  border: 1.5px solid var(--br);
  border-radius: var(--r16);
  margin-bottom: 9px;
  overflow: hidden;
  transition: .22s;
}

.e-fi.open,
.fi.open {
  border-color: var(--bro);
  box-shadow: var(--sh), var(--glow-sm);
}

.e-fq,
.fq {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  transition: .22s;
  gap: 12px;
}

.e-fq:hover,
.fq:hover {
  color: var(--p1);
}

.e-fi-ico,
.fi-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(91,26,139,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--p2);
  transition: .35s;
  border: 1px solid var(--br);
}

.e-fi.open .e-fi-ico,
.fi.open .fi-ico {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: var(--or2);
  border-color: transparent;
  box-shadow: var(--glow-sm);
}

.e-fa,
.fa {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}

.e-fi.open .e-fa,
.fi.open .fa {
  max-height: 300px;
}

.e-fa-in,
.fa-in {
  padding: 0 22px 17px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   FORMULAIRE DE CONTACT
══════════════════════════════════════════════════════════ */
.e-form-wrap {
  background: linear-gradient(135deg, var(--p1), var(--dark2));
  border-radius: var(--r24);
  padding: 40px;
}

.e-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.e-fg {
  margin-bottom: 13px;
}

.e-fg label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 5px;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.e-fg input,
.e-fg select,
.e-fg textarea {
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--r12);
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 13.5px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: .25s;
}

.e-fg input::placeholder,
.e-fg textarea::placeholder {
  color: rgba(255,255,255,.4);
}

.e-fg input:focus,
.e-fg select:focus,
.e-fg textarea:focus {
  border-color: rgba(201,169,110,.5);
  background: rgba(255,255,255,.15);
}

.e-fg select option {
  color: var(--dark);
  background: #fff;
}

.e-fg textarea {
  resize: none;
  min-height: 78px;
}

.e-form-sub {
  width: 100%;
  padding: 13px;
  border-radius: var(--r50);
  margin-top: 4px;
  background: linear-gradient(135deg, var(--or), var(--or2));
  color: var(--p1);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: .3s;
  box-shadow: 0 4px 16px rgba(201,169,110,.4);
  letter-spacing: .3px;
}

.e-form-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,169,110,.55);
}

.e-form-note {
  font-size: 11px;
  color: rgba(255,255,255,.45);
  text-align: center;
  margin-top: 9px;
  font-family: 'Outfit', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   HERO OVERLAYS
══════════════════════════════════════════════════════════ */
.e-hero-over {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 8px;
  padding: 14px;
}

.e-hero-over-card {
  flex: 1;
  background: rgba(253,250,246,.95);
  border-radius: 14px;
  padding: 12px 10px;
  text-align: center;
  border: 1.5px solid rgba(201,169,110,.2);
  box-shadow: 0 4px 16px rgba(26,10,46,.12);
}

.e-hero-over-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--p1);
  line-height: 1;
  display: block;
}

.e-hero-over-lbl {
  font-size: 9px;
  font-weight: 600;
  color: var(--p1);
  opacity: .75;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════════════ */
.s-head {
  text-align: center;
  margin-bottom: 44px;
}

.s-head h2,
.s-head .elementor-heading-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 10px 0 14px;
}

.s-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════
   RÉALISATIONS
══════════════════════════════════════════════════════════ */
.rcard {
  border-radius: var(--r20);
  overflow: hidden;
  border: 1.5px solid var(--br);
  background: var(--glass2);
  transition: .35s;
}

.rcard:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh2), var(--glow-md);
  border-color: var(--bro);
}

.rcard-img {
  width: 100%;
  aspect-ratio: 1.6;
  background: linear-gradient(135deg, var(--p6), var(--p5) 50%, #C4B5FD);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rcard-cat {
  position: absolute;
  top: 11px;
  left: 11px;
  padding: 4px 11px;
  border-radius: var(--r50);
  background: rgba(253,250,246,.95);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--p1);
  border: 1px solid var(--bro);
}

.rcard-body {
  padding: 16px 18px;
}

.rcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.rcard-tech {
  font-size: 12px;
  color: var(--light);
}

/* ══════════════════════════════════════════════════════════
   BADGE TÉMOIGNAGE LATÉRAL
══════════════════════════════════════════════════════════ */
.e-why-badge {
  background: rgba(253,250,246,.97);
  border-radius: var(--r16);
  padding: 15px 17px;
  border: 1.5px solid var(--bro);
  box-shadow: var(--sh2), var(--glow-sm);
}

/* ══════════════════════════════════════════════════════════
   FLOATING CTA BUTTON
══════════════════════════════════════════════════════════ */
.e-floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

.e-rdv-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: var(--r50);
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: var(--or2);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(61,7,100,.4), var(--glow-lg);
  transition: .3s;
  border: 1.5px solid rgba(201,169,110,.25);
  font-family: 'Outfit', sans-serif;
  letter-spacing: .3px;
  animation: rdvPop .5s 1.2s both;
}

@keyframes rdvPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.e-rdv-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 38px rgba(61,7,100,.5), var(--glow-xl);
  color: var(--or2);
}

.e-rdv-live {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22C55E;
  border: 2px solid var(--iv);
  animation: lp 2.2s infinite;
}

@keyframes lp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* ══════════════════════════════════════════════════════════
   GDOT ANIMATION
══════════════════════════════════════════════════════════ */
.e-gdot,
.gdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22C55E;
  display: inline-block;
  animation: gp 2.2s infinite;
  flex-shrink: 0;
}

@keyframes gp {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.4); }
  70%       { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}

/* ══════════════════════════════════════════════════════════
   AUDIT BAR STICKY
══════════════════════════════════════════════════════════ */
.e-audit-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(91,26,139,.04), rgba(201,169,110,.04));
  border-bottom: 1px solid rgba(91,26,139,.08);
}

.e-audit-bar input {
  flex: 1;
  max-width: 340px;
  padding: 10px 18px;
  border-radius: var(--r50);
  border: 1.5px solid rgba(91,26,139,.15);
  background: white;
  font-size: 13px;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.e-audit-bar button {
  padding: 10px 24px;
  border-radius: var(--r50);
  background: linear-gradient(135deg, var(--p1), var(--p2));
  color: var(--or2);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   TARIFS / PRICING
══════════════════════════════════════════════════════════ */
.e-price-card {
  border-radius: var(--r20);
  padding: 28px 24px;
  background: var(--glass2);
  border: 1.5px solid var(--br);
  text-align: center;
  transition: .3s;
}

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

.e-price-card.featured {
  border-color: rgba(201,169,110,.35);
  box-shadow: 0 0 0 3px rgba(91,26,139,.06);
}

.e-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--p1);
  line-height: 1;
  display: block;
}

.e-price-per {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.e-price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  text-align: left;
}

.e-price-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 5px 0;
  font-family: 'Outfit', sans-serif;
}

/* ══════════════════════════════════════════════════════════
   PHOTOS
══════════════════════════════════════════════════════════ */
.e-photo,
.photo-frame {
  border-radius: var(--r20);
  overflow: hidden;
}

.e-photo img,
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.e-footer {
  background: var(--p1);
  padding: 60px 0 26px;
  position: relative;
}

.e-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,.35), transparent);
}

.e-ft-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 0 40px;
  margin-bottom: 44px;
}

.e-ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.e-ft-p {
  font-size: 13px;
  color: rgba(255,255,255,.38);
  line-height: 1.78;
  max-width: 230px;
  font-family: 'Outfit', sans-serif;
}

.e-ft-city {
  padding: 3px 10px;
  border-radius: var(--r50);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.15);
  font-size: 10.5px;
  color: rgba(255,255,255,.35);
  display: inline-block;
  margin: 2px;
  font-family: 'Outfit', sans-serif;
}

.e-fsoc {
  width: 32px;
  height: 32px;
  border-radius: var(--r8);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,110,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: .25s;
  margin-right: 7px;
}

.e-fsoc:hover {
  background: rgba(201,169,110,.15);
  border-color: rgba(201,169,110,.4);
  color: var(--or2);
}

.e-ft-col h4 {
  font-size: 10px;
  font-weight: 600;
  color: rgba(201,169,110,.6);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'Outfit', sans-serif;
}

.e-ft-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.e-ft-col a {
  font-size: 13px;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  transition: .22s;
  font-family: 'Outfit', sans-serif;
}

.e-ft-col a:hover {
  color: var(--or2);
}

.e-ft-bot {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 40px 0;
  border-top: 1px solid rgba(201,169,110,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.24);
  font-family: 'Outfit', sans-serif;
}

.e-ft-badge {
  padding: 3px 10px;
  border-radius: var(--r50);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.12);
  font-size: 10px;
  color: rgba(255,255,255,.3);
  display: inline-block;
  margin: 2px;
}

/* ══════════════════════════════════════════════════════════
   ELEMENTOR WIDGETS — OVERRIDES GLOBAUX
══════════════════════════════════════════════════════════ */

/* Heading widget */
.elementor-widget-heading .elementor-heading-title {
  font-family: 'Cormorant Garamond', serif;
}

/* Text editor widget */
.elementor-widget-text-editor p {
  font-family: 'Outfit', sans-serif;
  line-height: 1.75;
}

/* Image widget */
.elementor-widget-image img {
  border-radius: var(--r20);
}

/* Icon box widget */
.elementor-widget-icon-box .elementor-icon-box-title {
  font-family: 'Cormorant Garamond', serif;
}

/* Divider */
.elementor-widget-divider .elementor-divider-separator {
  border-color: var(--bro);
}

/* Toggle / Accordion */
.elementor-widget-toggle .elementor-toggle-title,
.elementor-widget-accordion .elementor-tab-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--dark);
}

/* Column background */
.elementor-column > .elementor-element-populated {
  transition: .3s;
}

/* Section full width */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .e-ft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .e-ft-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .e-ft-bot {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px 0;
  }

  .e-form-wrap {
    padding: 28px 20px;
  }

  .e-hero-over {
    flex-wrap: wrap;
  }

  .e-audit-bar {
    flex-direction: column;
    gap: 8px;
  }

  .e-audit-bar input {
    max-width: 100%;
    width: 100%;
  }

  .btn-fill,
  .btn-out,
  .e-btn-fill,
  .e-btn-out {
    padding: 12px 22px;
    font-size: 13px;
  }

  .e-why-badge {
    display: none;
  }

  .e-floating-cta {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .e-stat-num,
  .rpil-num {
    font-size: 28px;
  }

  .e-price-amount {
    font-size: 42px;
  }
}
