/* ============================================================
   W2W / We2Win — Design System
   Dark luxury editorial. Electric green accent only.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Montserrat:ital,wght@0,300;0,400;1,200;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── Background orbs ── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbFadeIn 2s ease forwards;
}
.orb-1 {
  width: 700px;
  height: 700px;
  top: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(255,80,0,0.18) 0%, rgba(200,50,0,0.07) 60%, transparent 100%);
  animation: orbFadeIn 2s ease forwards, orbFloat1 12s ease-in-out infinite 2s;
}
.orb-2 {
  width: 580px;
  height: 580px;
  top: 30%;
  right: -8%;
  background: radial-gradient(circle, rgba(255,80,0,0.14) 0%, rgba(180,40,0,0.05) 60%, transparent 100%);
  animation: orbFadeIn 2.4s ease forwards, orbFloat2 14s ease-in-out infinite 2.4s;
}
.orb-3 {
  width: 480px;
  height: 480px;
  bottom: 10%;
  left: 20%;
  background: radial-gradient(circle, rgba(235,234,230,0.06) 0%, rgba(200,198,195,0.02) 60%, transparent 100%);
  animation: orbFadeIn 2.8s ease forwards, orbFloat3 16s ease-in-out infinite 2.8s;
}
.orb-4 {
  width: 360px;
  height: 360px;
  top: 55%;
  left: 55%;
  background: radial-gradient(circle, rgba(255,80,0,0.10) 0%, rgba(180,40,0,0.03) 60%, transparent 100%);
  animation: orbFadeIn 3.2s ease forwards, orbFloat4 10s ease-in-out infinite 3.2s;
}

@keyframes orbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(100px, 120px) scale(1.12); }
  66%  { transform: translate(-70px, 80px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-120px, 90px) scale(1.15); }
  70%  { transform: translate(-50px, -80px) scale(0.88); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbFloat3 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(90px, -110px) scale(1.10); }
  60%  { transform: translate(120px, 50px) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbFloat4 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-100px, -80px) scale(1.18); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background:
    radial-gradient(ellipse 100% 50% at 5% 5%,   rgba(255,80,0,0.10) 0%, transparent 55%),
    radial-gradient(ellipse 70%  70%  at 95% 90%, rgba(255,80,0,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50%  80%  at 60% 40%, rgba(40,38,35,0.60) 0%, transparent 65%),
    #171716;
  background-attachment: fixed;
  color: #ebeae6;
}
/* iOS Safari doesn't support background-attachment: fixed — remove it to prevent scroll gap */
@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── Noise overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── CSS Variables ── */
:root {
  --accent:       #ff5000;
  --accent-dark:  #cc4000;
  --accent-light: #ff7033;
  /* Legacy aliases */
  --green:        #ff5000;
  --green-dark:   #cc4000;
  --green-bright: #ff7033;
  --blue:         #ff5000;
  --blue-dark:    #cc4000;
  --cream:        #ebeae6;
  --surface: rgba(235,234,230,0.05);
  --border: rgba(255,80,0,0.28);
  --border-thin: rgba(235,234,230,0.10);
  --muted: rgba(235,234,230,0.60);
  --glass-shadow: 0 8px 48px rgba(0,0,0,0.50), inset 0 1px 0 rgba(255,120,60,0.08);
  --section-pad: 130px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

/* ── Typography ── */
.font-display { font-family: 'Cormorant Garamond', serif; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; line-height: 1.1; }

.display-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
}
.display-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
}
.display-md {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
}
.text-soft { color: rgba(235,234,230,0.85); }
.label {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.mono {
  font-family: 'Courier New', Courier, monospace;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.text-blue  { color: var(--green); }
.text-green { color: var(--green); }
.text-muted { color: var(--muted); }
.italic { font-style: italic; }

/* ── Layout ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-pad) 0; }
.section-alt {
  background:
    linear-gradient(to bottom, transparent 0%, rgba(23,23,22,0.80) 12%, rgba(23,23,22,0.80) 88%, transparent 100%),
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(255,80,0,0.06) 0%, transparent 70%);
}

/* ── Glass Card ── */
.glass {
  background: rgba(235,234,230,0.05);
  border: 0.5px solid rgba(235,234,230,0.14);
  border-radius: 24px;
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  box-shadow: var(--glass-shadow);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.glass:hover {
  border-color: rgba(255,80,0,0.40);
  box-shadow: 0 12px 60px rgba(0,0,0,0.5), 0 0 32px rgba(255,80,0,0.10), inset 0 1px 0 rgba(255,120,60,0.08);
}
.glass-blue {
  background: rgba(255,80,0,0.08);
  border: 0.5px solid rgba(255,80,0,0.35);
  border-radius: 24px;
  backdrop-filter: blur(40px) saturate(140%);
  -webkit-backdrop-filter: blur(40px) saturate(140%);
  box-shadow: var(--glass-shadow);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.glass-blue:hover {
  border-color: rgba(255,80,0,0.60);
  box-shadow: 0 12px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,80,0,0.16), inset 0 1px 0 rgba(255,120,60,0.10);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.32s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 0 0 rgba(255,80,0,0);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,80,0,0.45);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 0.5px solid rgba(255,255,255,0.28);
  transition: all 0.32s var(--ease);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.04);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ── Logo images ── */
.nav-logo {
  display: block;
  height: 96px;
  width: auto;
  object-fit: contain;
}
.footer-logo {
  display: block;
  height: 140px;
  width: auto;
  object-fit: contain;
  opacity: 1;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(23,23,22,0.97);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 0.5px solid rgba(235,234,230,0.10);
  padding: 0 24px;
  padding-top: env(safe-area-inset-top);
  height: calc(68px + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: #171716;
  padding-top: env(safe-area-inset-top);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn {
  font-size: 0.8rem;
  padding: 10px 24px;
  margin-top: 8px;
}
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  padding-bottom: 120px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 0; right: 0;
  width: 70%;
  height: 100%;
  background:
    radial-gradient(ellipse 65% 80% at 75% 45%, rgba(255,80,0,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(255,80,0,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  padding: 32px;
}
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,80,0,0.12);
  border: 0.5px solid rgba(255,80,0,0.40);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.25s var(--ease);
}
.hero-link:hover { opacity: 0.7; }
.hero-btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── Marquee ── */
.marquee-section {
  border-top: none;
  border-bottom: none;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(to bottom, transparent 0%, rgba(23,23,22,0.60) 30%, rgba(23,23,22,0.60) 70%, transparent 100%);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 45s linear infinite;
  padding: 28px 0;
}
.marquee-item {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 32px;
}
.marquee-item.white { color: rgba(255,255,255,0.65); }
.marquee-item.blue  { color: var(--green); }
.marquee-dot { color: var(--green); padding: 0 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stats Bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 52px 32px;
  border-right: 0.5px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: background 0.35s var(--ease);
}
.stat-item:hover { background: rgba(255,80,0,0.06); }
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.stat-desc strong { display: block; font-size: 15px; color: rgba(235,234,230,0.92); margin-bottom: 2px; }

/* ── Section header ── */
.section-header { margin-bottom: 72px; }
.section-label {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
}

/* ── Service Grid ── */
.service-grid-wrapper {
  background: rgba(235,234,230,0.08);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
}
.service-card {
  background: rgba(23,23,22,0.95);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.38s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.service-card:hover { background: rgba(35,33,30,0.98); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: var(--green);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  display: block;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
}
.service-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Process Grid ── */
.process-grid-wrapper {
  background: rgba(235,234,230,0.08);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
}
.process-step {
  background: rgba(23,23,22,0.95);
  padding: 44px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.38s var(--ease);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.process-step:hover { background: rgba(35,33,30,0.98); }
.process-step:hover::before { transform: scaleX(1); }
.process-step .service-num { font-size: 14px; }
.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 12px;
}
.process-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── Case Study ── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 44px; }
.metric-card { padding: 28px; }
.metric-value {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label { font-size: 14px; font-weight: 500; color: #fff; margin-bottom: 3px; }
.metric-sub { font-size: 13px; color: var(--muted); }

/* ── Checklist ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: var(--muted);
  align-items: flex-start;
  line-height: 1.6;
}
.checklist li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Pills ── */
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: rgba(235,234,230,0.06);
  border: 0.5px solid rgba(235,234,230,0.18);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(235,234,230,0.75);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.pill:hover {
  border-color: rgba(255,80,0,0.50);
  color: #ebeae6;
  background: rgba(255,80,0,0.10);
}

/* ── Final CTA Section ── */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,80,0,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

/* ── Page Hero (internal pages) ── */
.page-hero {
  padding: 180px 0 100px;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(255,80,0,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 30% 40% at 95% 70%, rgba(255,80,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .label { margin-bottom: 16px; display: block; }

/* ── Service detail ── */
.service-detail {
  padding: 100px 0;
  border-bottom: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(23,23,22,0.40) 50%, transparent 100%);
}
.service-detail:nth-child(even) {
  background: linear-gradient(to bottom, transparent 0%, rgba(30,28,26,0.60) 50%, transparent 100%);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-detail-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 64px;
  font-weight: 400;
  color: rgba(255,80,0,0.30);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-detail-num.num-visible {
  color: rgba(255,80,0,0.85);
}
.service-detail-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
}
.service-detail-desc { font-size: 17px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.includes-title { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; font-family: 'DM Sans'; }

/* ── Pricing cards ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; }
.pricing-card { padding: 52px 48px; }
.pricing-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  display: block;
}
.pricing-value {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 300;
  font-style: normal;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.pricing-desc { font-size: 13px; color: var(--muted); letter-spacing: 0.04em; line-height: 1.6; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.team-card { padding: 44px; }
.team-photo {
  width: 100%;
  height: 200px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a1918 0%, #2d2b28 100%);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.team-photo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}
.team-role { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.team-name { font-family: 'Playfair Display', serif; font-size: 1.55rem; font-weight: 400; margin-bottom: 14px; }
.team-desc { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ── Contact form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(235,234,230,0.05);
  border: 0.5px solid rgba(235,234,230,0.16);
  border-radius: 12px;
  padding: 15px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #ebeae6;
  outline: none;
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease);
  -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(235,234,230,0.40); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent);
  background: rgba(255,80,0,0.06);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select { cursor: pointer; }
.form-select option { background: #171716; color: #ebeae6; }
.form-status { margin-top: 16px; font-size: 15px; }
.form-status.success { color: #00cc66; }
.form-status.error { color: #ff4444; }
.contact-info-card { padding: 32px; margin-bottom: 20px; }
.contact-info-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.contact-info-value { font-size: 16px; color: #fff; }

/* ── Footer ── */
.footer {
  background:
    linear-gradient(to bottom, transparent 0%, rgba(15,15,14,0.90) 8%),
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255,80,0,0.05) 0%, transparent 70%);
  border-top: none;
  padding: 100px 0 44px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 72px;
}
/* .footer-logo is now an <img> — defined in Logo images section above */
.footer-tagline { font-size: 15px; color: var(--muted); line-height: 1.6; }
.footer-col-title { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(235,234,230,0.65); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 15px; color: var(--muted); text-decoration: none; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 0.5px solid rgba(235,234,230,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }

/* ── Fade-up animation (Apple-style) ── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.80s var(--ease-out), transform 0.80s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.delay-1 { transition-delay: 0.10s; }
.fade-up.delay-2 { transition-delay: 0.20s; }
.fade-up.delay-3 { transition-delay: 0.30s; }
.fade-up.delay-4 { transition-delay: 0.42s; }
.fade-up.delay-5 { transition-delay: 0.54s; }
.fade-up.delay-6 { transition-delay: 0.66s; }

/* ── Case badge ── */
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,80,0,0.10);
  border: 0.5px solid rgba(255,80,0,0.38);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 36px;
}
.coming-soon-card {
  opacity: 0.75;
  position: relative;
}
.coming-soon-overlay {
  display: inline-flex;
  align-items: center;
  background: rgba(255,80,0,0.10);
  border: 0.5px solid rgba(255,80,0,0.38);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  :root { --section-pad: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-glow { width: 100%; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .process-grid-wrapper { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .hero-cards { grid-template-columns: 1fr; }
  .service-grid-wrapper { grid-template-columns: 1fr; }
  .process-grid-wrapper { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
  .team-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child  { grid-column: 1 / -1; }
  .footer-grid .footer-logo { height: 60px; margin-bottom: 10px; }
  .footer-grid .footer-tagline { font-size: 13px; }
  .footer-col-title { margin-bottom: 12px; }
  .footer-links { gap: 8px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .display-xl { font-size: clamp(2.8rem, 10vw, 4rem); }
}

@media (max-width: 480px) {
  .hero-btn-group { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .marquee-item { font-size: 1.5rem; }
}

/* ── Touch / active states (mobile tap highlight) ── */
.btn-primary:active {
  background: var(--accent-dark);
  transform: scale(0.97);
  box-shadow: 0 4px 16px rgba(255,80,0,0.35);
}
.btn-ghost:active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(0.97);
}
.glass:active {
  border-color: rgba(255,80,0,0.45);
  box-shadow: 0 0 28px rgba(255,80,0,0.12), inset 0 1px 0 rgba(255,120,60,0.08);
}
.nav-links a:active { color: var(--accent); }
.mobile-menu a:active { color: var(--accent); }
.footer-links a:active { color: #fff; }
.hero-link:active { opacity: 0.6; color: var(--accent); }
.contact-info-card:active {
  border-color: rgba(255,80,0,0.45);
}
.pill:active {
  background: rgba(255,80,0,0.15);
  border-color: rgba(255,80,0,0.4);
  color: var(--accent);
}
