/* ============================================================
   CACALUTIA — v3 Conceptual / Editorial
   ============================================================ */

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

:root {
  --lime: #CFFF06;
  --lime-dark: #9BBF00;
  --lime-glow: rgba(207, 255, 6, 0.10);
  --lime-glow-md: rgba(207, 255, 6, 0.18);
  --dark-0: #030508;
  --dark-1: #080B14;
  --dark-2: #0E1219;
  --dark-3: #151A24;
  --glass: rgba(8, 11, 20, 0.6);
  --glass-border: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.07);
  --text: #c8cbd5;
  --text-muted: #6b7084;
  --text-dim: #3d4155;
  --white: #f0f0f3;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --display: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1320px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--dark-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; border: none; outline: none; }
::selection { background: var(--lime); color: var(--dark-0); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--dark-3); border-radius: 4px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   TYPOGRAPHY — oversized, editorial
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; line-height: 0.95; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.0; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -0.02em; }
p { color: var(--text-muted); line-height: 1.75; }

.text-lime { color: var(--lime); }
.text-gradient {
  background: linear-gradient(135deg, var(--lime) 0%, #e8ff80 50%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before { content: ''; width: 20px; height: 1px; background: var(--lime); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--lime);
  color: var(--dark-0);
}
.btn-primary:hover {
  box-shadow: 0 0 60px var(--lime-glow-md);
  transform: translateY(-2px);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9990;
  padding: 28px 0;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(3, 5, 8, 0.8);
  backdrop-filter: blur(24px);
  padding: 16px 0;
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px);
}
.nav-logo {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.04em;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--lime); }
.nav-logo img { width: 200px; height: auto; }
.nav.scrolled .nav-logo img { width: 160px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { padding: 10px 28px !important; font-size: 0.78rem !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; z-index: 101;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s var(--ease); }

/* Language switcher */
.lang-switch {
  display: flex; align-items: center; gap: 6px; margin-left: 8px;
}
.lang-switch a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 20px; border-radius: 4px; overflow: hidden;
  border: 1.5px solid transparent; opacity: 0.45;
  transition: all 0.3s; font-size: 0;
}
.lang-switch a:hover, .lang-switch a.active {
  opacity: 1; border-color: var(--lime);
}
.lang-switch .flag-br { background: #009c3b; position: relative; }
.lang-switch .flag-br::before {
  content: ''; position: absolute;
  width: 0; height: 0;
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-bottom: 10px solid #ffdf00; top: 0;
}
.lang-switch .flag-br::after {
  content: ''; position: absolute;
  width: 0; height: 0;
  border-left: 14px solid transparent; border-right: 14px solid transparent;
  border-top: 10px solid #ffdf00; bottom: 0;
}
.lang-switch .flag-us {
  background: linear-gradient(
    to bottom,
    #bf0a30 0%, #bf0a30 15%,
    #fff 15%, #fff 23%,
    #bf0a30 23%, #bf0a30 38%,
    #fff 38%, #fff 46%,
    #bf0a30 46%, #bf0a30 61%,
    #fff 61%, #fff 69%,
    #bf0a30 69%, #bf0a30 84%,
    #fff 84%, #fff 100%
  );
  position: relative;
}
.lang-switch .flag-us::before {
  content: ''; position: absolute;
  top: 0; left: 0;
  width: 12px; height: 10px;
  background: #3c3b6e;
}

/* ============================================================
   HERO — cinematic, full viewport
   ============================================================ */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 clamp(60px, 8vw, 120px);
  position: relative; overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-color: var(--dark-0);
}
.hero-bg-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    var(--dark-0) 0%,
    rgba(3,5,8,0.7) 40%,
    rgba(3,5,8,0.3) 70%,
    rgba(3,5,8,0.5) 100%
  );
}
.hero-orbs {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-orbs .orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: orb-float 18s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: var(--lime-glow-md); top: -10%; right: 0; }
.orb-2 { width: 300px; height: 300px; background: rgba(155,191,0,0.06); bottom: 10%; left: -5%; animation-delay: -8s; }
@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 900px; }
.hero-content .label { margin-bottom: 32px; }
.hero-content h1 { margin-bottom: 32px; }
.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Large decorative text */
.hero-watermark {
  position: absolute;
  bottom: -5%;
  right: -2%;
  font-family: var(--display);
  font-size: clamp(8rem, 15vw, 16rem);
  font-weight: 800;
  color: var(--white);
  opacity: 0.02;
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
  letter-spacing: -0.06em;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px;
  animation: marquee 35s linear infinite;
  width: max-content;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--display);
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dim);
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
  transition: color 0.3s;
}
.marquee-item:hover { color: var(--text); }
.marquee-dot { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.section-dark { background: var(--dark-1); }

/* ============================================================
   SPLIT SECTION — text + image side by side
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}
.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 100px) clamp(24px, 5vw, 80px);
}
.split-text .label { margin-bottom: 24px; }
.split-text h2 { margin-bottom: 24px; }
.split-text p { margin-bottom: 32px; font-size: 1rem; max-width: 440px; }
.split-image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-2);
  overflow: hidden;
}
.split-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--dark-0) 0%, transparent 30%);
  pointer-events: none;
}
.split.reverse .split-image::after {
  background: linear-gradient(-90deg, var(--dark-0) 0%, transparent 30%);
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Placeholder pattern for images */
.img-placeholder {
  width: 100%; height: 100%; min-height: 400px;
  background:
    radial-gradient(circle at 30% 40%, var(--lime-glow) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(155,191,0,0.05) 0%, transparent 50%),
    var(--dark-2);
  display: flex; align-items: center; justify-content: center;
}
.img-placeholder-text {
  font-family: var(--display); font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 800; color: var(--lime); opacity: 0.04;
}

/* ============================================================
   CASES — horizontal scroll gallery
   ============================================================ */
.cases-section { overflow: hidden; }
.cases-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 64px);
  gap: 24px;
}
.cases-header-text { max-width: 600px; }
.cases-header-text .label { margin-bottom: 20px; }
.cases-header-text h2 { margin-bottom: 16px; }

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--dark-1);
  border: 1px solid var(--border);
  transition: all 0.5s var(--ease);
}
.case-card:hover {
  border-color: rgba(207,255,6,0.15);
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.case-card-image {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.case-card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark-1) 0%, transparent 50%);
}
/* placeholder visuals */
.case-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.case-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, var(--lime-glow) 0%, transparent 60%);
}
.case-img-icon {
  font-size: 4rem; opacity: 0.08; position: relative; z-index: 1;
}
.case-card-body { padding: 32px; }
.case-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lime-glow);
  color: var(--lime);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.case-card h3 { margin-bottom: 10px; }
