/* =============================================
   LAMAFLOW — Stylesheet
   ============================================= */

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

/* === Variables === */
:root {
  --violet: #6161FF;
  --violet-dark: #4a4ae0;
  --violet-light: #ebebff;
  --space: #181B34;
  --green: #00CA72;
  --green-dark: #00a85e;
  --white: #ffffff;
  --gray-bg: #F0F3FF;
  --gray-light: #e4e8f0;
  --gray-mid: #9aa3b2;
  --gray-dark: #5a6478;
  --text: #181B34;
  --text-light: #4a5568;
  --shadow-sm: 0 2px 12px rgba(97,97,255,0.08);
  --shadow-md: 0 8px 32px rgba(97,97,255,0.12);
  --shadow-lg: 0 24px 64px rgba(97,97,255,0.16);
  --radius: 14px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === Typography === */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--text-light); }

/* === Layout === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section--gray { background: var(--gray-bg); }
.section--dark {
  background: linear-gradient(160deg, #0d1021 0%, #181B34 60%, #1e1654 100%);
  color: var(--white);
}
.section--dark p { color: rgba(255,255,255,0.68); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  cursor: pointer; border: none;
  transition: all 0.25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn--primary {
  background: var(--violet); color: var(--white);
  box-shadow: 0 4px 18px rgba(97,97,255,0.38);
}
.btn--primary:hover { background: var(--violet-dark); box-shadow: 0 8px 28px rgba(97,97,255,0.48); transform: translateY(-2px); }
.btn--secondary { background: transparent; color: var(--violet); border: 2px solid var(--violet); }
.btn--secondary:hover { background: var(--violet); color: var(--white); transform: translateY(-2px); }
.btn--green { background: var(--green); color: var(--white); box-shadow: 0 4px 18px rgba(0,202,114,0.35); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--white { background: var(--white); color: var(--violet); font-weight: 700; }
.btn--white:hover { background: var(--gray-bg); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); }
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn--lg { padding: 16px 34px; font-size: 1rem; }

/* === Section Header === */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 580px; margin: 14px auto 0; font-size: 1rem; }

/* === Pill badge === */
.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  margin-bottom: 14px;
}
.pill--violet { background: var(--violet-light); color: var(--violet); }
.pill--green { background: rgba(0,202,114,0.12); color: #00905a; }
.pill--white { background: rgba(255,255,255,0.14); color: white; }


/* =============================================
   NAVBAR — Clean & Minimal
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(97,97,255,0.07);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(97,97,255,0.09); }

.navbar__inner {
  display: flex; align-items: center;
  height: 68px; gap: 0;
}

/* Logo */
.navbar__logo {
  display: flex; align-items: center;
  margin-right: auto;
  flex-shrink: 0;
}
.navbar__logo img { height: 72px; width: auto; }

/* Nav links */
.navbar__nav {
  display: flex; align-items: center;
  gap: 2px;
  margin: 0 24px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--gray-dark);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; cursor: pointer;
  border: none; background: none; font-family: 'Poppins', sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--violet); background: var(--violet-light); }
