/* CityPulse Technologies — site styles */
:root {
  --orange: #f26822;
  --orange-deep: #d4541a;
  --orange-soft: #f4a93c;
  --bg: #FFF7F0;
  --bg-2: #FFFFFF;
  --ink: #1B1410;
  --ink-2: #2E231C;
  --muted: #6B5E55;
  --line: rgba(27, 20, 16, 0.08);
  --shadow-sm: 0 4px 14px rgba(242, 104, 34, 0.10);
  --shadow-md: 0 14px 40px -10px rgba(242, 104, 34, 0.22);
  --shadow-lg: 0 30px 80px -20px rgba(242, 104, 34, 0.30);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(44px, 6.5vw, 92px); }
h2 { font-size: clamp(34px, 4.5vw, 60px); }
h3 { font-size: clamp(22px, 2vw, 28px); }
p { color: var(--ink-2); text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.container { width: min(1240px, 92vw); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; color: var(--orange);
  padding: 8px 14px; border: 1px solid rgba(242, 104, 34, 0.25);
  border-radius: 999px; background: rgba(242, 104, 34, 0.06);
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(242, 104, 34, 0.15);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(242, 104, 34, 0.15); }
  50% { box-shadow: 0 0 0 10px rgba(242, 104, 34, 0); }
}

