/* ============================================================
   C&J SOLUTIONSFL — PREMIUM CONSTRUCTION WEBSITE
   Archetype: Dark Bold Construction | Orange #F5921E
   ============================================================ */

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── TOKENS (LIGHT THEME) ──────────────────────────────── */
:root {
  --bg:          #FAF6EA;
  --bg-2:        #F3EBD5;
  --bg-3:        #E5D8B8;
  --bg-card:     #FFFCF2;
  --orange:      #F47A1F;
  --orange-2:    #D9650E;
  --orange-glow: rgba(244,122,31,0.22);
  --orange-soft: rgba(244,122,31,0.10);
  --charcoal:    #2D2D33;
  --charcoal-2:  #3A3A42;
  --ink:         var(--charcoal);
  --white:       var(--charcoal);
  --white-70:    rgba(10,10,12,0.75);
  --white-40:    rgba(10,10,12,0.52);
  --white-15:    rgba(10,10,12,0.18);
  --line:        rgba(10,10,12,0.10);
  --line-o:      rgba(244,122,31,0.40);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --nav-h:       72px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ─── SPLASH ─────────────────────────────────────────────── */
#splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  animation: splashFadeOut 0.6s var(--ease-out) 3s forwards;
}
#splash .splash-logo {
  display: flex; align-items: center; gap: 12px;
  opacity: 0; animation: splashIn 0.6s var(--ease-out) 0.3s forwards;
}
#splash .splash-logo img { width: 64px; height: 64px; }
#splash .splash-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em;
  color: var(--white);
}
#splash .splash-name span { color: var(--orange); }
#splash .splash-bar {
  width: 200px; height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0; animation: splashIn 0.4s var(--ease-out) 0.8s forwards;
}
#splash .splash-fill {
  height: 100%; width: 0%;
  background: var(--orange);
  border-radius: 2px;
  animation: barFill 2.2s var(--ease-out) 1s forwards;
}
@keyframes splashIn { to { opacity: 1; } }
@keyframes barFill { to { width: 100%; } }
@keyframes splashFadeOut {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}

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

/* ─── CUSTOM CURSOR ──────────────────────────────────────── */
.cursor {
  position: fixed; z-index: 9000;
  pointer-events: none;
  opacity: 0; transition: opacity 0.3s;
}
.cursor.is-ready { opacity: 1; }
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(244,122,31,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}
.cursor-ring.is-hovering {
  width: 52px; height: 52px;
  background: var(--orange-soft);
  border-color: var(--orange);
}

/* ─── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5vw;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(250,246,234,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em;
  flex: none;
}
.nav-logo img { width: 36px; height: 36px; }
.nav-logo span { color: var(--orange); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin-left: auto; margin-right: 2rem;
}
.nav-links a {
  font-size: 0.85rem; font-weight: 500;
  color: var(--white-70);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.btn-nav {
  padding: 9px 20px;
  background: var(--orange);
  color: #000;
  font-size: 0.82rem; font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
  flex: none;
}
.btn-nav:hover { background: var(--charcoal); color: #fff; transform: translateY(-1px); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0;
  background: rgba(250,246,234,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: var(--white-70);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--orange); }
.nav-mobile .btn-mobile {
  padding: 14px 36px;
  background: var(--orange);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  border-radius: 8px;
  margin-top: 1rem;
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 5vw 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(244,122,31,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(244,122,31,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 120%, rgba(244,122,31,0.08) 0%, transparent 60%);
  animation: meshPulse 8s ease-in-out infinite;
}
@keyframes meshPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.hero-grid-lines { display: none; }
.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid var(--line-o);
  border-radius: 100px;
}
.hero-kicker::before {
  content: '';
  display: block; width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--orange); }
.hero-title .line2 {
  display: block;
  -webkit-text-stroke: 1px rgba(10,10,12,0.55);
  color: transparent;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 64px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px;
  background: var(--orange);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 800;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(244,122,31,0.32);
}
.btn-primary:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(10,10,12,0.28);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid var(--line-o);
  color: var(--white-70);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  border-radius: 8px;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}
.hero-stats {
  display: flex; gap: 2px;
  justify-content: center; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column;
  align-items: center;
  padding: 20px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  min-width: 140px;
}
.hero-stat:first-child { border-radius: 12px 0 0 12px; }
.hero-stat:last-child { border-radius: 0 12px 12px 0; }
.hero-stat .num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem; font-weight: 500;
  color: var(--white-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
/* ─── SCROLL INDICATOR ───────────────────────────────────── */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: var(--white-40);
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-down .arrow {
  width: 28px; height: 28px;
  border: 1px solid var(--line-o);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-section {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex; gap: 0;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white-40);
  white-space: nowrap;
}
.marquee-item .dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTION COMMONS ────────────────────────────────────── */
section { padding: 100px 5vw; }
.section-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--white);
}
.section-title .accent { color: var(--orange); }
.section-sub {
  font-size: 1.05rem;
  color: var(--white-70);
  max-width: 560px;
  line-height: 1.65;
  margin-top: 16px;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ─── SERVICES ───────────────────────────────────────────── */
#services { background: var(--bg-2); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 2rem;
  margin-bottom: 56px; flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  padding: 36px 32px;
  border: 1px solid var(--line);
  cursor: default;
  overflow: hidden;
  transition: border-color 0.35s, background 0.35s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.service-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 100%, var(--orange-soft) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}
