/*
Theme Name:  Austin Code Monkey
Theme URI:   https://austincodemonkey.com
Author:      Austin Code Monkey
Author URI:  https://austincodemonkey.com
Description: The official Austin Code Monkey WordPress theme. Dark/gold SEO agency theme with animated hero slider, full-width service pages, blog, podcast support, and Review Reply AI integration. Built for speed, SEO, and high conversion.
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: austin-code-monkey
Tags:        seo, business, one-column, two-columns, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, blog, e-commerce
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --gold:       #F0A500;
  --gold2:      #FFB820;
  --gold-dk:    #C88400;
  --dark:       #1C1C1E;
  --dark2:      #252527;
  --dark3:      #2E2E30;
  --white:      #ffffff;
  --off:        #F7F7F8;
  --text:       #1C1C1E;
  --mid:        #6B6B72;
  --light:      #B0B0B8;
  --border:     #E4E4E8;
  --gold-bg:    rgba(240,165,0,.08);
  --gold-bd:    rgba(240,165,0,.28);
  --r:          10px;
  --r2:         18px;
  --r3:         28px;
  --container:  1200px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; display: block; height: auto; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.acm-container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Global icon consistency rules ────────────────────────────
   All SVG icons that inherit currentColor will naturally follow
   these parent color rules without needing individual overrides.
────────────────────────────────────────────────────────────── */

/* Ensure SVGs never overflow their containers */
svg { flex-shrink: 0; }

/* All acm-btn icons inherit button color */
.acm-btn-gold svg,
.acm-btn-gold:hover svg { color: var(--dark); }

.acm-btn-dark svg,
.acm-btn-dark:hover svg { color: #fff; }

.acm-btn-outline svg { color: var(--gold); }

.acm-btn-white-outline svg { color: rgba(255,255,255,.8); }
.acm-btn-white-outline:hover svg { color: #fff; }

/* Nav walker dropdown arrow icons */
.acm-nav-walker .sub-menu-toggle svg { color: var(--mid); }

/* Topbar icon color */
.acm-topbar-left svg { color: rgba(255,255,255,.6); }
.acm-topbar-free svg { color: var(--gold); }

/* Reading progress bar consistency */
.acm-reading-bar { background: var(--gold); }

.acm-section   { padding: 90px 0; }
.acm-section-alt { background: var(--off); }
.acm-section-dark { background: var(--dark); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.15; letter-spacing: -.5px; }
.acm-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 13px;
}
.acm-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 2px; }
.acm-section-title { font-size: clamp(28px,3.6vw,46px); font-weight: 800; color: var(--dark); letter-spacing: -.7px; line-height: 1.1; margin-bottom: 14px; }
.acm-section-title .acm-gold { color: var(--gold); }
.acm-section-title-white { color: #fff; }
.acm-section-lead { font-size: 16px; color: var(--mid); max-width: 580px; line-height: 1.72; }
.acm-sh { margin-bottom: 52px; }
.acm-sh.center { text-align: center; }
.acm-sh.center .acm-section-lead { margin: 0 auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.acm-btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: 14px; padding: 13px 26px;
  border-radius: var(--r); border: none; cursor: pointer; transition: all .22s;
  text-decoration: none;
}
.acm-btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,.4); color: var(--dark); }
.acm-btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: #fff;
  font-weight: 700; font-size: 14px; padding: 13px 26px;
  border-radius: var(--r); cursor: pointer; transition: all .22s;
}
.acm-btn-dark:hover { background: var(--dark2); transform: translateY(-2px); color: #fff; }
.acm-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--gold-bd); color: var(--gold); background: transparent;
  font-weight: 700; font-size: 14px; padding: 12px 26px;
  border-radius: var(--r); cursor: pointer; transition: all .22s;
}
.acm-btn-outline:hover { background: var(--gold-bg); border-color: var(--gold); color: var(--gold); }
.acm-btn-white-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.3); color: #fff; background: transparent;
  font-weight: 700; font-size: 14px; padding: 12px 26px;
  border-radius: var(--r); cursor: pointer; transition: all .22s;
}
.acm-btn-white-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.07); color: #fff; }

/* ============================================================
   TOPBAR
   ============================================================ */
.acm-topbar { background: var(--dark); padding: 9px 0; font-size: 13px; }
.acm-topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.acm-topbar-left { display: flex; gap: 20px; color: var(--light); }
.acm-topbar-left a { color: var(--light); display: flex; align-items: center; gap: 6px; }
.acm-topbar-left a:hover { color: var(--gold); }
.acm-topbar-right { display: flex; align-items: center; gap: 14px; }
.acm-topbar-socials { display: flex; gap: 7px; }
.acm-topbar-socials a {
  width: 24px; height: 24px; border-radius: 4px; background: var(--dark2);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--light); transition: all .2s;
}
.acm-topbar-socials a:hover { background: var(--gold); color: var(--dark); }
.acm-topbar-free { color: var(--gold); font-weight: 700; font-size: 12.5px; }
.acm-topbar-free:hover { color: var(--gold2); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.acm-nav-wrap {
  background: #fff; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
}
.acm-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 14px;
}
.acm-logo { display: flex; align-items: center; flex-shrink: 0; }
.acm-logo img { height: 58px; width: auto; display: block; object-fit: contain; }
.acm-logo .custom-logo { height: 58px; width: auto; }

/* Primary nav menu */
.acm-primary-nav { display: flex; align-items: center; gap: 1px; }
.acm-primary-nav > li { position: relative; }
.acm-primary-nav > li > a {
  display: block; padding: 7px 12px;
  font-size: 13px; font-weight: 600; color: var(--mid);
  border-radius: 7px; transition: all .2s; white-space: nowrap;
}
.acm-primary-nav > li > a:hover,
.acm-primary-nav > li.current-menu-item > a,
.acm-primary-nav > li.current-menu-ancestor > a { color: var(--gold); }

/* Dropdowns */
.acm-primary-nav .sub-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--r2) var(--r2);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s; z-index: 100;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}
.acm-primary-nav > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.acm-primary-nav .sub-menu li a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; font-size: 13px; font-weight: 500; color: var(--mid);
  border-radius: 7px; transition: all .18s;
}
.acm-primary-nav .sub-menu li a:hover { background: var(--gold-bg); color: var(--gold); padding-left: 16px; }

/* Hamburger */
.acm-menu-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: var(--r); padding: 8px 12px; cursor: pointer;
  font-size: 18px; color: var(--dark); transition: all .2s;
}
.acm-menu-toggle:hover { border-color: var(--gold-bd); color: var(--gold); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.acm-hero-slider {
  position: relative; background: var(--dark);
  overflow: hidden; height: 88vh; min-height: 580px;
}
.acm-slides { width: 100%; height: 100%; position: relative; }
.acm-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease; display: flex; align-items: center;
}
/* Container inside slide must be full width so content sits left */
.acm-slide > .acm-container {
  width: 100%;
}
.acm-slide.active { opacity: 1; z-index: 2; }
.acm-slide.prev   { opacity: 0; z-index: 1; }

/* Slide backgrounds */
.acm-slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.acm-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(28,28,28,.92) 0%, rgba(28,28,28,.82) 40%, rgba(28,28,28,.45) 65%, rgba(28,28,28,.1) 100%);
}
.acm-slide-grid-lines {
  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: 55px 55px;
}

/* Slide content */
.acm-slide-content {
  position: relative; z-index: 3;
  max-width: 640px;
  padding: 0;
  animation: slideIn .8s ease forwards;
}
/* Make the container inside each slide use flex so content hugs the left */
.acm-slide > .acm-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 40px;
}
.acm-slide.active .acm-slide-content { animation: slideIn .8s ease forwards; }
@keyframes slideIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.acm-slide-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,.12); border: 1px solid var(--gold-bd);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12.5px; font-weight: 700; color: var(--gold);
  margin-bottom: 20px;
}
.acm-slide-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.acm-slide-title {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.06;
  margin-bottom: 20px;
}
.acm-slide-title .acm-gold { color: var(--gold); }
.acm-slide-desc {
  font-size: 18px; color: #9A9AA2;
  max-width: 520px; margin-bottom: 32px; line-height: 1.72;
}
.acm-slide-btns { display: flex; gap: 13px; flex-wrap: wrap; }

/* Slider controls */
.acm-slider-prev,
.acm-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 52px; height: 52px;
  background: rgba(28,28,28,.6); backdrop-filter: blur(8px);
  border: 1px solid rgba(240,165,0,.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; color: #fff;
}
.acm-slider-prev { left: 24px; }
.acm-slider-next { right: 24px; }
.acm-slider-prev:hover,
.acm-slider-next:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.acm-slider-prev svg, .acm-slider-next svg { stroke: currentColor; width: 22px; height: 22px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Dots */
.acm-slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.acm-slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.4);
  cursor: pointer; transition: all .2s;
}
.acm-slider-dot.active { background: var(--gold); border-color: var(--gold); width: 28px; border-radius: 999px; }

