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

@import "tailwindcss/index.css";

@source "../../*.blade.php";
@source "../../**/*.blade.php";

/* Lenis smooth scroll */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

@supports (font-variation-settings: normal) {
  html { font-family: 'Inter var', sans-serif; }
}

@layer base {
  :root {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 217.2 91.2% 59.8%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 224.3 76.3% 48%;
    --radius: 0.5rem;
  }

  * {
    border-color: hsl(var(--border));
  }

  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: ui-sans-serif, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  }

  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
  }
}

/* Keyframe Animations */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* ===== Hero Browser Frame ===== */
.hero-browser-wrapper {
  position: relative;
  perspective: 1200px;
  padding-top: 80px;
  margin-top: 40px;
}

/* 3D Tilt container */
.hero-browser-tilt {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Animated gradient border */
.hero-browser-border {
  background: linear-gradient(
    var(--border-angle, 0deg),
    #6366f1,
    #8b5cf6,
    #3b82f6,
    #06b6d4,
    #8b5cf6,
    #6366f1
  );
  border-radius: 1rem;
  animation: border-spin 4s linear infinite;
  opacity: 0.6;
}

@keyframes border-spin {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Inner card shadow */
.hero-browser-card {
  box-shadow:
    0 20px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-browser-tilt:hover .hero-browser-card {
  box-shadow:
    0 30px 70px -12px rgba(99, 102, 241, 0.2),
    0 15px 40px -8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

/* Shimmer sweep across the image */
.hero-browser-shimmer {
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.03) 45%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 55%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer-sweep 3s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Light reflection overlay (moves with tilt via vanilla-tilt glare) */
.hero-browser-reflection {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 40%,
    transparent 60%,
    rgba(255, 255, 255, 0.03) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-browser-tilt:hover .hero-browser-reflection {
  opacity: 1;
}

/* Floating glow orbs */
.hero-glow-orb {
  animation: glow-orb-float 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-orb-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-12px) scale(1.05);
    opacity: 0.3;
  }
}

/* Vanilla-tilt glare override */
.hero-browser-tilt .js-tilt-glare {
  border-radius: 1rem;
}

/* ===== Hero Decorative Elements ===== */

/* Rotating circle container */
.hero-rotating-circle {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  z-index: 0;
  pointer-events: none;
  animation: hero-circle-spin 30s linear infinite;
}

.hero-rotating-circle svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

@keyframes hero-circle-spin {
  0% { transform: translateX(-50%) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg); }
}

/* Orbit dots pulse */
.hero-orbit-dot {
  opacity: 0;
  animation: hero-orbit-dot-appear 0.5s ease-out forwards;
}

.hero-orbit-dot--1 { animation-delay: 0.8s; }
.hero-orbit-dot--2 { animation-delay: 1.0s; }
.hero-orbit-dot--3 { animation-delay: 1.2s; }
.hero-orbit-dot--4 { animation-delay: 1.4s; }
.hero-orbit-dot--5 { animation-delay: 1.6s; }

@keyframes hero-orbit-dot-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Side connecting lines SVG */
.hero-deco-lines {
  z-index: 0;
  overflow: visible;
  top: -60px;
  left: -80px;
  right: -80px;
  width: calc(100% + 160px);
  height: calc(100% + 120px);
}

/* Connecting lines - draw in */
.hero-line-left {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: hero-line-draw 1.5s ease-out 0.8s forwards;
}

.hero-line-right {
  stroke-dasharray: 300;
  stroke-dashoffset: -300;
  animation: hero-line-draw-reverse 1.5s ease-out 0.8s forwards;
}

@keyframes hero-line-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hero-line-draw-reverse {
  to { stroke-dashoffset: 0; }
}

/* Line dots - appear + float */
@keyframes hero-dot-appear {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.hero-line-dot {
  opacity: 0;
  animation: hero-dot-appear 0.4s ease-out forwards, hero-line-dot-float 4s ease-in-out infinite;
}

.hero-line-dot--l1 { animation-delay: 1.4s, 1.8s; }
.hero-line-dot--l2 { animation-delay: 1.6s, 2s; }
.hero-line-dot--r1 { animation-delay: 1.4s, 1.8s; }
.hero-line-dot--r2 { animation-delay: 1.6s, 2s; }
.hero-line-dot--lv { animation-delay: 2s, 2.4s; }
.hero-line-dot--rv { animation-delay: 2.2s, 2.6s; }

@keyframes hero-line-dot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Vertical accent lines - fade in */
.hero-vline {
  opacity: 0;
  animation: hero-vline-appear 1s ease-out 1s forwards;
}

@keyframes hero-vline-appear {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hide decorative elements on small screens */
@media (max-width: 768px) {
  .hero-rotating-circle {
    width: 350px;
    height: 350px;
    top: -60px;
  }
  .hero-deco-lines {
    display: none;
  }
  .hero-browser-wrapper {
    padding-top: 40px;
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out forwards;
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slide-in-left 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slide-in-right 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scale-in 0.5s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* Nav links */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 15px;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.85);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  transition: color 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--border) / 0.4);
}

/* Language dropdown */
.lang-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option.active {
  background-color: #f3f4f6;
  color: #111827;
  font-weight: 600;
}

/* Shadcn-style Components */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  overflow: hidden;
  font-weight: 500;
  transition: all 0.2s;
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  border-radius: var(--radius);
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  cursor: pointer;
}

.btn-primary:hover {
  background-color: hsl(var(--foreground) / 0.85);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.btn-secondary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
  background-color: transparent;
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
}

.btn-secondary:hover {
  background-color: hsl(var(--border) / 0.4);
}

.gradient-text {
  background: linear-gradient(to right, hsl(var(--primary)), #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 8s linear infinite;
  background-size: 1000px 100%;
}

.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
  border-color: hsl(var(--primary) / 0.5);
}

.glass {
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border) / 0.5);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-balance {
  text-wrap: balance;
}

