/* ═══════════════════════════════════════════
   Pinto Gold & Jewellery Buyers — Premium CSS
   ═══════════════════════════════════════════ */

:root {
  --black:    #060810;
  --dark:     #0c1020;
  --card:     #111528;
  --card-hover:#1a2040;
  --border:   #1e2548;
  --gold:     #4a9eff;
  --gold-lt:  #7ebcff;
  --gold-dk:  #2563a8;
  --cream:    #e6ecf5;
  --text:     #dce4ee;
  --muted:    #7a8598;
  --white:    #ffffff;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --glow:     0 0 20px rgba(74,158,255,.15), 0 0 60px rgba(74,158,255,.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--black); color: var(--text); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

/* ── Top Bar ── */
.topbar { background: linear-gradient(90deg, #4a9eff, #2563a8); color: #fff; padding: 10px 0; font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: center; gap: 20px; align-items: center; }
.topbar a { color: #fff; text-decoration: underline; }
.topbar-sep { opacity: .4; }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,10,.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: all .3s; }
.nav.scrolled { background: rgba(10,10,10,.98); box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.nav-inner { margin: 0 auto; padding: 16px 40px 8px 100px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-logo { height: 60px !important; width: auto !important; min-width: 0; flex-shrink: 0; object-fit: contain; }
.nav-brand-text { font-family: var(--font-head); font-size: 18px; letter-spacing: 3px; color: var(--white); font-weight: 600; }
.nav-brand-text em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 32px; flex-shrink: 1; min-width: 0; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: #ffffff; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold-lt); }
.nav-social { display: flex; align-items: center; }
.nav-social svg { transition: transform .2s; }
.nav-social:hover svg { transform: scale(1.15); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold); margin: 5px 0; transition: .3s; }

/* ── Hero ── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/images/rolex-sky-dweller-brown-dial-leather-strap.jpg') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(6,8,16,.96) 0%, rgba(6,8,16,.85) 50%, rgba(6,8,16,.6) 100%); }
.hero-content { position: relative; z-index: 2; }
.hero-kicker { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 600; }
.hero h1 { font-family: var(--font-head); font-size: clamp(48px, 8vw, 96px); font-weight: 500; color: var(--white); line-height: 1.05; margin-bottom: 28px; letter-spacing: 1px; }
.gold-text { color: var(--gold); text-shadow: 0 0 40px rgba(74,158,255,.4), 0 0 80px rgba(74,158,255,.15); }
.hero-lead { font-size: 17px; color: var(--muted); max-width: 520px; margin-bottom: 40px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust { display: flex; gap: 48px; }
.trust-item { text-align: left; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 32px; color: var(--gold); font-weight: 600; }
.trust-item span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.hero-scroll { position: absolute; right: 36px; bottom: 14px; color: var(--muted); font-size: 20px; animation: scroll-bob 2s infinite; z-index: 2; }
@keyframes scroll-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ── Buttons ── */
.btn { display: inline-block; padding: 14px 32px; font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; transition: all .25s; cursor: pointer; border: 1px solid transparent; text-align: center; border-radius: 50px; }
.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-blue { background: linear-gradient(135deg, #4a9eff, #2563a8); color: #fff; border-color: #4a9eff; box-shadow: var(--glow); }
.btn-blue:hover { background: linear-gradient(135deg, #7ebcff, #4a9eff); border-color: #7ebcff; box-shadow: 0 0 30px rgba(74,158,255,.3); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--gold); color: #fff; }

/* ── Sections ── */
.section { padding: 100px 0; }
.section-alt { background: var(--dark); }
.section-dark { background: var(--dark); }
.section-head { margin-bottom: 64px; max-width: 640px; }
.section-head.light { color: var(--white); }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: var(--muted); }
.section-kicker { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.section-kicker.light { color: var(--gold); }
.section-head h2 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 52px); font-weight: 500; color: var(--white); line-height: 1.1; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ── Grids ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Buy Cards ── */
.buy-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.buy-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.buy-img { height: 220px; background-size: cover; background-position: center; }
.buy-body { padding: 28px; }
.buy-body h3 { font-family: var(--font-head); font-size: 22px; color: var(--white); margin-bottom: 10px; font-weight: 500; }
.buy-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; line-height: 1.7; }
.link { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.link:hover { color: var(--gold-lt); }

/* ── Stats Band ── */
.stats-band { background: linear-gradient(135deg, #0c1020, #1a2040); padding: 48px 0; border-top: 1px solid rgba(74,158,255,.1); border-bottom: 1px solid rgba(74,158,255,.1); }
.stats-band .container { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 24px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 40px; color: var(--gold); font-weight: 700; margin-bottom: 4px; text-shadow: 0 0 20px rgba(74,158,255,.3); }
.stat span { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); font-weight: 600; }

/* ── Steps ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; padding: 40px 32px; background: var(--card); border: 1px solid var(--border); }
.step-num { font-family: var(--font-head); font-size: 56px; color: var(--gold); font-weight: 600; margin-bottom: 16px; line-height: 1; }
.step h3 { font-family: var(--font-head); font-size: 24px; color: var(--white); margin-bottom: 12px; font-weight: 500; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Watch Grid ── */
.watch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.watch-card { overflow: hidden; position: relative; border: 1px solid var(--border); }
.watch-img { height: 280px; background-size: cover; background-position: center; transition: transform .4s; }
.watch-card:hover .watch-img { transform: scale(1.05); }
.watch-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,.9)); }
.watch-label h4 { font-family: var(--font-head); font-size: 18px; color: var(--white); font-weight: 600; }
.watch-label p { font-size: 12px; color: var(--muted); }

/* ── Why Us ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img { position: relative; }
.why-img img { width: 100%; height: auto; border: 1px solid var(--border); }
.why-badge { position: absolute; bottom: -20px; right: -20px; background: linear-gradient(135deg, #4a9eff, #2563a8); padding: 20px 28px; text-align: center; box-shadow: var(--glow); }
.why-badge strong { display: block; font-family: var(--font-head); font-size: 28px; color: #fff; font-weight: 700; }
.why-badge span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.7); }
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { font-size: 24px; flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--border); }
.why-item h4 { font-family: var(--font-head); font-size: 18px; color: var(--white); margin-bottom: 4px; font-weight: 600; }
.why-item p { font-size: 13px; color: var(--muted); }

/* ── Testimonials ── */
.testimonial { background: var(--card); border: 1px solid var(--border); padding: 32px; }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 4px; }
.testimonial p { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.who { font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* ── FAQ ── */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-size: 16px; font-weight: 500; color: var(--white); transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-q span { color: var(--gold); font-size: 24px; transition: transform .3s; }
.faq-item.open .faq-q span { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 0 20px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.8; }

/* ── Contact ── */
.section-cta { background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.contact-form { background: var(--card); border: 1px solid var(--border); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 14px 16px; background: var(--black); border: 1px solid var(--border); color: var(--white); font-family: var(--font-body); font-size: 14px; transition: border-color .2s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
.form-field textarea { height: 100px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.hidden { display: none; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.info-block { background: var(--card); border: 1px solid var(--border); padding: 24px; }
.info-icon { font-size: 24px; margin-bottom: 12px; }
.info-block h4 { font-family: var(--font-head); font-size: 18px; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.info-block p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.info-block a { color: var(--gold); }
.hours { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.hours:last-child { border-bottom: none; }
.hours span:first-child { color: var(--muted); }
.hours span:last-child { color: var(--text); }

/* ── Footer Map ── */
.footer-map { width: 100%; aspect-ratio: 1 / 1; margin-top: 0; border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 16px 40px rgba(0,0,0,.5); }
.footer-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) contrast(1.05); }

/* ── Footer ── */
.footer { background: var(--black); border-top: 1px solid var(--border); padding: 28px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr 2fr; gap: 32px; margin-bottom: 48px; align-items: start; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-col h4 { font-family: var(--font-head); font-size: 16px; color: var(--white); margin-bottom: 16px; font-weight: 600; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); padding: 4px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer-col a { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); }

/* ── Float Phone ── */
.float-phone { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: linear-gradient(135deg, #4a9eff, #2563a8); display: flex; align-items: center; justify-content: center; font-size: 24px; border-radius: 50%; box-shadow: 0 4px 30px rgba(74,158,255,.4); z-index: 99; transition: transform .2s; }
.float-phone:hover { transform: scale(1.1); box-shadow: 0 4px 40px rgba(74,158,255,.6); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .watch-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-map { width: 100%; max-width: 500px; aspect-ratio: 1 / 1; margin: 0 auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 24px; }
  .trust-item strong { font-size: 24px; }
  .nav-inner { padding: 16px 20px 8px 20px; }
  .nav-logo { height: 50px !important; }
  .nav-links { gap: 16px 24px; flex-shrink: 0; }
  .nav-links a { font-size: 12px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-inner { padding: 12px 16px 8px 16px; }
  .nav-logo { height: 45px !important; }
  .grid-3 { grid-template-columns: 1fr; }
  .watch-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-item strong { font-size: 20px; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-map { width: 100%; max-width: 400px; aspect-ratio: 1 / 1; margin: 0 auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .topbar-inner { flex-direction: column; gap: 4px; }
  .why-badge { bottom: 10px; right: 10px; padding: 12px 16px; }
  .why-badge strong { font-size: 20px; }
}
@media (max-width: 480px) {
  .watch-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { padding: 16px 24px; }
}

/* ── Buy More Tags ── */
.buy-more { margin-top: 40px; padding: 28px 32px; background: var(--card); border: 1px solid var(--border); }
.buy-more-title { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.buy-more-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.buy-more-tags span { padding: 6px 14px; background: var(--black); border: 1px solid var(--border); font-size: 12px; color: var(--muted); letter-spacing: 1px; }

/* ── Repair Cards ── */
.repair-card { background: var(--card); border: 1px solid var(--border); padding: 32px; transition: all .3s; }
.repair-card:hover { border-color: var(--gold-dk); transform: translateY(-3px); }
.repair-icon { font-size: 32px; margin-bottom: 16px; }
.repair-card h3 { font-family: var(--font-head); font-size: 20px; color: var(--white); margin-bottom: 10px; font-weight: 500; }
.repair-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.repair-cta { margin-top: 40px; padding: 32px; background: var(--card); border: 1px solid var(--border); text-align: center; }
.repair-cta p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }

/* ── Shop Cards ── */
.shop-card { background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: all .3s; }
.shop-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.shop-img { height: 200px; background-size: cover; background-position: center; }
.shop-body { padding: 24px; }
.shop-body h3 { font-family: var(--font-head); font-size: 20px; color: var(--white); margin-bottom: 8px; font-weight: 500; }
.shop-body p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.shop-cta { margin-top: 40px; padding: 32px; background: var(--card); border: 1px solid var(--border); text-align: center; }
.shop-cta p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }

/* ── Price Grid ── */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.price-card { background: var(--card); border: 1px solid var(--border); padding: 28px; text-align: center; }
.price-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.price-value { font-family: var(--font-head); font-size: 32px; color: var(--gold); font-weight: 600; margin-bottom: 6px; }
.price-sub { font-size: 11px; color: var(--muted); }
.price-note { padding: 24px 32px; background: rgba(74,158,255,.06); border: 1px solid rgba(74,158,255,.15); }
.price-note p { font-size: 14px; color: var(--text); line-height: 1.7; }

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-more-tags { gap: 6px; }
  .buy-more-tags span { font-size: 11px; padding: 4px 10px; }
}
@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-value { font-size: 24px; }
}

/* ── Brands Band ── */
.brands-band { margin-top: 48px; padding: 32px; background: var(--card); border: 1px solid var(--border); text-align: center; }
.brands-title { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 20px; }
.brands-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
.brands-list span { font-family: var(--font-head); font-size: 16px; color: var(--text); font-weight: 500; letter-spacing: 1px; }
.brands-list span:not(:last-child)::after { content: '·'; margin-left: 16px; color: var(--gold); }

/* ── Brand Logos ── */
.brands-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 32px; }
.brand-logo { height: 56px; width: auto; opacity: 0.85; transition: all .3s; filter: brightness(0) invert(1); }
.brand-logo:hover { opacity: 1; transform: scale(1.05); }
.brand-text { font-family: var(--font-head); font-size: 18px; color: var(--gold); font-weight: 600; letter-spacing: 4px; opacity: 0.85; }

/* ── Blog Cards ── */
.blog-card { display: block; background: var(--card); border: 1px solid var(--border); overflow: hidden; transition: all .3s; text-decoration: none; }
.blog-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); box-shadow: var(--glow); }
.blog-img { height: 180px; background-size: cover; background-position: center; }
.blog-body { padding: 24px; }
.blog-tag { display: inline-block; padding: 4px 12px; background: rgba(74,158,255,.15); color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; border-radius: 20px; }
.blog-body h3 { font-family: var(--font-head); font-size: 18px; color: var(--white); margin-bottom: 8px; font-weight: 500; }
.blog-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.blog-cta { margin-top: 40px; padding: 32px; background: var(--card); border: 1px solid var(--border); text-align: center; }
.blog-cta p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }

/* ── Blog Article Pages ── */
.blog-hero { position: relative; height: 50vh; min-height: 350px; display: flex; align-items: flex-start; overflow: hidden; }
.blog-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.blog-hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(6,8,16,.95) 0%, transparent 70%); }
.blog-hero-content { position: relative; z-index: 2; padding-top: 80px; }
.blog-back { position: absolute; top: 24px; left: 24px; display: inline-block; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin: 0; text-decoration: none; z-index: 3; background: rgba(0,0,0,.5); padding: 10px 18px; border-radius: 30px; }
.blog-back:hover { color: var(--gold); }
.blog-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 5vw, 56px); color: var(--white); font-weight: 500; line-height: 1.1; margin-bottom: 12px; }
.blog-meta { font-size: 13px; color: var(--white); letter-spacing: 1px; }
.blog-article { padding: 64px 0; }
.blog-article .container { max-width: 800px; }
.blog-article h2 { font-family: var(--font-head); font-size: 28px; color: var(--white); font-weight: 500; margin: 40px 0 16px; }
.blog-article p { font-size: 16px; color: var(--text); line-height: 1.9; margin-bottom: 20px; }
.blog-faq { margin-top: 48px; padding: 32px; background: var(--card); border: 1px solid var(--border); }
.blog-faq h2 { font-family: var(--font-head); font-size: 24px; color: var(--white); margin-bottom: 24px; font-weight: 500; }
.blog-cta-box { margin-top: 56px; padding: 48px; background: linear-gradient(135deg, rgba(74,158,255,.08), rgba(37,99,168,.08)); border: 1px solid rgba(74,158,255,.15); text-align: center; }
.blog-cta-box h2 { font-family: var(--font-head); font-size: 28px; color: var(--white); margin-bottom: 12px; font-weight: 500; }
.blog-cta-box p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.blog-cta-box .btn { margin: 0 8px 8px 0; }