/* Progress bar */
.acm-slider-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  background: var(--gold); z-index: 10;
  animation: sliderProgress 6s linear infinite;
}
@keyframes sliderProgress { from { width: 0; } to { width: 100%; } }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.acm-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.acm-svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: all .25s; cursor: pointer;
  display: flex; flex-direction: column;
}
.acm-svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.acm-svc-card:hover { border-color: var(--gold-bd); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.acm-svc-card:hover::after { transform: scaleX(1); }
.acm-svc-ico {
  width: 54px; height: 54px; border-radius: var(--r2);
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all .25s;
}
.acm-svc-ico svg { stroke: var(--gold); width: 24px; height: 24px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.acm-svc-card:hover .acm-svc-ico { background: var(--gold); border-color: var(--gold); }
.acm-svc-card:hover .acm-svc-ico svg { stroke: var(--dark); }
.acm-svc-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.acm-svc-card p { font-size: 13.5px; color: var(--mid); line-height: 1.62; margin-bottom: 20px; flex: 1; }
.acm-svc-link { font-size: 13px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: .5px; transition: gap .2s; }
.acm-svc-card:hover .acm-svc-link { gap: 11px; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.acm-process-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.acm-process-row::before { content: ''; position: absolute; top: 44px; left: 12%; right: 12%; height: 2px; border-top: 2px dashed rgba(240,165,0,.28); z-index: 0; }
.acm-p-step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.acm-p-num { width: 88px; height: 88px; border-radius: 50%; background: var(--dark2); border: 2px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-size: 28px; font-weight: 800; color: var(--gold); transition: all .3s; }
.acm-p-step:hover .acm-p-num { background: var(--gold); color: var(--dark); border-color: var(--gold); box-shadow: 0 0 36px rgba(240,165,0,.5); }
.acm-p-step h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.acm-p-step p  { font-size: 13.5px; color: #909098; line-height: 1.6; }

/* ============================================================
   COUNTER BAR
   ============================================================ */
.acm-counter-bar { background: var(--gold); }
.acm-counter-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.acm-counter-item { padding: 46px 20px; text-align: center; border-right: 1px solid rgba(28,28,28,.12); }
.acm-counter-item:last-child { border-right: none; }
.acm-counter-num { font-size: 50px; font-weight: 800; color: var(--dark); line-height: 1; letter-spacing: -2px; }
.acm-counter-lbl { font-size: 11.5px; font-weight: 700; color: rgba(28,28,28,.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.acm-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.acm-testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .25s; position: relative; overflow: hidden;
}
.acm-testi-card::before { content: '\201C'; position: absolute; top: 10px; right: 18px; font-size: 80px; color: var(--gold); opacity: .07; font-family: Georgia,serif; line-height: 1; }
.acm-testi-card:hover { border-color: var(--gold-bd); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.1); }
.acm-t-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.acm-t-text  { font-size: 15px; color: var(--mid); line-height: 1.72; font-style: italic; flex: 1; }
.acm-t-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.acm-t-av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-bg); border: 2px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: var(--gold); flex-shrink: 0; }
.acm-t-name { font-weight: 700; font-size: 14px; }
.acm-t-role { font-size: 12px; color: var(--mid); }

/* ============================================================
   PAGE BANNER (interior pages)
   ============================================================ */
.acm-page-banner { background: var(--dark); padding: 64px 0; position: relative; overflow: hidden; }
.acm-page-banner::before { content: ''; 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: 55px 55px; }
.acm-page-banner::after { content: ''; position: absolute; bottom: -80px; right: -80px; width: 440px; height: 440px; border-radius: 50%; background: radial-gradient(circle,rgba(240,165,0,.1),transparent 70%); pointer-events: none; }
.acm-page-banner-inner { position: relative; z-index: 2; }
.acm-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 16px; flex-wrap: wrap; }
.acm-breadcrumb a { color: var(--light); transition: color .2s; }
.acm-breadcrumb a:hover { color: var(--gold); }
.acm-breadcrumb .sep { color: rgba(255,255,255,.2); }
.acm-page-banner h1 { font-size: clamp(30px,4vw,52px); color: #fff; letter-spacing: -1px; line-height: 1.1; margin-bottom: 14px; }
.acm-page-banner h1 span { color: var(--gold); }
.acm-page-lead { font-size: 17px; color: #9A9AA2; max-width: 600px; line-height: 1.72; }
.acm-page-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 26px; }

/* ============================================================
   PAGE / SINGLE LAYOUT
   ============================================================ */
.acm-content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.acm-entry-content { font-size: 17px; line-height: 1.8; color: #2C2C2E; }
.acm-entry-content h2 { font-size: 28px; font-weight: 800; color: var(--dark); margin: 44px 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); display: inline-block; letter-spacing: -.4px; }
.acm-entry-content h2:first-child { margin-top: 0; }
.acm-entry-content h3 { font-size: 21px; font-weight: 700; color: var(--dark); margin: 32px 0 10px; }
.acm-entry-content p  { margin-bottom: 20px; }
.acm-entry-content ul, .acm-entry-content ol { margin: 0 0 20px 22px; }
.acm-entry-content li { margin-bottom: 8px; line-height: 1.72; }
.acm-entry-content strong { font-weight: 700; color: var(--dark); }
.acm-entry-content a { color: var(--gold); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(240,165,0,.3); }
.acm-entry-content a:hover { text-decoration-color: var(--gold); }
.acm-entry-content blockquote { border-left: 4px solid var(--gold); background: var(--gold-bg); padding: 18px 22px; margin: 28px 0; border-radius: 0 var(--r) var(--r) 0; }
.acm-entry-content blockquote p { margin: 0; font-style: italic; font-size: 17px; color: var(--dark); font-weight: 500; }
.acm-entry-content img { border-radius: var(--r2); margin: 28px 0; }
.acm-entry-content table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: 14.5px; }
.acm-entry-content th { background: var(--dark); color: #fff; padding: 11px 15px; text-align: left; font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .5px; }
.acm-entry-content td { padding: 11px 15px; border-bottom: 1px solid var(--border); }
.acm-entry-content tr:nth-child(even) td { background: var(--off); }
.acm-entry-content hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }

/* WP alignment classes */
.alignleft  { float: left; margin: 0 28px 20px 0; }
.alignright { float: right; margin: 0 0 20px 28px; }
.aligncenter { display: block; margin: 20px auto; }
.alignfull  { width: 100vw; margin-left: calc(-50vw + 50%); }

/* ============================================================
   SIDEBAR
   ============================================================ */
.acm-sidebar { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 90px; }
.acm-widget { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 22px; }
.acm-widget h4, .acm-widget .widget-title { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.acm-widget ul li { padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.acm-widget ul li:last-child { border-bottom: none; }
.acm-widget ul li a { color: var(--mid); transition: color .2s; }
.acm-widget ul li a:hover { color: var(--gold); padding-left: 4px; }
.acm-widget-cta { background: var(--dark); border: 1px solid rgba(240,165,0,.2); border-radius: var(--r2); padding: 24px; position: relative; overflow: hidden; }
.acm-widget-cta::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.acm-widget-cta h4, .acm-widget-cta .widget-title { color: var(--gold); border-color: var(--gold); }
.acm-widget-cta p { font-size: 13.5px; color: #909098; line-height: 1.6; margin-bottom: 16px; }
.acm-widget-gold { background: var(--gold); border-radius: var(--r2); padding: 22px; text-align: center; }
.acm-widget-gold h4 { color: var(--dark); border-color: rgba(28,28,28,.2); }
.acm-widget-gold p { color: rgba(28,28,28,.75); font-size: 13px; line-height: 1.5; margin-bottom: 14px; }

/* Search widget */
.acm-search-form { display: flex; }
.acm-search-form input[type="search"] {
  flex: 1; padding: 10px 14px;
  border: 1px solid var(--border); border-right: none;
  border-radius: var(--r) 0 0 var(--r);
  font-size: 14px; outline: none; font-family: inherit;
}
.acm-search-form input[type="search"]:focus { border-color: var(--gold-bd); }
.acm-search-form button {
  padding: 10px 14px; background: var(--gold); border: none;
  border-radius: 0 var(--r) var(--r) 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.acm-search-form button:hover { background: var(--gold2); }
.acm-search-form button svg { stroke: var(--dark); width: 16px; height: 16px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   BLOG ARCHIVE
   ============================================================ */
.acm-posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-bottom: 36px; }
.acm-post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.acm-post-card:hover { border-color: var(--gold-bd); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.acm-post-thumb { width: 100%; aspect-ratio: 16/9; background: #0d1b2a; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); overflow: hidden; }
.acm-post-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.acm-post-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.acm-post-cat { font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.acm-post-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.35; margin-bottom: 8px; }
.acm-post-body h3 a { color: var(--dark); transition: color .2s; }
.acm-post-body h3 a:hover { color: var(--gold); }
.acm-post-body p  { font-size: 13.5px; color: var(--mid); line-height: 1.6; flex: 1; }
.acm-post-footer  { display: flex; justify-content: space-between; align-items: center; margin-top: 13px; padding-top: 11px; border-top: 1px solid var(--border); font-size: 12px; color: var(--mid); }
.acm-post-more    { font-size: 12px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: .5px; transition: gap .2s; }
.acm-post-card:hover .acm-post-more { gap: 9px; }

/* Pagination */
.acm-pagination { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acm-pagination a, .acm-pagination span {
  width: 40px; height: 40px; border-radius: var(--r);
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 600;
  color: var(--mid); cursor: pointer; transition: all .2s; text-decoration: none;
}
.acm-pagination a:hover,
.acm-pagination .current { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.acm-faq-list { display: flex; flex-direction: column; gap: 10px; }
.acm-faq-item { border: 1px solid var(--border); border-radius: var(--r); background: #fff; overflow: hidden; transition: border-color .2s; }
.acm-faq-item.open { border-color: var(--gold-bd); }
.acm-faq-q { padding: 17px 20px; font-size: 14.5px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; user-select: none; }
.acm-faq-q:hover { color: var(--gold); }
.acm-faq-tog { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--gold); transition: all .22s; }
.acm-faq-item.open .acm-faq-tog { background: var(--gold); color: var(--dark); border-color: var(--gold); transform: rotate(45deg); }
.acm-faq-a { padding: 0 20px; font-size: 13.5px; color: var(--mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; }
.acm-faq-item.open .acm-faq-a { max-height: 300px; padding-bottom: 18px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.acm-cta-banner { background: var(--gold); padding: 72px 0; position: relative; overflow: hidden; }
.acm-cta-banner::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(28,28,28,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(28,28,28,.06) 1px,transparent 1px); background-size: 40px 40px; }
.acm-cta-inner { position: relative; max-width: 740px; margin: 0 auto; text-align: center; }
.acm-cta-inner h2 { font-size: clamp(30px,4.2vw,52px); font-weight: 800; letter-spacing: -1px; color: var(--dark); line-height: 1.1; margin-bottom: 16px; }
.acm-cta-inner p  { font-size: 17px; color: rgba(28,28,28,.68); margin-bottom: 34px; line-height: 1.7; }
.acm-cta-btns  { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }
.acm-cta-phone { font-size: 20px; font-weight: 800; color: var(--dark); margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 9px; }
.acm-cta-phone a { color: var(--dark); display: flex; align-items: center; gap: 9px; }

/* ============================================================
   FOOTER
   ============================================================ */
.acm-footer { background: var(--dark); padding: 76px 0 0; }
.acm-footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 56px; }
.acm-footer-brand p  { font-size: 14px; color: #707078; line-height: 1.68; margin: 14px 0 20px; max-width: 275px; }
.acm-footer-brand .acm-logo img { filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(5deg); }
.acm-footer-contact { font-size: 14px; color: #707078; margin-bottom: 9px; display: flex; gap: 7px; align-items: center; }
.acm-footer-contact svg { stroke: #707078; width: 14px; height: 14px; flex-shrink: 0; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.acm-footer-contact a { color: var(--gold); }
.acm-footer-socials { display: flex; gap: 7px; margin-top: 17px; }
.acm-footer-social-link { width: 33px; height: 33px; border-radius: 7px; background: var(--dark2); border: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #707078; transition: all .2s; }
.acm-footer-social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.acm-footer-col h5 { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.acm-footer-col ul li { margin-bottom: 8px; }
.acm-footer-col ul li a { font-size: 13.5px; color: #707078; transition: all .2s; }
.acm-footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.acm-footer-cta { background: var(--gold-bg); border: 1px solid var(--gold-bd); border-radius: var(--r2); padding: 20px; margin-top: 22px; }
.acm-footer-cta h6 { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.acm-footer-cta p  { font-size: 12.5px; color: #707078; margin-bottom: 13px; line-height: 1.5; }
.acm-footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 13px; font-size: 12.5px; color: #505058; }
.acm-footer-bottom a { color: #707078; transition: color .2s; }
.acm-footer-bottom a:hover { color: var(--gold); }
.acm-footer-stamp { color: var(--gold); font-weight: 700; font-size: 11.5px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.acm-reveal { opacity: 0; transform: translateY(26px); transition: opacity .5s ease, transform .5s ease; }
.acm-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   WP DEFAULTS COMPATIBILITY
   ============================================================ */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--mid); text-align: center; margin-top: 6px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; margin: 28px 0; }
.gallery-item img { border-radius: var(--r); width: 100%; height: 200px; object-fit: cover; }
.sticky { border-left: 3px solid var(--gold); padding-left: 20px; }
.bypostauthor {}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .acm-services-grid { grid-template-columns: repeat(2,1fr); }
  .acm-footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .acm-counter-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .acm-content-layout { grid-template-columns: 1fr; }
  .acm-sidebar { position: static; }
  .acm-testi-grid { grid-template-columns: 1fr; }
  .acm-process-row { grid-template-columns: 1fr 1fr; }
  .acm-process-row::before { display: none; }
}
@media (max-width: 768px) {
  .acm-section { padding: 60px 0; }
  .acm-topbar, .acm-topbar-left { display: none; }
  .acm-primary-nav { display: none; }
  .acm-menu-toggle { display: flex; }
  .acm-primary-nav.open { display: flex; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 16px; gap: 4px; box-shadow: 0 20px 40px rgba(0,0,0,.15); max-height: calc(100vh - 76px); overflow-y: auto; z-index: 9999; }
  .acm-primary-nav.open > li > a { padding: 12px 16px; font-size: 15px; border-bottom: 1px solid var(--border); }
  .acm-primary-nav.open .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 16px; background: var(--off); border-radius: 0; }
  .acm-services-grid { grid-template-columns: 1fr; }
  .acm-posts-grid    { grid-template-columns: 1fr; }
  .acm-footer-grid   { grid-template-columns: 1fr; }
  .acm-footer-bottom { flex-direction: column; text-align: center; }
  .acm-hero-slider   { height: auto; min-height: 520px; }
  .acm-slide-content { padding: 0; }
  .acm-slide > .acm-container { padding-top: 60px; padding-bottom: 60px; }
  .acm-slider-prev, .acm-slider-next { width: 40px; height: 40px; }
}

/* ============================================================
   VIDEO SHOWCASE SECTION
   ============================================================ */
.acm-video-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.acm-video-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
.acm-vs-top { padding: 80px 0 40px; }
.acm-vs-header { text-align: center; max-width: 720px; margin: 0 auto; }
.acm-vs-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,165,0,.12); border: 1px solid var(--gold-bd);
  border-radius: 999px; padding: 7px 18px;
  font-size: 12.5px; font-weight: 700; color: var(--gold);
  letter-spacing: .5px; margin-bottom: 22px;
}
.acm-vs-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: blink 1.8s infinite;
}
.acm-vs-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 18px;
}
.acm-vs-title .acm-gold { color: var(--gold); }
.acm-vs-title em { font-style: italic; }
.acm-vs-lead {
  font-size: 17px; color: #9A9AA2;
  line-height: 1.72; max-width: 580px; margin: 0 auto;
}
.acm-vs-cinema { padding: 0 0 20px; }
.acm-vs-frame-wrap { position: relative; max-width: 1000px; margin: 0 auto; }

/* Floating badges */
.acm-vs-badge {
  position: absolute; background: #fff; border-radius: 18px;
  padding: 14px 18px; box-shadow: 0 12px 40px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 12px; z-index: 10;
  animation-duration: 3.5s; animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.acm-vs-badge svg { stroke: var(--gold); flex-shrink: 0; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.acm-vs-badge-num { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; }
.acm-vs-badge-lbl { font-size: 11px; color: var(--mid); font-weight: 500; }
.acm-vs-badge-left  { top: 10%; left: -24px; animation-name: acmFloatLeft; }
.acm-vs-badge-right { bottom: 12%; right: -24px; animation-name: acmFloatRight; }
@keyframes acmFloatLeft  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes acmFloatRight { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* Video container */
.acm-vs-video-container {
  position: relative; border-radius: 20px; overflow: hidden;
  background: #000; aspect-ratio: 16/9; cursor: pointer;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(240,165,0,.2);
}
.acm-vs-video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.acm-vs-video-container:hover .acm-vs-video { transform: scale(1.01); }

/* Gold corner accents */
.acm-vs-corner { position: absolute; width: 32px; height: 32px; z-index: 8; pointer-events: none; }
.acm-vs-tl { top: 12px; left: 12px;  border-top: 3px solid var(--gold); border-left: 3px solid var(--gold); border-radius: 4px 0 0 0; }
.acm-vs-tr { top: 12px; right: 12px; border-top: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 4px 0 0; }
.acm-vs-bl { bottom: 12px; left: 12px;  border-bottom: 3px solid var(--gold); border-left: 3px solid var(--gold); border-radius: 0 0 0 4px; }
.acm-vs-br { bottom: 12px; right: 12px; border-bottom: 3px solid var(--gold); border-right: 3px solid var(--gold); border-radius: 0 0 4px 0; }

/* Overlay */
.acm-vs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.1) 100%);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .4s ease; z-index: 5;
}
.acm-vs-overlay.acm-hidden { opacity: 0; pointer-events: none; }
.acm-vs-overlay-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  transition: transform .4s ease;
}
.acm-vs-overlay.acm-hidden .acm-vs-overlay-inner { transform: translateY(20px); }
.acm-vs-play-btn {
  width: 80px; height: 80px; border-radius: 50%; background: var(--gold);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s; animation: acmPulseGlow 2.5s infinite;
}
@keyframes acmPulseGlow {
  0%,100% { box-shadow: 0 0 0 10px rgba(240,165,0,.2), 0 0 0 22px rgba(240,165,0,.07); }
  50%      { box-shadow: 0 0 0 16px rgba(240,165,0,.3), 0 0 0 32px rgba(240,165,0,.1); }
}
.acm-vs-play-btn:hover { transform: scale(1.12); background: var(--gold2); }
.acm-vs-play-btn svg { width: 28px; height: 28px; margin-left: 4px; fill: #1C1C1E; }
.acm-vs-play-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; text-align: center; }
.acm-vs-play-sub   { font-size: 13px; color: rgba(255,255,255,.65); text-align: center; }

/* Muted bar */
.acm-vs-muted-bar {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(28,28,28,.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(240,165,0,.25); border-radius: 999px;
  padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--gold);
  display: flex; align-items: center; gap: 7px; z-index: 6; white-space: nowrap;
  cursor: pointer; transition: background .2s;
  animation: acmFadeInUp .6s ease .8s both;
}
.acm-vs-muted-bar:hover { background: rgba(240,165,0,.18); }
.acm-vs-muted-bar.acm-hidden { display: none; }
.acm-vs-muted-bar svg { stroke: var(--gold); width: 14px; height: 14px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
@keyframes acmFadeInUp { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }

/* Bottom CTA row */
.acm-vs-bottom { padding: 36px 0 72px; }
.acm-vs-cta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: rgba(255,255,255,.04); border: 1px solid rgba(240,165,0,.15);
  border-radius: 16px; padding: 28px 36px;
}
.acm-vs-cta-text { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.3px; margin: 0; }
.acm-vs-cta-btns { display: flex; gap: 13px; flex-wrap: wrap; }

/* Customizer editable video URL */
.acm-vs-video-wrap { position: relative; }

@media(max-width:900px) { .acm-vs-badge { display: none; } }
@media(max-width:640px) {
  .acm-vs-cta-row { flex-direction: column; text-align: center; padding: 22px 20px; }
  .acm-vs-cta-btns { justify-content: center; }
  .acm-vs-play-btn { width: 64px; height: 64px; }
  .acm-vs-title { font-size: 28px; }
}

/* ── RESPONSIVE GRIDS for homepage sections ── */
@media(max-width:900px){
  .acm-rrai-grid  { grid-template-columns:1fr !important; }
  .acm-pod-grid   { grid-template-columns:1fr !important; }
  .acm-faq-grid   { grid-template-columns:1fr !important; }
}

/* ── ABOUT GRID responsive ── */
@media(max-width:900px){
  .acm-about-grid { grid-template-columns:1fr !important; }
  .acm-about-grid > div:first-child { margin-bottom:40px; }
}

/* ============================================================
   SERVICE AREA MAP SECTION
   ============================================================ */
.acm-map-section { overflow: hidden; }

.acm-map-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

#acmServiceMap {
  height: 520px !important;
  width: 100%;
  min-height: 520px;
  background: #1a1a2e;
  display: block;
  z-index: 1;
}
/* Leaflet needs explicit dimensions on its container */
.acm-map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(240,165,0,.25);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(240,165,0,.1);
  height: 520px;
  min-height: 520px;
}
.acm-map-caption {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #606068;
  margin-top: 12px;
  padding-left: 4px;
}
.acm-map-caption a { transition: color .2s; }
.acm-map-caption a:hover { color: var(--gold2); }

/* Leaflet overrides — dark theme */
.leaflet-container { background: #1C1C2E !important; font-family: 'Plus Jakarta Sans', sans-serif; }
.leaflet-control-zoom a {
  background: var(--dark2) !important;
  color: #fff !important;
  border-color: rgba(240,165,0,.3) !important;
  transition: all .2s;
}
.leaflet-control-zoom a:hover { background: var(--gold) !important; color: var(--dark) !important; }
.leaflet-control-attribution {
  background: rgba(28,28,28,.75) !important;
  color: #505058 !important;
  font-size: 10px !important;
}
.leaflet-control-attribution a { color: #707078 !important; }
.leaflet-popup-content-wrapper {
  background: var(--dark2) !important;
  border: 1px solid rgba(240,165,0,.3) !important;
  border-radius: 14px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,.6) !important;
  padding: 0 !important;
}
.leaflet-popup-tip { background: var(--dark2) !important; }
.leaflet-popup-close-button { color: #909098 !important; top: 10px !important; right: 12px !important; font-size: 18px !important; }
.leaflet-popup-close-button:hover { color: var(--gold) !important; }

/* Custom popup content */
.acm-popup-inner { padding: 16px 18px; }
.acm-popup-name {
  font-size: 16px; font-weight: 800; color: #fff;
  margin-bottom: 4px; display: flex; align-items: center; gap: 8px;
}
.acm-popup-hq {
  font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 2px 7px; border-radius: 4px;
}
.acm-popup-note { font-size: 12.5px; color: #909098; margin-bottom: 13px; }
.acm-popup-cta {
  display: inline-flex; align-items: center;
  background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 700;
  padding: 7px 14px; border-radius: 7px;
  text-decoration: none; transition: all .2s;
}
.acm-popup-cta:hover { background: var(--gold2); }

/* Custom marker */
.acm-map-marker { background: none !important; border: none !important; }
.acm-map-marker svg { transition: transform .2s; filter: drop-shadow(0 4px 8px rgba(0,0,0,.5)); }
.acm-map-marker:hover svg { transform: scale(1.2) translateY(-3px); }

/* Sidebar */
.acm-map-sidebar-inner {
  background: var(--dark2);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.acm-map-sidebar-inner::before {
  content: '';
  position: absolute; top: 0; left: 15%; right: 15%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.acm-map-sidebar-header {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 22px;
}
.acm-map-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.acm-area-chip {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  font-size: 12.5px; font-weight: 500; color: #9A9AA2;
  cursor: pointer; transition: all .22s;
  text-align: left; font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.acm-area-chip svg { stroke: #606068; transition: stroke .22s; flex-shrink: 0; }
.acm-area-chip:hover {
  background: rgba(240,165,0,.1);
  border-color: rgba(240,165,0,.3);
  color: var(--gold);
  transform: translateX(3px);
}
.acm-area-chip:hover svg { stroke: var(--gold); }
.acm-area-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.acm-area-chip.active svg { stroke: var(--dark); }

/* Responsive */
@media(max-width:1024px) {
  .acm-map-layout { grid-template-columns: 1fr; }
  .acm-map-sidebar-inner { margin-top: 10px; }
  .acm-map-frame { height: 420px; min-height: 420px; }
  #acmServiceMap { height: 420px !important; min-height: 420px; }
  .acm-map-areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:640px) {
  .acm-map-frame { height: 320px; min-height: 320px; }
  #acmServiceMap { height: 320px !important; min-height: 320px; }
  .acm-map-areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.acm-portfolio-section { overflow: hidden; }

/* Featured project layout */
.acm-portfolio-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 52px;
}

/* ── BROWSER MOCKUP ── */
.acm-pf-mockup-wrap {
  position: relative;
  padding: 20px 0 20px;
}
.acm-pf-glow {
  position: absolute;
  top: 10%; left: 5%; right: 5%; bottom: 10%;
  background: radial-gradient(ellipse at center, rgba(240,165,0,.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(30px);
  z-index: 0;
}
.acm-pf-browser {
  position: relative;
  z-index: 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(240,165,0,.25),
    0 40px 100px rgba(0,0,0,.7),
    0 8px 24px rgba(0,0,0,.5);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .5s ease;
}
.acm-pf-browser:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

/* Browser top bar */
.acm-pf-browser-bar {
  background: #2A2A2C;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.acm-pf-dots { display: flex; gap: 6px; }
.acm-pf-dots span {
  width: 11px; height: 11px; border-radius: 50%; display: block;
}
.acm-pf-url-bar {
  flex: 1;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  color: #9A9AA2;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
}

/* Screen */
.acm-pf-screen {
  position: relative;
  background: #0f0f1a;
  overflow: hidden;
  height: 420px;
}
.acm-pf-screen-inner {
  width: 100%; height: 100%;
  overflow: hidden;
}

/* Live badge */
.acm-pf-live-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(28,28,28,.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(40,202,65,.4);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px; font-weight: 700;
  color: #28CA41;
  display: flex; align-items: center; gap: 6px;
  z-index: 10;
}
.acm-pf-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #28CA41;
  animation: blink 1.5s infinite;
}

/* ── REAL SCREENSHOT ── */
.acm-pf-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: object-position 8s ease-in-out;
}
.acm-pf-browser:hover .acm-pf-screenshot {
  object-position: bottom center;
}

/* ── FLOATING CHIPS ── */
.acm-pf-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 36px rgba(0,0,0,.4);
  display: flex; align-items: center; gap: 10px;
  z-index: 10;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.acm-pf-chip-1 { bottom: 18%;  left: -18px;  animation-name: acmFloatLeft; }
.acm-pf-chip-2 { top: 14%;     right: -18px; animation-name: acmFloatRight; }
.acm-pf-chip-3 { bottom: 5%;   right: 18px;  animation-name: acmFloatLeft; animation-delay: 1s; }

/* ── PROJECT DETAILS (right column) ── */
.acm-pf-featured-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--dark);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.acm-pf-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 800; color: #fff;
  letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 8px;
}
.acm-pf-tagline {
  font-size: 15px; color: var(--gold);
  font-weight: 600; margin-bottom: 18px;
  line-height: 1.5;
}
.acm-pf-desc {
  font-size: 15.5px; color: #9A9AA2;
  line-height: 1.75; margin-bottom: 28px;
}

/* Service tags */
.acm-pf-services {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
}
.acm-pf-service-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 12px; font-weight: 600; color: #c0c0c8;
  transition: all .2s;
}
.acm-pf-service-tag:hover {
  border-color: var(--gold-bd);
  color: var(--gold);
  background: var(--gold-bg);
}

/* Results row */
.acm-pf-results {
  display: flex; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r2);
  overflow: hidden;
  margin-bottom: 30px;
}
.acm-pf-result {
  flex: 1; padding: 18px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.acm-pf-result:last-child { border-right: none; }
.acm-pf-result-num {
  font-size: 26px; font-weight: 800; color: var(--gold);
  letter-spacing: -1px; line-height: 1; margin-bottom: 4px;
}
.acm-pf-result-lbl {
  font-size: 11px; font-weight: 600; color: #606068;
  text-transform: uppercase; letter-spacing: .5px;
}

/* Action buttons */
.acm-pf-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* Bottom strip */
.acm-pf-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(240,165,0,.07);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--r2);
  padding: 24px 32px;
}
.acm-pf-bottom-strip p {
  font-size: 18px; font-weight: 700; color: #fff;
  margin: 0; letter-spacing: -.2px;
}

/* Responsive */
@media(max-width:1024px) {
  .acm-portfolio-featured { grid-template-columns: 1fr; gap: 44px; }
  .acm-pf-browser { transform: none; }
  .acm-pf-chip-1, .acm-pf-chip-3 { left: 10px; }
  .acm-pf-chip-2 { right: 10px; }
}
@media(max-width:640px) {
  .acm-pf-screen { height: 300px; }
  .acm-pf-bottom-strip { flex-direction: column; text-align: center; padding: 20px; }
  .acm-pf-chip { display: none; }
}

/* ============================================================
   PODCAST PLAYER SECTION
   ============================================================ */
.acm-podcast-section { background: var(--dark); overflow: hidden; }

/* Platform buttons */
.acm-pod-platform-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px;
  font-size: 12.5px; font-weight: 700;
  text-decoration: none; transition: all .22s;
  white-space: nowrap;
}
.acm-pod-spotify  { background: #1DB954; color: #fff; }
.acm-pod-spotify:hover { background: #1ed760; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,185,84,.35); }
.acm-pod-apple    { background: #fc3c44; color: #fff; }
.acm-pod-apple:hover { background: #ff4d56; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(252,60,68,.35); }
.acm-pod-all      { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.12); }
.acm-pod-all:hover { background: var(--gold-bg); border-color: var(--gold-bd); color: var(--gold); transform: translateY(-2px); }

/* Main layout */
.acm-podcast-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

/* Player card */
.acm-pod-player-card {
  background: var(--dark2);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.acm-pod-player-card::before {
  content: '';
  position: absolute; top: 0; left: 20%; right: 20%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Artwork */
.acm-pod-artwork-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #0a0a14;
}
.acm-pod-artwork {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.acm-pod-player-card:hover .acm-pod-artwork { transform: scale(1.03); }

.acm-pod-artwork-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .3s;
}
.acm-pod-artwork-overlay.acm-playing { opacity: 0; pointer-events: none; }

.acm-pod-big-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  animation: acmPulseGlow 2.5s infinite;
  transition: transform .2s, background .2s;
}
.acm-pod-big-play:hover { transform: scale(1.1); background: var(--gold2); }

/* Waveform animation */
.acm-pod-waveform {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 44px;
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  padding: 0 16px 10px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
  background: linear-gradient(transparent, rgba(0,0,0,.6));
}
.acm-pod-waveform.acm-active { opacity: 1; }
.acm-pod-bar {
  width: 3px; border-radius: 3px;
  background: var(--gold);
  height: 8px;
  animation: acmWave 1.2s ease-in-out infinite;
}
@keyframes acmWave {
  0%,100% { height: 4px; opacity: .4; }
  50%      { height: 24px; opacity: 1; }
}

/* Now playing info */
.acm-pod-now-playing { padding: 18px 20px 4px; }
.acm-pod-now-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 7px;
}
.acm-pod-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: blink 1.5s infinite;
}
.acm-pod-ep-title {
  font-size: 15px; font-weight: 700; color: #fff;
  line-height: 1.35; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.acm-pod-ep-meta { font-size: 12px; color: #606068; margin-bottom: 4px; }

/* Seek bar */
.acm-pod-seek-wrap { padding: 16px 20px 4px; }
.acm-pod-seek-bar {
  position: relative; height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 999px; cursor: pointer;
  margin-bottom: 8px;
}
.acm-pod-seek-fill {
  height: 100%; background: var(--gold);
  border-radius: 999px; width: 0%;
  transition: width .1s linear; pointer-events: none;
}
.acm-pod-seek-thumb {
  position: absolute; top: 50%; transform: translate(-50%,-50%);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--gold); left: 0%;
  box-shadow: 0 0 0 3px rgba(240,165,0,.25);
  pointer-events: none; transition: left .1s linear;
}
.acm-pod-times {
  display: flex; justify-content: space-between;
  font-size: 11px; color: #606068; font-variant-numeric: tabular-nums;
}

/* Controls */
.acm-pod-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding: 8px 20px 4px;
}
.acm-pod-ctrl {
  background: none; border: none; cursor: pointer;
  color: #9A9AA2; display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: color .2s, transform .15s; padding: 6px;
}
.acm-pod-ctrl:hover { color: var(--gold); transform: scale(1.15); }
.acm-pod-ctrl span { font-size: 9px; font-weight: 700; }
.acm-pod-play-pause {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold) !important; color: var(--dark) !important;
  display: flex; align-items: center; justify-content: center;
  flex-direction: row !important; gap: 0 !important;
  transition: background .2s, transform .15s !important;
  box-shadow: 0 0 0 6px rgba(240,165,0,.15);
}
.acm-pod-play-pause:hover { background: var(--gold2) !important; transform: scale(1.08) !important; }

/* Volume */
.acm-pod-volume-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px 22px;
}
.acm-pod-volume {
  flex: 1; height: 4px; -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,.1); border-radius: 999px; outline: none; cursor: pointer;
}
.acm-pod-volume::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold); cursor: pointer;
}

/* Episode list */
.acm-pod-ep-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.acm-pod-ep-list {
  display: flex; flex-direction: column; gap: 0;
  max-height: 480px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: rgba(240,165,0,.3) transparent;
}
.acm-pod-ep-list::-webkit-scrollbar { width: 4px; }
.acm-pod-ep-list::-webkit-scrollbar-thumb { background: rgba(240,165,0,.3); border-radius: 4px; }

.acm-pod-ep-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r);
  cursor: pointer; transition: all .2s;
  border: 1px solid transparent;
  margin-bottom: 6px;
  background: rgba(255,255,255,.03);
}
.acm-pod-ep-row:hover {
  background: rgba(240,165,0,.07);
  border-color: rgba(240,165,0,.2);
  transform: translateX(4px);
}
.acm-pod-ep-row.acm-pod-ep-active {
  background: rgba(240,165,0,.1);
  border-color: rgba(240,165,0,.3);
}

.acm-pod-ep-play {
  width: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.acm-pod-ep-num {
  font-size: 10px; font-weight: 800; color: #606068;
  text-transform: uppercase; letter-spacing: .5px;
  transition: opacity .2s;
}
.acm-pod-ep-play-btn {
  position: absolute; inset: -6px;
  background: var(--gold); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--dark); opacity: 0; transition: opacity .2s, transform .2s;
}
.acm-pod-ep-row:hover .acm-pod-ep-play-btn,
.acm-pod-ep-row.acm-pod-ep-active .acm-pod-ep-play-btn { opacity: 1; transform: scale(1); }
.acm-pod-ep-row:hover .acm-pod-ep-num,
.acm-pod-ep-row.acm-pod-ep-active .acm-pod-ep-num { opacity: 0; }

.acm-pod-ep-info { flex: 1; min-width: 0; }
.acm-pod-ep-row-title {
  font-size: 13.5px; font-weight: 600; color: #e0e0e8;
  line-height: 1.35; margin-bottom: 5px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.acm-pod-ep-row.acm-pod-ep-active .acm-pod-ep-row-title { color: var(--gold); }
.acm-pod-ep-row-meta {
  display: flex; gap: 10px; font-size: 11.5px; color: #606068;
}
.acm-pod-ep-dur {
  background: rgba(255,255,255,.06);
  padding: 1px 7px; border-radius: 4px; font-weight: 600;
}

/* Responsive */
@media(max-width:1024px) {
  .acm-podcast-layout { grid-template-columns: 1fr; }
  .acm-pod-player-wrap { max-width: 420px; margin: 0 auto; }
  .acm-pod-ep-list { max-height: none; }
}
@media(max-width:640px) {
  .acm-pod-artwork-wrap { aspect-ratio: 16/9; }
}

/* ============================================================
   AUTHORITY SECTION (Section 1)
   ============================================================ */
.acm-authority-section { position: relative; overflow: hidden; }
.acm-authority-section::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.acm-authority-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Badge */
.acm-authority-badge {
  display: inline-block;
  background: var(--gold);
  border-radius: 16px;
  padding: 3px;
  box-shadow: 0 0 0 8px rgba(240,165,0,.1), 0 0 0 16px rgba(240,165,0,.05);
}
.acm-authority-badge-inner {
  background: var(--gold);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
}
.acm-authority-rank {
  font-size: 44px; font-weight: 800; color: var(--dark);
  line-height: 1; letter-spacing: -2px;
}

.acm-authority-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; color: #fff;
  letter-spacing: -.8px; line-height: 1.1;
  margin-bottom: 24px;
}

/* Keyword ticker */
.acm-kw-ticker-wrap {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px; overflow: hidden;
}
.acm-kw-ticker {
  flex: 1; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.acm-kw-track {
  display: flex; gap: 10px; width: max-content;
  animation: acmTickerScroll 22s linear infinite;
}
@keyframes acmTickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.acm-kw-tag {
  display: inline-block;
  background: rgba(240,165,0,.1);
  border: 1px solid rgba(240,165,0,.25);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12.5px; font-weight: 600; color: var(--gold);
  white-space: nowrap;
}
.acm-authority-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* Right content card */
.acm-authority-content-card {
  background: var(--dark2);
  border: 1px solid rgba(240,165,0,.18);
  border-radius: var(--r3);
  padding: 36px;
  position: relative;
}
.acm-authority-body {
  font-size: 15.5px; color: #9A9AA2;
  line-height: 1.78; margin-bottom: 24px;
}
.acm-authority-divider {
  height: 1px; background: rgba(255,255,255,.06); margin-bottom: 22px;
}

/* Industry grid */
.acm-industry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
  margin-bottom: 22px;
}
.acm-industry-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px; padding: 8px 10px;
  font-size: 11.5px; font-weight: 600; color: #9A9AA2;
  cursor: default; transition: all .2s;
}
.acm-industry-chip:hover {
  background: rgba(240,165,0,.08);
  border-color: rgba(240,165,0,.25);
  color: var(--gold);
}

/* ============================================================
   WHY CHOOSE US SECTION (Section 2)
   ============================================================ */
.acm-why-section { background: var(--off); }
.acm-why-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  align-items: start;
}

/* Checklist items */
.acm-why-checks { display: flex; flex-direction: column; gap: 6px; }
.acm-why-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  transition: all .25s;
  cursor: default;
}
.acm-why-item:hover {
  border-color: var(--gold-bd);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.acm-why-check {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--dark);
  box-shadow: 0 4px 14px rgba(240,165,0,.35);
  transition: transform .2s;
}
.acm-why-item:hover .acm-why-check { transform: scale(1.1); }
.acm-why-title {
  font-size: 15px; font-weight: 800; color: var(--dark);
  margin-bottom: 4px; letter-spacing: -.2px;
}
.acm-why-desc { font-size: 13.5px; color: var(--mid); line-height: 1.6; }

/* Impact card */
.acm-why-impact-card {
  background: var(--dark);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--r3);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.acm-why-impact-card::after {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.08), transparent 70%);
  pointer-events: none;
}

