/*
Theme Name: advertza-6-042026
Theme URI: https://advertza.com
Author: om
Author URI: https://advertza.com
Description: Performance Marketing Agency Theme - UK & India
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: advertza
Tags: business, marketing, agency
*/

/* ============================
   GOOGLE FONTS
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

/* ============================
   CSS VARIABLES
   ============================ */
:root {
  --gold: hsl(43, 78%, 47%);
  --gold-light: hsl(43, 78%, 57%);
  --gold-dark: hsl(43, 78%, 37%);
  --charcoal: hsl(220, 20%, 14%);
  --charcoal-light: hsl(220, 14%, 26%);
  --background: #fff;
  --foreground: hsl(220, 20%, 14%);
  --muted-foreground: hsl(220, 10%, 46%);
  --border: hsl(220, 13%, 91%);
  --surface-warm: hsl(40, 20%, 97%);
  --radius: 0.75rem;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* ============================
   UTILITIES
   ============================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header container — logo flush to left corner */
#site-header .container {
  padding-left: 0;
  padding-right: 1rem;
  max-width: 100%;
}

/* Desktop: keep header full-width with logo at absolute left edge */
@media (min-width: 769px) {
  #site-header .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .header-inner {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .site-logo,
  .site-logo .custom-logo-link {
    margin-left: 0 !important;
    padding-left: 0 !important;
    position: relative;
    left: 0;
  }
}

.text-gradient-gold {
  background: linear-gradient(135deg, hsl(43,78%,47%), hsl(43,78%,60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, hsl(43,78%,47%), hsl(43,78%,57%));
}

.shadow-gold { box-shadow: 0 8px 30px -8px hsl(43 78% 47% / 0.3); }
.bg-surface-warm { background-color: var(--surface-warm); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted-foreground);
  max-width: 36rem;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ============================
   BUTTONS
   ============================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, hsl(43,78%,47%), hsl(43,78%,57%));
  box-shadow: 0 8px 30px -8px hsl(43 78% 47% / 0.3);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { opacity: 0.9; color: #fff; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
  background: transparent;
  border: 1.5px solid var(--border);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline:hover { background: var(--surface-warm); color: var(--foreground); }

/* Outline button on DARK backgrounds */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  color: #fff !important;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff !important; }

/* ============================
   HEADER / NAV
   ============================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  width: 100%;
  padding-left: 0;
  margin-left: 0;
}

/* Logo — left side inside header */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 0;
  padding-left: 0;
}
.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
  height: 3.25rem !important;
  width: auto !important;
  max-width: 200px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  outline: none !important;
}
.custom-logo-link {
  display: flex;
  align-items: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Hide the fixed logo outside header */
.site-logo-fixed { display: none !important; }

.main-nav { display: flex; align-items: center; gap: 2rem; }

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, hsl(43,78%,47%), hsl(43,78%,57%));
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.875rem;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.9; }

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--background);
  padding: 4rem 0 5rem;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, var(--foreground) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--surface-warm);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--foreground);
}
.stat-label { font-size: 0.8rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* Consultation Form in Hero */
.consultation-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
}

.consultation-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}
.consultation-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--foreground);
  background: #fff;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   SERVICES GRID
   ============================ */
.services-section {
  background: var(--surface-warm);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  display: block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px -8px hsl(43 78% 47% / 0.3);
}

.service-icon {
  width: 3rem; height: 3rem;
  background: hsl(43 78% 47% / 0.1);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1.25rem;
}

.service-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--foreground); }
.service-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s;
}
.service-card:hover .service-link { opacity: 1; }

@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================
   STATS / PROBLEM SECTION
   ============================ */
