/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #f5f2ec;
  color: #0d1f0e;
  overflow-x: hidden;
}



/* ─── CSS VARIABLES ─── */
:root {
  --cream: #f5f2ec;
  --dark: #0d1f0e;
  --green: #1a5c2a;
  --bright: #3dd68c;
  --mid: #6ab187;
  --warm: #e8e2d5;
  --text-muted: #5a7060;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(245,242,236,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26,92,42,0.1);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--dark); text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-logo em { font-style: italic; color: var(--green); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--dark);
  text-decoration: none; letter-spacing: 0.2px;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--green); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--dark); color: var(--cream);
  padding: 10px 24px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--green); transform: scale(1.03); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
  background: var(--dark);
}

.hero-noise {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,214,140,0.18) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:0.6;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.15)} }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,214,140,0.12); border: 1px solid rgba(61,214,140,0.25);
  border-radius: 999px; padding: 6px 18px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.5px;
  color: var(--bright); text-transform: uppercase;
  margin-bottom: 36px; position: relative; z-index: 1;
  opacity: 0; animation: riseUp 0.9s ease 0.2s forwards;
}
.hero-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.2;} }

.hero-h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700; line-height: 1.0; letter-spacing: -3px;
  color: var(--cream);
  position: relative; z-index: 1;
  opacity: 0; animation: riseUp 1s ease 0.35s forwards;
}
.hero-h1 em { font-style: italic; color: var(--bright); }
.hero-h1 .line2 { display: block; color: var(--mid); }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245,242,236,0.5); max-width: 520px;
  line-height: 1.7; margin: 28px auto 48px;
  font-weight: 300; position: relative; z-index: 1;
  opacity: 0; animation: riseUp 1s ease 0.5s forwards;
}

.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
  opacity: 0; animation: riseUp 1s ease 0.65s forwards;
}
.btn-hero {
  background: var(--bright); color: var(--dark);
  padding: 16px 36px; border-radius: 999px;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  letter-spacing: 0.3px; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-hero:hover { transform: scale(1.04) translateY(-2px); box-shadow: 0 16px 40px rgba(61,214,140,0.35); }
.btn-hero-ghost {
  background: transparent; color: var(--cream);
  padding: 16px 36px; border-radius: 999px;
  border: 1px solid rgba(245,242,236,0.25);
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s;
}
.btn-hero-ghost:hover { border-color: var(--bright); color: var(--bright); }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(245,242,236,0.35); font-size: 0.75rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
  animation: riseUp 1s ease 0.9s both;
}
.scroll-line {
  width: 1px; height: 48px; background: rgba(245,242,236,0.15);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; right: 0; bottom: 0;
  background: var(--bright);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

@keyframes riseUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ─── MARQUEE ─── */
.marquee-section {
  background: var(--bright); overflow: hidden;
  padding: 16px 0; white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeRoll 18s linear infinite;
}
.marquee-track span {
  font-family: 'Fraunces', serif;
  font-style: italic; font-size: 1rem;
  color: var(--dark); margin: 0 20px; font-weight: 400;
}
.marquee-track b { font-family: 'Plus Jakarta Sans', sans-serif; font-style: normal; font-size: 0.6rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; margin: 0 14px; opacity: 0.4; }
@keyframes marqueeRoll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes barAnim { from{width:45%} to{width:88%} }

/* ─── SECTION BASE ─── */
section { padding: 120px 5vw; }

/* ─── STICKY SCROLL: HOW IOT WORKS ─── */
.sticky-section {
  padding: 0;
  position: relative;
}

.sticky-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400vh;
  position: relative;
}

.sticky-left {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 5vw 80px 5vw;
  background: var(--dark);
  overflow: hidden;
}

.sticky-label {
  font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--bright); font-weight: 700; margin-bottom: 20px;
}

.sticky-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 24px;
}
.sticky-title em { font-style: italic; color: var(--bright); }