/* Quote */
.acm-why-statement { margin-bottom: 28px; position: relative; padding-left: 8px; }
.acm-why-quote-mark {
  font-size: 80px; color: var(--gold); opacity: .15;
  font-family: Georgia, serif; line-height: .8;
  position: absolute; top: -10px; left: -6px;
}
.acm-why-statement p {
  font-size: 17px; color: #fff; line-height: 1.7;
  font-weight: 600; letter-spacing: -.2px;
  position: relative; z-index: 1;
}
.acm-why-statement em { font-style: italic; color: var(--gold); }

/* Stats row */
.acm-why-stats {
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r2);
  margin-bottom: 24px; overflow: hidden;
}
.acm-why-stat { flex: 1; padding: 16px 12px; text-align: center; }
.acm-why-stat-num {
  font-size: 26px; font-weight: 800; color: var(--gold);
  letter-spacing: -1px; line-height: 1;
}
.acm-why-stat-lbl { font-size: 10.5px; color: #606068; margin-top: 4px; font-weight: 600; }
.acm-why-stat-div { width: 1px; height: 48px; background: rgba(255,255,255,.07); }

/* Trust signals */
.acm-why-trust { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.acm-why-trust-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: #9A9AA2;
}
.acm-why-trust-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* Responsive */
@media(max-width:1100px) {
  .acm-authority-layout { grid-template-columns: 1fr; gap: 44px; }
  .acm-why-layout       { grid-template-columns: 1fr; }
  .acm-industry-grid    { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:640px) {
  .acm-industry-grid { grid-template-columns: repeat(2, 1fr); }
  .acm-kw-ticker-wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   ABOUT PAGE — page-about.php
   ============================================================ */

/* ── HERO ── */
.acm-about-hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 0;
}
.acm-about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}
.acm-about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  align-items: center;
  gap: 0;
}
.acm-about-hero-text {
  padding: 80px 60px 80px 0;
  position: relative; z-index: 2;
}
.acm-about-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,165,0,.1); border: 1px solid var(--gold-bd);
  border-radius: 999px; padding: 7px 18px;
  font-size: 12.5px; font-weight: 700; color: var(--gold);
  margin-bottom: 28px;
}
.acm-ah-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); animation: blink 1.8s infinite;
}
.acm-about-hero-h1 {
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 800; color: #fff;
  letter-spacing: -2.5px; line-height: 1.0;
  margin-bottom: 22px;
}
.acm-about-hero-gold { color: var(--gold); }
.acm-about-hero-sub {
  font-size: 16.5px; color: #9A9AA2;
  line-height: 1.72; max-width: 460px; margin-bottom: 28px;
}
.acm-about-hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.acm-ah-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: #c0c0c8;
}

