/* ============================
   HawkinsBIM — v1
   ============================ */

a { text-decoration: none !important; }

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

:root {
  --bg:       #0e1420;
  --bg2:      #141c2e;
  --bg3:      #1a2438;
  --bg-card:  #182030;
  --border:   rgba(255,255,255,0.12);
  --accent:   #00c8f0;
  --accent2:  #00a8cc;
  --accent-glow: rgba(0,200,240,0.2);
  --text:     #ffffff;
  --text-muted: rgba(255,255,255,0.72);
  --text-dim:   rgba(255,255,255,0.45);
  --radius:   8px;
  --max-w:    1200px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(16px, 1.2vw, 22px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HERO ENTRANCE ANIMATIONS ---- */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.hero-content .hero-tag  { animation: heroFadeUp 1.6s cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero-content h1          { animation: heroFadeUp 1.7s cubic-bezier(0.16,1,0.3,1) 0.35s both; }
.hero-content p           { animation: heroFadeUp 1.6s cubic-bezier(0.16,1,0.3,1) 0.6s  both; }
.hero-content .hero-btns  { animation: heroFadeUp 1.6s cubic-bezier(0.16,1,0.3,1) 0.8s  both; }
.hero-content .hero-badges{ animation: heroFadeUp 1.6s cubic-bezier(0.16,1,0.3,1) 1.0s  both; }
@media (prefers-reduced-motion: reduce) {
  .hero-content .hero-tag,
  .hero-content h1,
  .hero-content p,
  .hero-content .hero-btns,
  .hero-content .hero-badges { animation: none; }
}

/* ---- HERO BG IMAGE ---- */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.75;
}

/* ---- BANNER STRIP ---- */
.banner-strip {
  position: relative;
  overflow: hidden;
  max-height: 220px;
  line-height: 0;
}
.banner-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.6) saturate(0.7);
}
.banner-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg2) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
}

/* ---- ABOUT IMG ---- */
.about-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7,9,15,0.0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(7,9,15,0.88);
  border-color: var(--border);
  backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 88px;
  width: auto;
  display: block;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent);
  color: #000 !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* canvas removed */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,200,240,0.06) 0%, transparent 70%),
              linear-gradient(to bottom, rgba(14,20,32,0.15) 0%, rgba(14,20,32,0.35) 60%, var(--bg) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.hero-tag {
  display: inline-block;
  padding: 5px 16px;
  border: 1px solid rgba(0,180,216,0.4);
  border-radius: 32px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  background: rgba(0,180,216,0.06);
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  color: #000;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-badges svg { stroke: var(--accent); flex-shrink: 0; }

/* ---- ABOUT IMG GRID ---- */
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 12px;
  height: 100%;
}
.about-img-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
}
.about-img-secondary {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}
.hero-scroll svg { stroke: var(--accent); opacity: 0.6; }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- STATS ---- */
#stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 8px;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-suffix {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- SECTION COMMON ---- */
.section {
  padding: 100px 24px;
}
.section-alt { background: var(--bg2); }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  border-color: rgba(0,180,216,0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,180,216,0.12);
}
.service-img {
  margin: -32px -28px 24px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 180px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.04);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0,180,216,0.2);
}
.service-icon svg { stroke: var(--accent); }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--accent); }
.service-link svg { stroke: var(--accent); }

