/*
Theme Name: Infinite Digital Marketers
Theme URI: https://infinitedigitalmarketers.com
Author: Infinite Digital Marketers
Author URI: https://infinitedigitalmarketers.com
Description: Professional digital marketing agency theme for Infinite Digital Marketers. Features social media showcase, services, team, and conversion-optimized sections.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: infinite-digital-marketers
Tags: marketing, agency, business, custom-colors, custom-logo, featured-images, full-width-template, one-page, responsive-layout
*/

/* ==========================================
   INFINITE DIGITAL MARKETERS — MASTER CSS
   ========================================== */

/* ── Google Fonts loaded via functions.php ── */

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

:root {
  --black:       #080808;
  --gold:        #F5B800;
  --gold2:       #E09900;
  --gold-light:  #FFD966;
  --white:       #FFFFFF;
  --muted:       #7a7060;
  --card:        #101008;
  --border:      rgba(245,184,0,0.15);
  --border-w:    rgba(255,255,255,0.07);
  --green:       #25D366;
  --fh:          'Syne', sans-serif;
  --fb:          'DM Sans', sans-serif;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 50px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -999px; left: -999px;
  background: var(--gold); color: var(--black);
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 700; z-index: 9999;
}
.skip-link:focus { top: 1rem; left: 1rem; }

/* ==========================================
   NAVIGATION
   ========================================== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
#site-header.scrolled {
  background: rgba(8,8,8,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}
.site-logo img { height: 48px; width: auto; object-fit: contain; }
.site-logo .text-logo {
  font-family: var(--fh); font-size: 1.4rem; font-weight: 800;
  letter-spacing: -.03em; color: var(--white);
}
.site-logo .text-logo span { color: var(--gold); }

/* Nav Menu */
#primary-menu {
  display: flex; gap: 2.5rem; align-items: center;
}
#primary-menu li a {
  color: rgba(255,255,255,.55); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: color .2s; padding: .25rem 0;
  position: relative;
}
#primary-menu li a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
#primary-menu li a:hover,
#primary-menu li.current-menu-item a { color: var(--gold); }
#primary-menu li.current-menu-item a::after,
#primary-menu li a:hover::after { transform: scaleX(1); }

/* CTA button in nav */
.nav-cta-btn {
  background: var(--gold); color: var(--black) !important;
  padding: .6rem 1.5rem !important; border-radius: var(--radius-pill) !important;
  font-weight: 700 !important; font-size: .75rem !important;
  letter-spacing: .1em !important; text-transform: uppercase !important;
  transition: transform .2s, box-shadow .2s !important;
  display: inline-block;
}
.nav-cta-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(245,184,0,.4) !important;
  color: var(--black) !important;
}
.nav-cta-btn::after { display: none !important; }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .4rem;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  #primary-menu {
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(8,8,8,.97); backdrop-filter: blur(20px);
    flex-direction: column; gap: 0; padding: 1.5rem 5vw 2rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .35s, opacity .35s;
  }
  #primary-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  #primary-menu li { width: 100%; border-bottom: 1px solid var(--border-w); }
  #primary-menu li:last-child { border-bottom: none; margin-top: 1rem; }
  #primary-menu li a { display: block; padding: 1rem 0; font-size: .9rem; }
  .nav-cta-btn { display: block; text-align: center; margin-top: .5rem; padding: .8rem 1.5rem !important; }
}