/* ===== Section Header Utilities ===== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.75;
}

.section-divider {
  border-top: 1px solid hsl(var(--border));
}

/* Grid Background */
.grid-background {
  background-image:
    linear-gradient(to right, hsl(var(--border) / 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(var(--border) / 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Spotlight Effect */
.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(var(--primary) / 0.1),
    transparent
  );
  transition: left 0.5s;
}

.spotlight:hover::before {
  left: 100%;
}

/* Awesome Features Layout */
.awesome-features__content {
  position: relative;
  display: grid;
}

.awesome-features__content .divider-line {
  width: 1px;
  height: 100%;
  opacity: 0.24;
  background: #d9d9d9;
}

.awesome-features__content .item-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 65px;
}

@media only screen and (max-width: 1199.98px) {
  .awesome-features__content .item-row {
    gap: 40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .awesome-features__content .item-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .awesome-features__content .divider-line {
    display: none;
  }
}

.awesome-features__content .item-row:last-of-type .awesome-features__item {
  padding-bottom: 65px;
}

@media only screen and (max-width: 767.98px) {
  .awesome-features__content .item-row:last-of-type .awesome-features__item {
    padding-bottom: 0px;
  }
  .awesome-features__content .item-row:nth-of-type(even) .awesome-features__item:last-child {
    order: -1;
  }
}

/* Even rows (row 2) - content is on LEFT side, text-align right */
.awesome-features__content .item-row:nth-of-type(even) .awesome-features__item .item-content {
  text-align: right;
}

.awesome-features__content .item-row:nth-of-type(even) .awesome-features__item .item-content::before {
  right: -65px;
  left: unset;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

@media only screen and (max-width: 1199.98px) {
  .awesome-features__content .item-row:nth-of-type(even) .awesome-features__item .item-content::before {
    right: -40px;
  }
}

.awesome-features__content .item-row:nth-of-type(even) .awesome-features__item .item-content .item-number {
  margin-left: auto;
}

/* Feature Items */
.awesome-features__item {
  padding-top: 65px;
}

@media only screen and (max-width: 1199.98px) {
  .awesome-features__item {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .awesome-features__item {
    padding-top: 0px;
  }
}

.awesome-features__item .item-thumb {
  padding: 32px;
  overflow: hidden;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(115, 151, 233, 0.1) 0%, rgba(209, 215, 245, 0.1) 48.08%, rgba(239, 247, 251, 0.1) 100%);
}

.awesome-features__item .item-thumb img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media only screen and (max-width: 991.98px) {
  .awesome-features__item .item-thumb {
    padding: 20px;
    border-radius: 15px;
  }
}

.awesome-features__item .item-content {
  position: relative;
}

/* Odd rows (1,3): content on RIGHT, arrow points LEFT toward center line */
.awesome-features__item .item-content::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 25px;
  left: -65px;
  top: 0;
  background-image: linear-gradient(135deg, #4642fc 0%, #adbbfe 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media only screen and (max-width: 1199.98px) {
  .awesome-features__item .item-content::before {
    left: -40px;
  }
}

@media only screen and (max-width: 767.98px) {
  .awesome-features__item .item-content::before {
    content: unset;
  }
}

.awesome-features__item .item-content .item-number {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-image: linear-gradient(135deg, #4642fc 0%, #adbbfe 100%);
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.4px;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  color: white;
}

.awesome-features__item .item-content .item-title {
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.64px;
  margin-bottom: 28px;
  color: hsl(var(--foreground));
  font-size: 32px;
}

.awesome-features__item .item-content p {
  color: #b5b5b5;
  font-size: 18px;
  font-weight: 500;
  line-height: 161.111%;
  letter-spacing: -0.36px;
}

/* Scale animation for feature images */
.awesome-features__item .item-thumb {
  overflow: hidden;
}

.awesome-features__item .item-thumb .scale-img {
  transform: scale(1.3);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.awesome-features__item .item-thumb .scale-img.scaled {
  transform: scale(1);
}

/* Hover lift on thumb */
.awesome-features__item .item-thumb {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.awesome-features__item:hover .item-thumb {
  transform: translateY(-5px);
}

/* Number badge animation */
.awesome-features__item .item-number {
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.awesome-features__item:hover .item-number {
  transform: scale(1.15);
}

/* Text letter-reveal animation */
.text-anime .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.text-anime.animated .char {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-up animation for feature content */
.awesome-features__item .item-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.awesome-features__item .item-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Logo Cloud Marquee ===== */

.logo-marquee {
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

/* Fade edges */
.logo-marquee::before,
.logo-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, hsl(222.2 84% 4.9% / 0.95), transparent);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, hsl(222.2 84% 4.9% / 0.95), transparent);
}

/* Scrolling track */
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: logo-marquee-scroll 30s linear infinite;
}

@keyframes logo-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

/* Individual logo item */
.logo-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 70px;
  padding: 16px 24px;
  border-radius: 12px;
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-marquee-item:hover {
  transform: translateY(-2px);
  background: hsl(var(--card) / 0.8);
  border-color: hsl(var(--primary) / 0.25);
  box-shadow: 0 8px 24px -4px rgba(99, 102, 241, 0.12);
}

.logo-marquee-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.5;
  filter: brightness(0) invert(1);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.logo-marquee-item:hover img {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .logo-marquee-item {
    width: 150px;
    height: 56px;
    padding: 12px 18px;
  }
  .logo-marquee-track {
    gap: 2rem;
  }
}

/* ===== Feature Pills Section ===== */

.feature-pills-section {
  background: hsl(var(--background));
}

/* Perspective Grid */
.feature-pills-grid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.feature-pills-grid::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 50%;
  width: 250%;
  height: 200%;
  transform: translateX(-50%) perspective(400px) rotateX(55deg);
  transform-origin: center bottom;
  background-image:
    linear-gradient(to right, hsl(var(--border) / 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(var(--border) / 0.25) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 60%, black 10%, transparent 65%);
}

/* Radial glow behind center */
.feature-pills-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, hsl(var(--primary) / 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Center circle + cursor */
.feature-pills-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.feature-pills-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px dashed hsl(var(--border) / 0.3);
  animation: pills-circle-spin 20s linear infinite;
}

@keyframes pills-circle-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-pills-cursor {
  position: absolute;
  bottom: -10px;
  right: -10px;
  color: hsl(var(--primary));
  filter: drop-shadow(0 0 8px hsl(var(--primary) / 0.4));
  animation: pills-cursor-pulse 2s ease-in-out infinite;
}

@keyframes pills-cursor-pulse {
  0%, 100% { transform: translate(0, 0); opacity: 1; }
  50% { transform: translate(3px, 3px); opacity: 0.7; }
}

.feature-pills-label {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

/* Pill rows */
.feature-pills-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.feature-pills-row-1 {
  margin-bottom: 1.5rem;
}

.feature-pills-row-2 {
  margin-bottom: 1.5rem;
  padding: 0 4rem;
}

.feature-pills-row-3 {
  padding: 0 2rem;
}

/* Individual pill */
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid hsl(var(--border) / 0.2);
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.85);
  white-space: nowrap;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: pills-float 6s ease-in-out infinite;
}

.feature-pill:nth-child(1) { animation-delay: 0s; }
.feature-pill:nth-child(2) { animation-delay: 0.8s; }
.feature-pill:nth-child(3) { animation-delay: 1.6s; }
.feature-pill:nth-child(4) { animation-delay: 2.4s; }

@keyframes pills-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.feature-pill:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: hsl(var(--primary) / 0.4);
  box-shadow: 0 8px 24px -4px hsl(var(--primary) / 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-pills-row {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0 1rem !important;
  }

  .feature-pill {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .feature-pills-circle {
    width: 80px;
    height: 80px;
  }
}

/* ===== Testimonials Section (Marquee) ===== */

/* Marquee container */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Fade edges */
.testimonial-marquee::before,
.testimonial-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(to right, hsl(var(--background)), transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(to left, hsl(var(--background)), transparent);
}

/* Track - the scrolling row */
.testimonial-marquee-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

/* Reverse direction for row 2 */
.testimonial-marquee-reverse .testimonial-marquee-track {
  animation: marquee-scroll-reverse 40s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Card */
.testimonial-card {
  flex-shrink: 0;
  width: 340px;
  padding: 1.5rem;
  border-radius: 1rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.25);
  border-color: hsl(var(--border) / 0.4);
}

/* ===== CTA Section ===== */

/* Decorative floating circles */
.cta-deco-circle {
  animation: cta-circle-float 6s ease-in-out infinite;
}

@keyframes cta-circle-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
}

.cta-deco-dot {
  animation: cta-dot-pulse 4s ease-in-out infinite;
}

@keyframes cta-dot-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

/* Stats counter animation */
.cta-stat {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cta-section.visible .cta-stat {
  opacity: 1;
  transform: translateY(0);
}

.cta-section.visible .cta-stat:nth-child(1) { transition-delay: 0.1s; }
.cta-section.visible .cta-stat:nth-child(2) { transition-delay: 0.25s; }
.cta-section.visible .cta-stat:nth-child(3) { transition-delay: 0.4s; }

/* Email box */
.cta-email-box {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.cta-section.visible .cta-email-box {
  opacity: 1;
  transform: translateY(0);
}

/* ── Footer social icons ── */
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background-color: hsl(var(--border) / 0.5);
  color: hsl(var(--muted-foreground));
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-icon:hover {
  background-color: hsl(var(--foreground));
  color: hsl(var(--background));
  transform: translateY(-2px);
}

/* ── Footer watermark ── */
.footer-watermark {
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: hsl(var(--foreground));
  opacity: 0.04;
  text-align: right;
  pointer-events: none;
  user-select: none;
  margin-top: -2rem;
  margin-bottom: -1rem;
}

/* ===== Mobile Side Drawer ===== */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  z-index: 998;
  pointer-events: none;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.mobile-drawer-overlay.open {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

/* Hide drawer & overlay completely until page is loaded (prevents flash on navigation) */
body.is-loading .mobile-drawer,
body.is-loading .mobile-drawer-overlay {
  display: none !important;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: hsl(var(--background));
  border-left: 1px solid hsl(var(--border) / 0.3);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0);
}

.mobile-drawer.open {
  transform: translateX(0);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 15px;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.85);
  border-radius: 0.75rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  color: hsl(var(--foreground));
  background-color: hsl(var(--border) / 0.4);
}

/* ===== Mobile Language Accordion ===== */
.mobile-lang-accordion {
  border-radius: 0.75rem;
  overflow: hidden;
}

.mobile-lang-toggle {
  background: transparent;
  border: 1px solid hsl(var(--border) / 0.5);
  font-family: inherit;
}

.mobile-lang-toggle:hover {
  background-color: hsl(var(--border) / 0.25);
}

.mobile-lang-accordion.open .mobile-lang-chevron {
  transform: rotate(180deg);
}

.mobile-lang-options {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-lang-accordion.open .mobile-lang-options {
  max-height: 300px;
  padding: 0.5rem 0.25rem;
}

.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.75);
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.mobile-lang-option:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--border) / 0.35);
}

.mobile-lang-option.active {
  color: hsl(var(--primary));
  background-color: hsl(var(--primary) / 0.1);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 767px) {
  /* Hero */
  .hero-browser-wrapper {
    padding-top: 40px;
    margin-top: 20px;
  }

  /* Section padding */
  .section-divider.py-32 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .testimonials-section.py-32 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  /* Feature cards */
  .awesome-features__item .item-content .item-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .awesome-features__item .item-content p {
    font-size: 15px;
  }

  /* Testimonial cards */
  .testimonial-card {
    width: 280px;
    padding: 1.25rem;
  }

  /* CTA email box */
  .cta-email-box .flex {
    flex-direction: column;
    border-radius: 1rem;
    padding: 0.75rem;
  }

  .cta-email-box .flex input {
    width: 100%;
    padding: 0.75rem 0;
  }

  .cta-email-box .flex button {
    width: 100%;
    justify-content: center;
  }

  .cta-email-box .flex svg.flex-shrink-0 {
    display: none;
  }

  /* Footer */
  footer .grid.md\:grid-cols-12 {
    gap: 2.5rem;
  }

  .footer-watermark {
    font-size: 4rem;
    text-align: center;
  }

  /* Feature section header spacing */
  .awesome-features .mb-20 {
    margin-bottom: 2.5rem;
  }

  #features .mb-20 {
    margin-bottom: 2.5rem;
  }

  /* CTA stats */
  .cta-stat p:first-child {
    font-size: 1.5rem;
  }
}

/* ===== Active Nav Link ===== */
.nav-link.active {
  color: hsl(var(--foreground));
  background-color: hsl(var(--border) / 0.4);
}

/* ===== Benefit Cards ===== */
.benefit-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(
    160deg,
    hsl(var(--primary) / 0.5) 0%,
    hsl(var(--primary) / 0.15) 30%,
    hsl(var(--border) / 0.2) 60%,
    hsl(var(--primary) / 0.3) 100%
  );
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: var(--delay, 0s);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 25px 50px -12px rgba(99, 102, 241, 0.15),
    0 0 40px -8px rgba(99, 102, 241, 0.1);
}

