/* ══════════════════════════════════════════
   1000PILLARS – SHARED STYLESHEET
   ══════════════════════════════════════════ */

:root {
  --red: #e8001d;
  --red-dark: #c00018;
  --black: #0d0d0d;
  --dark: #111317;
  --mid: #1c1f24;
  --grey: #2a2d35;
  --text: #c8c9cc;
  --light: #f0f0f0;
  --white: #ffffff;
  --gold: #c9a84c;
  --radius: 0px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,0,29,0.25);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background 0.3s;
}
nav.scrolled { background: rgba(13,13,13,0.98); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 2px; color: var(--white);
}
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex; gap: 32px;
  font-size: 13px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
}
.nav-links a { color: #aaa; transition: color 0.2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--red);
}

.nav-contact {
  display: flex; gap: 20px; font-size: 13px; color: var(--text);
}
.nav-contact a { display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.nav-contact a:hover { color: var(--red); }

.nav-cta {
  background: var(--red); color: #fff;
  padding: 10px 22px; font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; cursor: pointer; transition: background 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none; background: none; border: none;
  color: #fff; font-size: 24px; cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(13,13,13,0.98);
  flex-direction: column; align-items: center;
  padding: 40px 24px; gap: 0; z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; width: 100%; text-align: center;
  padding: 18px 0; font-size: 16px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #aaa; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); }
.mobile-menu .mobile-contact {
  margin-top: 24px; display: flex; flex-direction: column;
  gap: 12px; width: 100%; align-items: center;
}
.mobile-menu .mobile-contact a {
  border: none; font-size: 14px; padding: 8px 0;
  text-transform: none; letter-spacing: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: var(--text);
}
.mobile-menu .nav-cta {
  margin-top: 20px; padding: 14px 40px; font-size: 14px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: #fff;
  padding: 15px 36px; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-block; transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'Barlow', sans-serif;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 15px 36px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-block; transition: border-color 0.2s, color 0.2s;
  background: transparent; cursor: pointer; font-family: 'Barlow', sans-serif;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

.btn-white {
  background: var(--white); color: var(--red);
  padding: 15px 36px; font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  display: inline-block; transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: 'Barlow', sans-serif;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ── SECTION COMMONS ── */
section { padding: 100px 5%; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white); letter-spacing: 1px; margin-bottom: 16px;
}
.section-text {
  font-size: 16px; color: #7a7d84;
  max-width: 620px; margin-bottom: 48px;
}
.section-center { text-align: center; }
.section-center .section-text { margin-left: auto; margin-right: auto; }

.divider { width: 48px; height: 3px; background: var(--red); margin: 16px 0 32px; }

/* ── PAGE BANNER ── */
.page-banner {
  padding: 160px 5% 80px;
  background: linear-gradient(160deg, #0d0d0d 40%, #1a0507 100%);
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/banner-bg.jpg') center/cover no-repeat;
  opacity: 0.08;
}
.page-banner::after {
  content: ''; position: absolute;
  right: -120px; bottom: -100px;
  width: 500px; height: 500px;
  background: var(--red); opacity: 0.06;
  border-radius: 50%; filter: blur(80px);
}
.banner-inner { position: relative; z-index: 1; }
.banner-label {
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  border-left: 3px solid var(--red); padding-left: 12px;
  margin-bottom: 20px;
}
.page-banner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  color: var(--white); letter-spacing: 2px;
}
.breadcrumb {
  margin-top: 16px; font-size: 14px; color: #666;
}
.breadcrumb a { color: #888; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); margin: 0 8px; }

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

/* ── HOW / PROCESS CARDS ── */
.how-card {
  background: var(--mid); padding: 48px 40px;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.how-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--red);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.how-card:hover { background: #1a1d22; }
.how-card:hover::before { transform: scaleX(1); }
.how-icon { font-size: 32px; color: var(--red); margin-bottom: 24px; }
.how-card h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 26px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 14px;
}
.how-card p { font-size: 15px; color: #7a7d84; line-height: 1.8; }
.card-num {
  position: absolute; top: 32px; right: 36px;
  font-family: 'Bebas Neue', sans-serif; font-size: 72px;
  color: rgba(255,255,255,0.04); line-height: 1;
}

/* ── SERVICE CARDS ── */
.service-card {
  border: 1px solid rgba(255,255,255,0.06);
  padding: 36px 32px; position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--red); transform: translateY(-4px); }
.service-icon {
  width: 52px; height: 52px; border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--red); margin-bottom: 24px;
}
.service-card h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: #7a7d84; }

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 60px;
}
.pricing-card {
  background: var(--mid); padding: 48px 40px;
  position: relative; text-align: center;
}
.pricing-card.featured { background: var(--red); }
.pricing-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 20px; color: rgba(255,255,255,0.7);
}
.pricing-card.featured .pricing-badge { border-color: rgba(255,255,255,0.5); }
.pricing-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 32px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 8px;
}
.pricing-rate {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: var(--white); line-height: 1; margin-bottom: 4px;
}
.pricing-rate sub {
  font-family: 'Barlow', sans-serif; font-size: 16px;
  font-weight: 400; color: rgba(255,255,255,0.6); vertical-align: baseline;
}
.pricing-unit {
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 36px;
}
.pricing-features { margin-bottom: 40px; }
.pricing-features li {
  padding: 12px 0; font-size: 14px; color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.pricing-features li i { font-size: 12px; color: var(--gold); }
.btn-package {
  display: block; padding: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; transition: all 0.2s;
}
.btn-package:hover { background: rgba(255,255,255,0.1); }
.pricing-card.featured .btn-package {
  background: var(--white); color: var(--red); border-color: transparent;
}
.pricing-card.featured .btn-package:hover { background: #f0f0f0; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red); padding: 40px 5%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.stats-bar-item { text-align: center; }
.stats-bar-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 52px;
  color: var(--white); line-height: 1;
}
.stats-bar-label {
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}

/* ── TEAM CARDS ── */
.team-card { position: relative; overflow: hidden; }
.team-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(30%); transition: filter 0.4s, transform 0.4s;
}
.team-card:hover img { filter: grayscale(0%); transform: scale(1.04); }
.team-info { background: var(--mid); padding: 20px 22px; }
.team-info h5 {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 4px;
}
.team-info span {
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
}