/* Hero visual */
.acm-about-hero-visual {
  position: relative;
  height: 100%; min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
}
.acm-about-hero-img-wrap {
  position: relative; width: 100%;
  height: 100%; min-height: 88vh;
  overflow: hidden;
}
.acm-about-hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 15%;
  display: block;
}
.acm-about-hero-glow {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 35%),
              linear-gradient(to top, var(--dark) 0%, transparent 20%);
}

/* Floating chips */
.acm-ah-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 13px 17px;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  z-index: 10;
  animation-duration: 4s; animation-iteration-count: infinite; animation-timing-function: ease-in-out;
}
.acm-ah-chip-num { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; }
.acm-ah-chip-lbl { font-size: 10.5px; color: var(--mid); font-weight: 500; margin-top: 2px; }
.acm-ah-chip-1 { top: 20%; left: 12px; animation-name: acmFloatLeft; }
.acm-ah-chip-2 { bottom: 22%; left: 12px; animation-name: acmFloatRight; animation-delay: 1s; }
.acm-ah-chip-3 { top: 52%; right: 18px; animation-name: acmFloatLeft; animation-delay: .5s; }

/* Scroll cue */
.acm-ah-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: #404048; letter-spacing: 1.5px; text-transform: uppercase;
  z-index: 10;
}
.acm-ah-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: acmScrollPulse 2s ease-in-out infinite;
}
@keyframes acmScrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ── DISAMBIGUATION ── */
.acm-not-game-section { background: var(--off); }
.acm-not-game-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.acm-compare-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.acm-compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 26px;
  position: relative;
  transition: all .25s;
}
.acm-compare-card.acm-compare-us {
  border-color: var(--gold-bd);
  box-shadow: 0 0 0 2px rgba(240,165,0,.15), 0 16px 48px rgba(0,0,0,.08);
}
.acm-compare-badge {
  position: absolute; top: -12px; left: 18px;
  background: var(--gold); color: var(--dark);
  font-size: 10.5px; font-weight: 800;
  padding: 4px 12px; border-radius: 999px;
  letter-spacing: .5px;
}
.acm-compare-badge-muted { background: var(--border); color: var(--mid); }
.acm-compare-icon {
  width: 56px; height: 56px; border-radius: var(--r);
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; overflow: hidden;
}
.acm-compare-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
.acm-compare-card p  { font-size: 13.5px; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.acm-compare-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.acm-compare-tags span {
  font-size: 11px; font-weight: 700; color: var(--gold);
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  padding: 3px 10px; border-radius: 999px;
}
.acm-compare-tags-muted span { color: var(--mid); background: var(--off); border-color: var(--border); }
.acm-compare-footer { font-size: 12.5px; font-weight: 600; }
.acm-compare-check  { color: var(--gold); }

/* ── STORY SECTION ── */
.acm-story-section {}
.acm-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.acm-story-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r2);
  padding: 28px;
  transition: all .25s;
  position: relative; overflow: hidden;
}
.acm-story-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,165,0,.4), transparent);
  opacity: 0; transition: opacity .25s;
}
.acm-story-card:hover { border-color: rgba(240,165,0,.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.acm-story-card:hover::before { opacity: 1; }
.acm-story-card-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.acm-story-card-icon svg { stroke: var(--gold); }
.acm-story-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.acm-story-card p  { font-size: 13.5px; color: #909098; line-height: 1.68; }

/* ── WHAT MAKES US DIFFERENT ── */
.acm-diff-section { background: #fff; }
.acm-diff-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.acm-diff-pillar {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  padding: 36px;
  position: relative; overflow: hidden;
  transition: all .25s;
}
.acm-diff-pillar:hover {
  border-color: var(--gold-bd);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.acm-diff-pillar-num {
  position: absolute; top: 24px; right: 28px;
  font-size: 64px; font-weight: 800;
  color: rgba(240,165,0,.08); line-height: 1;
  letter-spacing: -3px;
}
.acm-diff-pillar-icon {
  width: 56px; height: 56px; border-radius: var(--r2);
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.acm-diff-pillar-icon svg { stroke: var(--gold); }
.acm-diff-pillar h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 13px; letter-spacing: -.3px; }
.acm-diff-pillar p  { font-size: 14.5px; color: var(--mid); line-height: 1.72; margin-bottom: 18px; }
.acm-diff-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.acm-diff-list li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--dark);
}
.acm-diff-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* ── EXPERTISE SECTION ── */
.acm-expertise-section {}
.acm-expertise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.acm-expertise-tags-wrap {}
.acm-expertise-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.acm-expertise-tag {
  border-radius: 999px;
  font-weight: 700; border: 1px solid;
  white-space: nowrap; transition: all .2s;
}
.acm-expertise-tag:hover { transform: scale(1.05); }
.acm-expertise-tag-large  { font-size: 14px; padding: 9px 20px; background: rgba(240,165,0,.12); border-color: rgba(240,165,0,.35); color: var(--gold); }
.acm-expertise-tag-medium { font-size: 12.5px; padding: 7px 16px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: #c0c0c8; }
.acm-expertise-tag-small  { font-size: 11.5px; padding: 6px 13px; background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.07); color: #707078; }

/* ── MASCOT / BRAND STORY ── */
.acm-mascot-section { background: var(--off); }
.acm-mascot-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.acm-mascot-img-wrap {
  position: relative;
  border-radius: var(--r3); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
  aspect-ratio: 4/3;
}
.acm-mascot-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }
.acm-mascot-label {
  position: absolute; bottom: 18px; left: 18px;
  background: rgba(28,28,28,.8); backdrop-filter: blur(8px);
  border: 1px solid rgba(240,165,0,.3); border-radius: 999px;
  padding: 8px 16px; font-size: 12px; font-weight: 700; color: var(--gold);
  display: flex; align-items: center; gap: 7px;
}
.acm-mascot-quote {
  background: var(--dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px;
  margin-top: 16px;
}
.acm-mascot-quote-text { font-size: 14px; color: #9A9AA2; font-style: italic; line-height: 1.6; }

.acm-mascot-body p {
  font-size: 16px; color: var(--mid); line-height: 1.78; margin-bottom: 18px;
}
.acm-mascot-blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-bg);
  padding: 18px 22px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: 15.5px; font-style: italic; color: var(--dark);
  line-height: 1.7; margin: 22px 0 28px;
}
.acm-mascot-values { display: flex; flex-wrap: wrap; gap: 8px; }
.acm-value-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--dark);
  transition: all .2s;
}
.acm-value-chip:hover { border-color: var(--gold-bd); color: var(--gold); }

/* ── WEB DEVELOPMENT ── */
.acm-webdev-section {}
.acm-webdev-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.acm-webdev-features { display: flex; flex-direction: column; gap: 16px; }
.acm-webdev-feature {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); transition: all .2s;
}
.acm-webdev-feature:hover { border-color: var(--gold-bd); transform: translateX(4px); }
.acm-webdev-check {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .acm-about-hero-grid    { grid-template-columns: 1fr; min-height: auto; }
  .acm-about-hero-visual  { display: none; }
  .acm-about-hero-text    { padding: 80px 0 60px; }
  .acm-not-game-layout    { grid-template-columns: 1fr; gap: 40px; }
  .acm-compare-cards      { grid-template-columns: 1fr; }
  .acm-story-grid         { grid-template-columns: 1fr 1fr; }
  .acm-diff-pillars       { grid-template-columns: 1fr; }
  .acm-expertise-layout   { grid-template-columns: 1fr; }
  .acm-mascot-layout      { grid-template-columns: 1fr; }
  .acm-webdev-layout      { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .acm-story-grid { grid-template-columns: 1fr; }
  .acm-ah-chip    { display: none; }
}

/* ============================================================
   REVIEW REPLY AI PAGE — page-review-reply-ai.php
   ============================================================ */

/* ── SHARED VARS ── */
.rrai-gold { color: var(--gold); }

.rrai-section-title {
  font-size: clamp(28px,3.8vw,50px);
  font-weight: 800; letter-spacing: -.8px; line-height: 1.1;
  color: var(--dark); margin-bottom: 16px;
}
.rrai-section-lead {
  font-size: 16.5px; color: var(--mid);
  line-height: 1.72; max-width: 580px; margin: 0 auto;
}
.rrai-body-text { font-size: 16px; color: var(--mid); line-height: 1.78; margin-bottom: 18px; }
.rrai-section { padding: 90px 0; }
.rrai-section-dark { background: var(--dark); }

/* Buttons */
.rrai-btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--dark);
  font-weight: 800; font-size: 15px; padding: 14px 30px;
  border-radius: var(--r); cursor: pointer; transition: all .22s;
  text-decoration: none; border: none; white-space: nowrap;
}
.rrai-btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(240,165,0,.4); color: var(--dark); }
.rrai-btn-xl { font-size: 17px; padding: 17px 36px; }
.rrai-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8);
  font-weight: 700; font-size: 14px; padding: 13px 24px;
  border-radius: var(--r); text-decoration: none; transition: all .22s;
}
.rrai-btn-ghost:hover { border-color: rgba(240,165,0,.5); color: var(--gold); }

