/* =========================================
   VERTEX SEO — Premium Agency Stylesheet
   Color Palette: Black / White / Gold
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:        #d4af37;
  --gold-light:  #e8c84a;
  --gold-dark:   #b8962e;
  --black:       #0a0a0a;
  --black-2:     #111111;
  --black-3:     #1a1a1a;
  --black-4:     #222222;
  --white:       #ffffff;
  --gray:        #999999;
  --gray-light:  #cccccc;
  --border:      rgba(212,175,55,0.25);
  --wa-green:    #25D366;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 32px rgba(212,175,55,0.2);
  --transition:  all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--gray-light); line-height: 1.8; }

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

.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--gold); }
.section-subtitle { color: var(--gray-light); max-width: 620px; font-size: 1.05rem; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(212,175,55,0.35);
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}
.btn-wa svg { width: 22px; height: 22px; fill: white; flex-shrink: 0; }

.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--black);
}
.nav-logo .logo-text {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-logo .logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--black-2);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .close-btn {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,175,55,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,175,55,0.05) 0%, transparent 50%),
    var(--black);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.07);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 .gold { color: var(--gold); }
.hero .hero-sub {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 580px;
  margin-bottom: 44px;
}
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .label { font-size: 0.85rem; color: var(--gray); font-weight: 500; }

/* ---- Floating WA Button ---- */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 900;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.6); }
.wa-float svg { width: 28px; height: 28px; fill: white; }
.wa-float-tooltip {
  position: absolute;
  right: 72px;
  background: var(--black-3);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ---- Cards ---- */
.card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 1.5rem;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card .card-icon { font-size: 2rem; }
.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card .learn-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-card .learn-more::after {
  content: '→';
  transition: transform 0.2s;
}
.service-card:hover .learn-more::after { transform: translateX(4px); }

/* ---- Why Choose ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-item .icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p { font-size: 0.9rem; }
.why-visual {
  position: relative;
  height: 500px;
}
.why-card-float {
  position: absolute;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.why-card-float.main {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  text-align: center;
}
.why-card-float.stats-1 { top: 10%; right: 0; padding: 20px; }
.why-card-float.stats-2 { bottom: 10%; left: 0; padding: 20px; }
.why-card-float .big-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

/* ---- Process ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold), var(--border), transparent);
}
.process-step { text-align: center; position: relative; }
.process-step .step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; }

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--black);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: 0.95rem; }
.author-info .role { font-size: 0.82rem; color: var(--gray); }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}
.faq-answer.open { max-height: 300px; }
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--gray-light);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--black-3) 0%, rgba(212,175,55,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { margin-bottom: 40px; font-size: 1.05rem; }
.cta-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,0.07) 0%, var(--black-3) 100%);
  box-shadow: var(--shadow-gold);
  transform: scale(1.03);
}
.pricing-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-price span { font-size: 1.2rem; color: var(--gray); }
.plan-desc { font-size: 0.88rem; color: var(--gray); margin-bottom: 28px; }
.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-light);
}
.plan-feature .check { color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.plan-feature .cross { color: #555; font-size: 1rem; flex-shrink: 0; }

/* ---- Services Page ---- */
.page-hero {
  padding: 160px 0 96px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(212,175,55,0.08) 0%, transparent 70%),
    var(--black);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-detail:last-child { border-bottom: none; }
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-layout.reverse { direction: rtl; }
.service-layout.reverse > * { direction: ltr; }
.service-content .section-label { margin-bottom: 12px; }
.service-content h2 { margin-bottom: 20px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.service-content p { margin-bottom: 28px; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-light);
}
.service-list li::before { content: '◆'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }
.service-visual {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.service-visual .service-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  display: block;
}
.service-visual .metric {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
}
.service-visual .metric-label { color: var(--gray); font-size: 0.9rem; }

/* ---- Audit Page ---- */
.audit-form-section { background: var(--black-2); }
.audit-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.audit-form {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.audit-form h3 { margin-bottom: 32px; font-size: 1.5rem; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--black-4); }
.audit-benefits { padding-top: 24px; }
.audit-benefits h3 { margin-bottom: 32px; }
.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.benefit-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.benefit-item h4 { margin-bottom: 4px; }
.benefit-item p { font-size: 0.88rem; }

/* ---- Case Studies ---- */
.case-study-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.case-study-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.case-header {
  padding: 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
}
.case-body { padding: 32px; }
.case-body h3 { margin-bottom: 12px; }
.case-body p { font-size: 0.9rem; margin-bottom: 28px; }
.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.case-metric {
  background: var(--black-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.case-metric .val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.case-metric .lbl { font-size: 0.72rem; color: var(--gray); margin-top: 4px; }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--black-4), var(--black-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.blog-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.05), transparent);
}
.blog-content { padding: 28px; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-date { font-size: 0.78rem; color: var(--gray); }
.blog-content h3 { font-size: 1.1rem; margin-bottom: 10px; transition: color 0.2s; }
.blog-card:hover .blog-content h3 { color: var(--gold); }
.blog-content p { font-size: 0.88rem; line-height: 1.7; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-read-more:hover gap { transform: translateX(4px); }

/* ---- About ---- */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}
.stat-box {
  text-align: center;
  padding: 36px 24px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat-box .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .lbl { font-size: 0.88rem; color: var(--gray); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--black);
  border: 3px solid var(--gold);
}
.team-card h4 { margin-bottom: 4px; }
.team-card .role { font-size: 0.85rem; color: var(--gold); margin-bottom: 12px; }
.team-card p { font-size: 0.85rem; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 4px; font-size: 0.9rem; }
.contact-item p, .contact-item a { font-size: 0.92rem; color: var(--gray-light); }
.contact-item a:hover { color: var(--gold); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.hours-row .day { color: var(--gray); }
.hours-row .time { color: var(--white); font-weight: 500; }

/* ---- Footer ---- */
.footer {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  font-size: 0.9rem;
  margin: 16px 0 28px;
  max-width: 280px;
}
.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.88rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--gray); }
.footer-bottom a { color: var(--gray); font-size: 0.82rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 24px; }

/* ---- Divider ---- */
.gold-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0;
}

/* ---- Badges / Tags ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-gold { background: rgba(212,175,55,0.1); color: var(--gold); border: 1px solid var(--border); }

/* ---- Utility ---- */
.gold-text { color: var(--gold); }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}
.trust-item .icon { color: var(--gold); font-size: 1.1rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .why-grid,
  .service-layout,
  .audit-form-wrapper,
  .about-hero-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .service-layout.reverse { direction: ltr; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-visual { height: 300px; }
  .pricing-card.popular { transform: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero-stats { gap: 28px; }
  .cta-banner { padding: 48px 24px; }
  .about-stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { bottom: 20px; right: 20px; }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .pricing-grid,
  .testimonials-grid,
  .services-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Page Specific - Legal ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 1.4rem; margin: 40px 0 16px; color: var(--gold); }
.legal-content p { margin-bottom: 16px; font-size: 0.95rem; }
.legal-content ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.legal-content ul li { color: var(--gray-light); font-size: 0.95rem; margin-bottom: 6px; }
