/* ===== CSS Variables ===== */
:root {
  --primary: #38d15e;
  --secondary: #75df51;
  --accent: #0dbd95;
  --bg-soft: #e1fdef;
  --bg-soft-fade: #eefbf3;
  --white: #ffffff;
  --dark: #1a1a2e;
  --color-dark: #04372b;
  --gray-100: #f8faf9;
  --gray-200: #e8ebe9;
  --gray-400: #9ca3a0;
  --gray-600: #5a6360;
  --gray-800: #2d3331;

  --font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.25rem 0.375rem -0.0625rem rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 0.625rem 0.9375rem -0.1875rem rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 1.25rem 1.5625rem -0.3125rem rgba(0, 0, 0, 0.1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 14.5px;
}

body {
  font-family: var(--font-family);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.125rem;
}

p {
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 0.0625rem solid var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 0.125rem solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-large {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
}

/* ===== Navigation ===== */
.navbar {
  font-size: 2rem;
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition:
    var(--transition),
    transform 0.3s ease,
    top 0.3s ease;
}

.navbar.hidden {
  top: -6.25rem;
}

.nav-bar-left,
.nav-bar-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.3125rem 0.5rem 0.3125rem 1.25rem;
  background: transparent;
  border-radius: 6.25rem;
  border: 0.0625rem solid transparent;
  transition: var(--transition);
  height: 2.75rem;
}

.navbar.scrolled .nav-bar-left,
.navbar.scrolled .nav-bar-right {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
}

/* Navbar on light sections (about, why-atomic, etc.) */
.navbar.light-section .nav-bar-left,
.navbar.light-section .nav-bar-right {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.06);
  border: 0.0625rem solid rgba(0, 0, 0, 0.06);
}

.navbar.light-section .nav-links a {
  color: var(--gray-800);
}

.navbar.light-section .nav-links a:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.05);
}

.navbar.light-section .nav-links a.active {
  color: var(--primary);
  background: rgba(56, 209, 94, 0.1);
}

.navbar.light-section .nav-btn-secondary {
  color: var(--gray-800);
}

.navbar.light-section .nav-btn-secondary:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.05);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.5rem 1rem;
  border-radius: 3.125rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.nav-links a.active {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 3.125rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
  box-shadow: 0 0.25rem 0.9375rem rgba(56, 209, 94, 0.3);
}

.nav-cta:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.5625rem rgba(56, 209, 94, 0.4);
}

.nav-bar-right {
  gap: 0.5rem;
  margin-left: auto;
}

.nav-lang {
  display: flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
}

.navbar.scrolled .nav-lang {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.navbar.light-section .nav-lang {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.nav-btn-secondary {
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 1rem;
  border-radius: 3.125rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-btn-secondary:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  padding: 0.1875rem;
  background: transparent;
  border-radius: 0.2rem;
  border: none;
}

.lang-slider {
  position: absolute;
  top: 0.1875rem;
  left: 0.1875rem;
  width: 2.75rem;
  height: calc(100% - 0.375rem);
  background: var(--primary);
  border-radius: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  font-weight: 400;
  color: darkgreen;
}

.lang-switcher[data-active="1"] .lang-slider {
  transform: translateX(calc(2.75rem + 0.25rem));
}

.lang-switcher[data-active="2"] .lang-slider {
  transform: translateX(calc(5.5rem + 0.5rem));
}

.lang-btn {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  padding: 0.375rem 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
  font-family: inherit;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}

.lang-btn.active {
  color: var(--white);
}

/* Light section styles */
.navbar.light-section .lang-switcher {
  background: transparent;
  border: none;
}

.navbar.light-section .lang-btn {
  color: var(--gray-500);
}

.navbar.light-section .lang-btn:hover {
  color: var(--gray-800);
}

.navbar.light-section .lang-btn.active {
  color: var(--white);
}

/* Mobile language switcher */
.mobile-lang-selector {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 0.75rem;
}

.lang-switcher.mobile {
  width: 100%;
  background: var(--bg-soft);
  border-color: var(--gray-200);
  padding: 0.25rem;
  border-radius: 0.625rem;
}

.lang-switcher.mobile .lang-slider {
  top: 0.25rem;
  left: 0.25rem;
  height: calc(100% - 0.5rem);
}

.lang-switcher.mobile .lang-btn {
  flex: 1;
  padding: 0.5rem;
  color: var(--gray-500);
  font-size: 0.8rem;
  text-align: center;
}

.lang-switcher.mobile .lang-btn:hover {
  color: var(--gray-800);
}

.lang-switcher.mobile .lang-btn.active {
  color: var(--white);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-img {
  height: 2rem;
  width: auto;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3125rem;
}

.mobile-lang-wrapper {
  display: none;
}

.mobile-menu-btn span {
  width: 1.5rem;
  height: 0.125rem;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6.25rem 1.5rem 3.75rem;
  background: linear-gradient(160deg, #0a1a14 0%, #0d2818 50%, #0a1a14 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Glow Effect */
.hero-glow {
  position: absolute;
  width: 50rem;
  height: 50rem;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(56, 209, 94, 0.15) 0%,
    transparent 60%
  );
  filter: blur(3.75rem);
  animation: glowPulse 8s 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.1);
  }
}

/* Particles Container */
.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  width: 0.25rem;
  height: 0.25rem;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh);
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-6.25rem);
  }
}