/* ── HERO ── */
.rrai-hero {
  background: var(--dark); position: relative; overflow: hidden;
  padding: 0;
}
.rrai-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 55px 55px; pointer-events: none;
}
.rrai-hero::after {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.07), transparent 70%);
  pointer-events: none;
}
.rrai-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px; align-items: center;
  min-height: 90vh;
  padding-top: 60px; padding-bottom: 60px;
  position: relative; z-index: 2;
}
.rrai-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,165,0,.1); border: 1px solid var(--gold-bd);
  border-radius: 999px; padding: 7px 18px;
  font-size: 12.5px; font-weight: 700; color: var(--gold);
  margin-bottom: 28px;
}
.rrai-hero-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: blink 1.8s infinite; }
.rrai-hero-h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 800; color: #fff;
  letter-spacing: -2px; line-height: 1.0; margin-bottom: 22px;
}
.rrai-hero-sub {
  font-size: 17px; color: #9A9AA2; line-height: 1.72;
  max-width: 460px; margin-bottom: 28px;
}

/* Social proof */
.rrai-hero-proof {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.rrai-proof-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.rrai-proof-avatars { display: flex; }
.rrai-proof-av {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold-bg); border: 2px solid var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: var(--gold);
  margin-left: -8px;
}
.rrai-proof-av:first-child { margin-left: 0; }
.rrai-proof-text { font-size: 13px; color: #9A9AA2; font-weight: 500; }
.rrai-hero-btns { display: flex; gap: 13px; flex-wrap: wrap; }
.rrai-hero-reassure { font-size: 12px; color: #404048; margin-top: 12px; }

/* ── DEMO CARD ── */
.rrai-demo-card {
  background: #1E1E22;
  border: 1px solid rgba(240,165,0,.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(240,165,0,.1);
}
.rrai-demo-card-top {
  background: #2A2A2E;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.rrai-demo-dots { display: flex; gap: 6px; }
.rrai-demo-dots span { width: 11px; height: 11px; border-radius: 50%; display: block; }
.rrai-demo-title { flex: 1; font-size: 12.5px; font-weight: 700; color: #9A9AA2; text-align: center; }
.rrai-demo-live { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: #28CA41; }
.rrai-demo-live-dot { width: 7px; height: 7px; border-radius: 50%; background: #28CA41; animation: blink 1.5s infinite; }
.rrai-demo-body { padding: 18px; }
.rrai-demo-section-label { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: #606068; margin-bottom: 8px; }
.rrai-demo-review { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 13px; margin-bottom: 8px; }
.rrai-demo-review-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.rrai-demo-platform { display: flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 5px; background: rgba(66,133,244,.15); color: #6EA8FE; }
.rrai-demo-stars { color: var(--gold); font-size: 11px; }
.rrai-demo-reviewer { font-size: 11px; font-weight: 700; color: #9A9AA2; }
.rrai-demo-review-text { font-size: 12.5px; color: #c0c0c8; line-height: 1.55; font-style: italic; margin: 0; }
.rrai-demo-tones { display: flex; gap: 7px; margin-bottom: 12px; }
.rrai-demo-tone { padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1); font-size: 11.5px; font-weight: 600; color: #707078; cursor: default; }
.rrai-tone-active { background: var(--gold); color: var(--dark) !important; border-color: var(--gold) !important; }
.rrai-demo-generating { display: flex; align-items: center; gap: 4px; padding: 8px 0; }
.rrai-gen-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: acmWave 1s ease-in-out infinite; }
.rrai-gen-dot:nth-child(2) { animation-delay: .15s; }
.rrai-gen-dot:nth-child(3) { animation-delay: .3s; }
.rrai-demo-response { background: rgba(240,165,0,.07); border: 1px solid rgba(240,165,0,.2); border-radius: 10px; padding: 13px; margin-top: 6px; }
.rrai-response-ready { color: #28CA41; font-weight: 800; font-size: 10.5px; letter-spacing: .5px; }
.rrai-demo-response-text { font-size: 12.5px; color: #e0e0e8; line-height: 1.6; margin: 8px 0; }
.rrai-demo-copy-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--gold); cursor: pointer; padding: 5px 10px; border-radius: 6px; border: 1px solid rgba(240,165,0,.25); transition: all .2s; }
.rrai-demo-copy-btn:hover { background: rgba(240,165,0,.1); }
.rrai-demo-platforms { display: flex; align-items: center; gap: 7px; margin-top: 14px; flex-wrap: wrap; }
.rrai-demo-platform-chip { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 5px; background: rgba(255,255,255,.06); color: #707078; border: 1px solid rgba(255,255,255,.07); }

/* Hero floating chips */
.rrai-hero-chip {
  position: absolute; background: #fff;
  border-radius: 14px; padding: 13px 17px;
  box-shadow: 0 12px 36px rgba(0,0,0,.35); z-index: 10;
  animation-duration: 4s; animation-iteration-count: infinite; animation-timing-function: ease-in-out;
}
.rrai-chip-1 { top: 15%; right: -18px; animation-name: acmFloatRight; }
.rrai-chip-2 { bottom: 18%; right: -18px; animation-name: acmFloatLeft; animation-delay: 1s; }

/* ── TRUST BAR ── */
.rrai-trust-bar { background: rgba(28,28,30,.98); border-top: 1px solid rgba(240,165,0,.15); border-bottom: 1px solid rgba(240,165,0,.15); padding: 18px 0; }
.rrai-trust-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.rrai-trust-label { font-size: 12px; font-weight: 600; color: #606068; text-transform: uppercase; letter-spacing: 1px; }
.rrai-trust-platform { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #9A9AA2; }
.rrai-trust-more { font-size: 12px; color: #404048; font-style: italic; }

/* ── PROBLEM SECTION ── */
.rrai-problem-section { background: var(--off); }
.rrai-problem-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-bottom: 40px; }
.rrai-pain-cards { display: grid; grid-template-columns: 1fr; gap: 14px; }
.rrai-pain-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 20px;
  transition: all .22s;
}
.rrai-pain-card:hover { border-color: rgba(240,165,0,.3); transform: translateX(5px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.rrai-pain-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.rrai-pain-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.rrai-pain-desc  { font-size: 13.5px; color: var(--mid); line-height: 1.6; }
.rrai-mandatory-banner {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--dark); border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--r2); padding: 24px 28px;
  font-size: 15.5px; color: #9A9AA2; line-height: 1.7;
  position: relative; overflow: hidden;
}
.rrai-mandatory-banner::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.rrai-mandatory-banner strong { color: #fff; }
.rrai-mandatory-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.rrai-mandatory-icon svg { stroke: var(--gold); }

/* ── WHY IT MATTERS ── */
.rrai-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rrai-why-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r2); padding: 28px;
  transition: all .25s; position: relative; overflow: hidden;
}
.rrai-why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,rgba(240,165,0,.4),transparent); opacity: 0; transition: opacity .25s; }
.rrai-why-card:hover { border-color: rgba(240,165,0,.25); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.rrai-why-card:hover::before { opacity: 1; }
.rrai-why-card-icon { width: 48px; height: 48px; border-radius: var(--r); background: var(--gold-bg); border: 1px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.rrai-why-title { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.rrai-why-desc  { font-size: 13.5px; color: #909098; line-height: 1.68; }

/* ── HOW IT WORKS ── */
.rrai-how-section { background: #fff; }
.rrai-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; align-items: start; position: relative;
}
.rrai-step {
  text-align: center; padding: 0 24px;
  position: relative; z-index: 1;
}
.rrai-step-number {
  font-size: 13px; font-weight: 800; color: var(--gold);
  letter-spacing: 1px; margin-bottom: 14px;
  display: block;
}
.rrai-step-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(240,165,0,.3);
  transition: all .25s;
}
.rrai-step:hover .rrai-step-icon { transform: scale(1.08); box-shadow: 0 14px 36px rgba(240,165,0,.45); }
.rrai-step-icon svg { stroke: var(--dark); }
.rrai-step-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.rrai-step-desc  { font-size: 13.5px; color: var(--mid); line-height: 1.68; }
.rrai-step-arrow {
  position: absolute; top: 52px; right: -14px;
  font-size: 24px; color: var(--gold-bd); z-index: 2; font-weight: 300;
}
.rrai-steps-cta { text-align: center; margin-top: 52px; }

/* ── BENEFITS ── */
.rrai-benefits-section {}
.rrai-benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* Review stream mockup */
.rrai-mock-stream { display: flex; flex-direction: column; gap: 12px; }
.rrai-stream-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; display: flex; align-items: center; gap: 7px; margin-bottom: 4px; }
.rrai-stream-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r2); padding: 16px;
  transition: border-color .2s;
}
.rrai-stream-card:hover { border-color: rgba(240,165,0,.2); }
.rrai-stream-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.rrai-stream-platform { font-size: 10.5px; font-weight: 800; padding: 2px 9px; border-radius: 5px; background: rgba(240,165,0,.1); border: 1px solid rgba(240,165,0,.25); color: var(--gold); }
.rrai-stream-stars { color: var(--gold); font-size: 11px; }
.rrai-stream-name { font-size: 11.5px; font-weight: 700; color: #9A9AA2; flex: 1; }
.rrai-stream-tone { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.rrai-tone-Positive  { background: rgba(40,202,65,.15); color: #28CA41; }
.rrai-tone-Neutral   { background: rgba(240,165,0,.12); color: var(--gold); }
.rrai-tone-Apologetic{ background: rgba(99,102,241,.15); color: #818cf8; }
.rrai-stream-review { font-size: 12.5px; color: #9A9AA2; font-style: italic; line-height: 1.55; margin-bottom: 10px; }
.rrai-stream-reply { background: rgba(240,165,0,.07); border-left: 2px solid var(--gold); border-radius: 0 6px 6px 0; padding: 10px 12px; }
.rrai-stream-reply-label { font-size: 10px; font-weight: 800; color: #28CA41; letter-spacing: .5px; margin-bottom: 5px; }
.rrai-stream-reply p { font-size: 12px; color: #c0c0c8; line-height: 1.58; margin: 0; }

/* Benefits list */
.rrai-benefit-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.rrai-benefit-check { width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 800; }
.rrai-benefit-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.rrai-benefit-desc  { font-size: 13.5px; color: #909098; line-height: 1.6; }

/* ── INDUSTRIES ── */
.rrai-industries-section { background: var(--off); }
.rrai-industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-bottom: 28px; }
.rrai-industry-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 26px 22px; text-align: center;
  transition: all .25s;
}
.rrai-industry-card:hover { border-color: var(--gold-bd); transform: translateY(-5px); box-shadow: 0 14px 40px rgba(0,0,0,.1); }
.rrai-industry-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.rrai-industry-title { font-size: 14.5px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.rrai-industry-desc  { font-size: 12.5px; color: var(--mid); line-height: 1.6; }
.rrai-industries-more { text-align: center; font-size: 15px; color: var(--mid); font-style: italic; }

/* ── PRICING ── */
.rrai-pricing-section {}
.rrai-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; margin-bottom: 32px; }
.rrai-price-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3); padding: 34px 28px;
  position: relative; transition: all .25s;
}
.rrai-price-card:hover { transform: translateY(-4px); border-color: rgba(240,165,0,.2); }
.rrai-price-featured {
  background: var(--gold);
  border-color: var(--gold) !important;
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(240,165,0,.35);
}
.rrai-price-featured:hover { transform: translateY(-12px); }
.rrai-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--dark); color: var(--gold);
  font-size: 11px; font-weight: 800; letter-spacing: .5px;
  padding: 5px 16px; border-radius: 999px;
  border: 1px solid rgba(240,165,0,.3);
  white-space: nowrap;
}
.rrai-price-tier { font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.rrai-price-featured .rrai-price-tier { color: var(--dark); }
.rrai-price-amount { display: flex; align-items: flex-end; gap: 2px; margin-bottom: 6px; }
.rrai-price-dollar { font-size: 22px; font-weight: 800; color: #fff; line-height: 1.8; }
.rrai-price-featured .rrai-price-dollar { color: var(--dark); }
.rrai-price-amount > :nth-child(2) { font-size: 56px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -2px; }
.rrai-price-featured .rrai-price-amount > :nth-child(2) { color: var(--dark); }
.rrai-price-period { font-size: 16px; font-weight: 600; color: #606068; margin-bottom: 8px; }
.rrai-price-featured .rrai-price-period { color: rgba(28,28,28,.6); }
.rrai-price-ideal { font-size: 12.5px; color: #606068; margin-bottom: 22px; }
.rrai-price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.rrai-price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #c0c0c8; }
.rrai-price-features-dark li { color: rgba(28,28,28,.8); }
.rrai-pf-check { color: var(--gold); font-weight: 900; flex-shrink: 0; }
.rrai-pf-check-dark { color: var(--dark); }
.rrai-price-cta {
  display: flex; justify-content: center; align-items: center;
  width: 100%; padding: 13px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; transition: all .2s;
}
.rrai-cta-outline { border: 1.5px solid rgba(240,165,0,.3); color: var(--gold); background: transparent; }
.rrai-cta-outline:hover { background: var(--gold-bg); border-color: var(--gold); color: var(--gold); }
.rrai-cta-dark { background: var(--dark); color: #fff; border: 2px solid var(--dark); }
.rrai-cta-dark:hover { background: var(--dark2); color: #fff; }
.rrai-pricing-note {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: rgba(240,165,0,.07); border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--r); padding: 16px 24px;
  font-size: 14.5px; color: #9A9AA2; flex-wrap: wrap;
  text-align: center;
}
.rrai-pricing-note strong { color: #fff; }

/* ── BUILT BY ── */
.rrai-built-section { background: var(--off); }
.rrai-built-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center; }
.rrai-built-links { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 28px; }
.rrai-built-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; background: var(--dark); border: 1px solid rgba(240,165,0,.2); border-radius: var(--r2); overflow: hidden; margin-bottom: 20px; }
.rrai-built-stat { padding: 20px 14px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.rrai-built-stat:last-child { border-right: none; }
.rrai-built-stat-num { font-size: 26px; font-weight: 800; color: var(--gold); letter-spacing: -1px; line-height: 1; }
.rrai-built-stat-lbl { font-size: 10.5px; color: #606068; margin-top: 4px; font-weight: 600; }
.rrai-built-copyright { font-size: 12px; color: var(--mid); text-align: center; }

/* ── FINAL CTA ── */
.rrai-final-cta { background: var(--dark); border-top: 1px solid rgba(240,165,0,.15); padding: 72px 0; position: relative; overflow: hidden; }
.rrai-final-cta::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size: 55px 55px; pointer-events: none; }
.rrai-final-cta::after { content: ''; position: absolute; bottom: -150px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; border-radius: 50%; background: radial-gradient(circle,rgba(240,165,0,.08),transparent 70%); pointer-events: none; }
.rrai-final-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.rrai-final-cta-text { max-width: 560px; }
.rrai-final-cta-text h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 800; color: #fff; letter-spacing: -1px; margin-bottom: 14px; }
.rrai-final-cta-text p  { font-size: 17px; color: #9A9AA2; line-height: 1.7; }
.rrai-final-cta-action { text-align: center; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .rrai-hero-grid     { grid-template-columns: 1fr; min-height: auto; padding-top: 80px; }
  .rrai-hero-right    { display: none; }
  .rrai-problem-layout{ grid-template-columns: 1fr; gap: 40px; }
  .rrai-why-grid      { grid-template-columns: 1fr 1fr; }
  .rrai-steps         { grid-template-columns: 1fr 1fr; gap: 28px; }
  .rrai-step-arrow    { display: none; }
  .rrai-benefits-layout{ grid-template-columns: 1fr; }
  .rrai-industries-grid{ grid-template-columns: repeat(2,1fr); }
  .rrai-pricing-grid  { grid-template-columns: 1fr; gap: 16px; }
  .rrai-price-featured{ transform: none; }
  .rrai-price-featured:hover { transform: none; }
  .rrai-built-layout  { grid-template-columns: 1fr; }
  .rrai-final-cta-inner{ flex-direction: column; text-align: center; }
}
@media(max-width:640px) {
  .rrai-why-grid { grid-template-columns: 1fr; }
  .rrai-steps    { grid-template-columns: 1fr; }
  .rrai-industries-grid { grid-template-columns: 1fr 1fr; }
  .rrai-trust-inner { gap: 14px; }
}

/* ============================================================
   SEO SERVICE PAGE — page-seo-service.php
   ============================================================ */

/* ── HERO ── */
.svc-hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 60px 0 0;
}
.svc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 55px 55px; pointer-events: none;
}
.svc-hero::after {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.07), transparent 70%);
  pointer-events: none;
}
.svc-hero-inner { position: relative; z-index: 2; }
.svc-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; padding: 32px 0 0; }

.svc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(240,165,0,.1); border: 1px solid var(--gold-bd);
  border-radius: 999px; padding: 6px 16px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  margin-bottom: 18px;
}
.svc-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 1.8s infinite; flex-shrink: 0; }
.svc-hero-h1 {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800; color: #fff;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px;
}
.svc-hero-excerpt { font-size: 16.5px; color: #9A9AA2; line-height: 1.72; max-width: 520px; margin-bottom: 26px; }
.svc-hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* Stats panel */
.svc-hero-stats {
  background: var(--dark2);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--r3);
  overflow: hidden;
  position: relative;
}
.svc-hero-stats::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.svc-hero-stats-inner { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr; }
.svc-stat { padding: 24px 16px; text-align: center; }
.svc-stat-num { font-size: 28px; font-weight: 800; color: var(--gold); letter-spacing: -1px; line-height: 1; }
.svc-stat-lbl { font-size: 10.5px; color: #606068; font-weight: 600; margin-top: 5px; }
.svc-stat-divider { background: rgba(255,255,255,.06); width: 1px; }
.svc-hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid rgba(255,255,255,.06); }
.svc-trust-item { display: flex; align-items: center; gap: 7px; padding: 12px 16px; font-size: 12.5px; color: #9A9AA2; font-weight: 500; border-right: 1px solid rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.04); }
.svc-trust-item:nth-child(even) { border-right: none; }
.svc-trust-item:nth-child(3), .svc-trust-item:nth-child(4) { border-bottom: none; }

/* Wave bottom */
.svc-hero-wave { line-height: 0; margin-top: 48px; }
.svc-hero-wave svg { width: 100%; display: block; }

/* ── BODY ── */
.svc-body-section { background: var(--off); padding: 60px 0 80px; overflow-x: hidden; }
.svc-content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start; }
.svc-main { min-width: 0; overflow-x: hidden; }

/* Reading progress dots */
.svc-progress-dots { display: flex; gap: 8px; align-items: center; margin-bottom: 36px; padding: 12px 18px; background: #fff; border: 1px solid var(--border); border-radius: 999px; width: fit-content; }
.svc-progress-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .3s; flex-shrink: 0; }
.svc-dot-active { background: var(--gold); width: 24px; border-radius: 999px; }

/* ══════════════════════════════════
   CONTENT TYPOGRAPHY — THE HEART
   Makes existing WP content look great
══════════════════════════════════ */
.svc-entry-content { font-size: 16.5px; line-height: 1.82; color: #2C2C2E; min-width: 0; overflow-x: hidden; word-wrap: break-word; overflow-wrap: break-word; }

/* H2 — Section dividers with gold accent */
.svc-entry-content h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800; color: var(--dark);
  letter-spacing: -.5px; margin: 52px 0 16px;
  padding-left: 18px;
  border-left: 4px solid var(--gold);
  line-height: 1.2;
}
.svc-entry-content h2:first-child { margin-top: 0; }

/* H3 — Sub-section headers */
.svc-entry-content h3 {
  font-size: 18px; font-weight: 800; color: var(--dark);
  margin: 32px 0 10px; display: flex; align-items: center; gap: 10px;
}
.svc-entry-content h3::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}

/* H4 */
.svc-entry-content h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 24px 0 8px; }

/* Paragraphs */
.svc-entry-content p { margin-bottom: 18px; }
.svc-entry-content p strong { font-weight: 700; color: var(--dark); }
.svc-entry-content p a { color: var(--gold); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(240,165,0,.3); }
.svc-entry-content p a:hover { text-decoration-color: var(--gold); }

/* UL — styled feature lists */
.svc-entry-content ul { list-style: none; margin: 0 0 22px; padding: 0; }
.svc-entry-content ul li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 16px; margin-bottom: 6px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r); font-size: 15px;
  transition: all .2s;
}
.svc-entry-content ul li:hover { border-color: var(--gold-bd); transform: translateX(4px); }
.svc-entry-content ul li::before {
  content: '✓';
  color: var(--gold); font-weight: 900; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; margin-top: 1px;
}

/* OL — numbered list */
.svc-entry-content ol { list-style: none; counter-reset: svc-ol; margin: 0 0 22px; padding: 0; }
.svc-entry-content ol li { counter-increment: svc-ol; display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.svc-entry-content ol li::before {
  content: counter(svc-ol, decimal-leading-zero);
  min-width: 36px; height: 36px; border-radius: 50%;
  background: var(--dark); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex-shrink: 0;
}

/* Tables — modern styled */
.svc-entry-content table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14.5px; border-radius: var(--r2); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07); display: table; }
.svc-entry-content .wp-block-table, .svc-entry-content figure.wp-block-table { overflow-x: auto; display: block; }
.svc-entry-content th { background: var(--dark); color: #fff; padding: 14px 18px; text-align: left; font-weight: 700; font-size: 12.5px; letter-spacing: .5px; text-transform: uppercase; }
.svc-entry-content th:first-child { border-radius: var(--r) 0 0 0; }
.svc-entry-content th:last-child  { border-radius: 0 var(--r) 0 0; }
.svc-entry-content td { padding: 13px 18px; border-bottom: 1px solid var(--border); background: #fff; }
.svc-entry-content tr:nth-child(even) td { background: var(--off); }
.svc-entry-content tr:last-child td { border-bottom: none; }

/* Blockquotes — pull quotes */
.svc-entry-content blockquote {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-bg), rgba(255,255,255,0));
  padding: 20px 26px; margin: 28px 0;
  border-radius: 0 var(--r2) var(--r2) 0;
  font-size: 17px; font-style: italic;
  color: var(--dark); font-weight: 500; line-height: 1.72;
}
.svc-entry-content blockquote p { margin: 0; }

/* HR — section breaks */
.svc-entry-content hr { border: none; border-top: 1px solid var(--border); margin: 44px 0; }

/* Emoji headlines ✅✔️🚀 etc */
.svc-entry-content h3 .emoji { font-style: normal; }

/* Code blocks */
.svc-entry-content pre, .svc-entry-content code {
  background: var(--dark); color: #e0e0e8;
  border-radius: var(--r); padding: 3px 8px;
  font-size: 13px; font-family: 'Courier New', monospace;
}
.svc-entry-content pre { padding: 20px; display: block; overflow-x: auto; margin: 22px 0; }

/* ── Embedded media — images, audio, video, iframes ── */
.svc-entry-content img {
  border-radius: var(--r2); margin: 24px auto;
  max-width: 100%; height: auto; display: block;
}
.svc-entry-content audio {
  width: 100%; margin: 20px 0; display: block;
  border-radius: var(--r); outline: none;
}
.svc-entry-content video {
  width: 100%; height: auto; border-radius: var(--r2);
  margin: 24px 0; display: block;
}
.svc-entry-content iframe {
  width: 100%; max-width: 100%; border: none;
  border-radius: var(--r2); margin: 24px 0;
  display: block; min-height: 360px;
}
.svc-entry-content figure { margin: 24px 0; }
.svc-entry-content figcaption {
  font-size: 12.5px; color: var(--mid);
  text-align: center; margin-top: 8px; font-style: italic;
}
/* WP responsive embed wrapper */
.svc-entry-content .wp-block-embed,
.svc-entry-content .wp-block-embed__wrapper {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden;
  border-radius: var(--r2); margin: 24px 0;
}
.svc-entry-content .wp-block-embed iframe,
.svc-entry-content .wp-block-embed__wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100% !important; height: 100% !important;
  margin: 0; min-height: 0; border-radius: var(--r2);
}

/* Publisher block */
.svc-publisher-block {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r2); padding: 22px;
  margin-top: 48px;
  border-left: 4px solid var(--gold);
}
.svc-publisher-logo { flex-shrink: 0; }
.svc-publisher-name { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.svc-publisher-desc { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 8px; }
.svc-publisher-links { display: flex; gap: 12px; align-items: center; font-size: 13px; }

/* ── SIDEBAR ── */
.svc-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.svc-widget { background: #fff; border: 1px solid var(--border); border-radius: var(--r2); padding: 22px; }
.svc-widget h4 { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }

/* CTA widget */
.svc-widget-cta { background: var(--dark); border-color: rgba(240,165,0,.2); position: relative; overflow: hidden; }
.svc-widget-cta::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.svc-widget-cta-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.svc-widget-cta h4 { color: var(--gold); border-color: var(--gold); }
.svc-widget-cta p  { font-size: 13.5px; color: #909098; line-height: 1.6; margin-bottom: 16px; }
.svc-widget-phone { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--gold); text-decoration: none; }
.svc-widget-phone:hover { color: var(--gold2); }

/* Service nav */
.svc-nav-list { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.svc-nav-link {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 12px; border-radius: var(--r);
  font-size: 13px; font-weight: 500; color: var(--mid);
  text-decoration: none; transition: all .18s;
}
.svc-nav-link:hover { background: var(--gold-bg); color: var(--gold); padding-left: 16px; }
.svc-nav-active { background: var(--gold-bg) !important; color: var(--gold) !important; font-weight: 700 !important; }
.svc-nav-icon { flex-shrink: 0; }
.svc-nav-icon svg { stroke: currentColor; }
.svc-nav-arrow { margin-left: auto; opacity: 0; transition: opacity .18s; font-size: 12px; }
.svc-nav-link:hover .svc-nav-arrow, .svc-nav-active .svc-nav-arrow { opacity: 1; }

/* Why wins */
.svc-widget-wins {}
.svc-win-row {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: var(--mid); padding: 6px 0;
  border-bottom: 1px solid var(--border); line-height: 1.5;
}
.svc-win-row:last-child { border-bottom: none; }
.svc-win-check { color: var(--gold); font-weight: 900; flex-shrink: 0; }

/* Case study */
.svc-widget-case { background: var(--dark2); border-color: rgba(240,165,0,.2); }
.svc-case-eyebrow { display: flex; align-items: center; gap: 7px; font-size: 10.5px; font-weight: 700; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.svc-case-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-bottom: 14px; background: rgba(255,255,255,.04); border-radius: var(--r); overflow: hidden; }
.svc-case-stat { padding: 12px 8px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.svc-case-stat:last-child { border-right: none; }
.svc-case-num { font-size: 18px; font-weight: 800; color: var(--gold); line-height: 1; }
.svc-case-lbl { font-size: 10px; color: #606068; margin-top: 3px; font-weight: 600; }
.svc-case-desc { font-size: 12.5px; color: #909098; line-height: 1.6; }

/* RRAI widget */
.svc-widget-rrai { background: var(--gold); border-color: var(--gold); text-align: center; position: relative; overflow: hidden; }
.svc-rrai-icon { width: 52px; height: 52px; border-radius: 50%; background: rgba(28,28,28,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.svc-rrai-title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.svc-rrai-desc { font-size: 13px; color: rgba(28,28,28,.72); line-height: 1.55; margin-bottom: 14px; }

/* ── RELATED SERVICES ── */
.svc-related-section { background: #fff; padding: 80px 0; }
.svc-related-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.svc-related-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 22px 16px; text-align: center;
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r2); text-decoration: none;
  transition: all .22s;
}
.svc-related-card:hover { border-color: var(--gold-bd); background: var(--gold-bg); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.09); }
.svc-related-icon { width: 44px; height: 44px; border-radius: var(--r); background: var(--gold-bg); border: 1px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; transition: all .22s; }
.svc-related-icon svg { stroke: var(--gold); }
.svc-related-card:hover .svc-related-icon { background: var(--gold); }
.svc-related-card:hover .svc-related-icon svg { stroke: var(--dark); }
.svc-related-label { font-size: 12.5px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.svc-related-arrow { font-size: 14px; color: var(--gold); opacity: 0; transition: opacity .2s; }
.svc-related-card:hover .svc-related-arrow { opacity: 1; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .svc-hero-layout   { grid-template-columns: 1fr; }
  .svc-content-layout{ grid-template-columns: 1fr; }
  .svc-sidebar       { position: static; }
  .svc-hero-stats-inner { grid-template-columns: 1fr 1px 1fr; }
  .svc-stat:nth-child(5),
  .svc-stat:nth-child(6),
  .svc-stat-divider:nth-child(4) { display: none; }
  .svc-related-grid  { grid-template-columns: repeat(3,1fr); }
}
@media(max-width:768px) {
  .svc-hero-stats-inner { grid-template-columns: 1fr 1px 1fr; }
  .svc-related-grid { grid-template-columns: repeat(2,1fr); }
  .svc-entry-content ul li { flex-wrap: wrap; }
}

/* ============================================================
   DESIGN SERVICE PAGE — page-design-service.php
   ============================================================ */

/* ── HERO ── */
.dsvc-hero {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 60px 0 0;
}
.dsvc-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.dsvc-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(60px); pointer-events: none;
}
.dsvc-orb-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.dsvc-orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.dsvc-hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 55px 55px;
}
.dsvc-hero-inner { position: relative; z-index: 2; }
.dsvc-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; padding: 28px 0 0; }

.dsvc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid; border-radius: 999px;
  padding: 6px 16px; font-size: 12.5px; font-weight: 700;
  margin-bottom: 18px;
}
.dsvc-hero-h1 {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800; color: #fff;
  letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px;
}
.dsvc-hero-sub { font-size: 16px; color: #9A9AA2; line-height: 1.72; max-width: 500px; margin-bottom: 24px; }

.dsvc-feature-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.dsvc-pill {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid; border-radius: 8px;
  padding: 6px 12px; font-size: 12px; font-weight: 600; color: #c0c0c8;
}
.dsvc-hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }

/* Stats card */
.dsvc-stats-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r3); overflow: hidden;
  position: relative;
}
.dsvc-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dsvc-stat { padding: 22px 18px; border-right: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.dsvc-stat:nth-child(even) { border-right: none; }
.dsvc-stat:nth-child(3), .dsvc-stat:nth-child(4) { border-bottom: none; }
.dsvc-stat-num { font-size: 28px; font-weight: 800; letter-spacing: -1px; line-height: 1; margin-bottom: 4px; }
.dsvc-stat-lbl { font-size: 11px; color: #606068; font-weight: 600; }
.dsvc-stats-divider { height: 1px; background: rgba(255,255,255,.06); }

/* Sibling nav */
.dsvc-sib-label { font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #404048; padding: 12px 18px 6px; }
.dsvc-sib-nav { display: flex; flex-direction: column; padding: 0 8px 12px; gap: 3px; }
.dsvc-sib-link {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 12px; border-radius: var(--r);
  font-size: 13px; font-weight: 500; color: #9A9AA2;
  text-decoration: none; transition: all .18s;
  border: 1px solid transparent;
}
.dsvc-sib-link:hover { background: rgba(255,255,255,.04); color: #fff; }
.dsvc-sib-active { font-weight: 700 !important; }
.dsvc-sib-link svg { flex-shrink: 0; }

/* Wave */
.dsvc-hero-wave { line-height: 0; margin-top: 48px; }
.dsvc-hero-wave svg { width: 100%; display: block; }

/* ── BODY ── */
.dsvc-body { background: #fff; padding: 60px 0 80px; }
.dsvc-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.dsvc-main { min-width: 0; overflow-x: hidden; }

/* ══ CONTENT TYPOGRAPHY ══════════════════════════ */
.dsvc-entry-content { font-size: 16.5px; line-height: 1.82; color: #2C2C2E; min-width: 0; overflow-x: hidden; word-wrap: break-word; }

.dsvc-entry-content h2 {
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 800; color: var(--dark);
  letter-spacing: -.5px; margin: 48px 0 14px;
  padding-left: 16px; border-left: 4px solid var(--gold); line-height: 1.2;
}
.dsvc-entry-content h2:first-child { margin-top: 0; }

.dsvc-entry-content h3 {
  font-size: 18px; font-weight: 800; color: var(--dark);
  margin: 30px 0 10px; display: flex; align-items: center; gap: 9px;
}
.dsvc-entry-content h3::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.dsvc-entry-content h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin: 22px 0 8px; }
.dsvc-entry-content p  { margin-bottom: 18px; }
.dsvc-entry-content p strong { font-weight: 700; color: var(--dark); }
.dsvc-entry-content a  { color: var(--gold); font-weight: 600; }

.dsvc-entry-content ul { list-style: none; margin: 0 0 22px; padding: 0; }
.dsvc-entry-content ul li {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 10px 16px; margin-bottom: 6px;
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r); font-size: 15px; transition: all .2s;
}
.dsvc-entry-content ul li:hover { border-color: var(--gold-bd); transform: translateX(4px); }
.dsvc-entry-content ul li::before {
  content: '✓'; color: var(--gold); font-weight: 900; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid var(--gold-bd);
  display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.dsvc-entry-content ol { list-style: none; counter-reset: dsvc-ol; margin: 0 0 22px; padding: 0; }
.dsvc-entry-content ol li { counter-increment: dsvc-ol; display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.dsvc-entry-content ol li::before { content: counter(dsvc-ol, decimal-leading-zero); min-width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }

.dsvc-entry-content blockquote { border-left: 4px solid var(--gold); background: var(--gold-bg); padding: 18px 22px; border-radius: 0 var(--r2) var(--r2) 0; font-size: 17px; font-style: italic; color: var(--dark); line-height: 1.7; margin: 24px 0; }
.dsvc-entry-content blockquote p { margin: 0; }
.dsvc-entry-content hr { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.dsvc-entry-content img { border-radius: var(--r2); margin: 24px auto; max-width: 100%; height: auto; display: block; }
.dsvc-entry-content audio { width: 100%; margin: 20px 0; display: block; border-radius: var(--r); }
.dsvc-entry-content iframe { width: 100%; max-width: 100%; border: none; border-radius: var(--r2); margin: 24px 0; display: block; min-height: 360px; }
.dsvc-table-wrap { overflow-x: auto; margin: 28px 0; border-radius: var(--r2); box-shadow: 0 2px 16px rgba(0,0,0,.07); }
.dsvc-table-wrap table { width: 100%; border-collapse: collapse; font-size: 14.5px; margin: 0; }
.dsvc-table-wrap th { background: var(--dark); color: #fff; padding: 13px 18px; text-align: left; font-weight: 700; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; }
.dsvc-table-wrap td { padding: 12px 18px; border-bottom: 1px solid var(--border); background: #fff; }
.dsvc-table-wrap tr:nth-child(even) td { background: var(--off); }
.dsvc-table-wrap tr:last-child td { border-bottom: none; }

/* Publisher */
.dsvc-publisher {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--off); border: 1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: var(--r2);
  padding: 20px; margin-top: 44px;
  font-size: 14px; color: var(--mid); line-height: 1.7;
}

/* ── SIDEBAR ── */
.dsvc-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.dsvc-widget { background: var(--off); border: 1px solid var(--border); border-radius: var(--r2); padding: 22px; }
.dsvc-widget h4 { font-size: 12.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }

/* CTA widget */
.dsvc-widget-cta { background: var(--dark); border-color: rgba(255,255,255,.06); position: relative; overflow: hidden; }
.dsvc-widget-cta::before { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 2px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.dsvc-cta-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 999px; }
.dsvc-widget-cta h4 { color: var(--gold); border-color: var(--gold); }
.dsvc-widget-cta p  { font-size: 13.5px; color: #909098; line-height: 1.6; margin-bottom: 16px; }
.dsvc-phone { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--gold); text-decoration: none; }

/* What's included */
.dsvc-include-row { display: flex; align-items: center; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.dsvc-include-row:last-child { border-bottom: none; }
.dsvc-include-num { width: 28px; height: 28px; border-radius: 50%; border: 1px solid; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.dsvc-include-label { font-size: 13px; font-weight: 600; color: var(--dark); }

/* Why ACM */
.dsvc-why-row { display: flex; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--mid); }
.dsvc-why-row:last-child { border-bottom: none; }
.dsvc-why-check { font-weight: 900; flex-shrink: 0; }

/* SEO cross-sell */
.dsvc-widget-seo { background: var(--dark); border-color: rgba(240,165,0,.2); text-align: center; position: relative; overflow: hidden; }
.dsvc-seo-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-bg); border: 1px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.dsvc-seo-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.dsvc-seo-desc  { font-size: 13px; color: #909098; line-height: 1.6; margin-bottom: 14px; }

/* ── RELATED ── */
.dsvc-related { background: var(--off); padding: 80px 0; }
.dsvc-related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.dsvc-related-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r3); padding: 32px; text-decoration: none;
  transition: all .25s; display: block;
}
.dsvc-related-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.dsvc-related-icon { width: 64px; height: 64px; border-radius: var(--r2); border: 1px solid; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; transition: all .25s; }
.dsvc-related-card:hover .dsvc-related-icon { transform: scale(1.08); }
.dsvc-related-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -.3px; }
.dsvc-related-desc  { font-size: 14px; color: var(--mid); line-height: 1.65; margin-bottom: 18px; }
.dsvc-related-tags  { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.dsvc-related-tags span { font-size: 11.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; border: 1px solid; }
.dsvc-related-cta  { font-size: 13.5px; font-weight: 700; }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .dsvc-hero-layout { grid-template-columns: 1fr; }
  .dsvc-layout { grid-template-columns: 1fr; }
  .dsvc-sidebar { position: static; }
  .dsvc-related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE — page-contact.php
   ============================================================ */

/* ── HERO ── */
.cpage-hero { background: var(--dark); position: relative; overflow: hidden; padding: 60px 0 0; }
.cpage-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.cpage-hero-glow-1 { position: absolute; top: -150px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(240,165,0,.09), transparent 70%); }
.cpage-hero-glow-2 { position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(240,165,0,.05), transparent 70%); }
.cpage-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.022) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.022) 1px,transparent 1px); background-size: 55px 55px; }
.cpage-hero-inner { position: relative; z-index: 2; }
.cpage-hero-content { max-width: 780px; padding: 32px 0 0; }
.cpage-gold { color: var(--gold); }
.cpage-hero-eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(240,165,0,.1); border: 1px solid var(--gold-bd); border-radius: 999px; padding: 7px 18px; font-size: 12.5px; font-weight: 700; color: var(--gold); margin-bottom: 22px; }
.cpage-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: blink 1.8s infinite; flex-shrink: 0; }
.cpage-hero-h1 { font-size: clamp(36px, 5.5vw, 72px); font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1.0; margin-bottom: 20px; }
.cpage-hero-sub { font-size: 17px; color: #9A9AA2; line-height: 1.72; max-width: 580px; margin-bottom: 32px; }

/* Hero chips */
.cpage-hero-chips { display: flex; gap: 14px; flex-wrap: wrap; padding-bottom: 52px; }
.cpage-chip { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r2); padding: 12px 18px; text-decoration: none; transition: all .22s; }
.cpage-chip:hover { border-color: var(--gold-bd); background: var(--gold-bg); }
.cpage-chip-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-bg); border: 1px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cpage-chip-icon svg { stroke: var(--gold); }
.cpage-chip-label { font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #606068; }
.cpage-chip-value { font-size: 14px; font-weight: 700; color: #fff; margin-top: 1px; }

.cpage-hero-wave { line-height: 0; margin-top: 0; }
.cpage-hero-wave svg { width: 100%; display: block; }

/* ── 3-STEP BAR ── */
.cpage-steps-bar { background: var(--off); padding: 28px 0; border-bottom: 1px solid var(--border); }
.cpage-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.cpage-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px 24px; border-right: 1px solid var(--border); }
.cpage-step:last-child { border-right: none; }
.cpage-step-num { font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; opacity: .35; flex-shrink: 0; letter-spacing: -2px; }
.cpage-step-title { font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.cpage-step-desc { font-size: 13px; color: var(--mid); line-height: 1.55; }

/* ── BODY ── */
.cpage-body { background: #fff; padding: 64px 0 80px; }
.cpage-layout { display: grid; grid-template-columns: 380px 1fr; gap: 48px; align-items: start; }

/* ── INFO PANEL ── */
.cpage-info-panel { display: flex; flex-direction: column; gap: 18px; }

.cpage-info-card, .cpage-hours-card, .cpage-service-area-card, .cpage-social-card {
  background: var(--off); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 22px;
  position: relative; overflow: hidden;
}
.cpage-info-card { background: var(--dark); border-color: rgba(240,165,0,.2); }
.cpage-info-title {
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 7px;
}

.cpage-contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); text-decoration: none; transition: all .2s; }
.cpage-contact-row:last-child { border-bottom: none; padding-bottom: 0; }
.cpage-contact-row:hover .cpage-contact-val { color: var(--gold); }
.cpage-contact-icon { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-bg); border: 1px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cpage-contact-lbl { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #606068; margin-bottom: 2px; }
.cpage-contact-val { font-size: 14px; font-weight: 700; color: #fff; transition: color .2s; }

/* Hours */
.cpage-hours-grid { display: flex; flex-direction: column; gap: 0; }
.cpage-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.cpage-hours-row:last-child { border-bottom: none; }
.cpage-hours-day { font-weight: 500; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.cpage-hours-time { font-weight: 700; color: var(--dark); }
.cpage-closed { color: var(--mid) !important; font-weight: 400 !important; }
.cpage-today { background: var(--gold-bg); border-radius: var(--r); margin: 2px -8px; padding: 6px 8px !important; }
.cpage-today .cpage-hours-day { color: var(--dark); font-weight: 700; }
.cpage-today .cpage-hours-time { color: var(--gold); }
.cpage-today-badge { background: var(--gold); color: var(--dark); font-size: 9px; font-weight: 800; padding: 2px 7px; border-radius: 999px; text-transform: uppercase; letter-spacing: .5px; }

/* Service area */
.cpage-area-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.cpage-area-chip { font-size: 11.5px; font-weight: 600; color: var(--gold); background: var(--gold-bg); border: 1px solid var(--gold-bd); border-radius: 6px; padding: 4px 10px; }

/* Social */
.cpage-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.cpage-social-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--mid); text-decoration: none; transition: all .22s; }
.cpage-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(240,165,0,.3); }

/* ── FORM PANEL ── */
.cpage-form-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--r3); padding: 40px; position: relative; overflow: hidden; }
.cpage-form-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--dark); font-size: 10px; font-weight: 800; padding: 4px 12px; border-radius: 999px; }
.cpage-form-header { margin-bottom: 24px; }
.cpage-form-title { font-size: clamp(22px,2.8vw,32px); font-weight: 800; color: var(--dark); letter-spacing: -.5px; margin-bottom: 10px; }
.cpage-form-sub { font-size: 15px; color: var(--mid); line-height: 1.65; }