.sticky-desc {
  color: rgba(245,242,236,0.5); font-size: 1rem;
  line-height: 1.7; max-width: 420px; font-weight: 300;
  margin-bottom: 40px;
}

/* Animated dashboard panel */
.dash-panel {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 28px;
  max-width: 420px;
}
.dash-title { font-size: 0.78rem; color: rgba(245,242,236,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.metric-row { display: flex; gap: 16px; margin-bottom: 16px; }
.metric-chip {
  flex: 1; padding: 16px; border-radius: 12px;
  background: rgba(61,214,140,0.07); border: 1px solid rgba(61,214,140,0.12);
}
.metric-val { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--bright); font-weight: 700; line-height: 1; }
.metric-lbl { font-size: 0.72rem; color: rgba(245,242,236,0.4); margin-top: 4px; font-weight: 500; }
.meter-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.meter-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--green), var(--bright)); }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(61,214,140,0.1); border: 1px solid rgba(61,214,140,0.2);
  border-radius: 999px; padding: 8px 16px; margin-top: 4px;
  font-size: 0.8rem; color: var(--bright); font-weight: 600;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bright); animation: pulse 2s infinite; }

/* Sticky right — scroll steps */
.sticky-right {
  background: var(--cream);
  padding: 0;
}

.scroll-step {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 80px 5vw;
  border-bottom: 1px solid rgba(13,31,14,0.08);
  position: relative;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 7rem; font-weight: 700;
  color: rgba(13,31,14,0.06); line-height: 1;
  position: absolute; top: 48px; right: 40px;
  letter-spacing: -4px;
}

.step-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--dark); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
  margin-bottom: 24px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.step-h { 
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700;
  letter-spacing: -1px; line-height: 1.15; color: var(--dark);
  margin-bottom: 16px;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.6s ease 0.1s, opacity 0.6s ease 0.1s;
}
.step-p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.7;
  max-width: 380px; font-weight: 400;
  transform: translateY(20px); opacity: 0;
  transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}

.scroll-step.in-view .step-icon,
.scroll-step.in-view .step-h,
.scroll-step.in-view .step-p { transform: translateY(0); opacity: 1; }

/* ─── SPIRULINA HORIZONTAL SECTION ─── */
.spir-section {
  background: var(--warm);
  padding: 120px 5vw;
  overflow: hidden;
}

.spir-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 70px; flex-wrap: wrap;
}

.spir-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700; letter-spacing: -2px; line-height: 1.05;
  color: var(--dark); max-width: 560px;
}
.spir-h em { font-style: italic; color: var(--green); }

.spir-intro-text {
  font-size: 0.95rem; color: var(--text-muted);
  max-width: 300px; line-height: 1.7; font-weight: 400;
}

/* Horizontal scroll cards */
.spir-cards-track-wrapper {
  display: flex; gap: 24px; overflow: visible;
}

.spir-card-item {
  min-width: 320px; flex-shrink: 0;
  background: var(--cream); border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(13,31,14,0.08);
  transform: translateY(60px); opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.3s;
}
.spir-card-item:hover { box-shadow: 0 20px 60px rgba(13,31,14,0.1); transform: translateY(-4px); }
.spir-card-item.visible { transform: translateY(0); opacity: 1; }
.spir-card-item:nth-child(2) { transition-delay: 0.1s; }
.spir-card-item:nth-child(3) { transition-delay: 0.2s; }