/* Hero Layout */
.hero-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  max-width: 81.25rem;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.hero-left {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Tag */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 1.125rem;
  background: rgba(56, 209, 94, 0.1);
  border: 0.0625rem solid rgba(56, 209, 94, 0.3);
  border-radius: 3.125rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.tag-icon {
  font-size: 0.7rem;
  animation: tagPulse 2s ease-in-out infinite;
}

@keyframes tagPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.hero-logo {
  max-width: 17.5rem;
  height: auto;
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 1.875rem rgba(56, 209, 94, 0.3));
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.highlight-wrap {
  display: inline-block;
  position: relative;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-underline {
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 0.75rem;
  color: var(--primary);
  opacity: 0.6;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  color: #04372b;
}

.btn-glow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 1.875rem rgba(56, 209, 94, 0.4);
  color: #ffffff;
}

.btn-glow:hover {
  box-shadow: 0 0 3.125rem rgba(56, 209, 94, 0.6);
  transform: translateY(-0.125rem);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.play-icon {
  font-size: 0.7rem;
}

/* Trust Section */
.hero-trust {
  padding-top: 1.5rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.trust-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
}

.trust-logos {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* Hero Right - Visual */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-visual {
  position: relative;
  width: 28.125rem;
  height: 28.125rem;
}

/* Morphing Blob */
.visual-blob {
  position: absolute;
  inset: -0.625rem;
  background: linear-gradient(
    135deg,
    rgba(56, 209, 94, 0.3),
    rgba(13, 189, 149, 0.25)
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: blobMorph 16s ease-in-out infinite;
  filter: blur(0.1875rem);
}

@keyframes blobMorph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
  20% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(20deg) scale(1.06);
  }
  40% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    transform: rotate(40deg) scale(1.03);
  }
  60% {
    border-radius: 50% 60% 30% 60% / 70% 40% 70% 30%;
    transform: rotate(60deg) scale(1.08);
  }
  80% {
    border-radius: 30% 50% 70% 40% / 50% 70% 30% 60%;
    transform: rotate(80deg) scale(1.04);
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
}

/* Floating Cards */
.visual-card {
  position: absolute;
  background: rgba(56, 209, 94, 0.15);
  border: 0.0625rem solid rgba(56, 209, 94, 0.3);
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(0.625rem);
}

.card-icon {
  font-size: 1.2rem;
}

.card-1 {
  top: 9%;
  right: -3%;
  animation: cardFloat1 5s ease-in-out infinite;
}

.card-2 {
  bottom: 30%;
  left: -15%;
  animation: cardFloat2 6s ease-in-out infinite;
}

.card-3 {
  bottom: 5%;
  right: 15%;
  animation: cardFloat3 5.5s ease-in-out infinite;
}

.card-4 {
  top: 25%;
  left: -10%;
  animation: cardFloat4 5.8s ease-in-out infinite;
}

.card-5 {
  bottom: 35%;
  right: -18%;
  animation: cardFloat5 6.2s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.9375rem);
  }
}

@keyframes cardFloat2 {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-0.75rem) rotate(2deg);
  }
}

@keyframes cardFloat3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.125rem);
  }
}

@keyframes cardFloat4 {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-0.875rem) rotate(-1deg);
  }
}

@keyframes cardFloat5 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1rem);
  }
}

/* Rings */
.visual-ring {
  position: absolute;
  border: 0.0625rem solid rgba(56, 209, 94, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 10rem;
  height: 10rem;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 15rem;
  height: 15rem;
  animation: ringPulse 4s ease-in-out infinite 0.5s;
}

.ring-3 {
  width: 20rem;
  height: 20rem;
  animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-4 {
  width: 25rem;
  height: 25rem;
  border-style: dashed;
  animation: ringPulse 4s ease-in-out infinite 1.5s;
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Center Logo */
.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.25rem;
  height: 6.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.25rem 3.75rem rgba(56, 209, 94, 0.4);
  animation: centerPulse 3s ease-in-out infinite;
}

.visual-center img {
  width: 3.125rem;
  height: 3.125rem;
  filter: brightness(0) invert(1);
}

@keyframes centerPulse {
  0%,
  100% {
    box-shadow: 0 1.25rem 3.75rem rgba(56, 209, 94, 0.4);
  }
  50% {
    box-shadow: 0 1.25rem 5rem rgba(56, 209, 94, 0.6);
  }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.875rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollFade 1s ease-out 1.5s both;
}

@keyframes scrollFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.scroll-mouse {
  width: 1.625rem;
  height: 2.5rem;
  border: 0.125rem solid rgba(255, 255, 255, 0.3);
  border-radius: 1.25rem;
  position: relative;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.5rem;
  background: var(--primary);
  border-radius: 0.125rem;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%,
  100% {
    opacity: 1;
    top: 0.5rem;
  }
  50% {
    opacity: 0.3;
    top: 1.25rem;
  }
}

/* ===== Section Styles ===== */
section {
  padding: 6.25rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.75rem;
}

.section-tag {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--bg-soft);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 3.125rem;
  margin-bottom: 1rem;
}

.section-title {
  /* max-width: 37.5rem; */
  margin: 0 auto;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.inline-logo {
  height: 1.2em;
  vertical-align: baseline;
  margin: 0 0.25rem;
  position: relative;
  top: 0.15em;
}

/* ===== About Section - Slice Slider ===== */
.about {
  position: relative;
  padding: 0;
  background: linear-gradient(
    135deg,
    var(--bg-soft) 0%,
    var(--white) 50%,
    rgba(117, 223, 81, 0.05) 100%
  );
  overflow: visible;
}

.about .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
  padding: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
  overflow: visible;
  position: relative;
}

.about-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, var(--white) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.about-left {
  max-width: 100%;
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: visible;
  position: relative;
  z-index: 10;
}

.slice-slider {
  position: relative;
  width: 100%;
  text-align: left;
  overflow: visible;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.about-tag::before {
  content: "◆";
  color: var(--primary);
  font-size: 0.6rem;
  animation: aboutTagIcon 2s ease-in-out infinite;
}

@keyframes aboutTagIcon {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.about-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.about-title .inline-logo {
  height: 1.3em;
}

.about-description {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 2rem;
  /* max-width: 28rem; */
  text-align: center;
}

/* Slice Slider - Left Side */
.slice-slides {
  position: relative;
  min-height: 12rem;
  overflow: visible;
}

.slice-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}

.slice-slide.is-active {
  position: relative;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  z-index: 3;
}

.slice-slide.is-leaving {
  position: absolute;
  clip-path: inset(0 0 100% 0);
  z-index: 2;
  pointer-events: none;
}

.slice-slide__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: transparent;
  border-radius: 1rem;
  transition: var(--transition);
  position: relative;
  z-index: 20;
}

.slice-slide__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
}