.cpage-form-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.cpage-form-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--mid); }

/* WPForms / CF7 form styling */
.cpage-form-body { min-width: 0; }
.cpage-form-body .wpforms-container,
.cpage-form-body form { width: 100%; }
.cpage-form-body input[type="text"],
.cpage-form-body input[type="email"],
.cpage-form-body input[type="tel"],
.cpage-form-body input[type="url"],
.cpage-form-body select,
.cpage-form-body textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--r) !important;
  font-size: 15px !important;
  font-family: inherit !important;
  background: #fff !important;
  color: var(--dark) !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important;
  box-shadow: none !important;
}
.cpage-form-body input:focus,
.cpage-form-body textarea:focus,
.cpage-form-body select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(240,165,0,.12) !important;
}
.cpage-form-body textarea { min-height: 120px !important; resize: vertical !important; }
.cpage-form-body label { font-size: 13.5px !important; font-weight: 700 !important; color: var(--dark) !important; margin-bottom: 6px !important; display: block; }
.cpage-form-body .wpforms-field,
.cpage-form-body .wpcf7-form-control-wrap { margin-bottom: 18px !important; display: block; }
.cpage-form-body input[type="submit"],
.cpage-form-body button[type="submit"],
.cpage-form-body .wpforms-submit,
.cpage-form-body .wpcf7-submit {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  padding: 14px 32px !important;
  border: none !important;
  border-radius: var(--r) !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background .2s, transform .15s, box-shadow .2s !important;
  font-family: inherit !important;
  letter-spacing: -.2px;
}
.cpage-form-body input[type="submit"]:hover,
.cpage-form-body button[type="submit"]:hover,
.cpage-form-body .wpforms-submit:hover,
.cpage-form-body .wpcf7-submit:hover {
  background: var(--gold2) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(240,165,0,.35) !important;
}
.cpage-form-footer { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: #909098; margin-top: 16px; line-height: 1.5; padding-top: 16px; border-top: 1px solid var(--border); }

/* ── SEO SECTION ── */
.cpage-seo-section { background: var(--dark); padding: 80px 0; }
.cpage-seo-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; align-items: start; }
.cpage-seo-services { background: var(--dark2); border: 1px solid rgba(240,165,0,.15); border-radius: var(--r2); overflow: hidden; }
.cpage-seo-services-label { font-size: 10.5px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); padding: 16px 18px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
.cpage-svc-link { display: flex; align-items: center; gap: 11px; padding: 13px 18px; text-decoration: none; font-size: 13.5px; font-weight: 600; color: #9A9AA2; border-bottom: 1px solid rgba(255,255,255,.04); transition: all .18s; }
.cpage-svc-link:last-child { border-bottom: none; }
.cpage-svc-link:hover { background: rgba(240,165,0,.07); color: var(--gold); padding-left: 22px; }
.cpage-svc-link-icon { width: 28px; height: 28px; border-radius: 6px; background: var(--gold-bg); border: 1px solid var(--gold-bd); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cpage-svc-link-icon svg { stroke: var(--gold); }

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .cpage-layout { grid-template-columns: 1fr; }
  .cpage-seo-layout { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .cpage-steps { grid-template-columns: 1fr; }
  .cpage-step { border-right: none; border-bottom: 1px solid var(--border); }
  .cpage-step:last-child { border-bottom: none; }
  .cpage-hero-chips { flex-direction: column; }
  .cpage-form-card { padding: 24px; }
  .cpage-form-trust { flex-direction: column; gap: 8px; }
}

/* ============================================================
   REVIEW REPLY AI — VIDEO SHOWCASE SECTION
   ============================================================ */
.rrai-video-section {
  background: var(--dark);
  position: relative; overflow: hidden;
  padding: 90px 0;
}
.rrai-video-bg { position: absolute; inset: 0; pointer-events: none; }
.rrai-video-glow-l {
  position: absolute; top: -100px; left: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.09), transparent 70%);
}
.rrai-video-glow-r {
  position: absolute; bottom: -100px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,.06), transparent 70%);
}
.rrai-video-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 55px 55px;
}
.rrai-video-inner { position: relative; z-index: 2; text-align: center; }