.card-big-num {
  font-family: 'Fraunces', serif;
  font-size: 4rem; font-weight: 700; color: var(--bright);
  letter-spacing: -2px; line-height: 1;
  margin-bottom: 12px;
}
.card-big-label { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.card-big-p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ─── ABOUT — FULL-BLEED DARK ─── */
.about-section {
  background: var(--dark);
  padding: 140px 5vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.about-label { font-size: 0.75rem; letter-spacing: 2px; color: var(--bright); text-transform: uppercase; font-weight: 700; margin-bottom: 20px; }
.about-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 700;
  line-height: 1.1; letter-spacing: -1.5px; color: var(--cream);
  margin-bottom: 28px;
}
.about-h em { font-style: italic; color: var(--bright); }
.about-p { color: rgba(245,242,236,0.55); line-height: 1.75; font-size: 1rem; font-weight: 300; margin-bottom: 48px; }

.about-pills { display: flex; flex-direction: column; gap: 16px; }
.about-pill {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  transition: border-color 0.3s, background 0.3s;
  transform: translateX(-30px); opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, border-color 0.3s, background 0.3s;
}
.about-pill.in-view { transform: translateX(0); opacity: 1; }
.about-pill:nth-child(2).in-view { transition-delay: 0.1s; }
.about-pill:nth-child(3).in-view { transition-delay: 0.2s; }
.about-pill:hover { border-color: rgba(61,214,140,0.2); background: rgba(61,214,140,0.04); }
.pill-icon { font-size: 1.3rem; margin-top: 2px; }
.pill-h { font-size: 0.95rem; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.pill-p { font-size: 0.85rem; color: rgba(245,242,236,0.45); line-height: 1.55; }

/* About visual side */
.about-visual-side {
  position: relative;
}
.about-big-card {
  background: rgba(61,214,140,0.08); border: 1px solid rgba(61,214,140,0.15);
  border-radius: 28px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.about-big-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(61,214,140,0.15), transparent 70%);
}
.big-stat { font-family: 'Fraunces', serif; font-size: 5rem; font-weight: 700; color: var(--bright); line-height: 1; letter-spacing: -3px; }
.big-stat-label { font-size: 0.85rem; color: rgba(245,242,236,0.5); margin-top: 8px; font-weight: 400; }

.about-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.mini-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px; padding: 24px 20px;
}
.mini-card .val { font-family: 'Fraunces', serif; font-size: 2rem; font-weight: 700; color: var(--cream); letter-spacing: -1px; }
.mini-card .lbl { font-size: 0.78rem; color: rgba(245,242,236,0.4); margin-top: 4px; font-weight: 500; }

/* ─── SERVICES ─── */
.services-section {
  background: #080f09;
  padding: 140px 5vw;
}
.services-header { margin-bottom: 72px; }
.services-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700;
  letter-spacing: -2px; line-height: 1.05; color: var(--cream);
}
.services-h em { font-style: italic; color: var(--bright); }
.services-header .about-label { color: var(--bright) !important; }

