/* =========================================================================
   Mi Tech Solutions Australia - Design System
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700&family=Inter+Tight:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Color system */
  --bg: #0E0E10;
  --bg-elev: #16161A;
  --bg-elev-2: #1F1F24;
  --surface: rgba(255, 255, 255, 0.03);
  --border: rgba(240, 235, 224, 0.08);
  --border-strong: rgba(240, 235, 224, 0.18);
  --text: #F0EBE0;
  --text-muted: rgba(240, 235, 224, 0.6);
  --text-faint: rgba(240, 235, 224, 0.4);
  --lime: #C4FF61;
  --lime-dim: #9BCC4D;
  --terracotta: #FF6B47;
  --warm: #FFB68A;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter Tight', sans-serif;
  --font-serif: 'Instrument Serif', serif;

  /* Layout */
  --max-w: 1440px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) {
  body { cursor: auto; }
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--lime); color: var(--bg); }

/* =========================================================================
   Custom cursor
   ========================================================================= */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--lime);
  transition: transform 0.15s var(--ease), background 0.2s ease;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(196, 255, 97, 0.5);
  transition: transform 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.cursor-ring.hover {
  width: 64px; height: 64px;
  background: rgba(196, 255, 97, 0.08);
  border-color: var(--lime);
}
.cursor-ring.click { transform: translate(-50%, -50%) scale(0.8); }

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* =========================================================================
   Loading screen
   ========================================================================= */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  width: 64px; height: 64px;
  animation: loaderSpin 1.6s var(--ease) infinite;
}
.loader-text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.loader-bar {
  width: 200px; height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: translateX(-100%);
  animation: loaderBar 1.4s var(--ease) forwards;
}
@keyframes loaderBar {
  to { transform: translateX(0); }
}
@keyframes loaderSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(0.9); }
}

/* =========================================================================
   Scroll progress
   ========================================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--lime);
  z-index: 999;
  transition: width 0.1s linear;
}

/* =========================================================================
   Navigation
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 14, 16, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); padding-top: 1rem; padding-bottom: 1rem; }
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-brand svg { width: 28px; height: 28px; }
.nav-brand small {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  text-transform: uppercase;
  font-weight: 400;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
}
.nav-links a {
  position: relative;
  padding: 0.5rem 0;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--lime);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-cta {
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--lime);
  border-radius: 100px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.nav-cta:hover { background: var(--lime); color: var(--bg); }

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
  }
  .nav-toggle span {
    height: 1.5px;
    background: var(--text);
    transition: transform 0.3s var(--ease), opacity 0.3s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-cta { display: none; }
  .nav-mobile {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    padding: 4rem 2rem;
  }
  .nav-mobile.open { transform: translateX(0); }
  .nav-mobile a {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--text);
  }
  .nav-mobile .nav-cta {
    display: inline-block;
    margin-top: 1rem;
    font-size: 16px;
    padding: 0.85rem 1.75rem;
  }
}

/* =========================================================================
   Layout primitives
   ========================================================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { position: relative; padding: clamp(4rem, 10vw, 8rem) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--lime);
}

/* =========================================================================
   Typography
   ========================================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}
h1 {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}
h2 {
  font-size: clamp(1.85rem, 4.5vw, 3.5rem);
  line-height: 1;
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
  font-weight: 500;
}

/* Hero promo banner */
.hero-promo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(196, 255, 97, 0.08);
  border: 1px solid rgba(196, 255, 97, 0.3);
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-size: 13.5px;
  color: var(--text);
  flex-wrap: wrap;
  animation: promoPulse 3s ease-in-out infinite;
}
.hero-promo .promo-tag {
  background: var(--lime);
  color: var(--bg);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-promo .promo-text { font-weight: 400; }
.hero-promo .promo-link {
  color: var(--lime);
  font-weight: 500;
  border-bottom: 1px solid var(--lime);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.hero-promo .promo-link:hover { opacity: 0.7; }
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 255, 97, 0); }
  50% { box-shadow: 0 0 0 6px rgba(196, 255, 97, 0.05); }
}