.nav-link svg { width: 12px; height: 12px; opacity: 0.6; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(24,27,52,0.14);
  border: 1px solid var(--gray-light);
  min-width: 210px; padding: 6px;
  opacity: 0; visibility: hidden;
  transition: all 0.22s var(--ease);
  pointer-events: none;
}
.nav-item:hover .dropdown { pointer-events: all; }
/* Invisible bridge across the gap so the menu doesn't close while the cursor travels to it */
.dropdown::before {
  content: ''; position: absolute;
  top: -16px; left: 0; right: 0; height: 18px;
}
.dropdown__item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 0.855rem; font-weight: 500;
  color: var(--text); cursor: pointer;
  transition: background 0.15s;
}
.dropdown__item:hover { background: var(--gray-bg); color: var(--violet); }
.dropdown__icon {
  width: 30px; height: 30px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.dropdown__icon img,
.dropdown__icon svg { width: 18px; height: 18px; object-fit: contain; display: block; }

/* Right */
.navbar__right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language switcher */
.lang {
  display: flex; align-items: center;
  background: var(--gray-bg); border-radius: 8px; padding: 3px;
  gap: 1px;
}
.lang__btn {
  padding: 4px 9px;
  border: none; background: transparent;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.75rem;
  cursor: pointer; color: var(--gray-dark);
  transition: all 0.18s;
}
.lang__btn.active {
  background: var(--white); color: var(--violet);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none;
  background: transparent; border-radius: 8px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  display: block; transition: all 0.25s;
}

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: white; z-index: 999;
  overflow-y: auto; padding: 20px 28px 100px;
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0;
  transition: all 0.25s var(--ease);
  pointer-events: none;
}
.mobile-drawer.open {
  display: flex; transform: translateY(0); opacity: 1;
  pointer-events: all;
}
.mobile-drawer a, .mobile-drawer button {
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 1rem; font-weight: 500; color: var(--text);
  border: none; background: none; font-family: 'Poppins', sans-serif;
  text-align: left; cursor: pointer; width: 100%;
  display: block; transition: background 0.15s;
}
.mobile-drawer a:hover, .mobile-drawer button:hover { background: var(--gray-bg); color: var(--violet); }
.mobile-drawer__cta { margin-top: 16px; }


/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 130px; padding-bottom: 0;
  background: linear-gradient(150deg, #ffffff 0%, #f5f5ff 50%, #eef9f4 100%);
  overflow: hidden; position: relative;
}
/* Animated aurora blobs behind the hero */
.hero::before,
.hero::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(60px); z-index: 0; pointer-events: none;
}
.hero::before {
  width: 520px; height: 520px; top: -140px; left: -120px;
  background: radial-gradient(circle, rgba(97,97,255,0.28), transparent 65%);
  animation: auroraA 17s ease-in-out infinite;
}
.hero::after {
  width: 440px; height: 440px; bottom: -160px; right: -90px;
  background: radial-gradient(circle, rgba(0,202,114,0.22), transparent 65%);
  animation: auroraB 21s ease-in-out infinite;
}
@keyframes auroraA { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(70px,50px) scale(1.12); } }
@keyframes auroraB { 0%,100%{ transform: translate(0,0) scale(1); } 50%{ transform: translate(-60px,-40px) scale(1.1); } }
.hero .container { position: relative; z-index: 1; }

.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: flex-end;
  min-height: 580px;
}

/* Left */
.hero__content { padding-bottom: 80px; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--violet-light); color: var(--violet);
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  margin-bottom: 24px;
}
.hero__tag::before {
  content: ''; width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.4} }

.hero__h1 { margin-bottom: 22px; }
.hero__h1 em { font-style: normal; color: var(--violet); }
.hero__sub {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 460px; margin-bottom: 36px; line-height: 1.75;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Partner badge below CTA */
.hero__partner {
  margin-top: 40px; display: flex; align-items: center; gap: 16px;
}
.hero__partner img { height: 52px; width: auto; }
.hero__partner-text { font-size: 0.8rem; color: var(--gray-dark); font-weight: 500; line-height: 1.4; }
.hero__partner-text strong { display: block; color: var(--text); font-size: 0.85rem; }

/* Right — dashboard card */
.hero__visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  padding: 40px 0;
}