/* ── Glowing card grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.5s ease;
  transition-delay: 0.1s;
  cursor: pointer;
}
.svc-card:hover {
  transition-delay: 0s;
}

/* Glowing circle background */
.svc-glow-circle {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.svc-glow-circle::before {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: #111a12;
  border: 6px solid var(--svc-clr, #3dd68c);
  filter: drop-shadow(0 0 10px var(--svc-clr, #3dd68c))
          drop-shadow(0 0 40px var(--svc-clr, #3dd68c));
  transition: width 0.5s ease, height 0.5s ease,
              border-radius 0.5s ease, background 0.5s ease;
  transition-delay: 0.25s;
  z-index: 0;
}
.svc-card:hover .svc-glow-circle::before {
  width: 100%; height: 100%;
  border-radius: 20px;
  background: var(--svc-clr, #3dd68c);
  transition-delay: 0s;
}

/* Big emoji icon in center */
.svc-big-icon {
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition-delay: 0.15s;
  filter: drop-shadow(0 0 12px var(--svc-clr, #3dd68c));
  user-select: none;
}
.svc-card:hover .svc-big-icon {
  transform: scale(0) rotate(90deg);
  opacity: 0;
  transition-delay: 0s;
}

/* Floating product visual (large emoji shown on hover) */
.svc-float-img {
  position: absolute;
  top: 50%; right: -10%;
  transform: translate(0, -50%) scale(0) rotate(-20deg);
  font-size: 5rem;
  z-index: 3;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: 0s;
  user-select: none;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.svc-card:hover .svc-float-img {
  transform: translate(-10%, -60%) scale(1) rotate(12deg);
  transition-delay: 0.4s;
}

/* Content revealed on hover */
.svc-content {
  position: absolute;
  left: 24px; bottom: 24px; right: 44%;
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition-delay: 0s;
  visibility: hidden;
}
.svc-card:hover .svc-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
  visibility: visible;
}
.svc-content h3 {
  color: #fff;
  font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.svc-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  line-height: 1.55;
}
.svc-content a {
  display: inline-block;
  margin-top: 12px;
  background: #fff;
  color: #111;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.2s;
}
.svc-content a:hover { background: var(--cream); }

@media (max-width: 960px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { height: 280px; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { height: 260px; }
}

/* ─── TEAM ─── */
.team-section {
  background: var(--warm); padding: 140px 5vw;
  text-align: center;
}
.team-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 700;
  letter-spacing: -2px; line-height: 1.05; color: var(--dark);
  margin-bottom: 64px;
}
.team-h em { font-style: italic; color: var(--green); }

.team-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

.team-card {
  background: var(--cream); border-radius: 28px;
  padding: 48px 36px 40px; width: 300px;
  border: 1px solid rgba(13,31,14,0.07);
  transition: transform 0.35s, box-shadow 0.35s;
  transform: translateY(40px); opacity: 0;
}
.team-card.in-view { transform: translateY(0); opacity: 1; transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.35s; }
.team-card:hover { transform: translateY(-10px); box-shadow: 0 24px 60px rgba(13,31,14,0.12); }

.team-avatar {
  width: 96px; height: 96px;
  min-width: 96px; min-height: 96px;
  border-radius: 50%;
  margin: 0 auto 22px;
  background: linear-gradient(135deg, var(--green), var(--bright));
  overflow: hidden;
  border: 3px solid rgba(26,92,42,0.2);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
  position: relative;
}
.team-avatar img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-name { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-role {
  font-size: 0.82rem; color: var(--green); font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.team-bio { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

/* ─── CONTACT ─── */
.contact-section {
  background: var(--dark); padding: 140px 5vw;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}

.contact-h {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 700;
  line-height: 1.05; letter-spacing: -1.5px; color: var(--cream);
  margin-bottom: 20px;
}
.contact-h em { font-style: italic; color: var(--bright); }
.contact-p { color: rgba(245,242,236,0.5); line-height: 1.7; font-size: 1rem; font-weight: 300; margin-bottom: 40px; }

.contact-info-items { display: flex; flex-direction: column; gap: 12px; }
.ci-row {
  display: flex; gap: 14px; align-items: center;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
}
.ci-icon { font-size: 1.1rem; }
.ci-text { font-size: 0.88rem; color: rgba(245,242,236,0.5); }
.ci-text strong { display: block; color: var(--cream); font-size: 0.92rem; margin-bottom: 2px; }

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px; padding: 48px 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.fg label { font-size: 0.78rem; font-weight: 700; color: rgba(245,242,236,0.4); letter-spacing: 0.5px; text-transform: uppercase; }
.fg input, .fg textarea, .fg select {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 18px;
  color: var(--cream); font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; outline: none; resize: none;
  transition: border-color 0.3s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--bright); }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(245,242,236,0.2); }
.fg select option { background: #1a2e1b; }

.form-btn {
  width: 100%; padding: 16px;
  background: var(--bright); color: var(--dark);
  border: none; border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  transition: all 0.3s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-btn:hover { background: #fff; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(61,214,140,0.3); }
.form-btn:disabled { cursor: not-allowed; transform: none; box-shadow: none; }
.field-err { display: none; font-size: 0.78rem; color: #ff6b6b; margin-top: 5px; font-weight: 500; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes toastIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.07);
  padding: 40px 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--cream); font-weight: 700; }
.footer-logo em { font-style: italic; color: var(--bright); }
footer p { font-size: 0.8rem; color: rgba(245,242,236,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.82rem; color: rgba(245,242,236,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--bright); }

/* ─── PROGRESS BAR ─── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 600;
  background: linear-gradient(90deg, var(--green), var(--bright));
  width: 0%; transition: width 0.1s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .sticky-container { grid-template-columns: 1fr; min-height: auto; }
  .sticky-left { position: relative; height: auto; padding: 80px 5vw; }
  .about-section, .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-h1 { letter-spacing: -2px; }
  .spir-cards-track-wrapper { flex-direction: column; }
  .spir-card-item { min-width: auto; }
}

/* ═══════════════════════════════════
   FLOATING CHATBOT
═══════════════════════════════════ */
.chat-bubble {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #1a5c2a, #3dd68c);
  border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(26,92,42,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(26,92,42,0.6); }
.chat-bubble .ico-chat { transition: opacity 0.25s, transform 0.25s; }
.chat-bubble .ico-close { position: absolute; opacity: 0; transform: rotate(-80deg) scale(0.5); transition: opacity 0.25s, transform 0.25s; }
.chat-bubble.open .ico-chat { opacity: 0; transform: rotate(80deg) scale(0.5); }
.chat-bubble.open .ico-close { opacity: 1; transform: rotate(0) scale(1); }
.chat-badge { position: absolute; top: 0; right: 0; width: 17px; height: 17px; border-radius: 50%; background: #ff4444; border: 2px solid #f5f2ec; font-size: 0.6rem; font-weight: 800; color: #fff; display: flex; align-items: center; justify-content: center; }
.chat-badge.hidden { display: none; }
.chat-window { position: fixed; bottom: 100px; right: 28px; z-index: 900; width: 360px; border-radius: 20px; overflow: hidden; background: #0d1f0e; border: 1px solid rgba(61,214,140,0.18); box-shadow: 0 20px 70px rgba(0,0,0,0.55); display: flex; flex-direction: column; max-height: 520px; opacity: 0; transform: translateY(16px) scale(0.97); pointer-events: none; transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34,1.2,0.64,1); }
.chat-window.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: all; }
.chat-header { padding: 16px 18px; background: linear-gradient(135deg, #1a5c2a 0%, #0d3a18 100%); display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.chat-header-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(61,214,140,0.18); border: 1.5px solid rgba(61,214,140,0.35); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.chat-header-name { font-family: 'Fraunces', serif; font-size: 0.92rem; font-weight: 700; color: #f5f2ec; line-height: 1.2; }
.chat-header-status { font-size: 0.7rem; color: rgba(61,214,140,0.85); font-weight: 500; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.chat-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #3dd68c; animation: pulse 2s infinite; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(61,214,140,0.2); border-radius: 3px; }
.msg { display: flex; gap: 8px; align-items: flex-end; animation: msgPop 0.3s ease both; }
.msg.user { flex-direction: row-reverse; }
@keyframes msgPop { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.msg-avatar { width: 26px; height: 26px; border-radius: 50%; background: rgba(61,214,140,0.12); border: 1px solid rgba(61,214,140,0.2); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.msg-bubble { max-width: 80%; padding: 10px 14px; font-size: 0.85rem; line-height: 1.55; border-radius: 16px; }
.msg.bot .msg-bubble { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.08); color: #f5f2ec; border-radius: 4px 16px 16px 16px; }
.msg.user .msg-bubble { background: linear-gradient(135deg, #1a5c2a, #127a2f); color: #fff; border-radius: 16px 4px 16px 16px; }
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 4px 2px; }
.typing-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(61,214,140,0.55); animation: typeBounce 1.2s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.18s; }
.typing-dot:nth-child(3) { animation-delay: 0.36s; }
@keyframes typeBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }
.quick-replies { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 14px 10px; }
.qr-btn { background: rgba(61,214,140,0.07); border: 1px solid rgba(61,214,140,0.22); border-radius: 999px; padding: 6px 13px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 600; color: #3dd68c; cursor: pointer; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.qr-btn:hover { background: rgba(61,214,140,0.15); transform: translateY(-1px); }
.chat-input-row { display: flex; align-items: flex-end; gap: 9px; padding: 12px 14px; background: rgba(0,0,0,0.25); border-top: 1px solid rgba(255,255,255,0.06); flex-shrink: 0; }
.chat-input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 11px; padding: 9px 13px; color: #f5f2ec; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; outline: none; resize: none; max-height: 90px; overflow-y: auto; transition: border-color 0.2s; line-height: 1.5; }
.chat-input::placeholder { color: rgba(245,242,236,0.22); }
.chat-input:focus { border-color: rgba(61,214,140,0.4); }
.chat-send { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; border: none; cursor: pointer; background: #3dd68c; display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.15s; }
.chat-send:hover { background: #fff; transform: scale(1.06); }
.chat-send:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }
.chat-send svg { color: #0d1f0e; display: block; }
@media (max-width: 480px) { .chat-window { width: calc(100vw - 24px); right: 12px; bottom: 88px; } .chat-bubble { right: 12px; bottom: 12px; } }




/* ═══════════════════════════════════════════════════
   EFFECT 2 — TEXT SPLIT ANIMATION
═══════════════════════════════════════════════════ */
.split-text .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
}
.split-text .char-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), opacity 0.5s ease;
}
.split-text.in-view .char-inner {
  transform: translateY(0);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   EFFECT 3 — NUMBER COUNTER
═══════════════════════════════════════════════════ */
.count-num {
  display: inline-block;
  transition: none;
}

/* ═══════════════════════════════════════════════════
   EFFECT 4 — HORIZONTAL SCROLL SECTION
═══════════════════════════════════════════════════ */
.hscroll-section {
  position: relative;
  height: 400vh;
  background: var(--dark);
}
.hscroll-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0 5vw;
}
.hscroll-label {
  font-size: 0.75rem; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--bright); font-weight: 700; margin-bottom: 14px;
}
.hscroll-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700; color: var(--cream);
  letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 48px;
}
.hscroll-heading em { font-style: italic; color: var(--bright); }
.hscroll-track-wrap {
  overflow: hidden;
  width: 100%;
}
.hscroll-track {
  display: flex; gap: 28px;
  width: max-content;
  will-change: transform;
}
.hscroll-card {
  width: 340px; flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,214,140,0.12);
  border-radius: 22px; padding: 40px 34px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.hscroll-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.hscroll-card:hover { border-color: rgba(61,214,140,0.3); background: rgba(255,255,255,0.06); }
.hscroll-card:hover::before { transform: scaleX(1); }
.hcard-num {
  font-family: 'Fraunces', serif;
  font-size: 4.5rem; font-weight: 700;
  color: var(--bright); line-height: 1;
  letter-spacing: -2px; margin-bottom: 14px;
}
.hcard-title { font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 12px; }
.hcard-body { font-size: 0.88rem; color: rgba(245,242,236,0.5); line-height: 1.68; font-weight: 300; }
.hscroll-progress {
  display: flex; gap: 8px; margin-top: 36px;
}
.hscroll-pip {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.12);
  transition: background 0.3s, flex 0.4s ease;
  flex: 1;
}
.hscroll-pip.active { background: var(--bright); flex: 3; }

@media (max-width: 768px) {
  .hscroll-section { height: auto; }
  .hscroll-sticky { position: relative; height: auto; padding: 80px 5vw; }
  .hscroll-track { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 16px; }
  .hscroll-card { width: 80vw; }
}