.problem-section { padding: 5rem 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.problem-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.problem-item { display: flex; gap: 1rem; align-items: flex-start; }
.problem-icon {
  width: 2.5rem; height: 2.5rem; min-width: 2.5rem;
  background: hsl(0 100% 50% / 0.08);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  color: #ef4444; font-size: 1rem;
}
.problem-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--foreground); }
.problem-item p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.solution-card {
  background: var(--charcoal);
  border-radius: 1rem;
  padding: 2.5rem;
  color: #fff;
}
.solution-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; color: #fff; }
.solution-item { display: flex; gap: 0.75rem; margin-bottom: 1.25rem; }
.solution-check { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.solution-item h4 { font-size: 0.95rem; font-weight: 700; color: #fff; }
.solution-item p { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }

@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }

/* ============================
   PROCESS SECTION
   ============================ */
.process-section { padding: 5rem 0; background: var(--surface-warm); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.process-step { text-align: center; position: relative; }
.process-num {
  width: 3.5rem; height: 3.5rem;
  background: linear-gradient(135deg, hsl(43,78%,47%), hsl(43,78%,57%));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 800; color: #fff;
  margin: 0 auto 1rem;
}
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; color: var(--muted-foreground); }

@media (max-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section { padding: 5rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.quote-icon { font-size: 2rem; color: hsl(43 78% 47% / 0.2); margin-bottom: 1rem; line-height: 1; }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; }
.stars span { color: var(--gold); font-size: 1rem; }
.testimonial-text { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { border-top: 1px solid var(--border); padding-top: 1rem; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--foreground); }
.testimonial-role { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.2rem; }

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ============================
   FAQ SECTION
   ============================ */
.faq-section { padding: 5rem 0; background: var(--surface-warm); }
.faq-list { max-width: 48rem; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
}
.faq-question span { font-size: 0.9rem; font-weight: 600; color: var(--foreground); padding-right: 1rem; }
.faq-arrow { color: var(--muted-foreground); font-size: 1.25rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ============================
   CTA SECTION
   ============================ */
.cta-section { padding: 5rem 0; }
.cta-inner {
  background: var(--charcoal);
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-inner p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================
   BLOG SECTION
   ============================ */
.blog-section { padding: 5rem 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }

/* Card */
.blog-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 8px 30px -8px rgba(0,0,0,0.15); transform: translateY(-2px); }

/* Image wrapper — fixed height, no overflow, no emoji */
.blog-card-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface-warm,#f5f3ee) 0%, #e8e4dc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border: none;
}
/* Placeholder — no image: show branded pattern instead of emoji */
.blog-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.blog-card-img-placeholder svg { width: 2.5rem; height: 2.5rem; opacity: 0.4; }
.blog-card-img-placeholder span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; color: rgba(201,168,76,0.7); text-transform: uppercase; }

/* Card body */
.blog-card-body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-category { font-size: 0.72rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.6rem; line-height: 1.45; }
.blog-card-excerpt { font-size: 0.8rem; color: var(--muted-foreground); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.blog-read-more { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-top: auto; display: inline-block; }
.blog-read-more:hover { text-decoration: underline; }

/* Responsive grid */
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; gap: 1rem; } .blog-card-img { height: 180px; } }

/* ── Blog Modal ─────────────────────────────────────── */
#advertza-blog-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.72);
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2rem 1rem;
    box-sizing: border-box;
}
#advertza-blog-inner {
    background: var(--background, #fff);
    border-radius: var(--radius, 12px);
    max-width: 52rem;
    width: 100%;
    margin: 0 auto;
    padding: 2.5rem 2.5rem 2rem;
    position: relative;
    box-shadow: 0 32px 80px -10px rgba(0,0,0,0.4);
    box-sizing: border-box;
}
#bm-content { font-size: 1rem; line-height: 1.85; color: var(--muted-foreground, #555); }
#bm-content p { margin-bottom: 1.2rem; }
#bm-content h2, #bm-content h3 { color: var(--foreground,#111); font-weight: 700; margin: 1.5rem 0 0.75rem; }
#bm-content ul, #bm-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
#bm-content img { max-width: 100%; height: auto; border-radius: 8px; }

