/* ============================================
   DUSTRIXI CLEANING — Main Stylesheet
   ============================================ */

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #2d3748;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* Variables */
:root {
  --navy:       #0a1f44;
  --navy-light: #1a3461;
  --gold:       #c9a84c;
  --gold-hover: #b8973b;
  --blue:       #a8d4e6;
  --blue-bg:    #eef7fc;
  --white:      #ffffff;
  --gray-light: #f5f7fa;
  --gray:       #e9ecef;
  --text:       #2d3748;
  --text-muted: #718096;
  --shadow-sm:  0 2px 12px rgba(10,31,68,.07);
  --shadow:     0 4px 24px rgba(10,31,68,.11);
  --shadow-lg:  0 8px 40px rgba(10,31,68,.17);
  --radius:     10px;
  --radius-lg:  16px;
  --ease:       all .28s ease;
}

/* Container */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,.25);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1140px; margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-mark {
  width: 40px; height: 40px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.logo-text-wrap { display: flex; flex-direction: column; }

.logo-name {
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  letter-spacing: -.02em; line-height: 1.2;
}

.logo-sub {
  font-size: .66rem; color: var(--blue); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 28px; align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500;
  transition: var(--ease);
}
.nav-links a:hover { color: var(--gold); }

.header-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .9rem;
  padding: 9px 18px; border-radius: 50px;
  transition: var(--ease); white-space: nowrap;
}
.header-phone:hover { background: var(--gold-hover); box-shadow: 0 4px 14px rgba(201,168,76,.4); transform: translateY(-1px); }
.header-phone i { font-size: 13px; }

.menu-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 1.4rem; cursor: pointer; padding: 4px;
}

.mobile-nav { display: none; background: var(--navy); padding: 0 24px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; color: rgba(255,255,255,.82); font-size: .92rem; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); transition: var(--ease);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

/* =============================================
   HERO — HOMEPAGE
   ============================================= */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, #0c2558 55%, #112d6a 100%);
  position: relative; padding: 96px 0 80px; overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 50%, rgba(168,212,230,.07) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(201,168,76,.07) 0%, transparent 40%);
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(201,168,76,.14); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold); font-size: .72rem; font-weight: 700;
  padding: 5px 13px; border-radius: 50px;
  letter-spacing: .07em; text-transform: uppercase; margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem); font-weight: 800;
  color: var(--white); line-height: 1.14; letter-spacing: -.025em; margin-bottom: 18px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  margin-bottom: 34px; line-height: 1.75; max-width: 480px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  font-weight: 700; font-size: .98rem;
  padding: 13px 26px; border-radius: 50px; transition: var(--ease);
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.28); transition: var(--ease);
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }

.trust-chip {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500;
}
.trust-chip i { color: var(--gold); font-size: 15px; }

/* Hero cards (right column) */
.hero-cards { display: flex; flex-direction: column; gap: 14px; }

.hero-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(8px);
  transition: var(--ease); cursor: pointer; display: block;
}
.hero-card:hover { background: rgba(255,255,255,.1); transform: translateX(6px); border-color: rgba(201,168,76,.3); }

.hc-top { display: flex; align-items: center; gap: 13px; margin-bottom: 10px; }

.hc-icon {
  width: 46px; height: 46px; background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; flex-shrink: 0;
}

.hc-top h3 { color: var(--white); font-size: .97rem; font-weight: 700; }

.hero-card p { color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.55; }

.hc-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold); font-size: .8rem; font-weight: 600;
  margin-top: 9px; transition: var(--ease);
}
.hc-link:hover { gap: 9px; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--blue-bg);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(168,212,230,.5);
  padding: 18px 0;
}

.trust-bar-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 44px;
}

.tbar-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .88rem; font-weight: 600; color: var(--navy);
}
.tbar-item i { color: var(--gold); font-size: 17px; }

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 9px;
}