.benefit-card-inner {
  background: hsl(var(--card));
  border-radius: calc(1.25rem - 1px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-card-body {
  padding: 1.75rem 1.75rem 1.25rem;
  flex: 0 0 auto;
}

.benefit-card-img {
  padding: 0 1.25rem 1.25rem;
  flex: 1 1 auto;
  display: flex;
  align-items: flex-end;
}

.benefit-card-img img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-card-img img {
  transform: scale(1.03);
}

/* Detailed variant (no image, with icon + checklist) */
.benefit-card--detailed .benefit-card-body {
  padding: 2rem;
}

.benefit-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), hsl(var(--primary) / 0.05));
  border: 1px solid hsl(var(--primary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  margin-bottom: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              background 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, hsl(var(--primary) / 0.3), hsl(var(--primary) / 0.1));
}

.benefit-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.benefit-checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 14px;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.75);
}

@media (max-width: 767px) {
  .benefit-card-body {
    padding: 1.25rem 1.25rem 1rem;
  }
  .benefit-card-img {
    padding: 0 1rem 1rem;
  }
  .benefit-card--detailed .benefit-card-body {
    padding: 1.5rem;
  }
}

/* ===== Feature Points (index.html Awesome Features) ===== */
.feature-points {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-point-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 0.425rem;
  background: hsl(var(--primary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-point-text {
  font-size: 15px;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.8);
  text-align: left;
}

/* Even rows: reverse icon/text order so icon appears on the right */
.awesome-features__content .item-row:nth-of-type(even) .feature-point {
  flex-direction: row-reverse;
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }
}

/* ===== Pricing Cards ===== */
.pricing-card {
  position: relative;
  border-radius: 1.25rem;
  padding: 1px;
  background: linear-gradient(
    160deg,
    hsl(var(--border) / 0.4) 0%,
    hsl(var(--border) / 0.15) 50%,
    hsl(var(--border) / 0.3) 100%
  );
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation-delay: var(--delay, 0s);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card--popular {
  background: linear-gradient(
    160deg,
    hsl(var(--primary) / 0.7) 0%,
    hsl(var(--primary) / 0.25) 30%,
    hsl(var(--primary) / 0.1) 60%,
    hsl(var(--primary) / 0.5) 100%
  );
  transform: translateY(-6px);
  box-shadow:
    0 25px 50px -12px rgba(99, 102, 241, 0.2),
    0 0 40px -8px rgba(99, 102, 241, 0.12);
}

.pricing-card--popular:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 60px -12px rgba(99, 102, 241, 0.25),
    0 0 50px -8px rgba(99, 102, 241, 0.15);
}

.pricing-card-inner {
  background: hsl(var(--card));
  border-radius: calc(1.25rem - 1px);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.pricing-card-header {
  margin-bottom: 1.5rem;
}

.pricing-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, hsl(var(--border) / 0.5), hsl(var(--border) / 0.2));
  border: 1px solid hsl(var(--border) / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pricing-card:hover .pricing-card-icon {
  transform: scale(1.1);
}

.pricing-card-icon--popular {
  background: linear-gradient(135deg, hsl(var(--primary) / 0.25), hsl(var(--primary) / 0.08));
  border-color: hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
}

.pricing-card-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--border) / 0.3);
}