/* Desktop: cap modal height, inner scroll */
@media (min-width: 601px) {
    #advertza-blog-modal { align-items: flex-start; }
    #advertza-blog-inner { max-height: calc(100vh - 4rem); overflow-y: auto; }
}

/* Mobile: full screen */
@media (max-width: 600px) {
    #advertza-blog-modal { padding: 0; }
    #advertza-blog-inner {
        border-radius: 0;
        min-height: 100vh;
        max-height: none;
        padding: 1.25rem 1.1rem 2rem;
        margin: 0;
    }
    #bm-title { font-size: 1.3rem !important; }
}

/* ============================
   FOOTER
   ============================ */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding: 4rem 0;
}
.footer-brand img { height: 2.5rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  display: flex; gap: 0.5rem; align-items: flex-start;
  margin-bottom: 0.75rem; font-size: 0.85rem;
}
.footer-contact li a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact li a:hover { color: var(--gold); }
.footer-contact-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid hsl(220 14% 26%);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.footer-social { display: flex; gap: 0.875rem; align-items: center; }
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: all 0.2s;
  text-decoration: none;
}
.footer-social a:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.footer-social a svg { width: 1rem; height: 1rem; fill: currentColor; }

@media (max-width: 1000px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero { padding: 4rem 0 3rem; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--muted-foreground); max-width: 36rem; margin: 0 auto; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; margin-top: 3rem; }
.contact-info-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.contact-info-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.contact-info-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1rem; font-size: 0.875rem; }
.contact-info-item .ci-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { color: var(--foreground); display: block; font-size: 0.8rem; font-weight: 600; }
.contact-info-item span, .contact-info-item a { color: var(--muted-foreground); }
.contact-info-item a:hover { color: var(--gold); }

.audit-card { background: var(--charcoal); border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; }
.audit-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.audit-list { display: flex; flex-direction: column; gap: 0.625rem; }
.audit-list li { font-size: 0.875rem; color: rgba(255,255,255,0.7); }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================
   ABOUT PAGE
   ============================ */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.75rem; text-align: center; }
.value-icon { width: 3rem; height: 3rem; background: hsl(43 78% 47% / 0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--gold); font-size: 1.25rem; }
.value-title { font-weight: 700; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.85rem; color: var(--muted-foreground); }

.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 36rem; margin: 2rem auto 0; }
.office-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; }
.office-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.office-title { font-weight: 700; margin-bottom: 0.5rem; }
.office-addr { font-size: 0.85rem; color: var(--muted-foreground); }
.office-phone { font-size: 0.875rem; color: var(--gold); font-weight: 600; margin-top: 0.75rem; }

@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } .offices-grid { grid-template-columns: 1fr; } }

/* ============================
   SERVICE / INDUSTRY PAGES
   ============================ */
.service-page-hero {
  padding: 4rem 0;
  background: var(--charcoal);
  color: #fff;
}
.service-page-hero .section-label { color: var(--gold); }
.service-page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.service-page-hero p { color: rgba(255,255,255,0.7); max-width: 36rem; margin-bottom: 2rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.5rem; background: #fff; }
.feature-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.feature-title { font-weight: 700; margin-bottom: 0.5rem; font-size: 0.95rem; }
.feature-desc { font-size: 0.85rem; color: var(--muted-foreground); }

@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================
   WHATSAPP BUTTON
   ============================ */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem; height: 3.5rem;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }
.whatsapp-btn svg { width: 1.75rem; height: 1.75rem; fill: #fff; }

/* ============================
   BLOG / POSTS
   ============================ */
.blog-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.single-post { max-width: 48rem; margin: 0 auto; padding: 3rem 0 5rem; }
.single-post h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.single-post .post-content p { margin-bottom: 1.25rem; color: var(--muted-foreground); line-height: 1.8; }
.single-post .post-content h2 { margin: 2rem 0 1rem; }
.single-post .post-content h3 { margin: 1.5rem 0 0.75rem; }

/* ============================
   PRIVACY / TERMS PAGES
   ============================ */
.legal-page { max-width: 48rem; margin: 0 auto; padding: 3rem 1.5rem 5rem; }
.legal-page h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-page p { font-size: 0.9rem; color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { font-size: 0.9rem; color: var(--muted-foreground); margin-bottom: 0.5rem; list-style: disc; }

/* ============================
   404 PAGE
   ============================ */
.not-found { text-align: center; padding: 6rem 0; }
.not-found h1 { font-size: 6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.not-found h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.not-found p { color: var(--muted-foreground); margin-bottom: 2rem; }

/* ============================
   RESPONSIVE HELPERS
   ============================ */
/* Fix WordPress custom logo wrapper */
.custom-logo-link { display:flex; align-items:center; }
.custom-logo-link img,
.site-logo .custom-logo { height:3rem !important; width:auto !important; background:transparent !important; border:none !important; box-shadow:none !important; padding:0 !important; margin:0 !important; display:block; }

@media (max-width:768px) {
  .hero-title { font-size: 2rem; }
  .cta-inner { padding: 2.5rem 1.5rem; }
}

/* ============================
   PRICING PLANS (Web Dev page)
   ============================ */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr !important; }
}

/* Blog card: show date/time in meta line */
.blog-card-body .blog-category { margin-bottom: 0; }

/* ============================
   SINGLE BLOG POST
   ============================ */
.adv-prose { font-size: 1.05rem; line-height: 1.85; color: var(--muted-foreground); }
.adv-prose p  { margin-bottom: 1.3rem; }
.adv-prose h2 { font-size: 1.5rem; font-weight: 800; color: var(--foreground); margin: 2.5rem 0 1rem; line-height: 1.3; }
.adv-prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--foreground); margin: 2rem 0 0.75rem; }
.adv-prose h4 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin: 1.5rem 0 0.5rem; }
.adv-prose ul, .adv-prose ol { padding-left: 1.75rem; margin-bottom: 1.3rem; line-height: 1.8; }
.adv-prose li  { margin-bottom: 0.4rem; }
.adv-prose blockquote { border-left: 3px solid var(--gold); padding: 0.75rem 1.25rem; margin: 1.75rem 0; background: var(--surface-warm, #f9f8f4); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--foreground); }
.adv-prose img { max-width: 100%; height: auto; border-radius: var(--radius); margin: 1.5rem 0; }
.adv-prose a  { color: var(--gold); text-decoration: underline; }
.adv-prose strong { color: var(--foreground); font-weight: 700; }
.adv-prose code { background: var(--surface-warm, #f5f3ee); padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.9em; }

/* Related articles grid */
.adv-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.adv-related-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: box-shadow 0.2s, transform 0.2s; }
.adv-related-card:hover { box-shadow: 0 8px 24px -8px rgba(0,0,0,0.12); transform: translateY(-2px); }

@media (max-width: 680px) { .adv-related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .adv-related-grid { grid-template-columns: 1fr; } }

/* ── Blog Archive Page (/blog/) ────────────────────────────── */
.adv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.adv-blog-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}
.adv-blog-card:hover {
    box-shadow: 0 12px 36px -10px rgba(0,0,0,0.14);
    transform: translateY(-3px);
    border-color: rgba(201,168,76,0.35);
}
.adv-blog-card-img {
    width: 100%; height: 220px; overflow: hidden; position: relative; flex-shrink: 0;
    background: linear-gradient(135deg,hsl(220,20%,12%),hsl(220,20%,20%));
}
.adv-blog-card-img img {
    width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
    transition: transform 0.4s ease;
}
.adv-blog-card:hover .adv-blog-card-img img { transform: scale(1.04); }
.adv-blog-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 0.65rem;
}
.adv-blog-placeholder span {
    font-size: 0.6rem; font-weight: 800; letter-spacing: 0.14em;
    color: rgba(201,168,76,0.5); text-transform: uppercase;
}
.adv-blog-cat-pill {
    position: absolute; bottom: 0.75rem; left: 0.75rem;
    background: rgba(15,15,25,0.78); backdrop-filter: blur(6px);
    color: var(--gold); font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.07em;
    padding: 0.3rem 0.75rem; border-radius: 100px;
    border: 1px solid rgba(201,168,76,0.3);
}
.adv-blog-card-body { padding: 1.35rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.adv-blog-title {
    font-size: 1rem; font-weight: 700; color: var(--foreground); line-height: 1.45; margin-bottom: 0.6rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.adv-blog-excerpt {
    font-size: 0.82rem; color: var(--muted-foreground); line-height: 1.65; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 1.1rem;
}
.adv-blog-footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: 0.5rem; flex-wrap: wrap; margin-top: auto;
    padding-top: 1rem; border-top: 1px solid var(--border);
}
.adv-blog-read-more { font-size: 0.8rem; font-weight: 700; color: var(--gold); }

/* ── WordPress <!--more--> tag fix ── */
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(135deg, hsl(43,78%,47%), hsl(43,78%,57%));
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: opacity 0.2s;
}
.more-link:hover { opacity: 0.88; color: #fff !important; }
.more-link::after { content: ' →'; }

/* Hide the default ugly WP more separator */
.page-links { display: none; }
.adv-blog-meta { font-size: 0.75rem; color: var(--muted-foreground); }

/* Pagination */
.nav-links { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 2.25rem; height: 2.25rem; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
    border: 1.5px solid var(--border); color: var(--foreground); text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.page-numbers:hover, .page-numbers.current {
    background: var(--gold); border-color: var(--gold); color: #fff;
}
.page-numbers.dots { border: none; background: none; }

/* Responsive grid */
@media (max-width: 960px) { .adv-blog-grid { grid-template-columns: repeat(2,1fr); gap: 1.5rem; } }
@media (max-width: 580px) { .adv-blog-grid { grid-template-columns: 1fr; gap: 1.25rem; } .adv-blog-card-img { height: 200px; } }

/* ============================
   LOGO — LEFT CORNER FIX
   ============================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}
#site-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
}
.header-inner {
    padding-left: 0 !important;
}
.site-logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
.site-logo img,
.site-logo .custom-logo,
.custom-logo-link img {
    height: 3rem !important;
    width: auto !important;
}

/* ============================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================ */

/* Hero section mobile */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    }
    .consultation-card {
        margin: 0;
        border-radius: var(--radius);
    }
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }
}