.rrai-video-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(240,165,0,.1); border: 1px solid var(--gold-bd);
  border-radius: 999px; padding: 7px 18px;
  font-size: 12px; font-weight: 700; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.rrai-video-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: blink 1.8s infinite; flex-shrink: 0;
}
.rrai-video-headline {
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 52px;
}

/* ── Frame wrapper ── */
.rrai-video-frame-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto 48px;
}
.rrai-video-frame-glow {
  position: absolute; top: 10%; left: 5%; right: 5%; bottom: 0;
  background: radial-gradient(ellipse, rgba(240,165,0,.18) 0%, transparent 65%);
  filter: blur(40px); pointer-events: none; z-index: 0;
}

/* ── Browser chrome ── */
.rrai-video-chrome {
  position: relative; z-index: 2;
  border-radius: 16px; overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(240,165,0,.3),
    0 50px 120px rgba(0,0,0,.75),
    0 10px 30px rgba(0,0,0,.5);
  transition: box-shadow .4s ease, transform .4s ease;
}
.rrai-video-chrome:hover {
  box-shadow:
    0 0 0 1px rgba(240,165,0,.5),
    0 60px 140px rgba(0,0,0,.8),
    0 10px 30px rgba(0,0,0,.5);
  transform: translateY(-4px);
}
.rrai-video-chrome-bar {
  background: #2A2A2E;
  padding: 11px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.rrai-video-chrome-dots { display: flex; gap: 6px; }
.rrai-video-chrome-dots span { width: 12px; height: 12px; border-radius: 50%; display: block; }
.rrai-video-chrome-url {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08);
  border-radius: 7px; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: #9A9AA2;
  font-family: 'Courier New', monospace;
  justify-content: center;
}
.rrai-video-chrome-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; color: #28CA41;
  white-space: nowrap;
}
.rrai-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #28CA41; animation: blink 1.5s infinite;
}