.service-card:hover {
  border-color: var(--line-o);
  background: var(--bg-3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-icon { color: var(--orange); transform: scale(1.1); }
.service-icon {
  width: 52px;
  height: 52px;
  color: var(--orange);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, transform 0.3s;
  position: relative; z-index: 1;
}
.service-icon svg { width: 100%; height: 100%; display: block; }
.service-card:hover .service-icon { color: var(--orange); transform: scale(1.1); }
.service-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative; z-index: 1;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--white-40);
  line-height: 1.6;
  position: relative; z-index: 1;
}
.service-arrow {
  position: absolute; bottom: 24px; right: 24px;
  color: var(--white-15);
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
  z-index: 1;
}
.service-card:hover .service-arrow {
  color: var(--orange);
  transform: translate(4px, -4px);
}

/* ─── WHY US ─────────────────────────────────────────────── */
#whyus {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}
#whyus .container { position: relative; z-index: 2; }
#whyus::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: clamp(180px, 22vw, 320px);
  height: clamp(180px, 22vw, 320px);
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
  z-index: 1;
  pointer-events: none;
}
#whyus::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: clamp(140px, 16vw, 240px);
  height: clamp(140px, 16vw, 240px);
  background: var(--orange);
  opacity: 0.85;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 1;
  pointer-events: none;
}
#whyus .section-title { color: #fff; }
#whyus .section-sub { color: rgba(255,255,255,0.78); }
#whyus .pillar { border-color: rgba(255,255,255,0.10); }
#whyus .pillar:first-child { border-top-color: rgba(255,255,255,0.10); }
#whyus .pillar-title { color: #fff; }
#whyus .pillar-text { color: rgba(255,255,255,0.62); }
#whyus .whyus-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
#whyus .whyus-visual-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(244,122,31,0.18) 100%);
}
#whyus .whyus-visual-placeholder p { color: rgba(255,255,255,0.55); }
.whyus-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.whyus-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-3);
}
.whyus-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.whyus-visual-badge {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--orange);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.whyus-visual-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--bg-3) 0%, rgba(244,122,31,0.05) 100%);
}
.whyus-visual-placeholder .big-icon { font-size: 5rem; }
.whyus-visual-placeholder p {
  font-size: 0.82rem; color: var(--white-40);
  text-align: center; max-width: 200px;
}
.pillars { display: flex; flex-direction: column; gap: 0; margin-top: 48px; }
.pillar {
  display: flex; gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.pillar:first-child { border-top: 1px solid var(--line); }
.pillar-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.1em;
  flex-shrink: 0; padding-top: 3px;
  min-width: 32px;
}
.pillar-content {}
.pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pillar-text { font-size: 0.88rem; color: var(--white-40); line-height: 1.65; }