.pricing-card-price > .monthly_div,
.pricing-card-price > .yearly_div {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
}

.pricing-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-top: 0.5rem;
  margin-right: 0.125rem;
}

.pricing-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: hsl(var(--foreground));
  transition: opacity 0.3s ease;
}

.pricing-period {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  margin-left: 0.25rem;
}

/* Feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: hsl(var(--foreground) / 0.85);
}

.pricing-features li.disabled {
  color: hsl(var(--muted-foreground) / 0.5);
}

.pricing-features li.disabled svg {
  color: hsl(var(--muted-foreground) / 0.3);
}

.pricing-card-footer {
  margin-top: auto;
}

/* Popular badge */
.pricing-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--primary-foreground));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary) / 0.8));
  border-radius: 0 0 0.75rem 0.75rem;
  z-index: 2;
}

/* ===== Billing Toggle ===== */
.pricing-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 9999px;
  background: hsl(var(--border));
  border: 1px solid hsl(var(--border) / 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.pricing-toggle.active {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
}

.pricing-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: hsl(var(--foreground));
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.pricing-toggle.active .pricing-toggle-thumb {
  transform: translateX(24px);
}

.pricing-toggle-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-toggle-label.active {
  color: hsl(var(--foreground));
}

.pricing-save-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.2);
}