.case-card p { font-size: 0.88rem; margin-bottom: 20px; }
.case-card-metrics {
  display: flex; gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-card-metric { text-align: center; flex: 1; }
.case-card-metric-val {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 800;
  color: var(--lime);
  margin-bottom: 2px;
}
.case-card-metric-label { font-size: 0.68rem; color: var(--text-dim); }
.case-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--lime);
  margin-top: 20px; transition: gap 0.3s var(--ease);
}
.case-card:hover .case-card-link { gap: 12px; }

/* ============================================================
   FULL-BLEED IMAGE SECTION (parallax-ready)
   ============================================================ */
.full-bleed {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.full-bleed-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
  background-color: var(--dark-1);
}
.full-bleed-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(3,5,8,0.75);
}
.full-bleed .container { position: relative; z-index: 1; }
.full-bleed h2 { margin-bottom: 20px; }
.full-bleed p { max-width: 480px; margin: 0 auto 40px; font-size: 1.05rem; }

/* ============================================================
   STATS — minimal, spread out
   ============================================================ */
.stats-row {
  display: flex;
  justify-content: space-between;
  padding: clamp(48px, 6vw, 80px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; flex: 1; }
.stat-val {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.stat-desc { font-size: 0.78rem; color: var(--text-dim); font-weight: 500; }

/* ============================================================
   SERVICES — list-style, editorial
   ============================================================ */
.services-list { }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  cursor: default;
}
.service-row:first-child { border-top: 1px solid var(--border); }
.service-row:hover { padding-left: 20px; }
.service-row:hover .service-num { color: var(--lime); }
.service-num {
  font-family: var(--display);
  font-size: 0.7rem; font-weight: 700;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.service-info h3 { margin-bottom: 6px; font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.service-info p { font-size: 0.88rem; max-width: 500px; }
.service-arrow {
  font-size: 1.5rem; color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.service-row:hover .service-arrow { color: var(--lime); transform: translateX(4px); }

/* ============================================================
   ABOUT — text-heavy, editorial
   ============================================================ */
.statement-section {
  position: relative;
}
.statement-section::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(3,5,8,0.8);
  pointer-events: none;
}
.statement-section .container { position: relative; z-index: 1; }
.about-statement {
  max-width: 800px;
  padding: clamp(60px, 10vw, 140px) 0;
}
.about-statement h2 {
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.about-statement h2 strong {
  font-weight: 800;
  color: var(--lime);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--dark-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  display: flex; flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(207,255,6,0.12);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}
.blog-card-image {
  width: 100%; height: 200px;
  background: var(--dark-2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.blog-tag {
  padding: 3px 10px; background: var(--lime-glow); color: var(--lime);
  border-radius: 100px; font-weight: 700; font-size: 0.65rem;
}
.blog-date { font-size: 0.72rem; color: var(--text-dim); }
.blog-card h3 { font-size: 1.05rem; margin-bottom: 8px; transition: color 0.3s; letter-spacing: -0.02em; }
.blog-card:hover h3 { color: var(--lime); }
.blog-card p { font-size: 0.85rem; margin-bottom: 16px; flex: 1; }
.blog-read-more { font-size: 0.78rem; font-weight: 600; color: var(--lime); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.3s; }
.blog-card:hover .blog-read-more { gap: 8px; }

/* Post single */
.post-header { max-width: 760px; margin: 0 auto 48px; text-align: center; padding-top: 180px; }
.post-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; letter-spacing: -0.03em; }
.post-meta { display: flex; gap: 16px; justify-content: center; align-items: center; font-size: 0.88rem; color: var(--text-muted); }
.post-content { max-width: 700px; margin: 0 auto; }
.post-content p { margin-bottom: 24px; font-size: 1.05rem; line-height: 1.85; }
.post-content h2 { margin: 56px 0 20px; font-size: 1.7rem; }
.post-content h3 { margin: 40px 0 16px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 24px; color: var(--text-muted); }
.post-content li { margin-bottom: 10px; line-height: 1.7; }
.post-content ul { list-style: disc; } .post-content ol { list-style: decimal; }
.post-content a { color: var(--lime); border-bottom: 1px solid rgba(207,255,6,0.2); }
.post-content a:hover { border-bottom-color: var(--lime); }
.post-content blockquote {
  border-left: 3px solid var(--lime); padding: 20px 28px; margin: 32px 0;
  background: var(--dark-1); border-radius: 0 16px 16px 0;
  color: var(--white); font-style: italic;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px; border-radius: 16px;
  border: 1px solid transparent; transition: all 0.3s;
}
.contact-item:hover { background: var(--dark-1); border-color: var(--border); }
.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--lime-glow); border-radius: 12px;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.contact-item p { font-size: 0.85rem; }
.contact-item a { color: var(--lime); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 16px 20px;
  background: var(--dark-1); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text); font-size: 0.9rem;
  transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--lime); box-shadow: 0 0 0 3px var(--lime-glow); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.whatsapp-box {
  margin-top: 12px; padding: 32px;
  background: var(--dark-1); border: 1px solid var(--border); border-radius: 20px;
}
.whatsapp-box h4 { margin-bottom: 8px; }
.whatsapp-box p { font-size: 0.85rem; margin-bottom: 20px; }

/* ============================================================
   PAGE HEADER
   ============================================================ */
.page-header {
  padding: clamp(140px, 18vw, 220px) 0 clamp(60px, 8vw, 100px);
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, var(--lime-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header h1 { margin-bottom: 20px; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-header p { font-size: 1.1rem; max-width: 500px; font-weight: 300; }

/* ============================================================
   CTA
   ============================================================ */
.cta-section { padding: clamp(80px, 10vw, 140px) 0; }
.cta-box {
  position: relative; border-radius: 32px;
  padding: clamp(60px, 8vw, 100px) clamp(32px, 5vw, 80px);
  text-align: center; overflow: hidden;
  background: var(--dark-1); border: 1px solid var(--border);
}
.cta-box::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, var(--lime-glow-md), transparent 70%);
  pointer-events: none;
}
.cta-box h2 { position: relative; margin-bottom: 20px; }
.cta-box p { position: relative; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; font-size: 1rem; }
.cta-actions { position: relative; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark-1); border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer-brand p { margin-top: 16px; font-size: 0.85rem; max-width: 260px; }
.footer h5 {
  color: var(--text-dim); margin-bottom: 20px;
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.3s; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 0.78rem; color: var(--text-dim);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border);
  color: var(--text-muted); transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s 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; }
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease-out, transform 0.8s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-image { min-height: 50vh; }
  .split.reverse { direction: ltr; }
  .split-image::after { background: linear-gradient(to top, var(--dark-0) 0%, transparent 40%) !important; }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-row { grid-template-columns: 60px 1fr auto; }
  .stats-row { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; margin-bottom: 24px; }
}

@media (max-width: 768px) {
  section { padding: clamp(60px, 10vw, 100px) 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed; inset: 0;
    background: rgba(3,5,8,0.97); backdrop-filter: blur(24px);
    justify-content: center; align-items: center; gap: 28px; z-index: 100;
  }
  .nav-links.open a { font-size: 1.4rem; color: var(--text); }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .cases-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-box { border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 8px; }
  .service-num { margin-bottom: 0; }
  .service-arrow { display: none; }
  .stat-item { flex: 0 0 50%; }
  .full-bleed { min-height: 50vh; }
  .full-bleed-bg { background-attachment: scroll; }
}
