@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0a2342;
  --primary-light: #103766;
  --accent: #f0a500;
  --accent-light: #f7c346;
  --dark: #080f1a;
  --light: #f8f9fc;
  --text: #1a2235;
  --text-muted: #6b7a95;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--light);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  border-radius: 14px;
  transition: all .3s ease;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(240,165,0,.35); }

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  transition: all .3s ease;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(10,35,66,.25); }

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  transition: all .3s ease;
}
.btn-glass:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-light { background: rgba(10,35,66,.06); color: var(--primary); }
.tag-dark  { background: rgba(255,255,255,.1); color: var(--accent); border: 1px solid rgba(255,255,255,.15); }
.tag-accent { background: rgba(240,165,0,.12); color: #b37a00; }
.tag-red { background: #fff0f0; color: #e53e3e; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}
.section-title-white { color: var(--white); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 16px auto 0;
}
.section-sub-white { color: rgba(255,255,255,.6); }

.text-accent { color: var(--accent); }
.text-center { text-align: center; }

.card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(10,35,66,.07);
  box-shadow: 0 4px 24px rgba(10,35,66,.05);
  transition: all .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(10,35,66,.12); }

.card-glass {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: all .3s ease;
}
.card-glass:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }

.icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  flex-shrink: 0;
}
.icon-box-light { background: rgba(10,35,66,.07); color: var(--primary); }
.icon-box-accent { background: rgba(240,165,0,.15); color: var(--accent); }
.icon-box-red { background: #fff0f0; color: #e53e3e; }
.icon-box i { display:flex;align-items:center;justify-content:center;width:100%;height:100%;font-size:20px; }

/* ── HEADER ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 35, 66, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: all .4s ease;
  padding: 0;
}
header.scrolled {
  background: rgba(8, 25, 50, 0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo img { height: 40px; width: auto; }
.logo-dark { display: none; }
header.scrolled .logo-light { display: none; }
header.scrolled .logo-dark { display: block; }

nav { display: flex; align-items: center; gap: 36px; }
nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  position: relative;
  transition: color .2s;
}
nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform .25s ease;
}
nav a:hover { color: var(--accent); }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
nav a.active { color: var(--accent); }

header.scrolled nav a { color: rgba(255,255,255,.85); }
header.scrolled nav a:hover, header.scrolled nav a.active { color: var(--accent); }

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 800 !important;
  border-radius: 12px;
  transition: all .3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
header.scrolled .hamburger span { background: var(--white); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(8, 25, 50, 0.99);
  backdrop-filter: blur(20px);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  border-radius: 10px;
  transition: background .2s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(255,255,255,.08); color: var(--accent); }
.mobile-nav .nav-cta-mobile {
  margin-top: 8px;
  text-align: center;
  background: var(--accent) !important;
  color: var(--primary) !important;
  font-weight: 800 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a2342 0%, #103766 55%, #0d4f8c 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 76px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: .12;
}
.hero-blob1 {
  position: absolute;
  top: 10%; right: -5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(240,165,0,.08);
  filter: blur(80px);
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  filter: blur(60px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.trust-item i { color: var(--accent); font-size: 14px; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(240,165,0,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 18px;
}
.stat-value { font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.4; }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
}

/* ── SECTIONS GENERIC ── */
section { padding: 96px 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-2-text { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

/* ── PROBLEMS ── */
.problems { background: var(--light); }
.problem-card { padding: 28px; }
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.problem-note {
  margin-top: 56px;
  padding: 20px 28px;
  background: rgba(10,35,66,.05);
  border: 1px solid rgba(10,35,66,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── SERVICES ── */
.services-section { background: var(--primary); position: relative; overflow: hidden; }
.services-blob {
  position: absolute;
  top: -10%; right: -5%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(240,165,0,.06);
  filter: blur(80px);
  pointer-events: none;
}
.service-card { padding: 32px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
}
.card-glass:hover .service-more { opacity: 1; transform: translateY(0); }

/* ── HOW IT WORKS ── */
.steps-section { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(240,165,0,.2), var(--accent), rgba(240,165,0,.2));
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 16px 40px rgba(10,35,66,.2);
  transition: all .3s;
}
.step-circle:hover { transform: scale(1.08); box-shadow: 0 24px 60px rgba(10,35,66,.28); }
.step-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: .1em; text-transform: uppercase; }
.step-item h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* ── MID CTA ── */
.mid-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 72px 0;
}
.mid-cta h2 { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.mid-cta p { font-size: 17px; color: rgba(10,35,66,.65); margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── FAQ ── */
.faq-section { background: var(--light); }
details {
  background: var(--white);
  border: 1px solid rgba(10,35,66,.07);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,35,66,.04);
}
summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  transition: color .2s;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--accent); }
summary .faq-icon { flex-shrink: 0; font-size: 14px; color: var(--accent); transition: transform .3s; }
details[open] summary .faq-icon { transform: rotate(45deg); }
.faq-body {
  padding: 0 28px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid rgba(10,35,66,.06);
  padding-top: 16px;
}

/* ── AREAS ── */
.areas-section { background: var(--white); padding: 72px 0; }
.areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 40px; }
.area-pill {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--light);
  border: 1px solid rgba(10,35,66,.08);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all .3s;
}
.area-pill:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.area-pill i { color: var(--accent); margin-right: 6px; font-size: 11px; }