.section-title {
  font-size: clamp(1.55rem, 2.8vw, 2.15rem); font-weight: 800;
  color: var(--navy); line-height: 1.2; letter-spacing: -.02em;
}

.section-sub {
  font-size: .97rem; color: var(--text-muted);
  margin-top: 11px; max-width: 560px; line-height: 1.7;
}

.sec-head { margin-bottom: 48px; }
.sec-head.center { text-align: center; }
.sec-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services { padding: 84px 0; background: var(--white); }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.svc-card {
  background: var(--white); border: 1px solid var(--gray);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }

.svc-banner {
  background: var(--navy); padding: 28px 28px 22px; position: relative; overflow: hidden;
}
.svc-banner::after {
  content: ''; position: absolute; right: -16px; bottom: -16px;
  width: 72px; height: 72px; background: rgba(201,168,76,.1); border-radius: 50%;
}

.svc-icon {
  width: 58px; height: 58px; background: var(--gold); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 27px; margin-bottom: 14px;
}

.svc-banner h3 { color: var(--white); font-size: 1.22rem; font-weight: 700; margin-bottom: 7px; }
.svc-banner p  { color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.5; }

.svc-body { padding: 22px 28px 28px; flex: 1; display: flex; flex-direction: column; }

.svc-features { flex: 1; margin-bottom: 22px; }

.svc-feature {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 8px 0; border-bottom: 1px solid var(--gray);
  font-size: .86rem; color: var(--text);
}
.svc-feature:last-child { border-bottom: none; }
.svc-feature i { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 13px; }

.btn-svc {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--navy); color: var(--white);
  font-weight: 600; font-size: .88rem;
  padding: 12px; border-radius: 8px; transition: var(--ease); width: 100%;
}
.btn-svc:hover { background: var(--gold); color: var(--navy); }

/* =============================================
   WHY DUSTRIXI
   ============================================= */
.why { padding: 84px 0; background: var(--gray-light); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.why-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm);
  transition: var(--ease); position: relative; overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.why-icon {
  width: 50px; height: 50px; background: var(--blue-bg); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px; color: var(--navy);
}

.why-card h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   FAQ
   ============================================= */
.faq { padding: 84px 0; background: var(--white); }

.faq-wrap { max-width: 720px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden; transition: var(--ease);
}
.faq-item.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }

.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 22px; display: flex; align-items: center; justify-content: space-between;
  gap: 14px; cursor: pointer; font-family: 'Inter', sans-serif;
  font-size: .93rem; font-weight: 600; color: var(--navy); transition: var(--ease);
}
.faq-q:hover { background: var(--gray-light); }
.faq-item.active .faq-q { background: var(--gray-light); }

.faq-chevron {
  flex-shrink: 0; width: 26px; height: 26px; background: var(--gray-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--navy); transition: var(--ease);
}
.faq-item.active .faq-chevron { background: var(--gold); color: var(--navy); transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 18px; font-size: .88rem; color: var(--text-muted); line-height: 1.75; }
.faq-item.active .faq-a { max-height: 400px; }

/* =============================================
   REVIEWS
   ============================================= */
.reviews { padding: 84px 0; background: var(--gray-light); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow-sm); transition: var(--ease);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

.review-body {
  font-size: .86rem; color: var(--text); line-height: 1.72;
  margin-bottom: 16px; font-style: italic; position: relative;
}
.review-body::before {
  content: '\201C'; font-size: 3.2rem; color: var(--blue);
  font-family: Georgia, serif; line-height: 0; vertical-align: -1.1rem; margin-right: 3px;
}

.review-author { display: flex; align-items: center; gap: 11px; }

.review-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .86rem; flex-shrink: 0;
}

.review-name  { font-weight: 700; font-size: .85rem; color: var(--navy); }
.review-place { font-size: .76rem; color: var(--text-muted); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-band {
  padding: 84px 0; background: var(--navy); position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,168,76,.1), transparent 70%);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(168,212,230,.07), transparent 70%);
}