/* Dashboard card */
.hero__dashboard {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(97,97,255,0.14), 0 4px 16px rgba(0,0,0,0.06);
  padding: 28px;
  width: 100%; max-width: 400px;
  border: 1px solid rgba(97,97,255,0.08);
  position: relative; z-index: 1;
}
.dash__header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.dash__avatar {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--violet), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.dash__title { font-weight: 700; font-size: 0.92rem; }
.dash__sub { font-size: 0.75rem; color: var(--gray-mid); }
.dash__status {
  margin-left: auto;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600; color: var(--green-dark);
  background: rgba(0,202,114,0.1); border-radius: 20px; padding: 4px 10px;
}
.dash__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: blink 1.5s infinite;
}
.dash__metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 20px;
}
.dash__metric {
  background: var(--gray-bg); border-radius: 10px; padding: 14px;
}
.dash__metric-val {
  display: block; font-size: 1.6rem; font-weight: 900; line-height: 1;
}
.dash__metric-val.violet { color: var(--violet); }
.dash__metric-val.green  { color: var(--green-dark); }
.dash__metric-label { font-size: 0.72rem; color: var(--gray-dark); margin-top: 3px; display: block; }
.dash__bars { margin-bottom: 18px; display: flex; flex-direction: column; gap: 9px; }
.dash__bar-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-light);
}
.dash__bar-row > span:first-child { width: 90px; flex-shrink: 0; }
.dash__bar-row > span:last-child  { width: 32px; text-align: right; flex-shrink: 0; font-weight: 600; }
.dash__bar {
  flex: 1; height: 6px; background: var(--gray-light);
  border-radius: 3px; overflow: hidden;
}
.dash__bar-fill { height: 100%; border-radius: 3px; }
.dash__tasks { display: flex; flex-direction: column; gap: 7px; }
.dash__task {
  font-size: 0.8rem; padding: 8px 12px; border-radius: 8px;
  font-weight: 500;
}
.dash__task.done  { background: rgba(0,202,114,0.08); color: #00905a; }
.dash__task.active{ background: var(--violet-light); color: var(--violet); }

/* Float badges */
.hero__float {
  position: absolute; background: white;
  border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 11px 16px;
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.8rem; white-space: nowrap;
  animation: floatY 4s ease-in-out infinite;
}
.hero__float:nth-child(3) { animation-delay: 1.5s; }
.hero__float-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
@keyframes floatY { 0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)} }
.hero__float-1 { top: 10px; left: -20px; z-index: 10; }
.hero__float-2 { bottom: 40px; right: -16px; z-index: 10; }


/* =============================================
   MASCOT — Peeking lamas
   ============================================= */
.mascot {
  position: fixed; bottom: 0; z-index: 500;
  user-select: none; pointer-events: none;
  perspective: 700px;
  transform: translateY(112%);
  transition: transform 0.7s cubic-bezier(.34, 1.4, .64, 1); /* springy slide-in */
  filter: drop-shadow(0 10px 22px rgba(24, 27, 52, 0.28));
}
.mascot img {
  width: 100%; display: block;
  transform-origin: bottom center;
  pointer-events: auto;
}

/* Bottom-right lama */
.mascot--br { right: 40px; width: 132px; }
.mascot--br.visible { transform: translateY(44%); }
.mascot--br.visible img { animation: mascotBob 4.5s ease-in-out infinite; }

/* Bottom-left lama (mirrored to look toward the page) */
.mascot--bl { left: 24px; width: 124px; transform: translateY(112%) scaleX(-1); }
.mascot--bl.visible { transform: translateY(46%) scaleX(-1); }
.mascot--bl.visible img { animation: mascotBobL 5s ease-in-out infinite; }

/* Gentle float + subtle 3D turn */
@keyframes mascotBob {
  0%, 100% { transform: translateY(0) rotateZ(0deg) rotateY(0deg); }
  30%      { transform: translateY(-7px) rotateZ(2.5deg) rotateY(10deg); }
  70%      { transform: translateY(-3px) rotateZ(-2deg) rotateY(-9deg); }
}
@keyframes mascotBobL {
  0%, 100% { transform: translateY(0) rotateZ(0deg) rotateY(0deg); }
  35%      { transform: translateY(-6px) rotateZ(-2.5deg) rotateY(9deg); }
  75%      { transform: translateY(-3px) rotateZ(2deg) rotateY(-8deg); }
}

/* Pop up + react on hover */
.mascot--br:hover { transform: translateY(8%); }
.mascot--bl:hover { transform: translateY(10%) scaleX(-1); }
.mascot:hover img { animation-duration: 0.9s !important; }