/* ── Video screen ── */
.rrai-video-screen { position: relative; background: #0a0a0f; line-height: 0; }
.rrai-video-el {
  width: 100%; height: auto;
  display: block; cursor: pointer;
  max-height: 540px; object-fit: cover;
}

/* ── Play overlay ── */
.rrai-video-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,20,.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s;
  backdrop-filter: blur(2px);
}
.rrai-video-overlay:hover { background: rgba(10,10,20,.4); }
.rrai-video-overlay.rrai-hidden { opacity: 0; pointer-events: none; transition: opacity .4s; }

.rrai-video-play-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.rrai-video-play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  animation: acmPulseGlow 2.5s infinite;
  transition: transform .2s, background .2s;
  box-shadow: 0 0 0 0 rgba(240,165,0,.4);
}
.rrai-video-play-btn:hover { transform: scale(1.1); background: var(--gold2); }
.rrai-video-play-label {
  font-size: 13px; font-weight: 700; color: #fff;
  letter-spacing: .5px; text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

/* ── Unmute nudge ── */
.rrai-video-unmute {
  position: absolute; bottom: 14px; right: 14px;
  display: none; align-items: center; gap: 7px;
  background: rgba(28,28,28,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(240,165,0,.3); border-radius: 999px;
  padding: 7px 14px; font-size: 12px; font-weight: 700;
  color: var(--gold); cursor: pointer; transition: all .2s;
}
.rrai-video-unmute:hover { background: rgba(240,165,0,.15); border-color: var(--gold); }
.rrai-video-unmute.rrai-visible { display: flex; }

/* ── Floating stat chips ── */
.rrai-video-chip {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #fff; border-radius: 14px;
  padding: 13px 17px; text-align: center;
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
  z-index: 10;
  animation-duration: 4s; animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.rrai-video-chip-l { left: -88px; animation-name: acmFloatLeft; }
.rrai-video-chip-r { right: -88px; animation-name: acmFloatRight; animation-delay: 1.2s; }

/* ── CTA strip ── */
.rrai-video-cta-strip {
  display: flex; align-items: center; justify-content: center; gap: 22px;
  flex-wrap: wrap;
  background: rgba(240,165,0,.07);
  border: 1px solid rgba(240,165,0,.2);
  border-radius: var(--r2); padding: 22px 32px;
  max-width: 700px; margin: 0 auto;
}
.rrai-video-cta-strip p {
  font-size: 17px; font-weight: 700; color: #fff; margin: 0;
}

/* ── Responsive ── */
@media(max-width:1100px) {
  .rrai-video-chip { display: none; }
}
@media(max-width:640px) {
  .rrai-video-chrome-url span { display: none; }
  .rrai-video-cta-strip { flex-direction: column; text-align: center; padding: 18px; }
}