.btn-discount {
  background: linear-gradient(135deg, var(--terracotta), #ff8a6e);
  color: white;
  border: none;
  position: relative;
}
.btn-discount::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8a6e, var(--terracotta));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-discount:hover::before { opacity: 1; }
.btn-discount > * { position: relative; z-index: 1; }
.btn-discount .badge-pct {
  background: white;
  color: var(--terracotta);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 11px;
  margin-right: 0.25rem;
}
h4 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
}
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}
p { color: var(--text-muted); line-height: 1.65; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--lime); color: var(--bg); }
.btn-primary:hover { background: var(--text); }
.btn-secondary {
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--lime); color: var(--lime); }
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 8rem;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-text { position: relative; }
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; max-height: 380px; }
}

/* Floating mockup stack */
.hero-visual {
  position: relative;
  height: 520px;
  perspective: 1500px;
  transform-style: preserve-3d;
}
.float-card {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -15px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.02);
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease);
  will-change: transform;
}
.float-card-1 {
  top: 0; right: 0;
  width: 280px;
  transform: rotate(4deg);
  animation: float1 8s ease-in-out infinite;
  background: linear-gradient(160deg, #1f2218, var(--bg-elev) 60%);
  border-color: rgba(196, 255, 97, 0.25);
}
.float-card-2 {
  top: 120px; left: 0;
  width: 260px;
  transform: rotate(-5deg);
  animation: float2 9s ease-in-out infinite 0.8s;
  background: linear-gradient(160deg, #221b18, var(--bg-elev) 60%);
  border-color: rgba(255, 107, 71, 0.25);
}
.float-card-3 {
  bottom: 20px; right: 30px;
  width: 240px;
  transform: rotate(6deg);
  animation: float3 10s ease-in-out infinite 1.6s;
  background: linear-gradient(160deg, #181e22, var(--bg-elev) 60%);
  border-color: rgba(120, 180, 255, 0.25);
}
@keyframes float1 {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-5deg) translateY(-15px); }
}
@keyframes float3 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-10px); }
}

.fc-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 500;
}
.fc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fc-dot.lime { background: var(--lime); box-shadow: 0 0 12px var(--lime); }
.fc-dot.terra { background: var(--terracotta); box-shadow: 0 0 12px var(--terracotta); }
.fc-dot.blue { background: #78B4FF; box-shadow: 0 0 12px #78B4FF; }

.fc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.fc-meta {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.fc-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.fc-bar-fill {
  height: 100%;
  background: var(--lime);
  border-radius: inherit;
  animation: barFill 3s ease-in-out infinite;
}
.fc-bar-fill.terra { background: var(--terracotta); animation-delay: 0.5s; }
.fc-bar-fill.blue { background: #78B4FF; animation-delay: 1s; }
@keyframes barFill {
  0% { width: 0%; }
  50% { width: 85%; }
  100% { width: 100%; }
}
.fc-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  color: var(--text-faint);
}
.fc-stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}
.fc-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.fc-msg {
  font-size: 12px;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  max-width: 85%;
  line-height: 1.4;
}
.fc-msg.user {
  align-self: flex-end;
  background: rgba(120, 180, 255, 0.12);
  color: var(--text);
  border-top-right-radius: 4px;
}
.fc-msg.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border-top-left-radius: 4px;
}
.fc-typing {
  display: flex;
  gap: 3px;
  padding: 0.6rem 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border-top-left-radius: 4px;
  align-self: flex-start;
  width: fit-content;
}
.fc-typing span {
  width: 5px; height: 5px;
  background: var(--text-muted);
  border-radius: 50%;
  animation: typing 1.4s ease-in-out infinite;
}
.fc-typing span:nth-child(2) { animation-delay: 0.2s; }
.fc-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.fc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.fc-tag {
  font-size: 10.5px;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(196, 255, 97, 0.1);
  color: var(--lime);
  border: 1px solid rgba(196, 255, 97, 0.2);
}
.fc-tag.terra {
  background: rgba(255, 107, 71, 0.1);
  color: var(--terracotta);
  border-color: rgba(255, 107, 71, 0.2);
}
.fc-tag.blue {
  background: rgba(120, 180, 255, 0.1);
  color: #78B4FF;
  border-color: rgba(120, 180, 255, 0.2);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 235, 224, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 235, 224, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196, 255, 97, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.hero-glow.left { top: 20%; left: -10%; }
.hero-glow.right {
  bottom: 10%; right: -15%;
  background: radial-gradient(circle, rgba(255, 107, 71, 0.15) 0%, transparent 70%);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  margin-bottom: 2rem;
  max-width: 12ch;
}
.hero-tagline {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 800px;
}
.hero-meta-item small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 30px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
}