/* Hover → peek up (as before), then slide down and vanish */
.mascot--br.mascot--poof {
  animation: mascotPoof 0.85s cubic-bezier(.4, 0, .6, 1) forwards !important;
  pointer-events: none;
}
.mascot--poof img { animation: none !important; }
@keyframes mascotPoof {
  0%   { transform: translateY(44%);  opacity: 1; }
  35%  { transform: translateY(8%);   opacity: 1; }   /* peek up, like the old hover */
  100% { transform: translateY(135%); opacity: 0; }   /* slide down & disappear */
}


/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--space);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 500;
}
.trust-item strong { color: white; }
.trust-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.12);
}


/* =============================================
   ABOUT
   ============================================= */
.about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about__text { }
.about__text p { font-size: 0.97rem; line-height: 1.8; margin-bottom: 14px; }
.about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 40px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-light);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.about__stat {
  padding: 20px; text-align: center;
  border-right: 1px solid var(--gray-light);
}
.about__stat:last-child { border-right: none; }
.about__stat-num { font-size: 1.7rem; font-weight: 900; color: var(--violet); display: block; line-height: 1; }
.about__stat-label { font-size: 0.75rem; color: var(--gray-dark); margin-top: 4px; }

/* About visual: dark card + lama video (screen blend hides the black bg) */
.about__visual { position: relative; }
.about__lama-card {
  background: linear-gradient(160deg, #0d1021, #181B34);
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
}
.about__lama-video {
  display: block; position: relative;
  width: 100%; height: auto;   /* full video height, no cropping */
  mix-blend-mode: screen;
  z-index: 2;
}
/* Thin gradient to soften the cropped top edge of the video */
.about__video-top {
  position: absolute; top: 0; left: 0; right: 0; height: 56px;
  background: linear-gradient(to bottom, #0d1021 0%, transparent 100%);
  z-index: 3; pointer-events: none;
}
.about__lama-glow {
  position: absolute; bottom: 0; right: 0;
  width: 70%; height: 240px;
  background: radial-gradient(ellipse at bottom right, rgba(97,97,255,0.30), transparent 70%);
  z-index: 1;
}
.about__badge-wrap {
  position: absolute; top: 16px; left: 16px; z-index: 5;
}
.about__badge-wrap img { width: 90px; height: auto; }


/* =============================================
   SPECIALTIES
   ============================================= */
.spec__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.spec-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.spec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(97,97,255,0.2); }
.spec-card__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--violet-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
  transition: background 0.25s;
}
.spec-card:hover .spec-card__icon { background: var(--violet); }
.spec-card h3 { margin-bottom: 8px; font-size: 0.98rem; }
.spec-card p { font-size: 0.85rem; line-height: 1.6; }


/* =============================================
   ECOSYSTEM
   ============================================= */
.eco__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.eco-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 28px 18px;
  text-align: center; transition: all 0.25s var(--ease); cursor: pointer;
}
.eco-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.22); transform: translateY(-4px); }
.eco-card__icon { font-size: 1.8rem; margin-bottom: 12px; }
.eco-card__icon--media {
  width: 60px; height: 60px; margin: 0 auto 14px;
  background: #fff; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.eco-card__icon--media img,
.eco-card__icon--media svg {
  width: auto; height: auto; max-width: 32px; max-height: 32px; display: block;
}
.eco-card h3 { font-size: 0.9rem; color: white; margin-bottom: 7px; }
.eco-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }


/* =============================================
   AI SUITE
   ============================================= */