/* ===== FAQ Accordion ===== */
.faq-item {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border) / 0.3);
  background: hsl(var(--card));
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: hsl(var(--border) / 0.5);
}

.faq-item.open {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 4px 24px -4px rgba(99, 102, 241, 0.08);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  line-height: 1.5;
}

.faq-chevron {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-item.open .faq-content {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: hsl(var(--muted-foreground));
}

/* Mobile pricing */
@media (max-width: 767px) {
  .pricing-card-inner {
    padding: 1.5rem;
  }
  .pricing-value {
    font-size: 2.75rem;
  }
  .pricing-card-price {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .faq-trigger {
    padding: 1rem 1.25rem;
  }
  .faq-content {
    padding: 0 1.25rem;
  }
  .faq-item.open .faq-content {
    padding: 0 1.25rem 1rem;
  }
}

/* ===== Contact Info Cards ===== */
.contact-info-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(
    160deg,
    hsl(var(--border) / 0.5) 0%,
    hsl(var(--border) / 0.15) 40%,
    hsl(var(--border) / 0.3) 70%,
    hsl(var(--border) / 0.5) 100%
  );
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.5s ease;
  animation-delay: var(--delay, 0s);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35),
              0 10px 30px -10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    160deg,
    hsl(var(--foreground) / 0.25) 0%,
    hsl(var(--foreground) / 0.08) 40%,
    hsl(var(--foreground) / 0.1) 70%,
    hsl(var(--foreground) / 0.25) 100%
  );
}