/* ---- WHY ---- */
.why-section { background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-visual {
  position: relative;
}
.why-visual-inner {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-bim-graphic {
  width: 80%;
  opacity: 0.85;
}
.why-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: #000;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,180,216,0.35);
}
.why-badge strong { font-size: 1.3rem; display: block; }
.why-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.why-text h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.why-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-content .section-label { text-align: left; display: block; }
.about-content .section-title { text-align: left; }
.about-content p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-content p:last-of-type { margin-bottom: 28px; }
.about-visual {
  position: relative;
}
.about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px;
}
.about-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.about-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}
.about-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 32px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ---- TOOLS MARQUEE ---- */
#tools {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  overflow: hidden;
}
.marquee-wrap {
  display: flex;
  gap: 0;
  width: fit-content;
  animation: marquee 28s linear infinite;
}
.marquee-wrap:hover { animation-play-state: paused; }
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}
.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tool-logo-img {
  width: auto;
  height: 32px;
  max-width: 90px;
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
  object-fit: contain;
}
.tool-item svg { opacity: 0.5; }
.tool-divider {
  width: 4px;
  height: 4px;
  background: var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- CONTACT ---- */
#contact {
  background: var(--bg);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-text .section-label { text-align: left; display: block; }
.contact-text .section-title { text-align: left; }
.contact-text p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}
.contact-item:hover { border-color: rgba(0,180,216,0.3); }
.contact-item-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-glow);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(0,180,216,0.2);
}
.contact-item-icon svg { stroke: var(--accent); }
.contact-item-text {
  display: flex;
  flex-direction: column;
}
.contact-item-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-item-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.contact-cta-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
}
.contact-cta-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.contact-cta-card h3 span { color: var(--accent); }
.contact-cta-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 28px;
}
.contact-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  background: #25d366;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s;
}
.btn-wa:hover { background: #1eb559; transform: translateY(-2px); color: #000; }
.btn-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  background: transparent;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-email:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---- FOOTER ---- */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-copy {
  color: var(--text-dim);
  font-size: 0.8rem;
}

/* ---- BACK TO TOP ---- */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 50;
  width: 44px;
  height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
#back-top:hover { background: var(--accent-glow); border-color: var(--accent); }
#back-top svg { stroke: var(--text-muted); }
#back-top.visible { display: flex; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7,9,15,0.97);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
    backdrop-filter: blur(14px);
  }
  .nav-toggle { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-right: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content h1 { font-size: 2rem; }
  .section { padding: 72px 24px; }
  .why-grid { gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; }
  .marquee-wrap { animation: none; }
}

/* ============================
   Services Page
   ============================ */

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  text-align: center;
}
.svc-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(14,20,32,0.4) 0%, rgba(14,20,32,0.2) 50%, var(--bg) 100%);
  pointer-events: none;
}
.svc-hero-content {
  position: relative;
  z-index: 2;
}
.svc-hero .section-label { margin-bottom: 14px; display: block; }
.svc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.svc-hero h1 span { color: var(--accent); }
.svc-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.svc-section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}
.svc-section:nth-child(even) { background: var(--bg2); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.svc-grid.flip .svc-text { order: 2; }
.svc-grid.flip .svc-img  { order: 1; }

.svc-text .section-label { margin-bottom: 10px; display: block; }
.svc-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 18px;
}
.svc-text h2 span { color: var(--accent); }
.svc-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.svc-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
  margin: 22px 0 32px;
}
.svc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.svc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.svc-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg3);
}
.svc-img img,
.svc-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-cta-strip {
  padding: 88px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.svc-cta-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.svc-cta-strip h2 span { color: var(--accent); }
.svc-cta-strip p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.svc-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .svc-grid,
  .svc-grid.flip { grid-template-columns: 1fr; gap: 36px; }
  .svc-grid.flip .svc-text,
  .svc-grid.flip .svc-img  { order: unset; }
  .svc-img { aspect-ratio: 16 / 9; }
  .svc-section { padding: 64px 0; }
  .svc-hero { padding: 110px 0 56px; }
}
@media (max-width: 520px) {
  .svc-list { grid-template-columns: 1fr; }
}

/* ============================
   Contact Page
   ============================ */

.cp-hero {
  padding: 140px 0 64px;
  text-align: center;
}
.cp-hero .section-label { margin-bottom: 14px; display: block; }
.cp-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.cp-hero h1 span { color: var(--accent); }
.cp-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.cp-body {
  padding: 64px 0 100px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.cp-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: flex-start;
}

/* ---- Form ---- */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.cf-group { margin-bottom: 16px; }
.cf-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.cf-req { color: var(--accent); }
.cf-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.cf-input::placeholder { color: var(--text-dim); }
.cf-input:focus {
  border-color: var(--accent);
  background: rgba(0,200,240,0.04);
}
.cf-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.cf-select option { background: #1a2438; color: #fff; }
.cf-textarea { resize: vertical; min-height: 140px; }
.cf-error {
  font-size: 0.78rem;
  color: #f87171;
  margin-top: 5px;
  min-height: 1em;
}
.cf-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cf-submit { min-width: 160px; }
.cf-form-error {
  font-size: 0.85rem;
  color: #f87171;
}

/* ---- Success ---- */
.cp-success {
  text-align: center;
  padding: 48px 24px;
}
.cp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0,200,240,0.12);
  color: var(--accent);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cp-success h2 { font-size: 1.6rem; margin-bottom: 10px; }