.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800;
  color: var(--white); margin-bottom: 14px; letter-spacing: -.025em;
}
.cta-inner p { font-size: 1.02rem; color: rgba(255,255,255,.72); margin-bottom: 34px; }

.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 1.08rem;
  padding: 15px 34px; border-radius: 50px; transition: var(--ease);
}
.btn-cta:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }

.btn-cta-alt {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.28); transition: var(--ease);
}
.btn-cta-alt:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: #060f22; color: rgba(255,255,255,.65); padding: 60px 0 28px; }

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}

.footer-brand-name {
  display: block; font-size: 1.25rem; font-weight: 800;
  color: var(--white); margin-bottom: 12px;
}

.footer-brand p { font-size: .86rem; line-height: 1.72; margin-bottom: 20px; max-width: 300px; }

.nap p {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem; color: rgba(255,255,255,.72); margin-bottom: 8px;
}
.nap i { color: var(--gold); width: 15px; flex-shrink: 0; }
.nap a { color: var(--gold); font-weight: 600; transition: var(--ease); }
.nap a:hover { color: var(--gold-hover); }

.footer-col h4 {
  color: var(--white); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px;
}

.f-links li { margin-bottom: 9px; }
.f-links a {
  font-size: .86rem; color: rgba(255,255,255,.56); transition: var(--ease);
  display: flex; align-items: center; gap: 7px;
}
.f-links a::before { content: '→'; font-size: .72rem; }
.f-links a:hover { color: var(--gold); }

.footer-hr { border: none; border-top: 1px solid rgba(255,255,255,.07); margin-bottom: 22px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { font-size: .78rem; }

.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: .78rem; color: rgba(255,255,255,.45); transition: var(--ease); }
.footer-bottom-links a:hover { color: var(--gold); }

/* =============================================
   SERVICE PAGE HERO
   ============================================= */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, #0c2558 100%);
  padding: 68px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 30% 50%, rgba(168,212,230,.06), transparent 60%);
}

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: .77rem; color: rgba(255,255,255,.55); margin-bottom: 14px;
}
.breadcrumb a { color: var(--gold); transition: var(--ease); }
.breadcrumb a:hover { color: var(--gold-hover); }
.breadcrumb i { font-size: 10px; color: rgba(255,255,255,.3); }

.page-hero h1 {
  font-size: clamp(1.75rem, 3.8vw, 2.7rem); font-weight: 800;
  color: var(--white); line-height: 1.14; letter-spacing: -.025em;
  margin-bottom: 14px; position: relative;
}

.page-hero .lead {
  font-size: 1.02rem; color: rgba(255,255,255,.72);
  max-width: 580px; margin: 0 auto 26px; line-height: 1.72;
}

.page-hero-ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* =============================================
   CONTENT SECTION (SERVICE PAGES)
   ============================================= */
.content-sec { padding: 72px 0; }
.content-sec.alt { background: var(--gray-light); }

.content-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; align-items: start; }

/* Prose */
.prose p { font-size: .93rem; color: var(--text); line-height: 1.82; margin-bottom: 15px; }
.prose h2 {
  font-size: 1.45rem; font-weight: 700; color: var(--navy);
  margin: 30px 0 14px; letter-spacing: -.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.06rem; font-weight: 700; color: var(--navy); margin: 22px 0 9px; }

.prose ul { margin-bottom: 14px; }
.prose ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--text); margin-bottom: 9px;
}
.prose ul li::before {
  content: '';
  width: 19px; height: 19px; flex-shrink: 0; margin-top: 2px;
  background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
}

/* Stats box */
.stats-box {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 28px; color: var(--white); margin: 28px 0;
}
.stats-box-title { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 18px; }