.ai-suite { background: linear-gradient(160deg, #f7f7ff 0%, #ffffff 50%, #f2fbff 100%); }
.ai-suite__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ai-suite__card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 38px 30px; text-align: center;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.ai-suite__card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #00d2ff, #a358ff, #ff5ac4);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.ai-suite__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(97,97,255,0.2); }
.ai-suite__card:hover::before { transform: scaleX(1); }
.ai-suite__logo {
  width: 76px; height: 76px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.ai-suite__logo img { width: 66px; height: 66px; object-fit: contain; display: block; }
.ai-suite__card h3 { font-size: 1.05rem; margin-bottom: 9px; }
.ai-suite__card p { font-size: 0.86rem; line-height: 1.65; }
@media (max-width: 760px) { .ai-suite__grid { grid-template-columns: 1fr; } }


/* =============================================
   PRODUCT TOUR (monday.com screenshots)
   ============================================= */
.carousel { position: relative; max-width: 820px; margin: 0 auto; }
.carousel__viewport { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.carousel__track { display: flex; transition: transform 0.55s cubic-bezier(.4,0,.2,1); }
.carousel__track > .tour__card { flex: 0 0 100%; min-width: 100%; }
.carousel__btn {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.92); color: var(--violet);
  font-size: 1.7rem; line-height: 1; cursor: pointer; z-index: 6;
  box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.carousel__btn:hover { background: var(--violet); color: #fff; transform: translateY(-50%) scale(1.1); }
.carousel__btn--prev { left: -14px; }
.carousel__btn--next { right: -14px; }
.carousel__dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.carousel__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: var(--gray-light); cursor: pointer; transition: all 0.25s var(--ease); }
.carousel__dot.active { background: var(--violet); width: 28px; border-radius: 5px; }

.tour__card { background: var(--white); margin: 0; }
.tour__frame { position: relative; background: #1a1d33; padding-top: 36px; overflow: hidden; }
.tour__dots { position: absolute; top: 13px; left: 16px; display: flex; gap: 6px; z-index: 2; }
.tour__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.32); }
.tour__frame img { display: block; width: 100%; height: 420px; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.tour__card:hover .tour__frame img { transform: scale(1.05); }
@media (max-width: 700px) { .tour__frame img { height: 230px; } }
.tour__cap { display: flex; align-items: center; gap: 12px; padding: 20px 26px; }
.tour__logo { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }
.tour__cap-text { display: flex; flex-direction: column; line-height: 1.35; }
.tour__cap-text strong { font-size: 0.98rem; color: var(--text); }
.tour__cap-text span { font-size: 0.83rem; color: var(--text-light); }
@media (max-width: 640px) {
  .carousel__btn { width: 40px; height: 40px; font-size: 1.4rem; }
  .carousel__btn--prev { left: 4px; }
  .carousel__btn--next { right: 4px; }
}


/* =============================================
   SERVICES
   ============================================= */
.srv__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.srv-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: all 0.25s var(--ease); position: relative; overflow: hidden;
}
.srv-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--green));
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.srv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(97,97,255,0.28);
}
.srv-card__num {
  position: absolute; top: 24px; right: 28px;
  font-size: 2.8rem; font-weight: 900;
  color: var(--gray-bg); line-height: 1; user-select: none;
}
.srv-card h3 { margin-bottom: 10px; }
.srv-card p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 18px; }
.srv-card__list { display: flex; flex-direction: column; gap: 7px; }
.srv-card__list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: var(--text-light); font-weight: 500;
}
.srv-card__list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--green); border-radius: 50%; flex-shrink: 0;
}


/* =============================================
   ACADEMY
   ============================================= */
.academy__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.academy__list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 32px; }
.academy__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.9rem; color: var(--text-light);
}
.academy__check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,202,114,0.13); color: #00905a;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.academy__card {
  background: linear-gradient(160deg, #00905a, #00CA72);
  border-radius: var(--radius-lg); padding: 44px 36px;
  color: white; position: relative; overflow: hidden;
  text-align: center;
}
.academy__card::before {
  content: ''; position: absolute;
  top: -60px; right: -60px; width: 200px; height: 200px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
}
.academy__card-icon { font-size: 3.5rem; margin-bottom: 16px; position: relative; z-index: 1; }
.academy__card h3 { color: white; font-size: 1.4rem; margin-bottom: 8px; position: relative; z-index: 1; }
.academy__card p { color: rgba(255,255,255,0.8); margin-bottom: 28px; position: relative; z-index: 1; }
.academy__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; position: relative; z-index: 1;
}
.academy__stat {
  background: rgba(255,255,255,0.16); border-radius: 10px; padding: 14px 10px;
}
.academy__stat-num { font-size: 1.4rem; font-weight: 900; display: block; }
.academy__stat-label { font-size: 0.72rem; opacity: 0.8; }


