/* ── THE PROOF GLOBAL — style.css ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #c8a96e;
  --gold-light: #e4c992;
  --gold-dim: rgba(200,169,110,0.18);
  --bg: #09090f;
  --bg2: #0e0e16;
  --white: #f5f4f0;
  --muted: rgba(245,244,240,0.55);
  --border: rgba(200,169,110,0.13);
  --glass: rgba(255,255,255,0.04);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw; height: 72px;
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 0.12em;
  color: var(--white); text-decoration: none;
}
.nav-logo-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #8b6a2e);
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── LOGO IMAGE ── */
.nav-logo-img {
  width: 40px; height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(200,169,110,0.35));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav-logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 4px 16px rgba(200,169,110,0.55));
}
.footer-logo-img {
  width: 48px; height: 48px;
}

.nav-links { display: flex; gap: 8px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; padding: 8px 16px;
  border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: var(--glass); }
.nav-links a.nav-cta {
  background: var(--gold); color: #09090f; font-weight: 700;
  padding: 8px 20px;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); }

/* Mobile nav */
.nav-burger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 899;
  background: rgba(9,9,15,0.97); backdrop-filter: blur(20px);
  padding: 24px 5vw; border-bottom: 1px solid var(--border);
  flex-direction: column; gap: 4px;
}
.mobile-menu a {
  color: var(--muted); text-decoration: none; padding: 12px 16px;
  border-radius: 8px; font-size: 1rem; font-weight: 500; display: block;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); background: var(--glass); }
.mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── SECTIONS ── */
section {
  padding: 100px 5vw;
  position: relative;
}
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-label.center { text-align: center; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 56px;
}
.section-title.center { text-align: center; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 0.95rem;
  font-weight: 700; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: 'Outfit', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #8b6a2e);
  color: #09090f;
  box-shadow: 0 8px 32px rgba(200,169,110,0.25);
}
.btn-primary:hover { box-shadow: 0 12px 40px rgba(200,169,110,0.4); }
.btn-glass {
  background: var(--glass); color: var(--white);
  border: 1px solid var(--border); backdrop-filter: blur(10px);
}
.btn-glass:hover { background: rgba(255,255,255,0.08); }

/* ── GLASS CARDS ── */
.glass-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius); backdrop-filter: blur(12px);
  padding: 32px; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,169,110,0.35);
  box-shadow: 0 20px 60px rgba(200,169,110,0.08);
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  color: var(--gold); margin-bottom: 24px; position: relative; z-index: 1;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }

/* ── ORBs ── */
.orb {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; background: rgba(200,169,110,0.07); }
.orb-2 { width: 400px; height: 400px; bottom: 0; left: -150px; background: rgba(100,80,200,0.04); }
.orb-3 { width: 300px; height: 300px; top: 40%; left: 30%; background: rgba(200,169,110,0.04); }

/* ── STATS ── */
.hero-stats {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--gold); letter-spacing: 0.06em; }
.stat-label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(200,169,110,0.03); }
.marquee-track { display: flex; animation: marquee 30s linear infinite; white-space: nowrap; }
.marquee-item { font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); padding-right: 0; flex-shrink: 0; }
.dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); margin: 0 16px; vertical-align: middle; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.service-card { text-decoration: none; color: inherit; display: block; }
.service-icon { font-size: 2rem; margin-bottom: 16px; }
.service-name { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }
.service-link { font-size: 0.8rem; font-weight: 700; color: var(--gold); margin-top: 16px; letter-spacing: 0.05em; }

/* ── CTA BAND ── */
.cta-band {
  padding: 80px 5vw; text-align: center;
  background: linear-gradient(135deg, rgba(200,169,110,0.1), rgba(200,169,110,0.04));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 3.2rem); letter-spacing: 0.06em; color: var(--white); margin-bottom: 16px; }
.cta-band p { color: var(--muted); font-size: 1rem; max-width: 560px; margin: 0 auto 32px; }