.slice-slide__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.slice-slide__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--white);
  transform: translate3d(0, 100%, 0);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slice-slide.is-active .slice-slide__icon svg {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.slice-slide__title {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin: 0;
  overflow: hidden;
}

.slice-slide__title .title-line {
  display: block;
  overflow: hidden;
}

.slice-slide__title .title-line span {
  display: inline-block;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slice-slide.is-active .slice-slide__title .title-line span {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.slice-slide__desc-wrapper {
  overflow: hidden;
}

.slice-slide__desc {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

.slice-slide__desc .desc-line {
  display: block;
  overflow: hidden;
}

.slice-slide__desc .desc-line span {
  display: block;
  transform: translate3d(0, 100%, 0);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slice-slide.is-active .slice-slide__desc .desc-line span {
  transform: translate3d(0, 0, 0);
  transition-delay: 0.4s;
}

/* Slice Navigation */
.slice-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.slice-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border: 0.0625rem solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slice-nav__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.slice-nav__btn:hover svg {
  color: var(--white);
}

.slice-nav__btn svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gray-600);
  transition: var(--transition);
}

.slice-counter {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.slice-current {
  font-size: 1.25rem;
  color: var(--primary);
}

.slice-divider {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.slice-total {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* About Right - Image with Slice Effect */
.about-right {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  position: relative;
}

.slice-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slice-image-wrapper::before {
  display: none;
}

.slice-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slice-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 105%;
  height: 120%;
  background-size: cover;
  background-position: center right;
  background-attachment: fixed;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease;
}

.slice-image[data-slide="3"] {
  width: 100%;
  height: 100%;
  background-size: 65%;
  background-position-x: 130%;
  background-position-y: 40%;
  background-repeat: no-repeat;
}

/* outcome base  */
.slice-image[data-slide="1"] {
  width: 100%;
  height: 100%;
  background-size: 61%;
  background-position: right center;
  background-repeat: no-repeat;
}

/* management intel */
.slice-image[data-slide="2"] {
  width: 100%;
  height: 100%;
  background-size: 64%;
  background-position: right center;
  background-repeat: no-repeat;
}

.slice-image[data-slide="0"] {
  width: 100%;
  height: 100%;
  background-size: 70%;
  background-position: right center;
  background-repeat: no-repeat;
}

.slice-image.is-leaving {
  opacity: 1;
  z-index: 2;
  transition: opacity 0.7s ease;
}

.slice-image.is-active {
  opacity: 1;
  z-index: 3;
}

.slice-image-wrapper.is-sliding .slice-image {
  /* clean transition */
}

/* Slide direction animations — disabled, using crossfade now */
.slice-image-wrapper.slide-next .slice-image.is-active {
  animation: none;
}

.slice-image-wrapper.slide-prev .slice-image.is-active {
  animation: none;
}

/* ===== Features Section - Swiper Carousel ===== */
.features {
  background: linear-gradient(160deg, #0a1a14 0%, #0d2818 50%, #0a1a14 100%);
  overflow: hidden;
  padding: 5rem 0 3.75rem;
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 80% 50% at 20% 20%,
      rgba(56, 209, 94, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 60% 40% at 80% 80%,
      rgba(13, 189, 149, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.features::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(56, 209, 94, 0.03) 0.0625rem, transparent 0.0625rem),
    linear-gradient(
      90deg,
      rgba(56, 209, 94, 0.03) 0.0625rem,
      transparent 0.0625rem
    );
  background-size: 3.125rem 3.125rem;
  mask-image: radial-gradient(
    ellipse 100% 80% at 50% 50%,
    black 20%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 100% 80% at 50% 50%,
    black 20%,
    transparent 70%
  );
  pointer-events: none;
}

.features .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 0.3125rem;
}

.features .section-tag {
  background: rgba(56, 209, 94, 0.2);
  color: var(--accent);
}

.features .section-title {
  color: var(--white);
}

.features-swiper {
  padding: 1.25rem 0 3.75rem;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.features-swiper .swiper-slide {
  width: 26rem;
}

.features-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 1;
}

.feature-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 3.5rem 2rem;
  min-height: 28rem;
  box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.2);
}

.features-swiper .swiper-slide-active .feature-card {
  box-shadow: 0 1.875rem 4.375rem rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.feature-card h3 .highlight {
  color: var(--primary);
  background: none;
  -webkit-text-fill-color: var(--primary);
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.features-swiper .swiper-pagination {
  position: relative;
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.features-swiper .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: rgba(56, 209, 94, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.features-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ===== Modules Section ===== */
.modules {
  display: none;
}

.modules .section-tag {
  background: rgba(56, 209, 94, 0.2);
}

.modules .section-title {
  color: var(--white);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
  gap: 1.5rem;
}

.module-card {
  background: rgba(255, 255, 255, 0.05);
  border: 0.0625rem solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: var(--transition);
}

.module-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-0.25rem);
}

.module-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-icon-inner {
  font-size: 1.5rem;
  color: var(--white);
}

.module-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.module-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* ===== Why Atomic Section ===== */
.why-atomic {
  background: var(--white);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated Background */
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Diagonal animated stripes */
.why-bg::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 100px,
    rgba(56, 209, 94, 0.03) 100px,
    rgba(56, 209, 94, 0.03) 200px
  );
  animation: stripeSlide 25s linear infinite;
}

@keyframes stripeSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(283px);
  }
}

/* Soft corner glows */
.why-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 50% 40% at 5% 10%,
      rgba(56, 209, 94, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 40% 50% at 95% 90%,
      rgba(13, 189, 149, 0.05) 0%,
      transparent 60%
    );
}

.why-gradient-orb {
  position: absolute;
  border-radius: 50%;
}

.why-orb-1 {
  top: 12%;
  right: 18%;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(56, 209, 94, 0.08);
  animation: whyRingPulse 10s ease-in-out infinite;
}

.why-orb-2 {
  bottom: 18%;
  left: 8%;
  width: 12rem;
  height: 12rem;
  border: 1px dashed rgba(56, 209, 94, 0.1);
  animation: whyRingSpin 30s linear infinite;
}

.why-orb-3 {
  top: 45%;
  left: 3%;
  width: 6rem;
  height: 6rem;
  background: radial-gradient(
    circle,
    rgba(56, 209, 94, 0.05) 0%,
    transparent 70%
  );
  animation: whyOrbDrift 9s ease-in-out infinite;
}

@keyframes whyRingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes whyRingSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes whyOrbDrift {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0.5rem, -1rem);
  }
}