.contact-info-card--featured {
  background: linear-gradient(
    160deg,
    hsl(var(--border) / 0.6) 0%,
    hsl(var(--border) / 0.2) 40%,
    hsl(var(--border) / 0.4) 70%,
    hsl(var(--border) / 0.6) 100%
  );
}

.contact-info-card--featured:hover {
  background: linear-gradient(
    160deg,
    hsl(var(--foreground) / 0.3) 0%,
    hsl(var(--foreground) / 0.1) 40%,
    hsl(var(--foreground) / 0.12) 70%,
    hsl(var(--foreground) / 0.3) 100%
  );
}

.contact-info-card-inner {
  position: relative;
  background: hsl(var(--card));
  border-radius: calc(1.5rem - 1px);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

/* Spotlight sweep effect (matches .spotlight from feature cards) */
.contact-info-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(var(--foreground) / 0.06),
    transparent
  );
  transition: left 0.5s;
  z-index: 1;
  pointer-events: none;
}

.contact-info-card:hover .contact-info-card-inner::before {
  left: 100%;
}

.contact-info-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, hsl(var(--foreground) / 0.05) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 0;
}

.contact-info-card:hover .contact-info-glow {
  opacity: 1;
}

.contact-info-icon {
  width: 64px;
  height: 64px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, hsl(var(--border) / 0.6), hsl(var(--border) / 0.3));
  border: 1px solid hsl(var(--border) / 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              background 0.4s ease,
              box-shadow 0.4s ease;
}

.contact-info-icon--featured {
  background: linear-gradient(135deg, hsl(var(--border) / 0.8), hsl(var(--border) / 0.4));
  border-color: hsl(var(--border) / 0.6);
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.12) rotate(-3deg);
  background: linear-gradient(135deg, hsl(var(--foreground) / 0.15), hsl(var(--foreground) / 0.08));
  border-color: hsl(var(--foreground) / 0.2);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

.contact-info-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: hsl(var(--muted-foreground));
  background: hsl(var(--border) / 0.3);
  border: 1px solid hsl(var(--border) / 0.4);
  border-radius: 9999px;
  padding: 0.25rem 0.875rem;
  margin-bottom: 1rem;
}

.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.85);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--border) / 0.25);
  border: 1px solid hsl(var(--border) / 0.4);
  transition: all 0.3s ease;
  margin-top: auto;
  text-decoration: none;
}

.contact-info-link:hover {
  background: hsl(var(--border) / 0.4);
  border-color: hsl(var(--border) / 0.6);
  color: hsl(var(--foreground));
  gap: 0.75rem;
}

.contact-info-link--static {
  cursor: default;
}

.contact-info-link--static:hover {
  gap: 0.5rem;
}

/* Floating dots animation */
@keyframes contact-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.1); }
}

.contact-float-dot {
  animation: contact-float 4s ease-in-out infinite;
}