.cp-success p { color: var(--text-muted); margin-bottom: 6px; }
.cp-success-ref { font-family: monospace; font-size: 0.85rem; color: var(--accent); }

/* ---- Sidebar ---- */
.cp-sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}
.cp-sidebar-card h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.cp-detail-list { display: flex; flex-direction: column; gap: 4px; }
.cp-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: inherit;
  transition: color 0.2s;
}
.cp-detail-item:last-child { border-bottom: none; padding-bottom: 0; }
.cp-detail-item:hover { color: var(--accent); }
.cp-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(0,200,240,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.cp-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 2px; }
.cp-detail-value { font-size: 0.9rem; color: var(--text-muted); line-height: 1.4; }
.cp-sidebar-note {
  background: rgba(0,200,240,0.06);
  border: 1px solid rgba(0,200,240,0.15);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.cp-sidebar-note strong { color: var(--text); }

.hidden { display: none !important; }

@media (max-width: 900px) {
  .cp-grid { grid-template-columns: 1fr; gap: 40px; }
  .cp-hero { padding: 110px 0 48px; }
}
@media (max-width: 560px) {
  .cf-row { grid-template-columns: 1fr; }
}

/* ============================
   Projects Page
   ============================ */

.proj-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  text-align: center;
}
.proj-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
}
.proj-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(14,20,32,0.4) 0%, rgba(14,20,32,0.2) 50%, var(--bg) 100%);
  pointer-events: none;
}
.proj-hero-content {
  position: relative;
  z-index: 2;
}
.proj-hero .section-label { margin-bottom: 14px; display: block; }
.proj-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.proj-hero h1 span { color: var(--accent); }
.proj-hero-intro {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 12px;
  line-height: 1.6;
}
.proj-hero-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.75;
}

.proj-filters-wrap {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 100px;
  z-index: 10;
}
.proj-filters {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.proj-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  font-family: var(--font);
  white-space: nowrap;
}
.proj-chip:hover { border-color: var(--accent); color: var(--text); }
.proj-chip.active {
  background: rgba(0,200,240,0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.proj-grid-wrap {
  padding: 44px 0 72px;
}
.proj-count {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-family: monospace;
  margin-bottom: 24px;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proj-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.proj-card:hover {
  border-color: rgba(0,200,240,0.28);
  transform: translateY(-2px);
}
.proj-card-img {
  margin: -20px -22px 14px;
  aspect-ratio: 16 / 9;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: var(--bg3);
}
.proj-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.proj-card:hover .proj-card-img img { transform: scale(1.04); }

.proj-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.proj-sector-badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid currentColor;
  flex-shrink: 0;
}
.badge-commercial    { color: #00c8f0; background: rgba(0,200,240,0.08); }
.badge-residential   { color: #34d399; background: rgba(52,211,153,0.08); }
.badge-cultural      { color: #a78bfa; background: rgba(167,139,250,0.08); }
.badge-hotel-leisure { color: #fb923c; background: rgba(251,146,60,0.08); }
.badge-healthcare    { color: #f87171; background: rgba(248,113,113,0.08); }
.badge-education     { color: #fbbf24; background: rgba(251,191,36,0.08); }
.badge-mixed-use     { color: #2dd4bf; background: rgba(45,212,191,0.08); }
.badge-technical     { color: #94a3b8; background: rgba(148,163,184,0.08); }

.proj-region {
  font-size: 0.7rem;
  color: var(--text-dim);
  white-space: nowrap;
}
.proj-card-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}
.proj-card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}
.proj-services {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}
.proj-services span {
  font-size: 0.66rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--text-dim);
}

.proj-disclaimer {
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  margin-top: 16px;
}
.proj-disclaimer p {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 820px;
}

.proj-cta-strip {
  padding: 80px 0;
  text-align: center;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.proj-cta-strip h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.proj-cta-strip h2 span { color: var(--accent); }
.proj-cta-strip p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-filters-wrap { position: static; }
  .proj-hero { padding: 110px 0 44px; }
}

/* ============================
   Why Us Page
   ============================ */

.wp-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  text-align: center;
}
.wp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: hue-rotate(155deg) saturate(1.4) brightness(0.55) contrast(1.1);
}
.wp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,40,55,0.5) 0%, rgba(0,100,130,0.18) 50%, var(--bg) 100%);
  pointer-events: none;
}
.wp-hero-content {
  position: relative;
  z-index: 2;
}
.wp-hero .section-label { margin-bottom: 14px; display: block; }
.wp-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.wp-hero h1 span { color: var(--accent); }
.wp-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.wp-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.wp-section.alt { background: var(--bg2); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.process-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
}
.process-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.process-card p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.wp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}
.wp-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.wp-stat:last-child { border-right: none; }
.wp-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.wp-stat-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  line-height: 1.4;
}

