/*
Theme Name: LivePodcastMedia
Theme URI: https://livepodcastmedia.com
Author: LivePodcastMedia
Author URI: https://livepodcastmedia.com
Description: Brand Led Media theme for LivePodcastMedia
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: livepodcastmedia
*/

:root {
  --red: #e03030;
  --red-dark: #b82424;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #0a0a0f;
  --dark2: #111118;
  --dark3: #16161f;
  --card: #1a1a24;
  --card2: #1f1f2c;
  --border: rgba(255,255,255,0.07);
  --mid: rgba(255,255,255,0.45);
  --light: rgba(255,255,255,0.85);
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--light);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: #fff; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: #fff; }
h3 { font-size: 1.3rem; font-weight: 700; color: #fff; }
h1 em, h2 em, h3 em { font-style: normal; color: var(--red); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.lead { font-size: 16px; color: var(--mid); line-height: 1.75; }
p { color: var(--mid); line-height: 1.75; }
small { font-size: 12px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 22px; border-radius: 8px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: none;
  transition: all .18s ease; white-space: nowrap; font-family: var(--font);
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #0a0a0f; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--light); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.05); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn-outline-gold:hover { background: rgba(201,168,76,.1); }
.btn-outline-red { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-outline-red:hover { background: rgba(224,48,48,.1); }

/* ── BADGES ── */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-red { background: rgba(224,48,48,.18); color: var(--red); }
.badge-gold { background: rgba(201,168,76,.18); color: var(--gold); }
.badge-free { background: rgba(60,210,100,.15); color: #3cd264; }
.badge-dark { background: rgba(255,255,255,.08); color: var(--light); }

/* ── SECTION HEADER ── */
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }

/* ── TOP BAR ── */
.site-topbar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  letter-spacing: .01em;
}
.site-topbar a { color: #fff; text-decoration: underline; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}
.header-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 32px;
}
.site-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.site-logo .logo-main { font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.site-logo .logo-sub { font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav .nav-block {
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 7px 16px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
  letter-spacing: .01em;
}
.site-nav .nav-block:hover {
  background: rgba(255,255,255,.13);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.site-nav .nav-block.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: var(--dark2);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 14px; font-weight: 500; color: var(--mid);
  padding: 10px 14px; border-radius: 6px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.header-cta { display: flex; gap: 10px; align-items: center; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 24px 90px;
  background: var(--dark);
}
.hero-bg-r {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224,48,48,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-g {
  position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-wrap {
  position: relative; max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,48,48,.1); border: 1px solid rgba(224,48,48,.25);
  border-radius: 20px; padding: 6px 14px; font-size: 12px;
  font-weight: 600; color: var(--red); letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.hero-sub { font-size: 16px; color: var(--mid); line-height: 1.8; margin-top: 20px; max-width: 540px; }
.hero-btns { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-rule { width: 48px; height: 2px; background: linear-gradient(90deg,var(--red),transparent); margin: 32px 0; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.hero-stat strong { display: block; font-size: 1.6rem; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.hero-stat span { font-size: 11px; color: var(--mid); text-transform: uppercase; letter-spacing: .06em; }
.hero-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.hc-hd { background: linear-gradient(135deg,var(--red) 0%,#8b0000 100%); padding: 20px; }
.hc-hd-tag { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.hc-hd-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }
.hc-body { padding: 8px 0; }
.hc-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 20px; border-bottom: 1px solid var(--border); }
.hc-row:last-child { border-bottom: none; }
.hc-row-name { font-size: 13px; font-weight: 500; color: var(--light); }
.hc-tag { font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 4px; }
.hc-tag.r { background: rgba(224,48,48,.18); color: var(--red); }
.hc-tag.g { background: rgba(201,168,76,.18); color: var(--gold); }
.hc-tag.f { background: rgba(60,210,100,.15); color: #3cd264; }

/* ── TICKER ── */
.ticker { overflow: hidden; background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; }
.ticker-inner { display: flex; gap: 0; animation: ticker 28s linear infinite; width: max-content; }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.t-item { display: flex; align-items: center; gap: 10px; padding: 0 24px; font-size: 13px; font-weight: 500; color: var(--mid); white-space: nowrap; }
.t-sep { color: var(--red); font-size: 15px; }

/* ── SPONSORS ── */
.sponsors-section { padding: 56px 24px; border-bottom: 1px solid var(--border); }
.sponsors-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-bottom: 28px; }
.sponsors-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.sponsor-logo { display: flex; align-items: center; justify-content: center; width: 110px; height: 52px; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px; transition: border-color .2s; }
.sponsor-logo:hover { border-color: rgba(255,255,255,.18); }
.sponsor-logo img { max-height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .55; transition: opacity .2s; }
.sponsor-logo:hover img { opacity: .9; }
.sponsor-logo-slot { font-size: 10px; color: rgba(255,255,255,.2); text-align: center; font-weight: 500; }

/* ── PROGRAMS ── */
.programs-section { padding: 96px 24px; }
.prog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.prog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.prog-card:hover { border-color: rgba(255,255,255,.14); transform: translateY(-3px); }
.prog-card.bestseller { border-color: var(--red); }
.prog-banner { position: relative; height: 160px; background: linear-gradient(135deg,#1a1a2e 0%,#16213e 100%); overflow: hidden; }
.prog-banner img { width: 100%; height: 100%; object-fit: cover; }
.prog-banner-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 8px; }
.prog-banner-placeholder-icon { font-size: 28px; opacity: .3; }
.prog-banner-placeholder-text { font-size: 11px; color: rgba(255,255,255,.2); text-align: center; padding: 0 16px; }
.prog-bestseller-badge { position: absolute; top: 12px; left: 12px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.prog-body { padding: 20px; flex: 1; }
.prog-title { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.35; margin-bottom: 10px; }
.prog-desc { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.prog-list { display: flex; flex-direction: column; gap: 8px; }
.prog-list li { font-size: 12.5px; color: var(--mid); padding-left: 16px; position: relative; line-height: 1.5; }
.prog-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; font-size: 11px; }
.prog-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.prog-price { font-size: 18px; font-weight: 800; color: #fff; }
.prog-price small { font-size: 11px; font-weight: 400; color: var(--mid); margin-left: 2px; }

/* ── PRODUCTS ── */
.products-section { padding: 96px 24px; background: var(--dark2); }
.prod-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.prod-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.prod-card:hover { border-color: rgba(255,255,255,.14); transform: translateY(-2px); }
.prod-thumb { position: relative; height: 140px; background: linear-gradient(135deg,var(--card2),var(--dark3)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }
.prod-thumb-placeholder { font-size: 11px; color: rgba(255,255,255,.18); text-align: center; padding: 16px; }
.prod-thumb-badge { position: absolute; top: 10px; right: 10px; }
.prod-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.prod-name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.3; }
.prod-desc { font-size: 12.5px; color: var(--mid); line-height: 1.6; flex: 1; }
.prod-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; padding-top: 12px; border-top: 1px solid var(--border); }
.prod-price { font-size: 16px; font-weight: 800; color: #fff; }
.prod-free { font-size: 16px; font-weight: 800; color: #3cd264; }

/* ── LEAD GEN ── */
.leadgen { position: relative; padding: 96px 24px; background: var(--dark3); overflow: hidden; }
.leadgen-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(224,48,48,.08) 0%, transparent 70%); pointer-events: none; }
.leadgen-inner { position: relative; max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 440px; gap: 72px; align-items: start; }
.leadgen-left h2 { margin-top: 8px; }
.leadgen-left p { color: var(--mid); line-height: 1.8; margin-top: 14px; font-size: 15px; }
.lead-bullets { display: flex; flex-direction: column; gap: 10px; }
.lead-bullet { font-size: 13.5px; color: var(--light); padding-left: 22px; position: relative; }
.lead-bullet::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.lead-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.lead-form-title { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lead-form-sub { font-size: 12px; color: var(--mid); margin-bottom: 20px; }
.f-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.f-label { font-size: 12px; font-weight: 600; color: var(--light); }
.f-input { background: var(--dark2); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; color: #fff; font-family: var(--font); transition: border-color .15s; outline: none; }
.f-input:focus { border-color: var(--red); }
.f-input::placeholder { color: rgba(255,255,255,.25); }
select.f-input option { background: var(--dark2); color: #fff; }
textarea.f-input { min-height: 100px; resize: vertical; }
.f-fine { font-size: 11px; color: rgba(255,255,255,.25); text-align: center; margin-top: 10px; }

/* ── ABOUT ── */
.about-section { padding: 96px 24px; }
.about-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.about-stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 20px; }
.about-stat-num { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.04em; }
.about-stat-label { font-size: 12px; color: var(--mid); margin-top: 4px; }
.about-values { display: flex; flex-direction: column; gap: 20px; }
.about-value { display: flex; gap: 14px; align-items: flex-start; }
.about-value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); margin-top: 6px; flex-shrink: 0; }
.about-value-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.about-value-desc { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ── INSIDER ── */
.insider-section { padding: 96px 24px; background: var(--dark2); }
.insider-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 380px; gap: 72px; align-items: start; }
.insider-card { background: linear-gradient(145deg, #1a0a0a, #1f1018); border: 1px solid rgba(224,48,48,.3); border-radius: var(--radius); padding: 32px; }
.insider-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.insider-card-title { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.insider-card-sub { font-size: 12px; color: var(--mid); margin-bottom: 24px; }
.insider-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.insider-perk { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--light); }
.perk-icon { color: var(--red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.insider-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 18px; }
.insider-price strong { font-size: 2rem; font-weight: 800; color: #fff; }
.insider-price span { font-size: 13px; color: var(--mid); }

/* ── AWARDS ── */
.awards-section { padding: 96px 24px; background: linear-gradient(160deg, #0d0d14 0%, #110a0a 100%); }
.awards-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 72px; align-items: start; }
.awards-desc { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }
.award-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.award-cat { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; }
.award-cat-icon { font-size: 18px; }
.award-cat-name { font-size: 13px; font-weight: 600; color: var(--light); }
.awards-right { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.awards-right h3 { margin-bottom: 10px; }
.awards-right p { font-size: 13px; color: var(--mid); line-height: 1.6; margin-bottom: 20px; }
.sponsor-tiers { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.s-tier { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.s-tier.s-gold { border-color: var(--gold); background: rgba(201,168,76,.06); }
.s-tier.s-silver { background: rgba(255,255,255,.04); }
.s-tier.s-bronze { background: rgba(180,100,40,.06); border-color: rgba(180,100,40,.3); }
.s-tier-name { font-size: 13px; font-weight: 700; color: #fff; }
.s-tier-note { font-size: 11px; color: var(--mid); margin-top: 2px; }
.s-tier-price { font-size: 15px; font-weight: 800; color: var(--gold); white-space: nowrap; }

/* ── BLOG ── */
.blog-section { padding: 96px 24px; }
.blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: border-color .2s; }
.blog-card:hover { border-color: rgba(255,255,255,.14); }
.blog-img { height: 180px; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.blog-date { font-size: 12px; color: var(--mid); }
.blog-title { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.blog-title a:hover { color: var(--red); }
.blog-excerpt { font-size: 13px; color: var(--mid); line-height: 1.6; flex: 1; }
.blog-more { font-size: 13px; font-weight: 600; color: var(--red); margin-top: 14px; display: inline-block; }

/* ── TESTIMONIALS ── */
.testi-section { padding: 96px 24px; background: var(--dark2); }
.testi-section .eyebrow { text-align: center; }
.testi-section h2 { text-align: center; margin-bottom: 48px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1180px; margin: 0 auto; }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; }
.testi-q-mark { font-size: 64px; font-weight: 900; color: var(--red); line-height: .8; margin-bottom: 12px; opacity: .4; }
.testi-text { font-size: 14px; color: var(--light); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg,var(--red),#8b0000); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-initials { font-size: 14px; font-weight: 800; color: #fff; }
.testi-name { font-size: 13px; font-weight: 700; color: #fff; }
.testi-role { font-size: 12px; color: var(--mid); }

/* ── FAQ ── */
.faq-section { padding: 96px 24px; }
.faq-cols { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 320px 1fr; gap: 72px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--light); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--mid); flex-shrink: 0; transition: .2s; }
.faq-item.open .faq-icon { background: var(--red); border-color: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { font-size: 13.5px; color: var(--mid); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* ── CONTACT ── */
.contact-section { padding: 96px 24px; background: var(--dark2); }
.contact-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 520px; gap: 72px; align-items: start; }
.contact-desc { font-size: 15px; color: var(--mid); line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.contact-method { display: flex; align-items: flex-start; gap: 14px; }
.contact-method-icon { font-size: 20px; margin-top: 2px; }
.contact-method-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); margin-bottom: 2px; }
.contact-method-val { font-size: 14px; font-weight: 600; color: #fff; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.cf-title { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.cf-label { font-size: 12px; font-weight: 600; color: var(--light); }
.cf-input { background: var(--dark); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 11px 14px; font-size: 14px; color: #fff; font-family: var(--font); transition: border-color .15s; outline: none; width: 100%; }
.cf-input:focus { border-color: var(--red); }
.cf-input::placeholder { color: rgba(255,255,255,.25); }
select.cf-input option { background: var(--dark); color: #fff; }
textarea.cf-input { min-height: 110px; resize: vertical; }

/* ── FOOTER ── */
.site-footer { background: var(--dark3); border-top: 1px solid var(--border); padding: 64px 24px 0; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 280px repeat(3,1fr); gap: 48px; }
.footer-brand .site-logo { margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--mid); transition: .2s; }
.footer-social a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--light); margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: var(--mid); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { max-width: 1180px; margin: 48px auto 0; padding: 20px 0; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-bottom a { color: rgba(255,255,255,.35); font-size: 12px; }
.footer-bottom a:hover { color: var(--mid); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-card-col { display: none; }
  .prog-grid { grid-template-columns: repeat(2,1fr); }
  .prod-grid { grid-template-columns: repeat(2,1fr); }
  .leadgen-inner, .about-inner, .insider-inner, .awards-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .prog-grid, .prod-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .award-cats { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .burger { display: block; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ── CONTACT FORM 7 — brand styled ── */
.cf7-wrap .wpcf7 { margin: 0; }
.cf7-wrap .wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.cf7-wrap .wpcf7-form p { margin: 0 0 14px; }
.cf7-wrap .wpcf7-form label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--light); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 5px;
}
.cf7-wrap input[type="text"],
.cf7-wrap input[type="email"],
.cf7-wrap input[type="url"],
.cf7-wrap input[type="tel"],
.cf7-wrap input[type="number"],
.cf7-wrap select,
.cf7-wrap textarea {
  width: 100%; background: var(--dark2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 14px;
  color: #fff; font-family: var(--font);
  transition: border-color .15s; outline: none;
  box-sizing: border-box;
}
.cf7-wrap input:focus,
.cf7-wrap select:focus,
.cf7-wrap textarea:focus { border-color: var(--red); }
.cf7-wrap input::placeholder,
.cf7-wrap textarea::placeholder { color: rgba(255,255,255,.25); }
.cf7-wrap select option { background: var(--dark2); color: #fff; }
.cf7-wrap textarea { min-height: 100px; resize: vertical; }
.cf7-wrap input[type="submit"] {
  width: 100%; background: var(--red); color: #fff;
  border: none; border-radius: 8px;
  padding: 14px 24px; font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: var(--font);
  transition: background .18s, transform .18s;
  margin-top: 4px;
}
.cf7-wrap input[type="submit"]:hover {
  background: var(--red-dark); transform: translateY(-1px);
}
.cf7-wrap .wpcf7-response-output {
  border-radius: var(--radius-sm); padding: 10px 14px;
  font-size: 13px; margin-top: 10px; border: none;
}
.cf7-wrap .wpcf7-mail-sent-ok {
  background: rgba(60,210,100,.1);
  color: #3cd264; border: 1px solid rgba(60,210,100,.25);
}
.cf7-wrap .wpcf7-validation-errors,
.cf7-wrap .wpcf7-mail-sent-ng {
  background: rgba(224,48,48,.1);
  color: var(--red); border: 1px solid rgba(224,48,48,.25);
}
.cf7-wrap .wpcf7-not-valid-tip {
  font-size: 11px; color: var(--red); margin-top: 3px; display: block;
}