/* ── FINAL CTA ── */
.final-cta {
  background: linear-gradient(135deg, #0a2342 0%, #103766 55%, #0d4f8c 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta-blob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: rgba(240,165,0,.05);
  filter: blur(80px);
  pointer-events: none;
}
.final-cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 28px;
}
.final-cta h2 { font-size: clamp(30px,4vw,50px); font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.final-cta p { font-size: 17px; color: rgba(255,255,255,.6); max-width: 580px; margin: 0 auto 48px; line-height: 1.7; }
.final-note { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,.3); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  padding-top: 72px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 360px; margin: 20px 0 24px; }
.footer-nap { display: flex; flex-direction: column; gap: 10px; }
.nap-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.45); }
.nap-item i { color: var(--accent); width: 16px; }
.nap-item a { color: rgba(255,255,255,.45); transition: color .2s; }
.nap-item a:hover { color: var(--accent); }

.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: 8px;
  transition: color .2s;
}
.footer-links a::before {
  content: '';
  width: 16px; height: 1px;
  background: rgba(240,165,0,.3);
  transition: all .3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::before { width: 22px; background: var(--accent); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent); }

/* ── WA BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  animation: waPulse 2.5s infinite;
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.12); }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0a2342 0%, #103766 55%, #0d4f8c 100%);
  padding: 160px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-blob {
  position: absolute;
  bottom: -10%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(240,165,0,.07);
  filter: blur(70px);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(32px,4vw,52px); font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.1; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 600px; margin: 0 auto; line-height: 1.7; }
.page-hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; overflow: hidden; line-height: 0; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
.blog-featured { grid-row: span 1; }
.blog-card { border-radius: 20px; overflow: hidden; }
.blog-card img { width: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-card-img-wrap { overflow: hidden; }
.blog-featured .blog-card-img-wrap { height: 300px; }
.blog-small .blog-card-img-wrap { height: 180px; }
.blog-card-body { padding: 24px; }
.blog-cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 12px;
}
.cat-seo { background: #e6f1fb; color: #185fa5; }
.cat-gbp { background: #eaf3de; color: #3b6d11; }
.cat-rep { background: #faeeda; color: #854f0b; }
.cat-ads { background: #fcebeb; color: #a32d2d; }
.cat-site { background: #eeedfe; color: #534ab7; }
.cat-social { background: #fbeaf0; color: #993556; }

.blog-card-body h2, .blog-card-body h3 {
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color .2s;
}
.blog-card:hover h2, .blog-card:hover h3 { color: var(--accent); }
.blog-featured h2 { font-size: 22px; }
.blog-small h3 { font-size: 15px; }
.blog-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; gap: 16px; font-size: 12px; color: var(--text-muted); }
.blog-meta i { margin-right: 4px; }
.blog-read {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  transition: color .2s;
}
.blog-read:hover { color: var(--accent); }

.blog-grid-bottom { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 28px; }

/* ── SERVICES PAGE ── */
.service-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid rgba(10,35,66,.07);
}
.service-article:last-child { border-bottom: none; }
.service-article.reverse { direction: rtl; }
.service-article.reverse > * { direction: ltr; }
.service-article img { border-radius: 24px; box-shadow: 0 20px 60px rgba(10,35,66,.12); width: 100%; height: 320px; object-fit: cover; }
.service-subtitle { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.service-article h2 { font-size: 30px; font-weight: 800; color: var(--primary); margin-bottom: 18px; }
.service-article p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feature-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); }
.feature-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(240,165,0,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 10px;
}

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 72px; }
.about-img { border-radius: 24px; box-shadow: 0 20px 60px rgba(10,35,66,.12); width: 100%; height: 420px; object-fit: cover; }
.about-subtitle { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.about-text h2 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { padding: 28px; display: flex; gap: 18px; }
.value-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ PAGE ── */
.faq-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.faq-tab {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  border: 1px solid rgba(10,35,66,.1);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s;
}
.faq-tab.active, .faq-tab:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.faq-group { display: none; }
.faq-group.active { display: block; }

.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.contact-card { padding: 32px; text-align: center; }
.contact-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin: 16px 0 6px; }
.contact-card .sub { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
.contact-card a, .contact-card span { font-size: 14px; font-weight: 600; color: var(--primary); transition: color .2s; }
.contact-card a:hover { color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .grid-3, .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured, .blog-small { grid-column: auto; }
  .blog-grid-bottom { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .service-article, .about-grid, .grid-2-text { grid-template-columns: 1fr; }
  .service-article.reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero { padding-top: 76px; }
  .hero-inner { padding: 56px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .blog-grid-bottom { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 80px; }
}
