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

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

:root {
  --green:   #2ECC71;
  --orange:  #FF6B1A;
  --yellow:  #F5C518;
  --dark:    #0A0A0A;
  --dark2:   #111111;
  --bg:      #FFFFFF;
  --text:    #000000;
  --muted:   #777777;
  --border:  rgba(0,0,0,0.09);
  --font:    'Inter', system-ui, sans-serif;
  --nav-h:   60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  transition: background 0.15s;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(0,0,0,0.06); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-contact {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.nav-contact:hover { opacity: 1; }
.nav-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46,204,113,0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46,204,113,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0.1); }
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: transform 0.25s, opacity 0.2s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 190;
  background: var(--bg);
  flex-direction: column;
  padding: 32px 40px;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ── PAGE WRAP ── */
.page { padding-top: var(--nav-h); }

/* ── SHAPES ── */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Shape float keyframes */
@keyframes sf-base-1 {
  0%,100% { transform: translate(0,0); }
  25%      { transform: translate(8px,-14px); }
  75%      { transform: translate(-6px,8px); }
}
@keyframes sf-base-2 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(-12px,-10px); }
}
@keyframes sf-base-3 {
  0%,100% { transform: translate(0,0); }
  40%      { transform: translate(10px,12px); }
  80%      { transform: translate(-4px,4px); }
}
@keyframes sf-base-4 {
  0%,100% { transform: translate(0,0); }
  50%      { transform: translate(14px,-8px); }
}
@keyframes sf-base-5 {
  0%,100% { transform: translate(0,0); }
  33%      { transform: translate(-10px,14px); }
  66%      { transform: translate(8px,-6px); }
}
@keyframes sf-hex-1 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(-8px,-14px) rotate(10deg); }
}
@keyframes sf-hex-2 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(10px,8px) rotate(-8deg); }
}
@keyframes sf-diamond-1 {
  0%,100% { transform: rotate(45deg) translate(0,0); }
  25%      { transform: rotate(52deg) translate(6px,-8px); }
  75%      { transform: rotate(38deg) translate(-4px,5px); }
}
@keyframes sf-diamond-2 {
  0%,100% { transform: rotate(45deg) translate(0,0); }
  50%      { transform: rotate(35deg) translate(-8px,-10px); }
}
@keyframes sf-tri {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(8px,-10px) rotate(15deg); }
}

/* Float utility classes */
.sf1 { animation: sf-base-1 5.2s ease-in-out infinite; }
.sf2 { animation: sf-base-2 6.8s ease-in-out infinite; animation-delay: -2.1s; }
.sf3 { animation: sf-base-3 4.6s ease-in-out infinite; animation-delay: -1.4s; }
.sf4 { animation: sf-base-4 7.3s ease-in-out infinite; animation-delay: -3.2s; }
.sf5 { animation: sf-base-5 5.8s ease-in-out infinite; animation-delay: -0.7s; }

/* Hex overrides — adds subtle rotation */
.sh-hex.sf1 { animation-name: sf-hex-1; }
.sh-hex.sf2 { animation-name: sf-hex-2; }
.sh-hex.sf3 { animation-name: sf-hex-1; animation-duration: 4.6s; }
.sh-hex.sf4 { animation-name: sf-hex-2; animation-duration: 7.3s; }

/* Triangle */
.sh-triangle.sf1, .sh-triangle.sf2, .sh-triangle.sf3, .sh-triangle.sf4, .sh-triangle.sf5
{ animation-name: sf-tri; }

/* Diamond overrides — preserves rotate(45deg) baseline */
.sh-diamond.sf1, .sh-diamond-orange.sf1   { animation-name: sf-diamond-1; }
.sh-diamond.sf2, .sh-diamond-orange.sf2   { animation-name: sf-diamond-2; }
.sh-diamond.sf3, .sh-diamond-orange.sf3   { animation-name: sf-diamond-1; animation-duration: 4.6s; }
.sh-diamond.sf4, .sh-diamond-orange.sf4   { animation-name: sf-diamond-2; animation-duration: 7.3s; }
.sh-diamond.sf5, .sh-diamond-orange.sf5   { animation-name: sf-diamond-1; animation-duration: 5.8s; }
.sh-hex {
  background: var(--green);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
}
.sh-circle {
  border-radius: 50%;
  background: #E0E0E0;
}
.sh-circle-dark {
  border-radius: 50%;
  background: var(--dark);
}
.sh-sphere {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #e8e8e8 0%, #bbb 60%, #999 100%);
}
.sh-rect { background: var(--orange); }
.sh-rect-yellow { background: var(--yellow); }
.sh-diamond {
  background: var(--yellow);
  transform: rotate(45deg);
}
.sh-diamond-orange {
  background: var(--orange);
  transform: rotate(45deg);
}
.sh-triangle {
  background: var(--green);
  clip-path: polygon(50% 0%,0% 100%,100% 100%);
}