.stat-row {
  display: flex; align-items: center; gap: 15px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.stat-row:last-child { border-bottom: none; }
.stat-num { font-size: 1.55rem; font-weight: 800; color: var(--gold); min-width: 68px; line-height: 1; }
.stat-desc { font-size: .82rem; color: rgba(255,255,255,.72); line-height: 1.5; }

/* Process steps */
.steps { counter-reset: step; }
.step {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--gray);
}
.step:last-child { border-bottom: none; }
.step-num {
  counter-increment: step;
  content: counter(step);
  width: 42px; height: 42px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .95rem; flex-shrink: 0;
}
.step-body h3 { font-size: .97rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.step-body p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }

/* Sidebar */
.sidebar { position: sticky; top: 100px; }

.sbar-card {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 26px; color: var(--white); margin-bottom: 18px;
}
.sbar-card h3 { color: var(--gold); font-size: .97rem; font-weight: 700; margin-bottom: 13px; }
.sbar-card p  { font-size: .84rem; color: rgba(255,255,255,.7); line-height: 1.62; margin-bottom: 14px; }

.sbar-phone {
  display: flex; align-items: center; gap: 11px;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 1.1rem;
  padding: 13px 18px; border-radius: 10px;
  margin-bottom: 12px; transition: var(--ease);
}
.sbar-phone:hover { background: var(--gold-hover); }
.sbar-phone i { font-size: 17px; }

.sbar-feats { margin-top: 14px; }
.sbar-feat {
  display: flex; align-items: center; gap: 9px;
  font-size: .81rem; color: rgba(255,255,255,.7);
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.07);
}
.sbar-feat:last-child { border-bottom: none; }
.sbar-feat i { color: var(--gold); font-size: 13px; flex-shrink: 0; }

/* =============================================
   PRICING
   ============================================= */
.pricing { padding: 72px 0; background: var(--white); }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; max-width: 880px; margin: 0 auto;
}

.price-card {
  background: var(--white); border: 2px solid var(--gray);
  border-radius: var(--radius-lg); padding: 26px 22px;
  text-align: center; transition: var(--ease); position: relative;
}
.price-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.price-card.best { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,.1); }
.price-card.best:hover { border-color: var(--gold); }

.price-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: .7rem; font-weight: 700;
  padding: 3px 11px; border-radius: 50px; letter-spacing: .05em;
  text-transform: uppercase; white-space: nowrap;
}

.price-icon { font-size: 1.9rem; margin-bottom: 10px; }
.price-tier { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 7px; }
.price-amount { font-size: 2.1rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: .95rem; font-weight: 400; color: var(--text-muted); }
.price-note { font-size: .79rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.5; }

.price-feats { text-align: left; margin-bottom: 22px; }
.price-feat {
  display: flex; align-items: center; gap: 7px;
  font-size: .81rem; color: var(--text);
  padding: 5px 0; border-bottom: 1px solid var(--gray);
}
.price-feat:last-child { border-bottom: none; }
.price-feat i { color: var(--gold); font-size: 11px; flex-shrink: 0; }

.btn-price {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; background: var(--navy); color: var(--white);
  font-weight: 600; font-size: .88rem;
  padding: 11px; border-radius: 8px; transition: var(--ease);
}
.btn-price:hover { background: var(--gold); color: var(--navy); }
.price-card.best .btn-price { background: var(--gold); color: var(--navy); }
.price-card.best .btn-price:hover { background: var(--gold-hover); }

.pricing-disclaimer {
  text-align: center; margin-top: 22px;
  font-size: .83rem; color: var(--text-muted);
}
.pricing-disclaimer i { color: var(--gold); margin-right: 5px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 40px; }
  .hero-cards     { display: none; }
  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .pricing-grid   { grid-template-columns: 1fr; max-width: 380px; }
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar        { position: static; }
}

@media (max-width: 640px) {
  .nav-links      { display: none; }
  .menu-toggle    { display: block; }
  .why-grid       { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .hero           { padding: 68px 0 56px; }
  .trust-bar-row  { gap: 10px 22px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}