/* ==========================================
   HERO SECTION
   ========================================== */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 8rem 5vw 5rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 70% at 78% 50%, rgba(245,184,0,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 15% 80%, rgba(245,184,0,.04) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 10%, rgba(245,184,0,.03) 0%, transparent 55%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(245,184,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,184,0,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Hero Left */
.hero-left { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: rgba(245,184,0,.08);
  border: 1px solid rgba(245,184,0,.25);
  color: var(--gold); font-size: .68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .45rem 1.1rem; border-radius: var(--radius-pill);
  margin-bottom: 1.8rem;
  animation: fadeUp .6s ease both;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 800; line-height: .95;
  letter-spacing: -.04em; margin-bottom: 1.5rem;
  animation: fadeUp .7s .1s ease both;
}
.hero-title .line-white { color: var(--white); display: block; }
.hero-title .line-outline {
  color: transparent; -webkit-text-stroke: 2px var(--gold); display: block;
}
.hero-title .line-gold { color: var(--gold); display: block; }

.hero-desc {
  font-size: 1rem; color: rgba(255,255,255,.5);
  max-width: 460px; margin-bottom: 2rem;
  font-weight: 300; line-height: 1.85;
  animation: fadeUp .7s .2s ease both;
}
.hero-desc strong { color: var(--gold-light); font-weight: 500; }

/* Platform pills */
.hero-platforms {
  display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2.2rem;
  animation: fadeUp .7s .25s ease both;
}
.platform-pill {
  display: flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-pill);
  padding: .4rem .9rem; font-size: .72rem;
  font-weight: 500; color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.platform-pill:hover { border-color: rgba(245,184,0,.3); color: var(--gold); }

/* Hero buttons */
.hero-btns {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}
.btn-gold {
  background: var(--gold); color: var(--black); border: none;
  padding: .95rem 2rem; border-radius: var(--radius-pill);
  font-family: var(--fb); font-weight: 700; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .2s, box-shadow .2s; white-space: nowrap;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245,184,0,.35);
  color: var(--black);
}
.btn-ghost {
  color: rgba(255,255,255,.55); font-size: .82rem; font-weight: 400;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: color .2s; white-space: nowrap;
}
.btn-ghost:hover { color: var(--gold); }

/* Trust bar */
.hero-trust-bar {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
  animation: fadeUp .7s .4s ease both;
}
.trust-stat-num {
  font-family: var(--fh); font-size: 2rem; font-weight: 800;
  color: var(--gold); letter-spacing: -.04em; line-height: 1;
}
.trust-stat-lbl {
  font-size: .68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .09em; margin-top: .2rem;
}

/* Hero Right — Dashboard Panel */
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 1rem;
  animation: fadeUp .8s .35s ease both;
}

/* Metrics strip */
.metrics-strip {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: .85rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.metric-item { text-align: center; }
.metric-val {
  font-family: var(--fh); font-size: 1.1rem; font-weight: 800;
  color: var(--gold); letter-spacing: -.03em;
}
.metric-lbl { font-size: .58rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.metric-divider { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }

/* Phone mockup */
.phone-frame {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; padding: 1rem;
}
.phone-notch {
  width: 80px; height: 8px; background: rgba(255,255,255,.07);
  border-radius: var(--radius-pill); margin: 0 auto .75rem;
}
.phone-header {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .75rem;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius-md); margin-bottom: .75rem;
}
.phone-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  overflow: hidden; flex-shrink: 0;
}
.phone-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.phone-username { font-size: .72rem; font-weight: 600; color: var(--white); }
.phone-handle { font-size: .6rem; color: var(--muted); margin-top: 1px; }
.phone-follow-badge {
  margin-left: auto; background: var(--gold); color: var(--black);
  font-size: .6rem; font-weight: 700;
  padding: .25rem .65rem; border-radius: var(--radius-pill);
}
.post-image-area {
  width: 100%; border-radius: var(--radius-md);
  overflow: hidden; height: 160px; position: relative;
}
.post-image-area img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: .7;
}
.post-image-overlay {
  position: absolute; inset: 0; display: flex;
  flex-direction: column; justify-content: flex-end; padding: .75rem;
  background: linear-gradient(to top, rgba(8,8,8,.85), transparent);
}
.post-tag-badge {
  background: var(--gold); color: var(--black);
  font-size: .58rem; font-weight: 800;
  padding: .2rem .5rem; border-radius: 4px;
  letter-spacing: .08em; text-transform: uppercase;
  width: fit-content; margin-bottom: .35rem;
}
.post-caption-text { font-size: .65rem; color: rgba(255,255,255,.9); line-height: 1.4; }
.engage-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .6rem 0; border-top: 1px solid rgba(255,255,255,.06);
  margin-top: .5rem;
}
.eng-btn { font-size: .65rem; color: rgba(255,255,255,.5); display: flex; align-items: center; gap: .3rem; }
.eng-count { margin-left: auto; font-size: .6rem; color: var(--gold); font-weight: 600; }

/* Float cards */
.float-cards { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.float-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem 1.2rem;
  position: relative; overflow: hidden;
}
.float-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
}
.fc-label { font-size: .6rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: .35rem; }
.fc-value { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: var(--gold); letter-spacing: -.03em; line-height: 1; }
.fc-sub { font-size: .6rem; color: rgba(255,255,255,.35); margin-top: .25rem; }
.fc-trend {
  position: absolute; top: .75rem; right: .75rem;
  font-size: .6rem; color: #4ade80; font-weight: 600;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2);
  padding: .15rem .45rem; border-radius: var(--radius-pill);
}