/* ===== Contact Form ===== */
.contact-form-wrapper {
  position: relative;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(
    160deg,
    hsl(var(--border) / 0.5) 0%,
    hsl(var(--border) / 0.1) 30%,
    hsl(var(--primary) / 0.12) 60%,
    hsl(var(--border) / 0.4) 100%
  );
  box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.3);
}

.contact-form-inner {
  background: hsl(var(--card));
  border-radius: calc(1.5rem - 1px);
  overflow: hidden;
}

.contact-field-group {
  transition: transform 0.3s ease;
}

.contact-field-group:focus-within {
  transform: translateY(-2px);
}

.contact-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: hsl(var(--card) / 0.5);
  border: 1px solid hsl(var(--border) / 0.8);
  border-radius: 0.875rem;
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-input--icon {
  padding-left: 3rem;
}

.contact-input-icon {
  position: absolute;
  left: 1rem;
  top: 1.55rem;
  transform: translateY(-50%);
  color: hsl(var(--muted-foreground) / 0.4);
  pointer-events: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.contact-input-icon--textarea {
  top: 1.1rem;
  transform: none;
}

.contact-field-group:focus-within .contact-input-icon {
  color: hsl(var(--muted-foreground) / 0.7);
}

.contact-input::placeholder {
  color: hsl(var(--muted-foreground) / 0.7);
}

.contact-input:focus {
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1),
              0 4px 15px -3px hsl(var(--primary) / 0.08);
  background: hsl(var(--background));
}

.contact-input:hover:not(:focus) {
  border-color: hsl(var(--border));
}

/* Submit button shine effect */
.contact-submit-btn {
  position: relative;
  overflow: hidden;
}

.contact-submit-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.contact-submit-btn:hover::after {
  left: 130%;
}

/* Contact image side info items */
.contact-image-info-item {
  padding: 0.5rem;
  border-radius: 0.875rem;
  transition: background 0.3s ease;
}

.contact-image-info-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile contact form */
@media (max-width: 767px) {
  .contact-info-card-inner {
    padding: 2rem 1.5rem;
  }
}

/* ===== Register Page ===== */
.register-wrapper {
  position: relative;
  border-radius: 1.5rem;
  padding: 1px;
  background: linear-gradient(
    160deg,
    hsl(var(--border) / 0.5) 0%,
    hsl(var(--border) / 0.1) 30%,
    hsl(var(--primary) / 0.12) 60%,
    hsl(var(--border) / 0.4) 100%
  );
  box-shadow: 0 25px 80px -20px rgba(0, 0, 0, 0.3);
}

.register-inner {
  background: hsl(var(--card));
  border-radius: calc(1.5rem - 1px);
  overflow: hidden;
}

/* Left info side */
.register-info-side {
  background: linear-gradient(
    160deg,
    hsl(var(--background)) 0%,
    hsl(var(--card)) 50%,
    hsl(var(--background)) 100%
  );
  border-right: 1px solid hsl(var(--border) / 0.3);
}

/* Override section-title and section-subtitle for register page */
.register-info-side .section-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.register-info-side .section-subtitle {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

/* Feature items in register */
.register-feature-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsl(var(--border) / 0.6);
  background: hsl(var(--card) / 0.4);
  transition: all 0.3s ease;
}

.register-feature-item:hover {
  border-color: hsl(var(--primary) / 0.5);
  background: hsl(var(--primary) / 0.08);
  transform: translateY(-2px);
}

.register-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.register-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.register-feature-item:hover .register-feature-icon {
  transform: scale(1.1);
}

.register-feature-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.register-feature-title {
  font-size: 14px;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.9);
  line-height: 1.3;
}

.register-feature-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
  line-height: 1.3;
}

/* Custom checkbox */
.register-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 0.25rem;
  border: 1.5px solid hsl(var(--border) / 0.6);
  background: hsl(var(--background));
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.register-checkbox:checked {
  background: hsl(var(--primary));
  border-color: hsl(var(--primary));
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.register-checkbox:focus {
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15);
}

/* Mobile register */
@media (max-width: 1023px) {
  .register-info-side {
    border-right: none;
    border-bottom: 1px solid hsl(var(--border) / 0.3);
  }
}

@media (max-width: 767px) {
  .register-feature-item {
    padding: 0.5rem 0.75rem;
    gap: 0.625rem;
  }
  .register-feature-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .register-feature-title {
    font-size: 13px;
  }
  .register-feature-subtitle {
    font-size: 11px;
  }
}

/* ===== Reusable Page Utilities ===== */