/* Word reveal animation for hero */
.word-reveal { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-reveal > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordUp 1.1s var(--ease) forwards;
}
@keyframes wordUp {
  to { transform: translateY(0); opacity: 1; }
}

/* =========================================================================
   Marquee
   ========================================================================= */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  align-items: center;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 4rem; }
.marquee-track .dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
}
.marquee-track .italic { font-family: var(--font-serif); font-style: italic; color: var(--lime); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================================
   Reveal animations
   ========================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =========================================================================
   Section header
   ========================================================================= */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}
.section-head p { max-width: 50ch; }
@media (max-width: 768px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* =========================================================================
   Services grid
   ========================================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  transition: background 0.5s var(--ease);
  cursor: pointer;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(196, 255, 97, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--bg-elev); }
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.service-card h3 {
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.service-card:hover h3 { color: var(--lime); }
.service-card p {
  font-size: 14.5px;
  margin-bottom: 1.5rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-tag {
  font-size: 11px;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  background: var(--surface);
  transition: transform 0.3s var(--ease);
}
.service-tag.lime {
  background: rgba(196, 255, 97, 0.08);
  border-color: rgba(196, 255, 97, 0.3);
  color: var(--lime);
}
.service-tag.terra {
  background: rgba(255, 107, 71, 0.08);
  border-color: rgba(255, 107, 71, 0.3);
  color: var(--terracotta);
}
.service-tag.warm {
  background: rgba(255, 182, 138, 0.08);
  border-color: rgba(255, 182, 138, 0.3);
  color: var(--warm);
}
.service-tag.blue {
  background: rgba(120, 180, 255, 0.08);
  border-color: rgba(120, 180, 255, 0.3);
  color: #78B4FF;
}
.service-tag.pink {
  background: rgba(255, 130, 200, 0.08);
  border-color: rgba(255, 130, 200, 0.3);
  color: #FF82C8;
}
.service-tag.cyan {
  background: rgba(100, 230, 220, 0.08);
  border-color: rgba(100, 230, 220, 0.3);
  color: #64E6DC;
}
.service-tag.purple {
  background: rgba(180, 140, 255, 0.08);
  border-color: rgba(180, 140, 255, 0.3);
  color: #B48CFF;
}
.service-card:hover .service-tag { transform: translateY(-2px); }

/* =========================================================================
   3D tilt cards (process / features)
   ========================================================================= */
.tilt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  perspective: 1200px;
}
.tilt-card {
  background: linear-gradient(180deg, var(--bg-elev) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.tilt-card:hover { border-color: var(--border-strong); }
.tilt-card .tilt-content { transform: translateZ(40px); }
.tilt-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.04em;
}
.tilt-card h4 { margin-bottom: 0.75rem; }
.tilt-card p { font-size: 14.5px; }

/* =========================================================================
   Pricing
   ========================================================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pricing-card.featured {
  background: linear-gradient(180deg, rgba(196, 255, 97, 0.08), var(--bg-elev) 60%);
  border-color: var(--lime);
}
.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--bg);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.pricing-card .name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.pricing-card .desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--text), var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card.featured .price {
  background: linear-gradient(135deg, var(--lime), var(--warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card .price-suffix {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 1.75rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-muted);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* =========================================================================
   Pricing showcase (homepage - 3D + parallax)
   ========================================================================= */
.price-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1500px;
}
@media (max-width: 900px) { .price-showcase { grid-template-columns: 1fr; } }
.price-showcase-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  padding: 2rem 1.75rem 2rem;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease), border-color 0.4s ease;
  cursor: pointer;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.price-showcase-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--glow, rgba(196,255,97,0.15)), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.price-showcase-card:hover::before { opacity: 1; }