/* Notification toast */
.notif-toast {
  background: var(--card); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md); padding: .9rem 1.1rem;
  display: flex; align-items: center; gap: .8rem;
  position: relative; overflow: hidden;
}
.notif-toast::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--gold2));
}
.notif-icon { font-size: 1.3rem; flex-shrink: 0; }
.notif-title { font-size: .72rem; font-weight: 600; color: var(--white); }
.notif-sub { font-size: .62rem; color: var(--muted); margin-top: 1px; }
.notif-time { margin-left: auto; font-size: .58rem; color: var(--muted); flex-shrink: 0; }

/* ==========================================
   MARQUEE
   ========================================== */
.marquee-section {
  overflow: hidden; padding: 1rem 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
}
.marquee-track { display: flex; gap: 2.5rem; animation: marquee 22s linear infinite; width: max-content; }
.marquee-item {
  font-size: .72rem; font-weight: 800; color: var(--black);
  text-transform: uppercase; letter-spacing: .14em;
  white-space: nowrap; display: flex; align-items: center; gap: 1rem;
}
.marquee-item::after { content: '◆'; font-size: .5rem; opacity: .5; }

/* ==========================================
   PROOF STRIP
   ========================================== */
.proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.proof-item {
  background: #0c0b07; padding: 2rem;
  display: flex; align-items: center; gap: 1rem;
}
.proof-icon {
  font-size: 1.6rem; width: 50px; height: 50px;
  background: rgba(245,184,0,.07); border: 1px solid rgba(245,184,0,.18);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.proof-num { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; color: var(--gold); letter-spacing: -.03em; line-height: 1; }
.proof-txt { font-size: .7rem; color: var(--muted); margin-top: .2rem; text-transform: uppercase; letter-spacing: .07em; }

/* ==========================================
   SHARED SECTION STYLES
   ========================================== */
.section-inner { padding: 6rem 5vw; }
.section-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--gold); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .6rem;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--gold); }
.section-title {
  font-family: var(--fh); font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -.04em; margin-bottom: .75rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub { color: var(--muted); font-size: .92rem; font-weight: 300; line-height: 1.85; max-width: 500px; margin-bottom: 3.5rem; }

/* ==========================================
   SERVICES SECTION
   ========================================== */
#services { background: #090906; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.service-card {
  background: var(--card); padding: 2.5rem;
  position: relative; overflow: hidden; transition: background .3s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold2));
  transform: scaleX(0); transition: transform .3s; transform-origin: left;
}
.service-card:hover { background: #141309; }
.service-card:hover::after { transform: scaleX(1); }
.service-card-num { position: absolute; top: 1.2rem; right: 1.5rem; font-size: .6rem; font-weight: 700; color: rgba(245,184,0,.15); letter-spacing: .1em; }
.service-icon {
  font-size: 1.5rem; width: 52px; height: 52px;
  background: rgba(245,184,0,.06); border: 1px solid rgba(245,184,0,.15);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
}
.service-card h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .6rem; }
.service-card p { color: var(--muted); font-size: .85rem; line-height: 1.8; font-weight: 300; margin-bottom: 1.4rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.service-tag {
  font-size: .62rem; color: rgba(245,184,0,.55);
  border: 1px solid rgba(245,184,0,.12);
  padding: .2rem .55rem; border-radius: var(--radius-pill); font-weight: 500;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid; grid-template-columns: 90px 1fr; gap: 2rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border); align-items: start;
}
.process-step:last-child { border-bottom: none; }
.step-num { font-family: var(--fh); font-size: 3.5rem; font-weight: 800; color: rgba(245,184,0,.07); line-height: 1; }
.step-content h3 { font-family: var(--fh); font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: .4rem; }
.step-content p { color: var(--muted); font-size: .85rem; font-weight: 300; line-height: 1.8; }
.step-highlight { color: var(--gold); font-weight: 600; }

/* ==========================================
   ABOUT / FOUNDER SECTION
   ========================================== */
#about { background: linear-gradient(135deg, #0d0c06, #0a0900); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-accent {
  position: absolute; top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid rgba(245,184,0,.15); border-radius: 22px; z-index: 0;
}
.about-photo {
  width: 100%; max-width: 420px; border-radius: 18px;
  border: 2px solid var(--gold); object-fit: cover; object-position: top center;
  display: block; position: relative; z-index: 1;
  box-shadow: 0 0 60px rgba(245,184,0,.12);
}
.about-badge {
  position: absolute; bottom: 2rem; right: -1rem; z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--black); border-radius: var(--radius-md);
  padding: .9rem 1.4rem; text-align: center;
  box-shadow: 0 8px 32px rgba(245,184,0,.3);
}
.about-badge-num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.about-badge-txt { font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }
.about-name { font-family: var(--fh); font-size: 2rem; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: .25rem; }
.about-role { color: var(--gold); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1.5rem; }
.about-bio { color: var(--muted); font-size: .88rem; font-weight: 300; line-height: 1.9; margin-bottom: 2rem; }
.about-bio strong { color: var(--gold-light); font-weight: 500; }
.linkedin-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(245,184,0,.07); border: 1px solid rgba(245,184,0,.2);
  color: var(--gold); padding: .6rem 1.2rem; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s;
}
.linkedin-btn:hover { background: rgba(245,184,0,.14); color: var(--gold); }