/* =============================================
   TEMPLATES
   ============================================= */
.tmpl__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.tmpl-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.25s var(--ease);
}
.tmpl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tmpl-card__head {
  padding: 32px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
}
.tmpl-card:nth-child(2) .tmpl-card__head { background: linear-gradient(135deg, #00905a, var(--green)); }
.tmpl-card__head::after {
  content: ''; position: absolute;
  bottom: -40px; right: -40px; width: 140px; height: 140px;
  background: rgba(255,255,255,0.09); border-radius: 50%;
}
.tmpl-card__icon { font-size: 2.2rem; margin-bottom: 10px; position: relative; z-index: 1; }
.tmpl-card__head h3 { color: white; font-size: 1.2rem; margin-bottom: 6px; position: relative; z-index: 1; }
.tmpl-card__head p { color: rgba(255,255,255,0.78); font-size: 0.87rem; position: relative; z-index: 1; }
.tmpl-card__body { padding: 26px 28px; }
.tmpl-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.tmpl-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; color: var(--text-light);
}
.tmpl-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,202,114,0.12); color: #00905a;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; flex-shrink: 0;
}
.tmpl-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; border-top: 1px solid var(--gray-light);
}
.tmpl-card__price { font-size: 1.3rem; font-weight: 900; color: var(--violet); }


/* =============================================
   FAQ
   ============================================= */
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(97,97,255,0.3); box-shadow: 0 0 0 3px var(--violet-light); }
.faq-item__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: transparent; border: none;
  cursor: pointer; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.95rem; color: var(--text);
  text-align: left; gap: 16px;
}
.faq-item__plus {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--violet-light); color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; font-weight: 700;
  transition: all 0.2s;
}
.faq-item.open .faq-item__plus { background: var(--violet); color: white; transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-item.open .faq-item__a { max-height: 200px; }
.faq-item__a p { padding: 0 22px 18px; font-size: 0.9rem; line-height: 1.75; }


/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--violet), #4040cc);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -80px; left: -10%;
  width: 55%; height: 280%;
  background: rgba(255,255,255,0.03); border-radius: 50%;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: white; margin-bottom: 14px; }
.cta-banner > .cta-banner__inner > p {
  color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 36px;
}
.cta-banner__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Lama peeks in CTA */
.cta-banner__lama {
  position: absolute; right: 5%; bottom: 0;
  width: 220px; opacity: 0.18;
  pointer-events: none;
}


/* =============================================
   CONTACT
   ============================================= */
.contact__inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 60px; align-items: start;
}
/* Prevent grid children from overflowing the viewport on mobile */
.contact__info, .contact__form-box { min-width: 0; }
.contact__info h2 { margin-bottom: 14px; overflow-wrap: break-word; }
.contact__info > p { font-size: 0.97rem; margin-bottom: 36px; }
.contact__details { display: flex; flex-direction: column; gap: 18px; }
.contact__detail { display: flex; align-items: flex-start; gap: 14px; }
.contact__detail-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--violet-light); color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact__detail-text strong { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.contact__detail-text span { font-size: 0.85rem; color: var(--text-light); }
.contact__form-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 38px; border: 1px solid var(--gray-light);
  box-shadow: var(--shadow-md);
}
.contact__form-box h3 { margin-bottom: 24px; font-size: 1.1rem; }
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-weight: 600; font-size: 0.83rem; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 1.5px solid var(--gray-light); border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  color: var(--text); background: var(--gray-bg);
  transition: all 0.2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--violet); background: var(--white);
  box-shadow: 0 0 0 3px var(--violet-light);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 0.95rem; }