.why-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 209, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 209, 94, 0.03) 1px, transparent 1px);
  background-size: 5rem 5rem;
  mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black 0%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 60% 50% at 50% 50%,
    black 0%,
    transparent 100%
  );
}

.why-atomic .container {
  position: relative;
  z-index: 2;
}

.why-content {
  max-width: 75rem;
  margin: 0 auto;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(56, 209, 94, 0.1),
    rgba(13, 189, 149, 0.1)
  );
  border: 1px solid rgba(56, 209, 94, 0.2);
  border-radius: 3rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.why-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  /* max-width: 32rem; */
  margin: 0 auto;
}

/* Feature Cards Grid */
.why-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.why-feature-card {
  position: relative;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(56, 209, 94, 0.1);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.why-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-feature-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.5rem 3rem rgba(56, 209, 94, 0.12);
  border-color: rgba(56, 209, 94, 0.2);
}

.why-feature-card:hover::before {
  transform: scaleX(1);
}

.why-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--bg-soft), rgba(56, 209, 94, 0.15));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scale(1.05);
}

.why-feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  transition: color 0.4s ease;
}

.why-feature-card:hover .why-feature-icon svg {
  color: var(--white);
}

.why-feature-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(56, 209, 94, 0.5);
  line-height: 1;
  transition: color 0.4s ease;
}

.why-feature-card:hover .why-feature-number {
  color: rgba(56, 209, 94, 1);
}

.why-feature-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.why-feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.why-feature-line {
  position: absolute;
  bottom: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 209, 94, 0.2),
    transparent
  );
}

/* CTA Wrapper */
.why-cta-wrapper {
  position: relative;
}

.why-cta-card {
  position: relative;
  background: var(--white);
  border-radius: 2rem;
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  border: 1px solid rgba(56, 209, 94, 0.2);
  box-shadow: 0 1rem 3rem rgba(56, 209, 94, 0.12);
  overflow: hidden;
}

.why-cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("images/academic-transform.png");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  mask-image: linear-gradient(to left, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
  pointer-events: none;
}

.why-cta-glow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 25rem;
  height: 25rem;
  background: radial-gradient(
    circle,
    rgba(56, 209, 94, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.why-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

/* Animated Logo Treatment */
.why-cta-logo-wrapper {
  position: relative;
  width: 22rem;
  height: 22rem;
  flex-shrink: 0;
  margin-right: 2rem;
}

.why-cta-logo-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(56, 209, 94, 0.3);
}

.why-cta-ring-1 {
  width: 70%;
  height: 70%;
  /* animation: ctaRingPulse 3s ease-in-out infinite; */
  /* animation: ctaRingSpin 20s linear infinite; */
}

.why-cta-ring-2 {
  width: 85%;
  height: 85%;
  /* border-style: dashed; */
  animation: ctaRingPulse 3s ease-in-out infinite;
  /* animation: ctaRingSpin 20s linear infinite; */
}

.why-cta-ring-3 {
  width: 100%;
  height: 100%;
  border-color: rgba(13, 189, 149, 0.25);
  animation: ctaRingPulse 3s ease-in-out infinite 0.5s;
  /* animation: ctaRingSpin 20s linear infinite; */
}

.why-cta-logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  height: 10rem;
  background: radial-gradient(
    circle,
    rgba(10, 66, 24, 0.2) 0%,
    transparent 20%
  );
  border-radius: 50%;
  animation: ctaLogoPulse 2s ease-in-out infinite;
}

.why-cta-logo-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-cta-logo-center img {
  width: 10rem;
  height: 10rem;
  filter: drop-shadow(0 0.5rem 1.5rem rgba(56, 209, 94, 0.3));
}

/* Floating card icons around logo */
.why-cta-card-icon {
  position: absolute;
  /* background: rgba(255, 255, 255, 0.95); */
  /* border: 1px solid rgba(56, 209, 94, 0.2); */
  padding: 0.65rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  /* box-shadow: 0 0.25rem 1rem rgba(56, 209, 94, 0.15); */
}

.cta-icon-1 {
  top: 5%;
  left: 65%;
  animation: ctaIconFloat1 4s ease-in-out infinite;
}

.cta-icon-2 {
  top: 48%;
  right: 3%;
  animation: ctaIconFloat2 5s ease-in-out infinite;
}

.cta-icon-3 {
  bottom: 8%;
  left: 15%;
  animation: ctaIconFloat3 4.5s ease-in-out infinite;
}

.cta-icon-4 {
  top: 35%;
  left: 4%;
  animation: ctaIconFloat4 5.5s ease-in-out infinite;
}