/* ── Nav ────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: rgba(255, 247, 240, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255, 247, 240, 0.92); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; }
.brand-logo {
  height: 60px; width: auto; display: block;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: radial-gradient(circle at 35% 35%, var(--orange-soft), var(--orange) 60%, var(--orange-deep));
  position: relative; box-shadow: var(--shadow-sm);
}
.brand-mark::after {
  content: ""; position: absolute; inset: 0; border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25);
}
.brand-name {
  font-family: 'Bricolage Grotesque'; font-size: 25px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.02;
}
.brand-name span { color: var(--orange); }
.brand-sub { font-size: 8px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); display: block; line-height: 1; margin-top: 1px; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 8px 0; transition: color .15s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .2s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: 0 8px 22px -6px rgba(27,20,16,0.4);
}
.btn-primary:hover {
  background: var(--orange); transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(242,104,34,0.5);
}
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { background: #fff; border-color: var(--ink); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── Hero ───────────────────────────────── */
.hero { position: relative; padding: 60px 0 100px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px;
  align-items: center;
}
.hero-tag {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 24px;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent {
  color: var(--orange); position: relative; display: inline-block;
}
.hero h1 .accent::after {
  content: ""; position: absolute; bottom: 0.1em; left: 0; right: 0; height: 14px;
  background: var(--orange-soft); opacity: 0.35; z-index: -1; border-radius: 4px;
  transform: skew(-8deg);
}
.hero-sub { font-size: 19px; color: var(--muted); max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-meta {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 32px; border-top: 1px solid var(--line);
}
.metric .num {
  font-family: 'Bricolage Grotesque'; font-size: 36px; font-weight: 700;
  color: var(--orange); line-height: 1; letter-spacing: -0.02em;
}
.metric .lbl { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* Hero phone */
.phone-stage {
  position: relative; aspect-ratio: 0.78; display: flex; align-items: center; justify-content: center;
}
.pulse-rings {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.pulse-rings span {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--orange); opacity: 0;
  width: 100%; aspect-ratio: 1;
  animation: ring 4s ease-out infinite;
}
.pulse-rings span:nth-child(2) { animation-delay: 1s; }
.pulse-rings span:nth-child(3) { animation-delay: 2s; }
.pulse-rings span:nth-child(4) { animation-delay: 3s; }
@keyframes ring {
  0% { transform: scale(0.3); opacity: 0.6; border-width: 3px; }
  100% { transform: scale(1.05); opacity: 0; border-width: 1px; }
}
.sun-glow {
  position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,104,34,0.25), rgba(242,104,34,0) 65%);
  filter: blur(20px);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.1); opacity: 1; }
}
.phone {
  position: relative; width: 285px; height: 580px;
  background: var(--ink); border-radius: 42px; padding: 8px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255,255,255,0.08);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-screen {
  width: 100%; height: 100%; background: var(--bg-2);
  border-radius: 34px; overflow: hidden; position: relative;
  display: flex; flex-direction: column;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: var(--ink); border-radius: 999px; z-index: 2;
}
.app-top {
  padding: 44px 18px 14px; display: flex; justify-content: space-between; align-items: center;
}
.app-top .hi { font-size: 12px; color: var(--muted); }
.app-top .name { font-family: 'Bricolage Grotesque'; font-size: 16px; font-weight: 700; }
.app-top .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-soft), var(--orange));
}
.app-hero {
  margin: 6px 14px; padding: 14px; border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; position: relative; overflow: hidden;
}
.app-hero::after {
  content: ""; position: absolute; top: -20px; right: -20px;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--orange-soft); opacity: 0.4;
}
.app-hero .h { font-family: 'Bricolage Grotesque'; font-size: 18px; font-weight: 700; line-height: 1.15; max-width: 70%; position: relative; }
.app-hero .sh { font-size: 11px; opacity: 0.85; margin-top: 6px; position: relative; max-width: 70%; }
.app-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 14px; }
.tile {
  background: #FFF6EE; aspect-ratio: 1; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; font-size: 9px; font-weight: 600; color: var(--ink-2);
  border: 1px solid rgba(242,104,34,0.1);
}
.tile-ic {
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.app-list { padding: 4px 14px; flex: 1; }
.app-list h5 { font-family: 'Bricolage Grotesque'; font-size: 12px; margin-bottom: 8px; display: flex; justify-content: space-between; }
.app-list h5 a { color: var(--orange); font-size: 10px; font-weight: 600; }
.list-row {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px;
  background: #FFF6EE; border-radius: 12px; margin-bottom: 6px;
  font-size: 10px;
}
.list-row .bus {
  width: 30px; height: 30px; border-radius: 8px; background: var(--ink); color: var(--orange-soft);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px;
  font-family: 'Bricolage Grotesque';
}
.list-row .info { flex: 1; }
.list-row .info b { display: block; font-size: 11px; }
.list-row .info span { color: var(--muted); }
.list-row .time { font-weight: 700; color: var(--orange); }
.app-alert {
  margin: 6px 14px 14px; padding: 8px 10px; border-radius: 10px;
  background: rgba(242,104,34,0.1); color: var(--orange-deep);
  font-size: 9.5px; font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.app-alert::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* Floating cards around phone */
.float-card {
  position: absolute; background: #fff; border-radius: 14px;
  padding: 12px 14px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
}
.float-card.fc-1 { top: 12%; left: -2%; animation: float 5s ease-in-out infinite; }
.float-card.fc-2 { bottom: 18%; right: -5%; animation: float 5.5s ease-in-out infinite reverse; }
.float-card .ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(242,104,34,0.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.float-card .lab { font-size: 11px; color: var(--muted); }
.float-card .val { font-family: 'Bricolage Grotesque'; font-size: 15px; font-weight: 700; }

/* Marquee taglines */
.tagline-marquee {
  margin-top: 80px; padding: 24px 0;
  border-block: 1px solid var(--line);
  overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Bricolage Grotesque'; font-size: 30px; font-weight: 600;
  color: var(--ink); display: flex; align-items: center; gap: 56px; white-space: nowrap;
}
.marquee-track span em { color: var(--orange); font-style: normal; }
.marquee-track span::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ── Sections ───────────────────────────── */
section { padding: 68px 0; position: relative; }
.section-head {
  display: flex; justify-content: space-between; align-items: end; gap: 40px;
  margin-bottom: 44px;
}
.section-head .left { max-width: 700px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 18px; max-width: 560px; }

/* What we do */
.about { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-points { display: grid; gap: 18px; }
.about-point {
  display: flex; gap: 16px; padding: 22px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s;
}
.about-point:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-point .num {
  font-family: 'Bricolage Grotesque'; font-size: 32px; font-weight: 700;
  color: var(--orange); line-height: 1; min-width: 48px;
}
.about-point h4 { font-size: 18px; margin-bottom: 4px; }
.about-point p { font-size: 14.5px; color: var(--muted); }

.about-visual {
  position: relative; aspect-ratio: 1; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(244,169,60,0.5), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 35%);
}
.skyline {
  position: relative; width: 80%; color: #fff;
  text-align: center; z-index: 2;
}
.skyline .big {
  font-family: 'Bricolage Grotesque'; font-size: clamp(60px, 8vw, 96px);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.03em;
}
.skyline .big span { color: var(--orange-soft); }
.skyline .sm { font-size: 14px; opacity: 0.9; margin-top: 14px; letter-spacing: 0.1em; text-transform: uppercase; }
.skyline-svg { margin-top: 24px; opacity: 0.85; }
.about-visual .float-bubble {
  position: absolute; background: rgba(255,255,255,0.94); color: var(--ink);
  border-radius: 14px; padding: 10px 14px; font-size: 13px; font-weight: 600;
  box-shadow: var(--shadow-md);
}
.about-visual .float-bubble.b1 { top: 8%; left: 6%; animation: float 6s ease-in-out infinite; }
.about-visual .float-bubble.b2 { bottom: 8%; right: 6%; animation: float 7s ease-in-out infinite reverse; }
.about-visual .float-bubble b { color: var(--orange); }

/* Services */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s;
  cursor: pointer;
  display: flex; align-items: center; gap: 18px;
}
.service::before {
  content: ""; position: absolute; inset: auto -20% -40% auto;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,104,34,0.12), transparent 60%);
  transform: scale(0); transition: transform .5s ease;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(242,104,34,0.3); }