/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--space); color: rgba(255,255,255,0.7); padding: 72px 0 36px; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.footer__brand p { font-size: 0.87rem; margin-bottom: 22px; max-width: 270px; line-height: 1.7; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo img { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__monday-logo img { height: 56px; margin-top: 8px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem; font-weight: 600;
  transition: all 0.2s var(--ease);
}
.footer__social a:hover { background: var(--violet); color: #fff; transform: translateY(-2px); }
.footer__social svg { flex-shrink: 0; }
.footer__col h4 {
  color: white; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.09em; margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 9px; }
.footer__links a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color 0.18s; }
.footer__links a:hover { color: white; }
.footer__products {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 30px; padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 4px;
}
.footer__products img {
  height: 30px; width: auto; opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__products img:hover { opacity: 1; transform: translateY(-2px); }
.footer__products-sep { width: 1px; height: 26px; background: rgba(255,255,255,0.14); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.36); }
.footer__credit { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__credit:hover { color: #fff; }
.footer__heart { color: #ff4d6d; }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.36); transition: color 0.18s; }
.footer__bottom-links a:hover { color: white; }


/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .spec__grid { grid-template-columns: repeat(2, 1fr); }
  .eco__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .navbar__nav { display: none; }
  .navbar__right .btn { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { padding-bottom: 40px; }
  .hero__visual { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
  .srv__grid { grid-template-columns: 1fr; }
  .academy__inner { grid-template-columns: 1fr; gap: 40px; }
  .tmpl__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .eco__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .spec__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-box { padding: 26px 20px; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .trust-bar__inner { gap: 24px; }
  .trust-sep { display: none; }
}

/* Hebrew — larger font sizes for readability */
html[lang="he"] body { font-size: 1.08rem; }
html[lang="he"] h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
html[lang="he"] h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
html[lang="he"] h3 { font-size: 1.25rem; }
html[lang="he"] p,
html[lang="he"] li,
html[lang="he"] span,
html[lang="he"] label { font-size: 1.05em; line-height: 1.9; }


/* =============================================
   MODERN EFFECTS — glitch + button shine
   ============================================= */
/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--violet), var(--green));
  z-index: 2000; transition: width 0.1s linear;
}

.glitch { position: relative; display: inline-block; color: var(--violet); }
.glitch::before,
.glitch::after {
  content: attr(data-text); position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; pointer-events: none; opacity: 0.9;
}
.glitch::before { color: #00d2d2; animation: glitchA 3.2s infinite steps(2, end); }
.glitch::after  { color: #ff2e97; animation: glitchB 2.6s infinite steps(2, end); }
.hero__h1:hover .glitch::before { animation-duration: 0.7s; }
.hero__h1:hover .glitch::after  { animation-duration: 0.55s; }
@keyframes glitchA {
  0%, 92%, 100% { clip-path: inset(0 0 100% 0); transform: translate(0, 0); }
  93% { clip-path: inset(0 0 55% 0);  transform: translate(-3px, -1px); }
  96% { clip-path: inset(40% 0 20% 0); transform: translate(3px, 1px); }
  99% { clip-path: inset(10% 0 70% 0); transform: translate(-2px, 1px); }
}
@keyframes glitchB {
  0%, 90%, 100% { clip-path: inset(100% 0 0 0); transform: translate(0, 0); }
  91% { clip-path: inset(60% 0 10% 0); transform: translate(3px, 1px); }
  95% { clip-path: inset(25% 0 45% 0); transform: translate(-3px, -1px); }
  98% { clip-path: inset(70% 0 5% 0);  transform: translate(2px, -1px); }
}

/* Button: gradient + shine sweep */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 60%; height: 100%; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn:hover::after { left: 150%; }
.btn--primary { background: linear-gradient(135deg, var(--violet) 0%, #8a5cff 100%); }
.btn--primary:hover { background: linear-gradient(135deg, var(--violet-dark) 0%, #6f43e8 100%); }

@media (prefers-reduced-motion: reduce) {
  .glitch::before, .glitch::after { animation: none; opacity: 0; }
  .btn::after { display: none; }
  .carousel__track { transition: none; }
  .hero::before, .hero::after { animation: none; }
  .mascot img { animation: none !important; }
  .about__lama-anim { animation: none; }
}