/* Header mobile improvements */
@media (max-width: 900px) {
    .header-inner {
        height: 4rem !important;
    }
    .site-logo img,
    .site-logo .custom-logo,
    .custom-logo-link img {
        height: 2.5rem !important;
    }
    .mobile-nav {
        padding: 1rem 0;
    }
    .mobile-nav a {
        font-size: 1rem;
        padding: 0.65rem 0;
    }
}

/* Consultation card responsive */
@media (max-width: 600px) {
    .consultation-card {
        padding: 1.25rem;
    }
    .consultation-card h3 {
        font-size: 1.2rem;
    }
    .btn-primary.form-submit,
    button.form-submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Contact page grid */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer responsive */
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Prevent horizontal overflow on all screens */
html, body {
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}

/* Section padding mobile */
@media (max-width: 768px) {
    section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    .hero-section {
        padding: 2.5rem 0 3rem !important;
    }
    h2.section-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem) !important;
    }
}

/* Services/industries archive grid mobile */
@media (max-width: 600px) {
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Process grid mobile */
@media (max-width: 540px) {
    .process-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Stats bar mobile */
@media (max-width: 540px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .hero-stats > div {
        flex: 1 1 45%;
    }
}

/* Nav CTA button mobile */
@media (max-width: 900px) {
    .nav-cta {
        display: none;
    }
}

/* ============================
   CUSTOM MULTI-SELECT DROPDOWN
   ============================ */
.custom-multiselect {
    position: relative;
    width: 100%;
    font-size: 0.875rem;
}
.cms-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.625rem 0.875rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    cursor: pointer;
    min-height: 2.75rem;
    color: var(--muted-foreground);
    transition: border-color 0.18s, box-shadow 0.18s;
    user-select: none;
}
.cms-trigger:focus,
.cms-trigger.open {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.cms-trigger.has-selection {
    color: var(--foreground);
}
.cms-arrow {
    flex-shrink: 0;
    color: var(--muted-foreground);
    transition: transform 0.2s;
}
.cms-trigger.open .cms-arrow {
    transform: rotate(180deg);
}
.cms-placeholder {
    font-size: 0.875rem;
    flex: 1;
}
.cms-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    padding: 0.1rem 0.5rem;
    min-width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
}
.cms-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--background);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    padding: 0.4rem;
}
.cms-dropdown.open {
    display: block;
    animation: cms-fadein 0.15s ease;
}
@keyframes cms-fadein {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.cms-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.65rem;
    border-radius: calc(var(--radius) - 2px);
    cursor: pointer;
    transition: background 0.12s;
    user-select: none;
    width: 100%;
}
.cms-option:hover {
    background: var(--surface-warm);
}
.cms-option input[type="checkbox"] {
    display: none;
}
.cms-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    min-width: 1.05rem;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    background: var(--background);
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}
.cms-check svg { display: none; }
.cms-option input:checked ~ .cms-check {
    background: var(--gold);
    border-color: var(--gold);
}
.cms-option input:checked ~ .cms-check svg {
    display: block;
}
.cms-option input:checked ~ .cms-label {
    color: var(--foreground);
    font-weight: 600;
}
.cms-label {
    font-size: 0.855rem;
    color: var(--foreground);
    line-height: 1.35;
}