/* ── WHY GRID ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.why-card { display: flex; align-items: flex-start; gap: 20px; }
.why-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--gold-dim); letter-spacing: 0.06em; flex-shrink: 0; }

/* ── PORTFOLIO GRID ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.portfolio-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.portfolio-name { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.portfolio-desc { font-size: 0.85rem; color: var(--muted); }

/* ── TESTIMONIAL GRID ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.testimonial-role { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: var(--glass); color: var(--white);
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  font-family: 'Outfit', sans-serif; text-align: left; gap: 16px;
}
.faq-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 200px; padding: 16px 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── FOOTER ── */
footer {
  background: rgba(5,5,10,0.98); border-top: 1px solid var(--border);
  padding: 80px 5vw 40px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin: 16px 0 24px; max-width: 320px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.footer-col h4 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.78rem; color: rgba(245,244,240,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(245,244,240,0.3); text-decoration: none; }
.footer-legal a:hover { color: var(--muted); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fade-up { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── SERVICE PAGE BANNER ── */
.service-banner {
  min-height: 520px; display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative; overflow: hidden; padding: 80px 5vw 60px;
  margin-top: 72px;
}
.service-banner-img {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.service-banner-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,15,1) 0%, rgba(9,9,15,0.7) 40%, rgba(9,9,15,0.3) 100%);
}
.service-banner-content { position: relative; z-index: 1; max-width: 700px; }
.service-banner-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 40px; padding: 6px 18px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--gold); margin-bottom: 20px; text-transform: uppercase;
}
.service-banner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95; letter-spacing: 0.04em; color: var(--white);
  margin-bottom: 20px;
}
.service-banner h1 span { color: var(--gold); }
.service-banner p { font-size: 1.05rem; color: var(--muted); max-width: 540px; line-height: 1.7; margin-bottom: 28px; }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--glass); border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 18px; color: var(--white);
  font-size: 0.95rem; font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: rgba(200,169,110,0.5);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select option { background: #1a1a28; color: var(--white); }

/* Success msg */
.form-success {
  display: none; background: rgba(200,169,110,0.12); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px; margin-top: 16px;
  color: var(--gold); font-weight: 600; text-align: center; font-size: 0.95rem;
}

/* ── STICKY SIDE BUTTONS ── */
.sticky-side {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 800; display: flex; flex-direction: column; gap: 0;
}
.sticky-btn {
  writing-mode: vertical-rl; text-orientation: mixed;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 20px 12px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: none;
  transition: padding 0.2s, background 0.2s;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
}
.sticky-btn:first-child {
  background: linear-gradient(180deg, var(--gold), #8b6a2e);
  color: #09090f;
  border-radius: 10px 0 0 0;
}
.sticky-btn:first-child:hover { background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.sticky-btn:last-child {
  background: #25d366;
  color: #fff;
  border-radius: 0 0 0 10px;
}
.sticky-btn:last-child:hover { background: #1ebe58; }
.sticky-btn svg { flex-shrink: 0; width: 16px; height: 16px; }
@media (max-width: 480px) {
  .sticky-btn { padding: 16px 10px; font-size: 0.65rem; }
}

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold), #4a3a10);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #09090f;
}
.team-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--muted); }

/* ── PAGE HEADER (non-banner pages) ── */
.page-header {
  padding: 160px 5vw 80px; text-align: center;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,0.1) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: 0.05em; color: var(--white); margin-bottom: 16px;
}
.page-header h1 span { color: var(--gold); }
.page-header p { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── PROCESS STEPS ── */
.steps-list { display: flex; flex-direction: column; gap: 24px; max-width: 700px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--gold);
}
.step-content .step-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-content .step-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.pricing-card { text-align: center; position: relative; }
.pricing-card.featured { border-color: rgba(200,169,110,0.5); }
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #09090f; font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
}
.pricing-plan { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.pricing-price { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--white); letter-spacing: 0.04em; margin-bottom: 4px; }
.pricing-price span { font-size: 1.2rem; vertical-align: top; margin-top: 12px; display: inline-block; }
.pricing-period { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.875rem; color: var(--muted); display: flex; gap: 10px; }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── GLOBAL CONTENT CENTER ALIGNMENT ── */

/* Sections default center */
section { text-align: center; }

/* Section labels & titles */
.section-label { text-align: center; }
.section-title { text-align: center; margin-left: auto; margin-right: auto; }

/* Service cards */
.service-card { text-align: center; }
.service-icon { display: block; }
.service-link { display: block; }

/* Why / feature cards */
.why-card { flex-direction: column; align-items: center; text-align: center; }
.why-num { margin-bottom: 8px; }

/* Portfolio cards */
.portfolio-card { text-align: center; }

/* Testimonial cards */
.testimonial-card { text-align: center; }

/* Team cards */
.team-card { text-align: center; }

/* Page header */
.page-header { text-align: center; }
.page-header p { text-align: center; }

/* About page intro section prose */
section p { text-align: center; margin-left: auto; margin-right: auto; }

/* Pricing features list stays left-aligned for readability */
.pricing-features { text-align: left; }

/* Steps — center the number + keep text readable */
.steps-list { margin-left: auto; margin-right: auto; }
.step { flex-direction: column; align-items: center; text-align: center; }
.step-content .step-title { text-align: center; }
.step-content .step-desc { text-align: center; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band p { text-align: center; }

/* Service banner — keep left-aligned for visual drama */
.service-banner { text-align: left; }
.service-banner p { text-align: left; margin-left: 0; }
.service-banner-content { text-align: left; }

/* Contact grid — form labels & inputs stay left */
.contact-grid { text-align: left; }
.contact-grid p { text-align: left; margin-left: 0; }
.form-group label { text-align: left; }

/* Footer — keep its own alignment */
footer { text-align: left; }
footer p { text-align: left; margin-left: 0; }
.footer-desc { text-align: left; }

/* Nav stays flex, no change */
nav { text-align: left; }

/* Breadcrumb left on service pages */
.breadcrumb { text-align: left; }

/* Process grid right-column card stays center */
.process-grid .glass-card { text-align: center; }
.process-grid .glass-card p { text-align: center; }

/* Hero section already centered */
.hero { text-align: center; }
.hero p { text-align: center; }

/* FAQ question text left */
.faq-q { text-align: left; }
.faq-a { text-align: left; }