/* ── HERO (main) ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hero-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 28px;
  position: relative; z-index: 2;
}
.hero-title {
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  position: relative; z-index: 2;
  max-width: 900px;
}
.hero-sub {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  color: var(--muted);
  margin-top: 32px;
  max-width: 560px;
  line-height: 1.5;
  position: relative; z-index: 2;
}
.hero-cta {
  margin-top: 48px;
  position: relative; z-index: 2;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── PAGE HERO (service pages) ── */
.page-hero {
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.page-hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.page-hero-title {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 900px;
  position: relative; z-index: 2;
}
.page-hero-desc {
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
  margin-top: 32px;
  position: relative; z-index: 2;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 100px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #1a1a1a; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(0,0,0,0.15);
}
.btn-outline:hover { border-color: var(--text); }
.btn-green {
  background: var(--green);
  color: var(--dark);
}
.btn-green:hover { background: #27AE60; }

/* ── SECTION ── */
.section {
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.section-sm { padding: 64px 60px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-title-lg {
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.section-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}
.section-body + .section-body { margin-top: 16px; }

/* ── STATEMENT STRIP ── */
.strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  overflow: hidden;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-inner {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-inner:hover { animation-play-state: paused; }
.strip-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-3 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .two-col, .two-col-3 { grid-template-columns: 1fr; gap: 40px; }
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 60px;
}
.service-card {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(0,0,0,0.02); }
.service-card.featured {
  background: var(--dark);
  color: #fff;
}
.service-card.featured:hover { background: #111; }
.service-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-card.featured .service-num { color: rgba(255,255,255,0.4); }
.service-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.service-card.featured .service-tagline { color: #2ECC71; }
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.service-card.featured .service-list li { color: rgba(255,255,255,0.55); }
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  margin-top: 28px;
  color: var(--text);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.service-card.featured .service-link { color: #fff; }

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 16px;
}
.process-step-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── DARK SECTION ── */
.dark-section {
  background: var(--dark);
  color: #fff;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.dark-section .section-label { color: rgba(255,255,255,0.35); }
.dark-section .section-body { color: rgba(255,255,255,0.55); }

/* ── SPLIT SECTION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split-left {
  background: var(--dark);
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-right {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.split-right-green { background: var(--green); }
.split-right-orange { background: var(--orange); }
.split-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.split-left .split-title { color: #fff; }
.split-desc {
  font-size: 17px;
  margin-top: 20px;
  line-height: 1.65;
}
.split-left .split-desc { color: rgba(255,255,255,0.55); }

/* ── APPROACH GRID ── */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.approach-card {
  background: var(--bg);
  padding: 40px;
}
.approach-num {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 12px;
}
.approach-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.approach-tagline {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 16px;
}
.approach-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.approach-list li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.approach-list li::before {
  content: '→';
  color: var(--green);
  flex-shrink: 0;
  font-weight: 700;
}

/* ── SERVICES LIST ── */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.svc-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  border-bottom: 1px solid var(--border);
}
.svc-item:last-child { border-bottom: none; }
.svc-label-col {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  background: rgba(0,0,0,0.02);
}
.svc-label-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.svc-label-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.svc-content-col { padding: 32px 36px; }
.svc-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}
.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .svc-item { grid-template-columns: 1fr; }
  .svc-label-col { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── MOCKUP CARD ── */
.mockup {
  background: #F5F5F5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.mockup-bar {
  background: #EBEBEB;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #ddd;
}
.mockup-bar-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-left: 8px;
}
.mockup-body { padding: 20px; }
.mockup-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(20%);
}
.mockup-row {
  height: 12px;
  background: #ddd;
  border-radius: 6px;
  margin-bottom: 8px;
}
.mockup-row.short { width: 60%; }
.mockup-row.xs { width: 40%; background: #ccc; }

/* ── WHO FOR ── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.who-item {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: center;
}
.who-item:nth-child(2n) { border-right: none; }
.who-item:nth-last-child(-n+2) { border-bottom: none; }
.who-icon {
  width: 40px; height: 40px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.who-icon svg { display: block; }
.who-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}
@media (max-width: 768px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .who-item:last-child { border-bottom: none !important; }
}

/* ── QUOTE BLOCK ── */
.quote-block {
  text-align: center;
  padding: 80px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.quote-text {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto;
}
.quote-muted {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #d0d0d0;
}

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 60px;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
}
.cta-title {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  max-width: 900px;
}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.footer-top {
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-email {
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
}
.footer-copy {
  padding: 24px 60px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  padding: 20px 40px 24px;
  user-select: none;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── FEATURES LIST ── */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}
.features-list li {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 14px;
}
.features-list.white li { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.1); }

/* ── INLINE CALLOUT ── */
.callout {
  background: rgba(46,204,113,0.08);
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}
.callout p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* ── FLOAT VISUAL ── */
.float-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-badge {
  position: absolute;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.float-badge-dark { background: var(--dark); color: #fff; }
.float-badge-green { background: var(--green); color: var(--dark); }
.float-badge-orange { background: var(--orange); color: #fff; }
.float-badge-yellow { background: var(--yellow); color: var(--dark); }

/* ── LEGAL ── */
.legal-section {
  padding: 80px 60px;
  max-width: 800px;
}
.legal-section h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 48px 0 16px;
}
.legal-section h2:first-child { margin-top: 0; }
.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ── COLLAB SCENE ── */
.collab-scene {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.collab-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--dark);
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
}
.collab-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.collab-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px 9px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 5;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  letter-spacing: -0.01em;
}
.cb-dark   { background: var(--dark); color: #fff; }
.cb-green  { background: var(--green); color: var(--dark); }
.cb-yellow { background: var(--yellow); color: var(--dark); }
.cb-orange { background: var(--orange); color: #fff; }

@keyframes cf1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(3px,-8px)} 66%{transform:translate(-2px,4px)} }
@keyframes cf2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes cf3 { 0%,100%{transform:translate(0,0)} 40%{transform:translate(-4px,-6px)} }
@keyframes cf4 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes cf5 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(5px,8px)} }

.cf1 { animation: cf1 4.2s ease-in-out infinite; }
.cf2 { animation: cf2 3.8s ease-in-out infinite; animation-delay: -.8s; }
.cf3 { animation: cf3 5.1s ease-in-out infinite; animation-delay: -1.5s; }
.cf4 { animation: cf4 4.6s ease-in-out infinite; animation-delay: -2.2s; }
.cf5 { animation: cf5 3.4s ease-in-out infinite; animation-delay: -.4s; }

@media (max-width: 768px) {
  .collab-circle { width: 260px; height: 260px; }
  .collab-badge { font-size: 11px; padding: 7px 12px 7px 8px; }
}

/* ── ICON BOX (service icon upgrade) ── */
.svc-icon-box {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(135deg, #f8f8f8 0%, #efefef 100%);
}
.service-card.featured .svc-icon-box {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
}
.service-card.featured .svc-icon-box svg { stroke: #fff; }
.svc-icon-box svg { display: block; }

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s 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; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .split-section { grid-template-columns: 1fr; }
  .split-left, .split-right { min-height: 480px; }
  .approach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
  .burger { display: flex; }
  .hero { padding: 60px 24px; min-height: calc(100vh - var(--nav-h)); }
  .page-hero { padding: 60px 24px 48px; }
  .section { padding: 60px 24px; }
  .section-sm { padding: 40px 24px; }
  .dark-section { padding: 60px 24px; }
  .cta-section { padding: 80px 24px; }
  .split-left, .split-right { padding: 60px 24px; }
  .strip { padding: 24px; }
  .footer-top { padding: 48px 24px; }
  .footer-copy { padding: 20px 24px; }
  .footer-brand { padding: 0 20px 16px; }
  .process-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 60px 24px; }
  .legal-section { padding: 60px 24px; }
}
@media (max-width: 480px) {
  .services-grid { border-radius: 12px; }
  .approach-grid { border-radius: 12px; }
}