.cta-icon-5 {
  top: 7%;
  left: 22%;
  animation: ctaIconFloat5 4.8s ease-in-out infinite;
}

.cta-icon-6 {
  bottom: 5%;
  right: 25%;
  animation: ctaIconFloat6 5.2s ease-in-out infinite;
}

@keyframes ctaIconFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}

@keyframes ctaIconFloat2 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.5rem);
  }
}

@keyframes ctaIconFloat3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.5rem);
  }
}

@keyframes ctaIconFloat4 {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-0.5rem);
  }
}

@keyframes ctaIconFloat5 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0.3rem, -0.4rem);
  }
}

@keyframes ctaIconFloat6 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-0.3rem, 0.4rem);
  }
}

@keyframes ctaRingPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes ctaRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ctaLogoPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.why-cta-logo {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0.5rem 1rem rgba(56, 209, 94, 0.3));
}

.why-cta-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.why-cta-card h3 .text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-cta-card p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 30rem;
  margin: 0 auto 2rem;
}

.why-cta-card .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.why-cta-card .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 0.5rem 1.5rem rgba(56, 209, 94, 0.3);
}

.why-cta-card .btn-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.why-cta-card .btn-primary:hover {
  box-shadow: 0 0.75rem 2rem rgba(56, 209, 94, 0.4);
  transform: translateY(-0.125rem);
}

.why-cta-card .btn-primary:hover svg {
  transform: translateX(0.25rem);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 0.125rem solid var(--gray-200);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(56, 209, 94, 0.05);
}