/* ─── BEFORE/AFTER SHOWCASE ──────────────────────────────── */
#showcase { background: var(--bg-2); overflow: hidden; }
.showcase-header { margin-bottom: 48px; }
.showcase-scroll {
  display: flex; gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  cursor: grab;
}
.showcase-scroll:active { cursor: grabbing; }
.showcase-scroll::-webkit-scrollbar { height: 3px; }
.showcase-scroll::-webkit-scrollbar-track { background: var(--line); }
.showcase-scroll::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }
.showcase-card {
  flex-shrink: 0;
  width: clamp(280px, 35vw, 420px);
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(45,45,51,0.10);
  border-color: var(--line-o);
}
.showcase-card .ba-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(244,122,31,0.08) 0%, transparent 70%),
    linear-gradient(140deg, var(--bg-card) 0%, var(--bg-2) 100%);
}
.showcase-card .ba-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45,45,51,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,45,51,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.proj-cat {
  position: absolute; top: 18px; left: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange);
  padding: 6px 12px;
  border: 1px solid var(--line-o);
  border-radius: 100px;
  background: rgba(244,122,31,0.08);
  z-index: 2;
  backdrop-filter: blur(8px);
}
.proj-num {
  position: absolute; bottom: -8px; right: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--charcoal);
  opacity: 0.14;
  letter-spacing: -0.06em;
  line-height: 0.85;
  z-index: 1;
  transition: opacity 0.4s, color 0.4s;
}
.showcase-card:hover .proj-num {
  color: var(--orange);
  opacity: 0.32;
}
.showcase-info {
  padding: 22px 24px 26px;
  border-top: 1px solid var(--line);
}
.showcase-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.showcase-info p { font-size: 0.85rem; color: var(--white-40); line-height: 1.55; }

/* ─── PROCESS ────────────────────────────────────────────── */
#process { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 56px;
}
.process-step {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.process-step::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 80px 0 0 0;
  background: var(--orange-soft);
  transition: width 0.4s, height 0.4s;
}
.process-step:hover::after { width: 140px; height: 140px; }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  color: var(--orange); letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.step-icon { font-size: 2rem; margin-bottom: 14px; }
.step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.step-desc { font-size: 0.85rem; color: var(--white-40); line-height: 1.6; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials { background: var(--bg-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s;
}
.testimonial-card:hover { border-color: var(--line-o); }
.t-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.t-text {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
}
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--line-o);
  flex-shrink: 0;
}
.t-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: var(--white);
}
.t-location { font-size: 0.78rem; color: var(--white-40); margin-top: 2px; }
.t-quote-icon {
  position: absolute; top: 24px; right: 24px;
  font-size: 3rem; line-height: 1;
  color: var(--orange-soft);
  font-family: Georgia, serif;
}

/* ─── CTA BANNER ─────────────────────────────────────────── */
#cta-banner {
  background: var(--orange);
  padding: 80px 5vw;
  text-align: center;
}
#cta-banner .banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #000;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}
#cta-banner .banner-sub {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 40px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: #000;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 800;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.25s, transform 0.25s;
}
.btn-dark:hover { background: #111; transform: translateY(-3px); }

/* ─── CONTACT ────────────────────────────────────────────── */
#contact { background: var(--bg); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { }
.contact-items { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; gap: 16px;
  align-items: flex-start;
}
.c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--orange-soft);
  border: 1px solid var(--line-o);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.c-label { font-size: 0.75rem; color: var(--white-40); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.c-value { font-size: 0.95rem; font-weight: 600; color: var(--white); }
.c-value a { color: var(--orange); transition: opacity 0.2s; }
.c-value a:hover { opacity: 0.8; }
/* Form */
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.78rem; font-weight: 600;
  color: var(--white-40); letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 13px 16px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--bg-2);
}
.form-group select option { background: var(--bg-3); color: var(--white); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem; font-weight: 800;
  border-radius: 8px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }
.form-submit.sending { opacity: 0.7; cursor: not-allowed; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: var(--bg-3);
  border: 1px solid var(--line-o);
  border-radius: 12px;
}
.form-success .check { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--orange); margin-bottom: 8px;
}
.form-success p { color: var(--white-70); font-size: 0.9rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 5vw 32px;
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem; flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
}
.footer-brand .logo img { width: 32px; height: 32px; }
.footer-brand .logo span { color: var(--orange); }
.footer-brand p { font-size: 0.85rem; color: var(--white-40); max-width: 260px; line-height: 1.6; }
.footer-links h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white-40); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a {
  font-size: 0.88rem; color: var(--white-70);
  transition: color 0.2s;
}
.footer-links ul a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--white-40); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--white-40);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-soft); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-split] { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }
.reveal[data-delay="6"] { transition-delay: 0.6s; }