/* ============================
   About Page
   ============================ */

.ab-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 100px;
  text-align: center;
}
.ab-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: hue-rotate(155deg) saturate(1.4) brightness(0.55) contrast(1.1);
}
.ab-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0,40,55,0.5) 0%, rgba(0,100,130,0.18) 50%, var(--bg) 100%);
  pointer-events: none;
}
.ab-hero-content {
  position: relative;
  z-index: 2;
}
.ab-hero .section-label { margin-bottom: 14px; display: block; }
.ab-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.ab-hero h1 span { color: var(--accent); }
.ab-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.ab-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.ab-section.alt { background: var(--bg2); }

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.ab-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 26px;
  transition: border-color 0.2s;
}
.ab-value-card:hover { border-color: rgba(0,200,240,0.25); }
.ab-value-icon { font-size: 1.6rem; margin-bottom: 12px; }
.ab-value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ab-value-card p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.65; }

.ab-timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 32px;
}
.ab-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(0,200,240,0.1));
}
.ab-timeline-item {
  position: relative;
  padding: 0 0 32px 20px;
}
.ab-timeline-item:last-child { padding-bottom: 0; }
.ab-timeline-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.ab-timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 4px;
}
.ab-timeline-item h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; }
.ab-timeline-item p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 860px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .wp-stats { grid-template-columns: repeat(2, 1fr); }
  .wp-stat:nth-child(2) { border-right: none; }
  .wp-stat:nth-child(3) { border-top: 1px solid var(--border); }
  .wp-stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .ab-values-grid { grid-template-columns: 1fr; }
  .wp-hero, .ab-hero { padding: 110px 0 56px; }
  .wp-section, .ab-section { padding: 60px 0; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
  .wp-stats { grid-template-columns: 1fr; }
  .wp-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .wp-stat:last-child { border-bottom: none; }
}

/* ---- HawkNet stamp ---- */
.hn-credit { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.hn-credit:hover { color: rgba(255,255,255,0.55); }
.hn-credit strong { color: #38bdf8; font-weight: 600; }

/* ============================
   Service Sub-pages
   ============================ */

.sp-hero {
  padding: 160px 0 72px;
  border-bottom: 1px solid var(--border);
}
.sp-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sp-breadcrumb a { color: var(--text-dim); transition: color 0.2s; }
.sp-breadcrumb a:hover { color: var(--accent); }
.sp-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.sp-hero h1 span { color: var(--accent); }
.sp-hero .sp-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.sp-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.sp-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}
.sp-section.alt { background: var(--bg2); }
.sp-section:first-of-type { border-top: none; }

.sp-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.sp-grid.flip .sp-text { order: 2; }
.sp-grid.flip .sp-visual { order: 1; }

.sp-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.sp-section h2 span { color: var(--accent); }
.sp-section p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}
.sp-section p:last-child { margin-bottom: 0; }

.sp-includes {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin: 20px 0 28px;
}
.sp-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sp-includes li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.sp-visual {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg3);
  position: sticky;
  top: 120px;
}
.sp-visual img,
.sp-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp-faq { margin-top: 8px; }
.sp-faq-item {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.sp-faq-item:last-child { border-bottom: 1px solid var(--border); }
.sp-faq-q {
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 8px;
  color: var(--text);
}
.sp-faq-a {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .sp-grid { grid-template-columns: 1fr; gap: 36px; }
  .sp-grid.flip .sp-text,
  .sp-grid.flip .sp-visual { order: unset; }
  .sp-visual { position: static; aspect-ratio: 16/9; }
  .sp-hero { padding: 120px 0 52px; }
  .sp-section { padding: 56px 0; }
}
@media (max-width: 560px) {
  .sp-includes { grid-template-columns: 1fr; }
}