.service:hover::before { transform: scale(1.2); }
.service .icon {
  width: 54px; height: 54px; border-radius: 15px; flex-shrink: 0;
  background: rgba(242,104,34,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.service:hover .icon { background: var(--orange); color: #fff; }
.service h3 { font-size: 20px; position: relative; z-index: 1; margin: 0; }

/* Why us */
.why { background: #fff; color: var(--ink); border-radius: var(--radius-lg) var(--radius-lg) 0 0; border-top: 1px solid var(--line); }
.why h2, .why h3 { color: var(--ink); }
.why p { color: var(--muted); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 56px;
}
.why-card {
  padding: 32px 26px 36px; border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--line);
  transition: background .3s, transform .3s, border-color .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.why-card:hover {
  background: #fff; transform: translateY(-6px);
  border-color: rgba(242,104,34,0.3); box-shadow: var(--shadow-md);
}
.why-card .n {
  font-family: 'Bricolage Grotesque'; font-size: 14px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.15em;
}
.why-card h4 { color: var(--ink); font-size: 22px; margin: 14px 0 10px; }
.why-card p { font-size: 14.5px; color: var(--muted); }

.why-stats {
  margin-top: 56px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  padding: 40px 0; border-block: 1px solid var(--line);
}
.why-stats .stat .v {
  font-family: 'Bricolage Grotesque'; font-size: clamp(40px, 4vw, 56px); font-weight: 700;
  color: var(--orange); line-height: 1; letter-spacing: -0.02em;
}
.why-stats .stat .l { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* Why Collab */
.why-collab { background: #fff; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.benefit {
  position: relative; padding: 32px 26px 30px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.benefit::after {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,104,34,0.18), transparent 65%);
  transform: scale(0); transition: transform .5s ease;
}
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(242,104,34,0.3); }
.benefit:hover::after { transform: scale(1.4); }
.benefit-ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; position: relative; z-index: 1;
  box-shadow: 0 8px 18px -6px rgba(242,104,34,0.45);
}
.benefit-num {
  position: absolute; top: 26px; right: 26px;
  font-family: 'Bricolage Grotesque'; font-size: 14px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.15em; z-index: 1;
}
.benefit h3 { font-size: 20px; margin-bottom: 10px; position: relative; z-index: 1; }
.benefit p { font-size: 15px; color: var(--muted); position: relative; z-index: 1; }

/* Connect for collaborations */
.connect-collab { background: var(--bg); }
.collab-board {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.collab-tile {
  position: relative; display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
  padding: 26px 24px; border-radius: var(--radius);
  background: #fff; border: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  min-height: 150px; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.collab-tile:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-md);
  border-color: rgba(242,104,34,0.35);
}
.tile-ic {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(242,104,34,0.1); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.collab-tile:hover .tile-ic { background: var(--orange); color: #fff; }
.collab-tile h4 { font-family: 'Bricolage Grotesque'; font-size: 19px; margin: 0; line-height: 1.2; }

/* CTA tile — white, orange accent */
.collab-tile.cta-tile {
  background: #fff; color: var(--orange); border-color: var(--orange);
  box-shadow: 0 10px 30px -12px rgba(242,104,34,0.4);
}
.collab-tile.cta-tile h4 { color: var(--orange); display: flex; align-items: center; gap: 8px; }
.collab-tile.cta-tile .tile-ic {
  background: var(--orange); color: #fff;
}
.collab-tile.cta-tile:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-5px); }
.collab-tile.cta-tile:hover .tile-ic { background: #fff; color: var(--orange); }
.collab-tile.cta-tile:hover h4 { color: #fff; }
.tile-arrow {
  font-family: 'Bricolage Grotesque'; font-size: 18px; font-weight: 700;
  transition: transform .2s; display: inline-block;
}
.collab-tile.cta-tile:hover .tile-arrow { transform: translateX(4px); }

/* Work with us / Contact */
.work {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff; border-radius: var(--radius-lg);
  margin: 0 4vw 80px; padding: 80px 60px; position: relative; overflow: hidden;
}
.work::before, .work::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.work::before {
  width: 400px; height: 400px; background: radial-gradient(circle, rgba(244,169,60,0.4), transparent 60%);
  top: -150px; right: -100px;
}
.work::after {
  width: 300px; height: 300px; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%);
  bottom: -100px; left: -50px;
}
.work-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.work h2 { color: #fff; }
.work .eyebrow { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.25); }
.work .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.25); }
.work p { color: rgba(255,255,255,0.92); font-size: 18px; margin: 20px 0 32px; }
.work .btn-primary { background: #fff; color: var(--orange); }
.work .btn-primary:hover { background: var(--ink); color: #fff; }
.work .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.work .btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.work-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.work-actions .btn { white-space: nowrap; }

.contact-card {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  padding: 32px;
}
.contact-card h4 { color: #fff; font-size: 22px; margin-bottom: 22px; }
.contact-row {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ic {
  width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.18);
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-row .lab { font-size: 12px; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-row .val { font-family: 'Bricolage Grotesque'; font-size: 18px; font-weight: 600; margin-top: 2px; }
.contact-row .val:hover { text-decoration: underline; }

/* Footer */
footer {
  background: #fff; color: var(--muted); padding: 70px 0 32px; border-top: 1px solid var(--line);
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.foot-grid h5 { color: var(--ink); font-family: 'Bricolage Grotesque'; font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
.foot-grid ul { list-style: none; display: grid; gap: 10px; }
.foot-grid a { font-size: 14.5px; color: var(--muted); transition: color .15s; }
.foot-grid a:hover { color: var(--orange); }
.foot-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 320px; }
.foot-logo { height: 92px; background: transparent; padding: 0; border-radius: 0; }
.foot-brand .brand-name { color: var(--ink); font-size: 22px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.foot-bottom .links { display: flex; gap: 24px; }
.foot-bottom a:hover { color: var(--orange); }

/* Reveal on scroll — transform-only so a stalled animation still shows content */
@keyframes slideUp {
  from { transform: translateY(28px); }
  to   { transform: none; }
}
.reveal, .reveal-stagger > * { opacity: 1; }
.reveal.in { animation: slideUp .8s ease both; }
.reveal-stagger.in > * { animation: slideUp .8s ease both; }
.reveal-stagger.in > *:nth-child(1) { animation-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { animation-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { animation-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { animation-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { animation-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { animation-delay: .40s; }

/* ── Apply modal ─────────────────────────── */
.apply-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(27, 20, 16, 0.6); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.apply-modal.open { display: flex; }
.apply-card {
  position: relative; width: min(620px, 100%);
  max-height: calc(100vh - 48px); overflow-y: auto;
  background: var(--bg); border-radius: var(--radius-lg);
  padding: 44px 44px 36px;
  box-shadow: 0 40px 100px -20px rgba(27,20,16,0.5);
  border: 1px solid rgba(27,20,16,0.08);
}
.apply-close {
  position: absolute; top: 16px; right: 16px;
  width: 40px; height: 40px; border-radius: 12px;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .15s;
}
.apply-close:hover { background: #fff; border-color: var(--ink); }
.apply-head { margin-bottom: 28px; }
.apply-head h3 {
  font-family: 'Bricolage Grotesque'; font-size: 28px; font-weight: 700;
  letter-spacing: -0.02em; margin: 14px 0 8px; color: var(--ink);
}
.apply-head p { color: var(--muted); font-size: 15px; }

.apply-form { display: grid; gap: 16px; }
.apply-form label {
  display: flex; flex-direction: column; gap: 6px;
}
.apply-form label > span {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-2);
}
.apply-form label > span em { color: var(--orange); font-style: normal; margin-left: 2px; }
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%; padding: 13px 16px; font-family: inherit; font-size: 15px;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px;
  transition: border-color .15s, box-shadow .15s;
  resize: vertical;
}
.apply-form select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231B1410' stroke-width='2.2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242,104,34,0.15);
}
.apply-form input:invalid:not(:placeholder-shown) { border-color: rgba(229,62,62,0.6); }

.form-row { display: grid; gap: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }

.form-consent .check {
  display: flex; flex-direction: row; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--muted); cursor: pointer;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px; width: 18px; height: 18px; accent-color: var(--orange);
  flex-shrink: 0;
}
.form-consent .check span { text-transform: none; letter-spacing: 0; font-weight: 400; }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.form-actions .btn { flex: 1 1 200px; justify-content: center; }
.form-actions .btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.form-status { margin-top: 6px; font-size: 14px; padding: 12px 14px; border-radius: 10px; display: none; }
.form-status:not(:empty) { display: block; }
.form-status.error { background: rgba(229,62,62,0.08); color: #C53030; border: 1px solid rgba(229,62,62,0.2); }
.form-status a { color: inherit; text-decoration: underline; font-weight: 600; }

.apply-success {
  text-align: center; padding: 24px 12px 8px;
}
.success-mark {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(34,180,90,0.12); color: #1F8A4A;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: popIn .4s cubic-bezier(.2,.8,.2,1.4) both;
}
@keyframes popIn { from { transform: scale(0.5); } to { transform: scale(1); } }
.apply-success h3 {
  font-family: 'Bricolage Grotesque'; font-size: 28px;
  letter-spacing: -0.02em; margin-bottom: 10px;
}
.apply-success p { color: var(--muted); margin-bottom: 28px; max-width: 440px; margin-inline: auto; }
.btn-whatsapp {
  display: flex; align-items: center; gap: 16px; text-align: left;
  width: min(420px, 100%); margin: 0 auto;
  padding: 16px 20px; border-radius: 18px;
  background: #25D366; color: #fff; text-decoration: none;
  box-shadow: 0 16px 40px -12px rgba(37,211,102,0.6);
  transition: transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-whatsapp::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-120%); animation: waShine 2.6s ease-in-out infinite;
}
@keyframes waShine { 0%, 60% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -12px rgba(37,211,102,0.7); }
.wa-pulse {
  width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.wa-pulse::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  animation: waRing 1.8s ease-out infinite;
}
@keyframes waRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-text { flex: 1; display: flex; flex-direction: column; gap: 2px; position: relative; z-index: 1; }
.wa-text strong { font-size: 17px; font-weight: 700; }
.wa-text small { font-size: 12.5px; opacity: 0.9; }
.wa-arrow { flex-shrink: 0; position: relative; z-index: 1; transition: transform .2s; }
.btn-whatsapp:hover .wa-arrow { transform: translateX(4px); }
.apply-text-close {
  display: inline-block; margin-top: 18px; background: none; border: none;
  color: var(--muted); font-size: 14px; font-family: inherit; cursor: pointer;
  text-decoration: underline; padding: 6px;
}
.apply-text-close:hover { color: var(--ink); }
.apply-success .btn { display: inline-flex; min-width: 160px; justify-content: center; }

@media (max-width: 600px) {
  .apply-card { padding: 32px 22px 26px; border-radius: 20px; max-height: calc(100dvh - 24px); }
  .apply-head h3 { font-size: 24px; }
  .form-row.two { grid-template-columns: 1fr; }
  .form-actions .btn { flex: 1 1 100%; }
  .apply-modal { padding: 12px; }
}

/* ── Mobile drawer ──────────────────────── */
.menu-toggle {
  display: none; background: none; border: 1px solid var(--line);
  width: 44px; height: 44px; border-radius: 12px;
  align-items: center; justify-content: center; cursor: pointer;
  color: var(--ink); transition: background .15s;
}
.menu-toggle:hover { background: #fff; }
.menu-toggle .x { display: none; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-toggle .burger { display: none; }
body.menu-open .menu-toggle .x { display: block; }

.drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(27, 20, 16, 0.55); backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
}
.drawer.open { display: block; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw); background: var(--bg);
  padding: 88px 28px 32px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 60px -10px rgba(27,20,16,0.3);
}
.drawer-panel a.dlink {
  font-family: 'Bricolage Grotesque'; font-size: 26px; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink); transition: color .15s, padding-left .2s;
}
.drawer-panel a.dlink:hover { color: var(--orange); padding-left: 8px; }
.drawer-panel a.dlink::after { content: "→"; color: var(--orange); font-size: 20px; opacity: 0.6; }
.drawer-cta {
  margin-top: auto; display: grid; gap: 10px;
}
.drawer-contact {
  font-size: 13px; color: var(--muted); margin-top: 18px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.drawer-contact a { display: block; color: var(--ink); font-weight: 600; margin-top: 4px; }

/* ── Responsive ─────────────────────────── */
@media (max-width: 1080px) {
  .hero-grid { gap: 40px; }
  .phone { width: 250px; height: 510px; }
  .services-grid { gap: 18px; }
  .service { padding: 28px 24px; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-inner > .btn-primary { display: none; } /* Hide nav CTA — drawer has it */
  .hero { padding: 24px 0 40px; }
  .hero-grid, .about-grid, .work-grid { grid-template-columns: 1fr; gap: 56px; }
  .phone-stage { aspect-ratio: auto; min-height: 540px; }
  .hero-meta { gap: 32px; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; gap: 30px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .collab-board { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-brand { grid-column: span 2; }
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 44px; }
  .section-head p { margin-top: 0; }
  .work { margin: 0 4vw 60px; padding: 56px 32px; }
  section { padding: 80px 0; }
  .tagline-marquee { margin-top: 60px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: 92vw; }
  .nav-inner { padding: 12px 0; }
  .brand-name { font-size: 22px; }
  .brand-sub { display: none; }
  .brand-mark { width: 34px; height: 34px; border-radius: 10px; }

  .hero-sub { font-size: 17px; margin-bottom: 28px; }
  .hero-cta { width: 100%; gap: 10px; }
  .hero-cta .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero-meta { padding-top: 24px; gap: 24px; }
  .metric .num { font-size: 30px; }

  .phone-stage { min-height: 480px; transform: scale(0.92); transform-origin: top center; margin-bottom: -40px; }
  .phone { width: 240px; height: 490px; }
  .float-card { padding: 10px 12px; }
  .float-card .val { font-size: 13px; }
  .float-card .lab { font-size: 10px; }
  .float-card .ic { width: 32px; height: 32px; }
  .float-card.fc-1 { left: -4px; top: 6%; }
  .float-card.fc-2 { right: -4px; bottom: 14%; }

  .marquee-track { gap: 36px; animation-duration: 22s; }
  .marquee-track span { font-size: 22px; gap: 36px; }

  .services-grid, .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .service { padding: 26px 22px; }
  .service-tag { position: static; display: block; margin-bottom: 14px; }
  .service .icon { width: 50px; height: 50px; border-radius: 14px; margin-bottom: 16px; }
  .service h3 { font-size: 20px; }

  .about-grid { gap: 44px; }
  .about-visual { aspect-ratio: 5 / 4; }
  .about-points { gap: 14px; }
  .about-point { padding: 18px; }
  .about-point .num { font-size: 26px; min-width: 40px; }
  .about-point h4 { font-size: 17px; }

  .why { border-radius: 24px 24px 0 0; }
  .why-stats { margin-top: 56px; gap: 24px; }
  .why-stats .stat .v { font-size: 36px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .collab-board { grid-template-columns: 1fr 1fr; gap: 12px; }
  .collab-tile { min-height: 130px; padding: 22px 18px; }
  .benefit { padding: 26px 22px; }

  .work { margin: 0 4vw 56px; padding: 44px 24px; border-radius: 24px; }
  .work p { font-size: 16px; margin: 16px 0 24px; }
  .work-actions { gap: 10px; width: 100%; }
  .work-actions .btn { flex: 1; justify-content: center; min-width: 0; }
  .contact-card { padding: 24px 20px; }
  .contact-card h4 { font-size: 19px; margin-bottom: 12px; }
  .contact-row { padding: 12px 0; }
  .contact-row .val { font-size: 16px; word-break: break-word; }

  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-bottom: 40px; }
  .foot-brand { grid-column: span 2; }
  .foot-bottom { flex-direction: column; gap: 14px; text-align: center; }

  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; gap: 16px; }
  h2 { font-size: 32px; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .work-actions { flex-direction: column; }
  .work-actions .btn { width: 100%; }
  .hero-meta { flex-direction: column; gap: 18px; align-items: flex-start; }
  .hero-meta .metric { display: flex; align-items: baseline; gap: 14px; }
  .hero-meta .metric .num { font-size: 28px; }
  .hero-meta .metric .lbl { margin-top: 0; }
  .float-card { display: none; } /* declutter on tiny screens */
  .phone-stage { min-height: 460px; }
  .nav-inner { padding: 10px 0; }
  .menu-toggle { width: 40px; height: 40px; }
}

/* Touch devices — disable hover-lifts that get stuck */
@media (hover: none) {
  .service:hover, .why-card:hover, .about-point:hover { transform: none; }
  .service:hover::before { transform: scale(0); }
  .service:hover .icon { background: rgba(242,104,34,0.1); color: var(--orange); }
}