/* ─── FLOATING WHATSAPP ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 5000;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
@keyframes waPulse {
  0%,100%{box-shadow:0 4px 24px rgba(37,211,102,0.4);}
  50%{box-shadow:0 4px 40px rgba(37,211,102,0.65);}
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  /* Hide custom cursor on touch devices */
  .cursor { display: none !important; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-hamburger { display: flex; margin-left: auto; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .whyus-wrap { grid-template-columns: 1fr; gap: 40px; }
  .whyus-visual { aspect-ratio: 16/9; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2.5rem; }
}

@media (max-width: 600px) {
  html { font-size: 15px; }
  section { padding: 64px 5vw; }

  /* Splash */
  #splash .splash-logo img { width: 54px !important; height: 54px !important; }
  #splash .splash-name { font-size: 1.2rem; }

  /* Nav */
  #nav { padding: 0 4vw; }
  .nav-logo { font-size: 0.95rem; gap: 8px; }
  .nav-logo img { width: 32px !important; height: 32px !important; }

  /* Hero */
  #hero { padding: calc(var(--nav-h) + 36px) 5vw 56px; }
  .hero-kicker { font-size: 0.7rem; padding: 5px 12px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(2.1rem, 9vw, 3.2rem); margin-bottom: 18px; line-height: 1.08; }
  .hero-sub { font-size: 1rem; margin-bottom: 32px; max-width: 100%; }
  .hero-actions { gap: 10px; margin-bottom: 44px; flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { padding: 14px 22px; font-size: 0.92rem; justify-content: center; width: 100%; }

  /* Hero stats stack */
  .hero-stat { padding: 16px 20px; min-width: 100px; }
  .hero-stat .num { font-size: 1.7rem; }
  .hero-stat:first-child { border-radius: 12px 12px 0 0; }
  .hero-stat:last-child { border-radius: 0 0 12px 12px; }
  .hero-stats { flex-direction: column; gap: 2px; width: 100%; max-width: 280px; margin: 0 auto; }

  .scroll-down { display: none; }

  /* Marquee */
  .marquee-item { padding: 0 22px; font-size: 0.75rem; }

  /* Section commons */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .section-sub { font-size: 0.95rem; }

  /* Services — single column */
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 28px 22px; }
  .service-card::before { display: block; }
  .service-icon { width: 44px; height: 44px; margin-bottom: 14px; }

  /* Showcase — wider cards, easier to read */
  #showcase .container { padding: 0 5vw; }
  .showcase-scroll { padding: 0 5vw 16px; gap: 14px; }
  .showcase-card { width: 78vw; max-width: 380px; }
  .showcase-card .ba-wrap { aspect-ratio: 5/4; }
  .proj-cat { font-size: 0.65rem; padding: 5px 10px; top: 14px; left: 14px; }
  .proj-num { font-size: 5.5rem; right: 10px; bottom: -8px; }
  .showcase-info { padding: 18px 20px 22px; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 0; }
  .process-step { padding: 28px 22px; }

  /* Why Us */
  #whyus::before { width: 130px; height: 130px; }
  #whyus::after { width: 100px; height: 100px; }
  .whyus-visual { aspect-ratio: 4/3; }
  .pillars { margin-top: 32px; }
  .pillar { padding: 20px 0; gap: 16px; }
  .pillar-title { font-size: 1rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }
  .testimonial-card { padding: 26px 22px; }
  .t-quote-icon { font-size: 2.4rem; top: 16px; right: 18px; }

  /* CTA banner */
  #cta-banner { padding: 60px 5vw; }
  #cta-banner .banner-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  #cta-banner .banner-sub { font-size: 0.95rem; margin-bottom: 28px; }
  #cta-banner > div { flex-direction: column !important; gap: 10px !important; max-width: 320px; margin: 0 auto; }
  .btn-dark { width: 100%; padding: 14px 22px; font-size: 0.92rem; justify-content: center; }

  /* Contact */
  #contact .contact-wrap { gap: 36px; }
  .contact-items { gap: 16px; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: 12px 14px; font-size: 16px; /* prevent iOS zoom */ }
  .form-submit { padding: 14px; font-size: 0.95rem; }

  /* Footer */
  .footer-top { gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }

  /* WhatsApp float */
  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; font-size: 1.45rem; }
}

@media (max-width: 380px) {
  .nav-logo { font-size: 0.88rem; }
  .nav-logo img { width: 28px !important; height: 28px !important; }
  #splash .splash-name { font-size: 1.05rem; }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
}

/* ============================================================
   HERO BACKGROUND IMAGE (light overlay so photo shows through)
   ============================================================ */
#hero {
  background:
    linear-gradient(180deg, rgba(250,246,234,0.78) 0%, rgba(250,246,234,0.90) 100%),
    url('../assets/img/hero-bg.png') center center / cover no-repeat,
    var(--bg);
}
/* Soft halo to keep readability over photo */
#hero .hero-title,
#hero .hero-sub {
  text-shadow: 0 1px 2px rgba(250,246,234,0.6);
}