.price-showcase-card.lime { --glow: rgba(196, 255, 97, 0.18); border-color: rgba(196, 255, 97, 0.25); }
.price-showcase-card.terra { --glow: rgba(255, 107, 71, 0.18); border-color: rgba(255, 107, 71, 0.25); }
.price-showcase-card.blue { --glow: rgba(120, 180, 255, 0.18); border-color: rgba(120, 180, 255, 0.25); }

.price-showcase-card .glow-orb {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
  transition: transform 0.8s var(--ease);
}
.price-showcase-card.lime .glow-orb { background: var(--lime); top: -80px; right: -60px; }
.price-showcase-card.terra .glow-orb { background: var(--terracotta); top: -80px; right: -60px; }
.price-showcase-card.blue .glow-orb { background: #78B4FF; top: -80px; right: -60px; }

.price-showcase-card > * { position: relative; transform: translateZ(30px); }

.psc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}
.lime .psc-icon { background: rgba(196,255,97,0.15); color: var(--lime); }
.terra .psc-icon { background: rgba(255,107,71,0.15); color: var(--terracotta); }
.blue .psc-icon { background: rgba(120,180,255,0.15); color: #78B4FF; }

.psc-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.lime .psc-label { color: var(--lime); }
.terra .psc-label { color: var(--terracotta); }
.blue .psc-label { color: #78B4FF; }

.psc-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.psc-price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
  color: var(--text);
}
.psc-price-suffix {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 1.5rem;
}

.psc-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.psc-features li {
  font-size: 13.5px;
  padding: 0.5rem 0;
  color: var(--text-muted);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.psc-features li::before {
  content: '→';
  flex-shrink: 0;
  font-weight: 600;
}
.lime .psc-features li::before { color: var(--lime); }
.terra .psc-features li::before { color: var(--terracotta); }
.blue .psc-features li::before { color: #78B4FF; }

.psc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  transition: transform 0.3s var(--ease), background 0.3s ease;
  text-align: left;
}
.lime .psc-cta { background: var(--lime); color: var(--bg); }
.lime .psc-cta:hover { background: var(--text); }
.terra .psc-cta { background: var(--terracotta); color: white; }
.terra .psc-cta:hover { background: #ff8a6e; }
.blue .psc-cta { background: rgba(120,180,255,0.15); color: #78B4FF; border: 1px solid rgba(120,180,255,0.3); }
.blue .psc-cta:hover { background: #78B4FF; color: var(--bg); }
.psc-cta svg { width: 14px; height: 14px; }

/* =========================================================================
   Stats
   ========================================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
}
.stat-num .small { font-size: 0.5em; }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
@media (max-width: 768px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--lime);
}
.stat-num .small { font-size: 0.5em; }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.6rem;
}

/* =========================================================================
   FAQ
   ========================================================================= */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.faq-item:hover .faq-q { color: var(--lime); }
.faq-toggle {
  width: 24px; height: 24px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}
.faq-toggle::before { width: 10px; height: 1px; }
.faq-toggle::after { width: 1px; height: 10px; }
.faq-item.open .faq-toggle {
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(135deg);
}
.faq-item.open .faq-toggle::before, .faq-item.open .faq-toggle::after { background: var(--bg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding-top 0.5s var(--ease);
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 1rem; }
.faq-a p {
  font-size: 14.5px;
  max-width: 70ch;
}

/* =========================================================================
   CTA banner
   ========================================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-elev), var(--bg));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(196, 255, 97, 0.06), transparent 50%);
  animation: ctaSpin 30s linear infinite;
  pointer-events: none;
}
@keyframes ctaSpin {
  to { transform: rotate(360deg); }
}
.cta-banner h2 { margin-bottom: 1.25rem; position: relative; }
.cta-banner p { max-width: 50ch; margin: 0 auto 2rem; position: relative; }
.cta-banner .hero-actions { justify-content: center; position: relative; margin-bottom: 0; }

/* =========================================================================
   Footer
   ========================================================================= */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 14px;
  max-width: 30ch;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .legal { display: flex; gap: 1.5rem; }

/* =========================================================================
   Forms (contact page)
   ========================================================================= */
.form {
  display: grid;
  gap: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 500;
}
.field input, .field select, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  padding: 0.85rem 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--lime);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { cursor: pointer; }
.field select option { background: var(--bg-elev); color: var(--text); }
.field-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.check-pill input { display: none; }
.check-pill label {
  display: inline-block;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.check-pill input:checked + label {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
}

/* =========================================================================
   About / story
   ========================================================================= */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; gap: 2rem; }
}
.story-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.story-text p:first-child::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  float: left;
  font-size: 4.5rem;
  line-height: 0.85;
  margin: 0.3rem 0.7rem 0 0;
  color: var(--lime);
}
.story-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: sticky;
  top: 6rem;
}
.story-card .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.25rem;
}
.story-card .quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.story-card .who {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.story-card .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--bg);
  font-size: 14px;
}
.story-card .who-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.story-card .who-meta span {
  font-size: 12px;
  color: var(--text-faint);
}