/* Mobile Responsive */
@media (max-width: 64rem) {
  .why-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48rem) {
  .why-atomic {
    padding: 4rem 0;
  }

  .why-header {
    margin-bottom: 2.5rem;
  }

  .why-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-feature-card {
    padding: 1.5rem;
  }

  .why-cta-card {
    padding: 1.2rem 1.5rem;
    border-radius: 1.25rem;
    flex-direction: column;
    text-align: center;
  }

  .why-cta-content {
    text-align: center;
  }

  .why-cta-card .cta-buttons {
    justify-content: center;
  }

  .why-cta-logo-wrapper {
    width: 12rem;
    height: 12rem;
    order: -1;
    margin: 0 auto;
  }

  .why-cta-logo-center {
    width: 6rem;
    height: 6rem;
  }

  .why-cta-logo-center img {
    width: 4rem;
    height: 4rem;
  }

  .why-cta-card-icon {
    font-size: 1rem;
    padding: 0.4rem;
  }

  .why-cta-card h3 {
    font-size: 1.5rem;
  }
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(160deg, #0a1a14 0%, #0d2818 50%, #0a1a14 100%);
  padding: 3rem 0 1.5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse 60% 40% at 20% 80%,
      rgba(56, 209, 94, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 50% 30% at 80% 20%,
      rgba(13, 189, 149, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(56, 209, 94, 0.15);
}

.footer-brand {
  /* max-width: 20rem; */
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.1rem;
}

.footer-logo .logo-img {
  height: 2.75rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social-title {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(56, 209, 94, 0.1);
  border: 1px solid rgba(56, 209, 94, 0.2);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 1rem rgba(56, 209, 94, 0.3);
}

.social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  order: 1;
  padding-top: 1.5rem;
}

.footer-col h4 {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* Footer Mobile */
@media (max-width: 48rem) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
}

/*ipad air portrait view navbar*/

/* ===== Tablet Portrait (iPad Air, iPad Pro, Surface Pro 7) ===== */
@media (min-width: 52.0625rem) and (max-width: 64rem) {
  /* Hero - single column like mobile */
  html {
    font-size: 18px;
  }

  .nav-bar-left .nav-links li a,
  .nav-bar-right a,
  .lang-slider button {
    font-size: 0.75rem;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .hero-visual {
    width: 24rem;
    height: 24rem;
  }

  .hero-logo {
    margin: 0 auto 1rem;
    display: block;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    text-align: center;
  }

  .trust-logos {
    justify-content: center;
  }

  .card-1 {
    right: -20%;
  }

  .card-2 {
    left: -30%;
  }

  .card-4 {
    left: -25%;
  }

  .card-5 {
    right: -30%;
  }
  /* About - single column like mobile */
  .about {
    background: var(--bg-soft-fade);
  }

  .about-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-content::after {
    display: none;
  }

  .about-right {
    order: -1;
    height: auto;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .about-right::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
      to top,
      var(--bg-soft-fade) 0%,
      rgba(238, 251, 243, 0.6) 40%,
      transparent 100%
    );
    z-index: 4;
    pointer-events: none;
  }

  .slice-image-wrapper {
    position: relative;
    width: 100%;
    height: 45vh;
    max-height: 45vh;
    overflow: hidden;
  }

  .slice-image {
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-size: cover !important;
    background-position: center center !important;
  }

  .slice-image[data-slide="3"] {
    background-size: cover !important;
    background-position: center center !important;
  }

  .about-left {
    padding: 2.5rem 3rem;
    margin-top: -2px;
    position: relative;
    z-index: 5;
  }

  .features-swiper .swiper-slide {
    width: 24rem;
  }
}

/* ===== Mobile Responsive ===== */
@media (max-width: 52rem) {
  .navbar {
    padding: 0 1rem;
  }

  .nav-bar-left {
    padding: 0.5rem 0.75rem;
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
  }

  .nav-bar-left .nav-icon {
    display: none;
  }

  .nav-bar-left .nav-links {
    display: none;
  }

  .nav-bar-right {
    display: none;
  }

  .nav-lang {
    display: none;
  }

  .mobile-lang-wrapper {
    display: flex;
    align-items: center;
    margin-left: 0;
    margin-right: auto;
  }

  .mobile-lang-wrapper .lang-switcher {
    background: transparent;
    border: none;
    padding: 0.25rem;
  }

  .mobile-lang-wrapper .lang-btn {
    width: 2rem;
    padding: 0.3rem 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .mobile-lang-wrapper .lang-btn:hover {
    color: var(--white) !important;
  }

  .mobile-lang-wrapper .lang-btn.active {
    color: var(--white) !important;
  }

  .mobile-lang-wrapper .lang-slider {
    width: 2rem;
  }

  .mobile-lang-wrapper .lang-switcher[data-active="1"] .lang-slider {
    transform: translateX(calc(2rem + 0.25rem));
  }

  .mobile-lang-wrapper .lang-switcher[data-active="2"] .lang-slider {
    transform: translateX(calc(4rem + 0.5rem));
  }

  /* Scrolled state - show background */
  .navbar.scrolled .mobile-lang-wrapper .lang-switcher {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    border-radius: 0.625rem;
  }

  /* Light section mobile lang wrapper */
  .navbar.light-section .mobile-lang-wrapper .lang-btn {
    color: var(--gray-500) !important;
  }

  .navbar.light-section .mobile-lang-wrapper .lang-btn:hover {
    color: var(--gray-800) !important;
  }

  .navbar.light-section .mobile-lang-wrapper .lang-btn.active {
    color: var(--white) !important;
  }

  .navbar.light-section.scrolled .mobile-lang-wrapper .lang-switcher {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
  }

  .mobile-menu-btn {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border-radius: 0.8rem;
    padding: 0.75rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  }

  .mobile-menu-btn span {
    background: var(--white);
  }

  /* Light section mobile menu button */
  .navbar.light-section .mobile-menu-btn {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.08);
  }

  .navbar.light-section .mobile-menu-btn span {
    background: var(--gray-800);
  }

  /* Mobile Menu Overlay */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 5rem;
    left: 1rem;
    right: 1rem;
    background: rgba(20, 25, 23, 0.95);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border-radius: 1.25rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.3);
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    z-index: 999;
  }

  .navbar.menu-open .mobile-menu {
    display: block;
  }

  /* Light section mobile menu */
  .navbar.light-section .mobile-menu {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-header {
    padding-bottom: 1rem;
    margin-bottom: 0.3rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .mobile-menu-logo {
    height: 3rem;
    width: auto;
    filter: brightness(0) invert(1);
  }

  .navbar.light-section .mobile-menu-header {
    border-color: var(--gray-200);
  }

  .navbar.light-section .mobile-menu-logo {
    filter: none;
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
  }

  .mobile-nav-links li {
    margin-bottom: 0.25rem;
  }

  .mobile-nav-links a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 0.75rem;
    transition: var(--transition);
  }

  .mobile-nav-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary);
  }

  /* Light section mobile nav links */
  .navbar.light-section .mobile-nav-links a {
    color: var(--gray-800);
  }

  .navbar.light-section .mobile-nav-links a:hover {
    background: var(--bg-soft);
    color: var(--primary);
  }

  .mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-buttons .nav-btn-secondary {
    text-align: center;
    padding: 0.875rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-nav-buttons .nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-buttons .nav-cta {
    text-align: center;
    padding: 0.875rem 1.25rem;
  }

  /* Light section mobile nav buttons */
  .navbar.light-section .mobile-nav-buttons {
    border-color: var(--gray-200);
  }

  .navbar.light-section .mobile-nav-buttons .nav-btn-secondary {
    color: var(--gray-800);
  }

  .navbar.light-section .mobile-nav-buttons .nav-btn-secondary:hover {
    background: var(--bg-soft);
  }

  .hero {
    padding: 6.25rem 1.25rem 3.75rem;
    min-height: 100vh;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .hero-left {
    order: 1;
  }

  .hero-right {
    order: 2;
    display: flex;
    justify-content: center;
  }

  .hero-visual {
    width: 19rem;
    height: 19rem;
  }

  .visual-card {
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
    border-radius: 0.5rem;
  }

  .card-icon {
    font-size: 0.9rem;
  }

  .visual-center {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
  }

  .visual-center img {
    width: 1.75rem;
    height: 1.75rem;
  }

  .hero-tag {
    margin-bottom: 1.25rem;
  }

  .hero-logo {
    max-width: 13.75rem;
    margin: 0 auto 1rem;
    display: block;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-trust {
    text-align: center;
  }

  .trust-logos {
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-glow {
    width: 25rem;
    height: 25rem;
    left: 50%;
  }

  section {
    padding: 3.75rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* About Section Mobile */
  .about {
    background: var(--bg-soft-fade);
  }

  .about-content {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-content::after {
    display: none;
  }

  .about-right {
    order: -1;
    height: auto;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
  }

  .about-right::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
      to top,
      var(--bg-soft-fade) 0%,
      rgba(238, 251, 243, 0.6) 40%,
      transparent 100%
    );
    z-index: 4;
    pointer-events: none;
  }

  .slice-image-wrapper {
    position: relative;
    width: 100%;
    height: 40vh;
    max-height: 40vh;
    overflow: hidden;
  }

  .slice-image {
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-size: cover !important;
    background-position: center center !important;
  }

  .slice-image[data-slide="3"] {
    background-size: cover !important;
    background-position: center center !important;
  }

  .about-left {
    padding: 2rem 1.5rem;
    margin-top: -2px;
    position: relative;
    z-index: 5;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .slice-slide__content {
    padding: 1rem;
  }

  .slice-slide__icon {
    width: 3rem;
    height: 3rem;
  }

  .slice-slide__icon svg {
    width: 1.5rem;
    height: 1.5rem;
  }

  .slice-slide__title {
    font-size: 1.15rem;
  }

  .slice-slide__desc {
    font-size: 0.9rem;
  }

  .slice-nav {
    margin-top: 1.25rem;
  }

  .modules-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .features-swiper .swiper-slide {
    width: 22rem;
  }

  .feature-card {
    min-height: 22.5rem;
    padding: 2.5rem 2rem;
  }

  .feature-card h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 30rem) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ===== iPad Mini & iPad Air Portrait ===== */
@media (min-width: 48rem) and (max-width: 52rem) {
  .hero-logo {
    max-width: 18rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-visual {
    width: 23rem;
    height: 23rem;
  }

  .visual-card {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .card-icon {
    font-size: 1.1rem;
  }

  .visual-center {
    width: 4.5rem;
    height: 4.5rem;
  }

  .visual-center img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero-trust {
    font-size: 0.9rem;
  }
}

/* ===== Accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

:focus-visible {
  outline: 0.125rem solid var(--primary);
  outline-offset: 0.125rem;
}

/* ===== Print Styles ===== */
@media print {
  .navbar,
  .hero-bg,
  .cta-section {
    display: none;
  }

  body {
    color: #000;
  }
}

/* ===== Burmese Language Specific Styles ===== */
html[lang="my"] .hero-title {
  line-height: 1.4;
  overflow: visible;
}

html[lang="my"] .hero-title .highlight {
  padding-top: 0.5rem;
  padding-bottom: 0.2em;
  line-height: 1.6;
  display: inline-block;
}

html[lang="my"] .highlight-wrap {
  overflow: visible;
}

html[lang="my"] .why-cta-card h3 .text-gradient {
  padding-bottom: 0.3em;
  padding-right: 0.3rem;
  line-height: 1.6;
  display: inline-block;
}

html[lang="my"] .title-line {
  font-size: 1.9rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3em;
}

html[lang="my"] .slice-slide__title .title-line {
  width: 100%;
  padding-right: 0.2rem;
  overflow: visible;
}

html[lang="my"] .about-description {
  padding-top: 0.5rem;
  letter-spacing: 0.04rem;
}

html[lang="my"] .features .section-title {
  line-height: 5rem;
}

html[lang="my"] .why-feature-card h4 {
  line-height: 1.8rem;
  letter-spacing: 0.05rem;
}

html[lang="my"] .why-desc {
  letter-spacing: 0.1rem;
  line-height: 1.6rem;
}

html[lang="my"] .feature-card h3 {
  line-height: 1.7;
}

html[lang="my"] .feature-card p {
  line-height: 2;
  letter-spacing: 0.05rem;
}

html[lang="my"] .why-cta-card h3 {
  line-height: 1.5;
}

html[lang="my"] .why-cta-content p {
  line-height: 2;
  letter-spacing: 0.05rem;
}

/* ===== Demo Request Chatbot ===== */
.chatbot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.chatbot-overlay.active {
  opacity: 1;
  visibility: visible;
}

.chatbot-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 520px;
  max-height: calc(100vh - 3rem);
  background: var(--white);
  border-radius: 1.25rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.chatbot-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
}

.chatbot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chatbot-header-text {
  display: flex;
  flex-direction: column;
}

.chatbot-name {
  font-weight: 600;
  font-size: 1rem;
}

.chatbot-status {
  font-size: 0.75rem;
  opacity: 0.9;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chatbot-close svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-soft);
}

.chat-message {
  max-width: 85%;
  padding: 0.875rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.bot {
  background: var(--white);
  color: var(--gray-800);
  align-self: flex-start;
  border-bottom-left-radius: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.chat-message.user {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 0.25rem;
}

.chat-message.typing {
  display: flex;
  gap: 0.3rem;
  padding: 1rem 1.25rem;
}

.chat-message.typing span {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
}

.chat-message.typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-message.typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chatbot-input-area {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.75rem 1.25rem 1rem;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}

.chatbot-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 2rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}

.chatbot-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 209, 94, 0.1);
}

.chatbot-send {
  width: 2.75rem;
  height: 2.75rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.chatbot-send:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.chatbot-send:not(:disabled):hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(56, 209, 94, 0.4);
}

.chatbot-send svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

/* Validation message */
.chatbot-validation {
  font-size: 0.78rem;
  color: #e74c3c;
  padding: 0 0.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.25s ease,
    opacity 0.25s ease,
    margin 0.25s ease;
  margin-bottom: 0;
}

.chatbot-validation.visible {
  max-height: 2rem;
  opacity: 1;
  margin-bottom: 0.4rem;
}

/* Suggestion capsules */
.chatbot-suggestions {
  display: none;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1.25rem 0.5rem;
  background: var(--white);
}

.chatbot-suggestions.visible {
  display: flex;
}

.chatbot-capsule {
  padding: 0.375rem 0.875rem;
  background: var(--bg-soft);
  border: 1px solid rgba(56, 209, 94, 0.25);
  border-radius: 2rem;
  font-size: 0.8rem;
  font-family: inherit;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.chatbot-capsule:hover {
  background: rgba(56, 209, 94, 0.15);
  border-color: var(--primary);
  color: var(--primary);
}

/* Confirm capsule */
.chatbot-capsule.confirm-capsule {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: 0.625rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.chatbot-capsule.confirm-capsule:hover {
  box-shadow: 0 4px 15px rgba(56, 209, 94, 0.35);
  color: var(--white);
}

/* Confirmation summary card */
.confirm-summary {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.confirm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-soft);
  border-radius: 0.625rem;
  border: 1px solid rgba(56, 209, 94, 0.12);
}

.confirm-field {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.confirm-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.confirm-value {
  font-size: 0.88rem;
  color: var(--gray-800);
  font-weight: 500;
  word-break: break-word;
}

.confirm-edit-btn {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.confirm-edit-btn:hover {
  background: rgba(56, 209, 94, 0.1);
  border-color: var(--primary);
}

.chatbot-input-area.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Mobile chatbot */
@media (max-width: 48rem) {
  .chatbot-container {
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
  }
}

@media (max-width: 833px) {
  .feature-card > h3 {
    font-size: 1.4rem;
  }

  .feature-card {
    min-width: 4rem;
  }
}

/* surface duo   */
@media (width: 1114px) and (min-height: 720px) {
  .slice-image[data-slide="0"] {
    width: 100%;
    height: 100%;
    background-size: 105%;
    background-position-x: -100%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="1"] {
    width: 100%;
    height: 100%;
    background-size: 80%;
    background-position-x: 145%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="2"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -60%;
    background-position-y: 35%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="3"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -180%;
    background-position-y: 30%;
    background-repeat: no-repeat;
  }
}

/* ipad pro landscape orentation */
@media (width: 1366px) and (min-height: 1024px) and (orientation: landscape) {
  html {
    font-size: 1rem;
  }
  .slice-image[data-slide="0"] {
    width: 100%;
    height: 100%;
    background-size: 104%;
    background-position-x: -200%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="1"] {
    width: 100%;
    height: 100%;
    background-size: 80%;
    background-position-x: 145%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="2"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -70%;
    background-position-y: 40%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="2"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -70%;
    background-position-y: 40%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="3"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -180%;
    background-position-y: 30%;
    background-repeat: no-repeat;
  }
}

@media (width: 1180px) and (height: 820px) and (orientation: landscape) {
  .slice-image[data-slide="0"] {
    width: 100%;
    height: 100%;
    background-size: 105%;
    background-position-x: -100%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="1"] {
    width: 100%;
    height: 100%;
    background-size: 80%;
    background-position-x: 145%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="2"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -60%;
    background-position-y: 35%;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="3"] {
    width: 100%;
    height: 100%;
    background-size: 110%;
    background-position-x: -180%;
    background-position-y: 30%;
    background-repeat: no-repeat;
  }
}

@media (width: 1024px) and (height: 768px) and (orientation: landscape) {
  /* About section - horizontal layout like desktop */
  .about {
    background: linear-gradient(
      135deg,
      var(--bg-soft) 0%,
      var(--white) 50%,
      rgba(117, 223, 81, 0.05) 100%
    );
  }

  .about-content {
    grid-template-columns: 50% 50%;
    min-height: 100vh;
  }

  .about-content::after {
    display: block;
  }

  .about-right {
    order: unset;
    height: 100%;
    width: 100%;
    margin-left: 0;
  }

  .about-right::after {
    display: none;
  }

  .slice-image-wrapper {
    height: 100%;
    max-height: none;
  }

  /* .slice-image {
    background-size: initial !important;
    background-position: initial !important;
  } */

  .slice-image[data-slide="0"] {
    width: 100%;
    height: 100%;
    background-size: 235% !important;
    background-position-x: 70% !important;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="1"] {
    width: 100%;
    height: 100%;
    background-size: 170% !important;
    background-position-x: 55% !important;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="2"] {
    width: 100%;
    height: 100%;
    background-size: 180% !important;
    background-position-x: 67% !important;
    background-repeat: no-repeat;
  }

  .slice-image[data-slide="3"] {
    width: 100%;
    height: 100%;
    background-size: 220% !important;
    background-position-x: 56% !important;
    background-repeat: no-repeat;
  }

  .about-left {
    padding: 3rem 2.5rem;
    margin-top: 0;
    position: relative;
    z-index: 5;
  }

  .about-tag {
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .about-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .about-description {
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .slice-slide h3 {
    font-size: 1rem;
  }

  .slice-slide p {
    font-size: 0.8rem;
  }
}

@media (min-width: 769px) and (max-width: 1030px) {
  /* CTA card - reduce right logo, increase left content */
  .why-cta-card {
    padding: 2rem 2rem;
    gap: 2rem;
  }

  .why-cta-logo-wrapper {
    width: 14rem;
    height: 14rem;
  }

  .why-cta-logo-center {
    width: 7rem;
    height: 7rem;
  }

  .why-cta-logo-center img {
    width: 7rem;
    height: 7rem;
  }

  .cta-icon-1,
  .cta-icon-2,
  .cta-icon-3,
  .cta-icon-4,
  .cta-icon-5,
  .cta-icon-6 {
    font-size: 1.5rem;
  }

  .cta-icon-2 {
    top: 40%;
  }
  /* lighting icon */
  .cta-icon-3 {
    bottom: 2%;
  }

  .cta-icon-4 {
    left: -3%;
  }

  .cta-icon-5 {
    left: 15%;
  }

  /* spark icon */
  .cta-icon-6 {
    bottom: -2%;
    right: 19%;
  }

  .why-cta-content {
    flex: 1.5;
  }

  .why-cta-card h3 {
    font-size: 1.75rem;
  }

  .why-cta-card p {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) and (max-width: 425px) {
  .why-cta-logo-wrapper {
    width: 15rem;
    height: 15rem;
    margin: 0 auto;
  }

  .why-cta-logo-center {
    width: 7.5rem;
    height: 7.5rem;
  }

  .why-cta-logo-center img {
    width: 7rem;
    height: 7rem;
  }

  .why-cta-card-icon {
    font-size: 1.5rem;
    padding: 0.5rem;
  }
}

/* footer sizing  for tablet view */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-social-title {
    font-size: 0.7rem;
  }

  .footer-col h4 {
    font-size: 0.8rem;
  }

  .footer-col a {
    font-size: 0.7rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }

  .footer-legal a {
    font-size: 0.75rem;
  }
}

/* for big screen 2k to 4k */

@media (min-width: 2000px) {
  html {
    font-size: 1.3rem;
  }
}

@media (min-width: 3000px) {
  html {
    font-size: 1.8rem;
  }
}

@media (min-width: 3500px) {
  html {
    font-size: 2rem;
  }
}

@media (min-width: 4000px) {
  html {
    font-size: 2.2rem;
  }
}
