/* ========== Reset & Base ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1e293b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
ul { list-style: none; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.accent { color: #046bd2; }
.section-eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #046bd2;
  margin-bottom: .9rem;
  padding: .35rem .85rem;
  background: rgba(4,107,210,.08);
  border-radius: 30px;
}
.section-eyebrow.light { color: #fff; background: rgba(255,255,255,.15); }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: .9rem; }
.section-head p { color: #475569; font-size: 1.02rem; }
.section-head.center.light h2, .section-head.center.light p { color: #fff; }
section { padding: 5.5rem 0; }

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .9rem 1.7rem;
  font-weight: 600; font-size: .95rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(4,107,210,.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(4,107,210,.7); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn.full { width: 100%; justify-content: center; }

/* ========== Header ========== */
.top-bar { background: #0f172a; color: #cbd5e1; font-size: .85rem; padding: .55rem 0; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.top-info span { margin-right: 1.4rem; }
.top-info i { color: #046bd2; margin-right: .35rem; }
.top-social a {
  display: inline-flex; width: 28px; height: 28px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 50%;
  margin-left: .4rem; font-size: .78rem;
}
.top-social a:hover { background: #046bd2; color: #fff; }

.main-nav { background: #fff; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 18px rgba(15,23,42,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-mark {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 1.1rem;
  box-shadow: 0 6px 16px -6px rgba(4,107,210,.6);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.1rem; color: #0f172a; font-weight: 700; }
.brand-text small { font-size: .72rem; color: #64748b; letter-spacing: .14em; text-transform: uppercase; }
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text small { color: #cbd5e1; }

.nav-links { display: flex; align-items: center; gap: .3rem; }
.nav-links a {
  padding: .6rem 1rem;
  font-weight: 500; color: #1e293b;
  border-radius: 6px;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active { color: #046bd2; background: rgba(4,107,210,.07); }
.nav-links .nav-cta {
  background: #046bd2; color: #fff !important; margin-left: .6rem;
}
.nav-links .nav-cta:hover { background: #045cb4; }
.nav-toggle {
  display: none; background: transparent; border: 0; font-size: 1.4rem; color: #1e293b; cursor: pointer;
}

/* ========== Hero ========== */
#hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4,107,210,.85), rgba(15,23,42,.78)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=80') center/cover no-repeat;
  padding: 6rem 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(4,107,210,.5), transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(2,40,90,.5), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; }
.hero-text { max-width: 740px; }
.eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: .45rem 1rem; border-radius: 30px;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}
#hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -.01em;
}
#hero p { font-size: 1.12rem; color: rgba(255,255,255,.88); margin-bottom: 2.2rem; max-width: 600px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 2rem; font-weight: 700; color: #fff; }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.75); letter-spacing: .05em; }

/* ========== About ========== */
#about { background: #f8fafc; }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.about-media {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 78%;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=900&q=80') center/cover;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.3);
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 55%;
  background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=700&q=80') center/cover;
  border-radius: 16px;
  border: 8px solid #f8fafc;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.35);
}
.about-badge {
  position: absolute; top: 30px; right: -10px;
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #fff;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  display: flex; gap: .8rem; align-items: center;
  box-shadow: 0 18px 32px -10px rgba(4,107,210,.55);
}
.about-badge strong { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge span { font-size: .82rem; line-height: 1.25; }
.about-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; line-height: 1.18; margin-bottom: 1.3rem; }
.about-text .lead { font-size: 1.08rem; color: #334155; margin-bottom: 1rem; }
.about-text p { color: #475569; margin-bottom: 1.4rem; }
.about-points { margin: 1.6rem 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.2rem; }
.about-points li { display: flex; align-items: center; gap: .55rem; font-size: .94rem; color: #1e293b; }
.about-points i { color: #046bd2; }

/* ========== Services ========== */
#services { background: #fff; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2rem 1.6rem;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #046bd2, #045cb4);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(15,23,42,.18); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(4,107,210,.12), rgba(4,107,210,.04));
  color: #046bd2;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: .6rem; color: #0f172a; }
.service-card p { font-size: .92rem; color: #64748b; margin-bottom: 1.2rem; }
.service-link { display: inline-flex; align-items: center; gap: .35rem; color: #046bd2; font-weight: 600; font-size: .88rem; }
.service-link:hover { gap: .6rem; }

/* ========== Showcase ========== */
#showcase { background: #f8fafc; }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1.2rem;
}
.show-card {
  position: relative;
  border-radius: 14px; overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px -12px rgba(15,23,42,.25);
}
.show-card.big { grid-column: span 2; grid-row: span 2; }
.show-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.show-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,.85));
}
.show-card:hover .show-img { transform: scale(1.08); }
.show-card figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.3rem; color: #fff; z-index: 2;
}
.show-card .tag {
  display: inline-block;
  background: rgba(4,107,210,.95); color: #fff;
  padding: .25rem .7rem; border-radius: 4px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .55rem;
}
.show-card h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: .15rem; }
.show-card small { font-size: .82rem; opacity: .85; }

/* ========== Why Us ========== */
#why-us {
  background:
    linear-gradient(135deg, rgba(15,23,42,.92), rgba(4,107,210,.88)),
    url('https://images.unsplash.com/photo-1581094794329-c8112a89af12?w=1600&q=80') center/cover fixed;
  color: #fff;
}
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.why-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all .3s ease;
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.12); }
.why-card i {
  font-size: 2.2rem; color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #38bdf8, #046bd2);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.why-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: .55rem; }
.why-card p { font-size: .9rem; color: rgba(255,255,255,.78); }

/* ========== Testimonials ========== */
#testimonials { background: #fff; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.testi-card {
  background: #f8fafc;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all .3s ease;
}
.testi-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 24px;
  font-size: 4rem; color: rgba(4,107,210,.15); font-family: serif;
  line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -16px rgba(15,23,42,.18); border-color: transparent; }
.stars { color: #fbbf24; margin-bottom: 1rem; font-size: .9rem; }
.stars i { margin-right: 2px; }
.testi-card p { color: #475569; font-size: .96rem; margin-bottom: 1.4rem; font-style: italic; }
.testi-meta { display: flex; align-items: center; gap: .9rem; padding-top: 1.2rem; border-top: 1px solid #e2e8f0; }
.avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #fff; font-weight: 600;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.testi-meta strong { display: block; color: #0f172a; font-size: .95rem; }
.testi-meta small { color: #64748b; font-size: .82rem; }

/* ========== Contact ========== */
#contact {
  background:
    linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: ''; position: absolute; top: -50%; right: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(4,107,210,.3), transparent 70%);
  pointer-events: none;
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.contact-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.2; margin: .9rem 0 1.2rem; }
.contact-info p { color: rgba(255,255,255,.78); font-size: 1.02rem; margin-bottom: 2rem; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-list li:last-child { border: 0; }
.contact-list i {
  width: 42px; height: 42px;
  background: rgba(4,107,210,.18); color: #38bdf8;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list strong { display: block; font-size: .82rem; color: #94a3b8; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem; }
.contact-list span { color: #fff; font-size: .96rem; }

.contact-form {
  background: #fff;
  color: #1e293b;
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1.4rem; color: #0f172a; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; margin-bottom: .9rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit; font-size: .94rem;
  margin-bottom: .9rem;
  transition: border .2s, box-shadow .2s;
  background: #f8fafc;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: #046bd2; background: #fff;
  box-shadow: 0 0 0 3px rgba(4,107,210,.12);
}
.contact-form textarea { resize: vertical; }

/* ========== Footer ========== */
#site-footer { background: #0a0f1c; color: #94a3b8; padding-top: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col p { font-size: .9rem; margin: 1.2rem 0 1.4rem; color: #94a3b8; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 1.2rem; position: relative; padding-bottom: .7rem; }
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 35px; height: 2px;
  background: linear-gradient(90deg, #046bd2, transparent);
}
.footer-col ul li { margin-bottom: .65rem; font-size: .92rem; }
.footer-col ul a:hover { color: #046bd2; padding-left: 4px; }
.contact-foot li { display: flex; gap: .6rem; align-items: flex-start; }
.contact-foot i { color: #046bd2; margin-top: 4px; }
.social { display: flex; gap: .55rem; }
.social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem;
}
.social a:hover { background: #046bd2; color: #fff; transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  font-size: .85rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ========== Call Float ========== */
#wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #046bd2; color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 12px 24px -8px rgba(4,107,210,.6);
  z-index: 99;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 24px -8px rgba(4,107,210,.6), 0 0 0 0 rgba(4,107,210,.4); }
  50% { box-shadow: 0 12px 24px -8px rgba(4,107,210,.6), 0 0 0 14px rgba(4,107,210,0); }
}
#wa-float:hover { transform: scale(1.08); }

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-media { height: 420px; }
  .service-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .show-card.big { grid-column: span 2; grid-row: span 1; height: 280px; }
  .show-card { height: 220px; }
}
@media (max-width: 720px) {
  section { padding: 4rem 0; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-info span { display: block; margin: 2px 0; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column; align-items: stretch;
    padding: 1rem; gap: .3rem;
    box-shadow: 0 20px 30px -10px rgba(15,23,42,.15);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all .25s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links .nav-cta { margin: .4rem 0 0; text-align: center; }
  .hero-stats { gap: 1.4rem; }
  .hero-stats strong { font-size: 1.5rem; }
  .service-grid, .why-grid, .footer-grid { grid-template-columns: 1fr; }
  .about-points { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ========== Inner Page Banner ========== */
.page-banner {
  position: relative;
  padding: 6rem 0 5rem;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(4,107,210,.88), rgba(15,23,42,.85)),
    url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1800&q=80') center/cover no-repeat;
}
.page-banner h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  margin-bottom: .9rem;
  line-height: 1.15;
}
.page-banner p { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 720px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex; gap: .6rem; align-items: center;
  margin-top: 1.4rem;
  font-size: .88rem; color: rgba(255,255,255,.78);
}
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: #38bdf8; }
.breadcrumb i { font-size: .7rem; }

/* Two-column content block */
.content-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.content-split.reverse > :first-child { order: 2; }
.content-split img.feature-img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,.3);
  aspect-ratio: 4/3; object-fit: cover;
}
.content-split h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; margin: .8rem 0 1.1rem; }
.content-split p { color: #475569; margin-bottom: 1rem; }
.content-split ul.checklist { margin: 1rem 0 1.6rem; display: grid; gap: .55rem; }
.content-split ul.checklist li { display: flex; gap: .55rem; align-items: flex-start; color: #1e293b; font-size: .95rem; }
.content-split ul.checklist i { color: #046bd2; margin-top: 5px; }

/* Feature trio (3 horizontal cards) */
.feature-trio {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem; margin-top: 1.5rem;
}
.feature-trio .ft-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 14px; padding: 1.8rem;
  transition: all .3s ease;
}
.feature-trio .ft-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -18px rgba(15,23,42,.15); border-color: transparent; }
.feature-trio i {
  font-size: 1.6rem; color: #046bd2; margin-bottom: .8rem;
  background: rgba(4,107,210,.1);
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feature-trio h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; color: #0f172a; }
.feature-trio p { font-size: .9rem; color: #64748b; }

/* Process timeline */
.process-list { display: grid; gap: 1.2rem; max-width: 800px; margin: 2rem auto 0; }
.process-step {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 1.4rem; align-items: flex-start;
  padding: 1.3rem 1.5rem;
  background: #fff; border-radius: 14px;
  border-left: 4px solid #046bd2;
  box-shadow: 0 6px 18px -10px rgba(15,23,42,.12);
}
.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #fff; font-weight: 700; font-size: 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: .25rem; color: #0f172a; }
.process-step p { font-size: .92rem; color: #64748b; margin: 0; }

/* Property/Project listing grid */
.listing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.listing-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all .3s ease;
}
.listing-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(15,23,42,.18); }
.listing-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.listing-body { padding: 1.3rem 1.4rem 1.6rem; }
.listing-body .tag {
  display: inline-block;
  background: rgba(4,107,210,.1); color: #046bd2;
  padding: .25rem .7rem; border-radius: 4px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .6rem;
}
.listing-body h4 { font-size: 1.1rem; font-weight: 600; color: #0f172a; margin-bottom: .3rem; }
.listing-body .loc { color: #64748b; font-size: .88rem; margin-bottom: .8rem; }
.listing-meta { display: flex; gap: 1rem; padding-top: .9rem; border-top: 1px solid #e2e8f0; color: #475569; font-size: .85rem; flex-wrap: wrap; }
.listing-meta span i { color: #046bd2; margin-right: .25rem; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, #046bd2, #045cb4);
  color: #fff;
  padding: 3.5rem 0;
}
.cta-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.cta-strip h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 700; }
.cta-strip p { color: rgba(255,255,255,.85); margin-top: .3rem; }
.cta-strip .btn { background: #fff; color: #046bd2; border-color: #fff; }
.cta-strip .btn:hover { background: #0f172a; color: #fff; border-color: #0f172a; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 1rem; }
.faq-item {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 12px;
  padding: 1.3rem 1.5rem; transition: all .25s;
}
.faq-item:hover { border-color: #046bd2; box-shadow: 0 10px 22px -14px rgba(4,107,210,.3); }
.faq-item summary {
  cursor: pointer; font-weight: 600; color: #0f172a;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.4rem; color: #046bd2; font-weight: 300; transition: transform .25s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: .8rem; color: #64748b; font-size: .94rem; line-height: 1.7; }

/* Map embed */
.map-wrap {
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 40px -18px rgba(15,23,42,.2);
  border: 1px solid #e2e8f0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

@media (max-width: 980px) {
  .content-split { grid-template-columns: 1fr; gap: 2rem; }
  .content-split.reverse > :first-child { order: initial; }
  .feature-trio, .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-strip .container { text-align: center; justify-content: center; }
}
@media (max-width: 720px) {
  .feature-trio, .listing-grid { grid-template-columns: 1fr; }
  .page-banner { padding: 4.5rem 0 3.5rem; }
}