/* Hero section (breadcrumb pages) */
.hero-section {
  position: relative;
  padding: 8rem 1rem 5rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-section {
    padding: 10rem 1.5rem 7rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Grid background with fade mask (used in hero sections) */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -10;
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

/* Large gradient orbs for hero backgrounds */
.hero-orb-primary {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2), transparent);
  border-radius: 9999px;
  filter: blur(64px);
  animation: pulse-glow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-orb-secondary {
  position: absolute;
  top: 25%;
  right: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1), transparent);
  border-radius: 9999px;
  filter: blur(64px);
  animation: float 6s ease-in-out infinite;
}

/* Hero content wrapper */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

/* Hero display heading */
.hero-heading {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: hsl(var(--foreground));
}

@media (min-width: 640px) {
  .hero-heading {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-heading {
    font-size: 3.75rem;
  }
}

/* 3-bar decorative divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.hero-divider-thin {
  width: 2rem;
  height: 2px;
  background: rgba(96, 165, 250, 0.5);
  border-radius: 9999px;
}

.hero-divider-thick {
  width: 3rem;
  height: 3px;
  background: #60a5fa;
  border-radius: 9999px;
}

/* Breadcrumb pill navigation */
.breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border) / 0.5);
  font-size: 14px;
}

.breadcrumb-separator {
  width: 0.75rem;
  height: 0.75rem;
  color: hsl(var(--muted-foreground) / 0.4);
}

/* Content section (standard padding) */
.content-section {
  position: relative;
  padding: 5rem 1rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .content-section {
    padding: 8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .content-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Section header (centered with max-width) */
.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}

@media (min-width: 640px) {
  .section-header {
    margin-bottom: 5rem;
  }
}

/* Section accent ornament (dots + gradient lines) */
.section-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-accent-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary));
}

.section-accent-line-right {
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, transparent, hsl(var(--primary) / 0.6));
}

.section-accent-line-left {
  width: 3rem;
  height: 1px;
  background: linear-gradient(to left, transparent, hsl(var(--primary) / 0.6));
}

.section-accent-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--primary));
}

/* Form label */
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.625rem;
}

/* Muted link with hover */
.link-muted {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
}

.link-muted:hover {
  color: hsl(var(--foreground));
}

/* ===== Form Validation (inos.js) ===== */
.invalid-feedback {
  display: block;
  color: #ef4444;
  font-size: 12px;
  margin-top: 6px;
  text-align: left;
}

.alert.alert-danger {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: hsl(0 80% 55% / 0.1);
  border: 1px solid hsl(0 80% 55% / 0.2);
  color: #ef4444;
  font-size: 13px;
  text-align: left;
  margin-bottom: 1rem;
}

.alert.alert-danger i {
  display: none;
}

.alert.alert-success {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: hsl(142 70% 45% / 0.1);
  border: 1px solid hsl(142 70% 45% / 0.2);
  color: #22c55e;
  font-size: 13px;
  text-align: left;
  margin-bottom: 1rem;
}

.alert.alert-success i {
  display: none;
}

.has-error .form-control {
  border-color: #ef4444;
}

/* Checkbox form-group: error below */
.form-group.flex {
  flex-wrap: wrap;
}

.form-group.flex > .invalid-feedback {
  width: 100%;
  flex-basis: 100%;
}

/* CTA form: error in #alert div below the input row */
.cta-email-box #alert {
  margin-top: 12px;
  text-align: center;
}

.cta-email-box #alert .alert-danger {
  font-size: 12px;
  color: #ef4444;
}

.cta-email-box #alert .alert-danger ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ===== inos.js Screen Block / Loader ===== */
.ajax-form {
  position: relative;
}

.simple-block {
  opacity: 0.5;
  pointer-events: none;
}

.screenBlock {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--background) / 0.4);
  backdrop-filter: blur(2px);
  border-radius: inherit;
  z-index: 10;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 16px;
}

.lds-ellipsis div {
  position: absolute;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: hsl(var(--foreground));
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) { left: 6px; animation: lds1 0.6s infinite; }
.lds-ellipsis div:nth-child(2) { left: 6px; animation: lds2 0.6s infinite; }
.lds-ellipsis div:nth-child(3) { left: 26px; animation: lds2 0.6s infinite; }
.lds-ellipsis div:nth-child(4) { left: 45px; animation: lds3 0.6s infinite; }

@keyframes lds1 { 0% { transform: scale(0); } 100% { transform: scale(1); } }
@keyframes lds2 { 0% { transform: translate(0, 0); } 100% { transform: translate(19px, 0); } }
@keyframes lds3 { 0% { transform: scale(1); } 100% { transform: scale(0); } }

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin-border 0.75s linear infinite;
  vertical-align: -0.125em;
}

.spinner-border-sm {
  width: 0.75rem;
  height: 0.75rem;
  border-width: 1.5px;
}

@keyframes spin-border { to { transform: rotate(360deg); } }