/* ── TESTIMONIAL CARDS ── */
.testi-card {
  background: var(--mid); padding: 36px 32px;
  border-left: 3px solid transparent; transition: border-color 0.3s;
}
.testi-card:hover { border-left-color: var(--red); }
.testi-quote { font-size: 40px; color: var(--red); line-height: 1; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: #8a8d94; line-height: 1.8; margin-bottom: 28px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--red);
}
.testi-author-info h6 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.testi-author-info span { font-size: 12px; color: #666; letter-spacing: 0.5px; }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img { position: relative; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px; background: var(--red);
}

/* ── PRINCIPLES ── */
.principles-list { list-style: none; }
.principles-list li {
  padding: 16px 0; font-size: 15px; color: #9a9ca0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: flex-start; gap: 12px;
}
.principles-list li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free';
  font-weight: 900; color: var(--red); font-size: 12px; margin-top: 4px;
  flex-shrink: 0;
}

/* ── SKILL BARS ── */
.skillbar-wrap { margin-bottom: 24px; }
.skillbar-title {
  display: flex; justify-content: space-between;
  font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 10px;
}
.skillbar-track {
  width: 100%; height: 6px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.skillbar-fill { height: 100%; background: var(--red); transition: width 1s ease; }

/* ── CONTACT SECTION ── */
.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px;
}
.contact-info h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 20px;
}
.contact-info p { font-size: 15px; color: #7a7d84; margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px;
}
.contact-detail-icon {
  width: 42px; height: 42px; border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.contact-detail-text span {
  display: block; font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #555; margin-bottom: 4px;
}
.contact-detail-text a,
.contact-detail-text p { font-size: 15px; color: var(--text); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--red); }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: var(--mid);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--white); padding: 14px 18px;
  font-family: 'Barlow', sans-serif; font-size: 15px;
  outline: none; margin-bottom: 16px; transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); }
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: var(--mid); color: var(--white); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-form button {
  background: var(--red); color: #fff; border: none;
  padding: 16px 40px; font-family: 'Barlow', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
  width: 100%;
}
.contact-form button:hover { background: var(--red-dark); }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px; margin-top: 48px;
}
.why-card {
  text-align: center; padding: 40px 28px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover { border-color: var(--red); transform: translateY(-4px); }
.why-card i { font-size: 36px; color: var(--red); margin-bottom: 20px; display: block; }
.why-card h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: #7a7d84; }

/* ── PROJECT / WORK CARDS ── */
.project-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.project-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; opacity: 0; transition: opacity 0.4s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay h4 {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 4px;
}
.project-overlay span {
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
}

/* ── FOOTER ── */
footer {
  background: #080909;
  border-top: 1px solid rgba(232,0,29,0.15);
  padding: 60px 5% 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
.footer-about .nav-logo { margin-bottom: 16px; }
.footer-about p { font-size: 14px; color: #666; line-height: 1.8; max-width: 320px; }
.footer-col h5 {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--white); letter-spacing: 1px; margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14px; color: #666;
  padding: 6px 0; transition: color 0.2s;
}
.footer-col a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: #444; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #666; transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--red); color: var(--red); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red); padding: 80px 5%; text-align: center;
}
.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white); letter-spacing: 1px; margin-bottom: 16px;
}
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #0d0d0d 40%, #1a0507 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 5% 80px;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
}
#hero::after {
  content: ''; position: absolute;
  right: -120px; bottom: -100px;
  width: 600px; height: 600px;
  background: var(--red); opacity: 0.07;
  border-radius: 50%; filter: blur(80px);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--red);
  border-left: 3px solid var(--red); padding-left: 12px; margin-bottom: 24px;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.95; color: var(--white);
  letter-spacing: 2px; margin-bottom: 28px;
}
.hero-title em { color: var(--red); font-style: normal; }
.hero-subtitle {
  font-size: 17px; font-weight: 300; color: #9a9ca0;
  max-width: 540px; margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: absolute; bottom: 60px; right: 5%;
  display: flex; gap: 48px; z-index: 1;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 48px;
  color: var(--white); line-height: 1;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #666;
}
.scroll-line {
  position: absolute; bottom: 30px; left: 5%;
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: #555; z-index: 1;
}
.scroll-line::before { content: ''; width: 40px; height: 1px; background: var(--red); }

/* ── MAP ── */
.map-wrap { width: 100%; height: 400px; margin-top: 48px; filter: grayscale(0.6); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ── THANK YOU ── */
.thankyou-wrap {
  min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 24px 60px;
  background: var(--dark);
}
.thankyou-wrap i { font-size: 64px; color: var(--red); margin-bottom: 24px; }
.thankyou-wrap h1 {
  font-family: 'Bebas Neue', sans-serif; font-size: 56px;
  color: var(--white); margin-bottom: 16px;
}
.thankyou-wrap p { font-size: 17px; color: #9a9ca0; margin-bottom: 36px; max-width: 480px; }

/* ── FAQ ACCORDION ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 16px; font-weight: 600; text-align: left;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q i { color: var(--red); font-size: 14px; transition: transform 0.3s; }
.faq-q.active i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 15px; color: #7a7d84; line-height: 1.8;
}
.faq-a-inner { padding: 0 0 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-contact { display: none; }
  .nav-toggle { display: block; }
  .hero-stats { position: static; flex-direction: row; margin-top: 60px; gap: 32px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 5%; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stats .stat-item { text-align: left; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  nav { padding: 0 4%; }
  .page-banner { padding: 140px 5% 60px; }
}