/* =========================================================================
   Page hero (services / about / contact)
   ========================================================================= */
.page-hero {
  padding: 12rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.page-hero .lede {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 56ch;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
}

.page-hero-visual {
  position: relative;
  height: 420px;
  perspective: 1500px;
}
.price-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.price-orbit-center {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(196, 255, 97, 0.25), rgba(255, 107, 71, 0.15) 50%, transparent 70%);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 60px -10px rgba(196, 255, 97, 0.2);
  animation: centerPulse 4s ease-in-out infinite;
}
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 20px 60px -10px rgba(196, 255, 97, 0.2); }
  50% { box-shadow: 0 20px 80px -5px rgba(196, 255, 97, 0.35); }
}
.price-orbit-center .label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.4rem;
}
.price-orbit-center .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--text);
}
.price-orbit-center .num span { color: var(--lime); }
.price-orbit-center .sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 0.3rem;
}
.orbit-pill {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 0.6rem 1rem;
  font-size: 12.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
  animation: orbitFloat 6s ease-in-out infinite;
}
.orbit-pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
}
.orbit-pill strong {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--lime);
}
.orbit-pill.terra::before { background: var(--terracotta); }
.orbit-pill.terra strong { color: var(--terracotta); }
.orbit-pill.blue::before { background: #78B4FF; }
.orbit-pill.blue strong { color: #78B4FF; }
.orbit-pill.warm::before { background: var(--warm); }
.orbit-pill.warm strong { color: var(--warm); }
.orbit-pill.pink::before { background: #FF82C8; }
.orbit-pill.pink strong { color: #FF82C8; }

.orbit-pill:nth-child(2) { top: 5%; left: 0%; animation-delay: 0s; }
.orbit-pill:nth-child(3) { top: 15%; right: 0%; animation-delay: 0.6s; }
.orbit-pill:nth-child(4) { top: 50%; left: -5%; animation-delay: 1.2s; }
.orbit-pill:nth-child(5) { top: 50%; right: -5%; animation-delay: 1.8s; }
.orbit-pill:nth-child(6) { bottom: 15%; left: 5%; animation-delay: 2.4s; }
.orbit-pill:nth-child(7) { bottom: 5%; right: 8%; animation-delay: 3s; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =========================================================================
   Magnetic button effect
   ========================================================================= */
.magnetic { display: inline-block; will-change: transform; }

/* =========================================================================
   WhatsApp floating button
   ========================================================================= */
.whatsapp-fab {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.25rem 0.85rem 1rem;
  background: #25D366;
  color: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 40px -8px rgba(37, 211, 102, 0.7);
}
.whatsapp-fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-fab .wa-text { line-height: 1.1; }
.whatsapp-fab .wa-text small {
  display: block;
  font-size: 10px;
  opacity: 0.85;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .whatsapp-fab {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .whatsapp-fab .wa-text { display: none; }
}

/* Inline WhatsApp button (within page content) */
.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}
.btn-whatsapp:hover { background: #1fb957; color: white; }

/* Phone link styling */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.contact-strip-item:hover { color: var(--text); }
.contact-strip-item .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(196, 255, 97, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-strip-item .icon svg { width: 16px; height: 16px; color: var(--lime); }
.contact-strip-item.wa .icon { background: rgba(37, 211, 102, 0.15); }
.contact-strip-item.wa .icon svg { color: #25D366; }
.contact-strip-item .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.contact-strip-item .value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}
.lime { color: var(--lime); }
.italic-serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.text-muted { color: var(--text-muted); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