/* Tags shown below trigger */
.cms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.5rem;
    min-height: 0;
}
.cms-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--foreground);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    padding: 0.2rem 0.65rem 0.2rem 0.55rem;
    cursor: default;
}
.cms-tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: rgba(201,168,76,0.25);
    border: none;
    cursor: pointer;
    font-size: 0.7rem;
    line-height: 1;
    padding: 0;
    color: var(--foreground);
    transition: background 0.15s;
    flex-shrink: 0;
}
.cms-tag-remove:hover {
    background: var(--gold);
    color: #fff;
}

/* ============================
   CUSTOM MULTI-SELECT DROPDOWN
   ============================ */
.custom-multiselect {
    position: relative;
    width: 100%;
}
.cms-trigger {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-height: 2.75rem;
    padding: 0.45rem 2.25rem 0.45rem 0.75rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    cursor: pointer;
    position: relative;
    transition: border-color 0.18s;
    font-size: 0.875rem;
    color: var(--foreground);
}
.cms-trigger:hover,
.cms-trigger:focus,
.cms-trigger.open {
    border-color: var(--gold);
    outline: none;
}
.cms-placeholder {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    pointer-events: none;
}
.cms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    flex: 1;
}
.cms-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--gold);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    white-space: nowrap;
}
.cms-tag-remove {
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.15s;
}
.cms-tag-remove:hover { opacity: 1; }
.cms-arrow {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: var(--muted-foreground);
    pointer-events: none;
    transition: transform 0.2s;
}
.cms-trigger.open .cms-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.cms-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--background);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 200;
    max-height: 260px;
    overflow-y: auto;
}
.cms-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.875rem;
    color: var(--foreground);
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border);
}
.cms-option:last-child { border-bottom: none; }
.cms-option:hover { background: var(--surface-warm); }
.cms-option.selected { background: rgba(201,168,76,0.08); }
.cms-option.selected .cms-check { color: var(--gold); font-weight: 700; }
.cms-check {
    width: 1rem;
    font-size: 0.8rem;
    color: transparent;
    flex-shrink: 0;
    font-weight: 700;
}