/* ==========================================
   RESULTS SECTION
   ========================================== */
#results { background: #090906; }
.results-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.result-card { background: #0d0c07; padding: 2.5rem; text-align: center; }
.result-num { font-family: var(--fh); font-size: 3rem; font-weight: 800; color: var(--gold); letter-spacing: -.04em; line-height: 1; margin-bottom: .5rem; }
.result-label { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ==========================================
   CONTACT / WHY SECTION
   ========================================== */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.why-list { list-style: none; margin-top: 1.5rem; }
.why-list li { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.why-list li:last-child { border-bottom: none; }
.why-check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(245,184,0,.08); border: 1px solid rgba(245,184,0,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .6rem; color: var(--gold); margin-top: .1rem;
}
.why-list li strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.why-list li p { font-size: .8rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* CTA Contact Card */
.cta-contact-card {
  background: linear-gradient(160deg, #131100, #0f0e08);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2.5rem; position: sticky; top: 7rem;
  box-shadow: 0 0 60px rgba(245,184,0,.05);
}
.cta-contact-logo { height: 42px; margin-bottom: 1.5rem; object-fit: contain; }
.cta-contact-card h3 { font-family: var(--fh); font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; margin-bottom: .5rem; line-height: 1.2; }
.cta-contact-card h3 em { font-style: italic; color: var(--gold); }
.cta-contact-card p { color: var(--muted); font-size: .83rem; font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.whatsapp-cta-btn {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 1rem; border-radius: var(--radius-md);
  font-family: var(--fb); font-size: .85rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  transition: transform .2s, box-shadow .2s; margin-bottom: 1rem;
  text-decoration: none;
}
.whatsapp-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.35); color: #fff; }
.phone-display-box {
  text-align: center; font-family: var(--fh); font-size: 1.2rem; font-weight: 800;
  letter-spacing: .04em; color: var(--white);
  padding: .75rem; background: rgba(245,184,0,.05);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.cta-fine-print { font-size: .7rem; color: var(--muted); text-align: center; margin-top: .75rem; }

/* ==========================================
   FOOTER CTA BANNER
   ========================================== */
.footer-cta-section { padding: 0 4vw 4rem; }
.footer-cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #f5c842 50%, var(--gold2) 100%);
  border-radius: var(--radius-xl); padding: 5rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.footer-cta-banner::before {
  content: '∞'; position: absolute; right: -3rem; top: 50%; transform: translateY(-50%);
  font-size: 22rem; font-weight: 900; color: rgba(0,0,0,.05); line-height: 1; pointer-events: none;
}
.footer-cta-banner h2 { color: var(--black); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: .75rem; }
.footer-cta-banner p { color: rgba(0,0,0,.5); font-size: 1rem; margin-bottom: 2rem; font-weight: 300; }
.btn-dark {
  background: var(--black); color: var(--white); border: none;
  padding: 1rem 2.5rem; border-radius: var(--radius-pill);
  font-family: var(--fb); font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  display: inline-flex; align-items: center; gap: .5rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.4); color: var(--white); }

/* ==========================================
   FOOTER
   ========================================== */
#site-footer {
  padding: 3rem 5vw;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-logo img { height: 40px; object-fit: contain; }
.footer-logo .text-logo { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.footer-logo .text-logo span { color: var(--gold); }
#site-footer p { font-size: .72rem; color: var(--muted); }
.footer-phone { font-size: .78rem; color: var(--muted); }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid, .proof-strip { grid-template-columns: 1fr 1fr; }
  .contact-layout, .about-layout { grid-template-columns: 1fr; }
  .footer-cta-banner { padding: 3rem 2rem; }
  .footer-cta-section { padding: 0 1rem 2rem; }
}
@media (max-width: 600px) {
  .proof-strip, .results-grid { grid-template-columns: 1fr; }
  .float-cards { grid-template-columns: 1fr 1fr; }
  .hero-trust-bar { gap: 1.5rem; }
  #site-footer { flex-direction: column; text-align: center; }
}

/* ==========================================
   WORDPRESS CORE OVERRIDES
   ========================================== */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px); height: 1px; overflow: hidden;
  position: absolute; width: 1px; word-wrap: normal;
}
