/* ========================================
   Flowix Website - Main Stylesheet
   Colors: Dark Grey + Orange
   ======================================== */

/* --- Fonts --- */
/* Font imports moved to HTML <link> tags for better performance */

/* --- CSS Variables --- */
:root {
  /* Main brand */
  --dark-bg: #0f0f1a;
  --dark-bg-secondary: #1a1a2e;
  --dark-bg-card: #222240;
  --orange-start: #FF6A12;
  --orange-end: #FF8A1A;
  --text-white: #ffffff;
  --text-light: #b8b8d0;
  --text-muted: #6e6e8a;

  /* Product gradients */
  --agents-start: #48B8FC;
  --agents-end: #234CF9;
  --support-start: #00b894;
  --support-end: #00cec9;
  --social-start: #e84393;
  --social-end: #6c5ce7;
  --call-start: #ff4d3a;
  --call-end: #e8321a;
  --autopage-start: #f5c842;
  --autopage-end: #e8a817;

  /* Spacing */
  --section-padding: 90px 0;
  --container-width: 1200px;
  --nav-height: 80px;
  --border-radius: 16px;
  --border-radius-sm: 10px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Clash Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-white);
  line-height: 1.6;
  word-spacing: 2px;
  overflow-x: hidden;
  animation: pageLoad 0.6s ease-out;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', 'Inter', sans-serif;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Gradient Text Utility --- */
.gradient-text {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end), #FF8A1A, var(--orange-start));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 106, 18, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 106, 18, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--orange-start);
  color: var(--orange-start);
  transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: visible;
}

.navbar.scrolled {
  background: rgba(15, 15, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-logo:hover {
  transform: scale(1.03);
}

.nav-logo span {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  background: none;
  color: var(--text-light);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  padding: 0;
}

.lang-toggle:hover,
.lang-dropdown.open .lang-toggle {
  color: var(--orange-start);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(30, 30, 50, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.25s ease;
  min-width: 60px;
  z-index: 1000;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 6px 14px;
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-option:hover {
  background: rgba(255, 106, 18, 0.15);
  color: var(--orange-start);
}

.lang-option.active {
  color: var(--orange-start);
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  position: relative;
  z-index: 10000;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: 10px 0;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.dropdown-menu li a:hover {
  color: var(--orange-start);
  background: rgba(255, 106, 18, 0.08);
}

/* ========================================
   PAGE HEADER (for sub-pages)
   ======================================== */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  background: var(--dark-bg);
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 106, 18, 0.06) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 18, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .section-label {
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Reduce gap between page-header and the section below */
.page-header + section {
  padding-top: 20px;
}

/* ========================================
   PAGE BACKGROUND (full-page animation layer)
   ======================================== */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  z-index: 1;
}

/* Animated grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 106, 18, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.6;
    background-size: 40px 40px;
  }
  50% {
    opacity: 1;
    background-size: 42px 42px;
  }
}


/* Particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.4;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(255, 106, 18, 0.25) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(255, 138, 26, 0.2) 0%, transparent 70%);
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 50%;
  background: radial-gradient(circle, rgba(255, 106, 18, 0.15) 0%, transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.1); }
  66% { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(1.1); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 30px) scale(1.15); }
}

/* Typing cursor */
.typing-text {
  position: relative;
}

.typing-text::after {
  content: '|';
  position: relative;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-text.done::after {
  /* keeps blinking, JS will add cursor-hidden after 5 blinks */
}

.typing-text.cursor-hidden::after {
  animation: cursorFadeOut 0.5s ease forwards;
}

@keyframes cursorFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 106, 18, 0.1);
  border: 1px solid rgba(255, 106, 18, 0.2);
  color: var(--orange-start);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 106, 18, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(255, 106, 18, 0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item h3,
.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ========================================
   HERO MOCKUP DASHBOARD
   ======================================== */
.hero-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mockup-card {
  width: 100%;
  max-width: 420px;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  animation: mockupFloat 6s ease-in-out infinite;
}

.mockup-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 17px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.3), rgba(255, 138, 26, 0.1), rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes mockupFloat {
  0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-12px); }
}

/* Mockup header */
.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 14px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot--red { background: #ff5f57; }
.mockup-dot--yellow { background: #febc2e; }
.mockup-dot--green { background: #28c840; }

.mockup-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  flex: 1;
}

.mockup-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  color: #28c840;
  background: rgba(40, 200, 64, 0.1);
  padding: 3px 10px;
  border-radius: 50px;
}

.mockup-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #28c840;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40, 200, 64, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(40, 200, 64, 0); }
}

/* Agent list */
.mockup-agents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-agent-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.12), rgba(255, 138, 26, 0.08));
  color: var(--orange-start);
  flex-shrink: 0;
}

.mockup-agent-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  flex: 1;
}

.mockup-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-badge--active {
  background: rgba(40, 200, 64, 0.12);
  color: #28c840;
}

.mockup-badge--idle {
  background: rgba(254, 188, 46, 0.12);
  color: #febc2e;
}

/* Bar chart */
.mockup-chart {
  margin-bottom: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-chart-label {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.mockup-bar {
  flex: 1;
  height: var(--bar-height);
  background: linear-gradient(180deg, var(--orange-start), var(--orange-end));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: barGrow 1s ease-out forwards;
  transform: scaleY(0);
  opacity: 0.85;
}

.mockup-bar:nth-child(1) { animation-delay: 0.1s; }
.mockup-bar:nth-child(2) { animation-delay: 0.2s; }
.mockup-bar:nth-child(3) { animation-delay: 0.3s; }
.mockup-bar:nth-child(4) { animation-delay: 0.4s; }
.mockup-bar:nth-child(5) { animation-delay: 0.5s; }
.mockup-bar:nth-child(6) { animation-delay: 0.6s; }
.mockup-bar:nth-child(7) { animation-delay: 0.7s; }

@keyframes barGrow {
  to { transform: scaleY(1); }
}

/* Chat snippet */
.mockup-chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.mockup-chat-msg {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.68rem;
  line-height: 1.5;
  max-width: 85%;
}

.mockup-chat-msg--user {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.mockup-chat-msg--ai {
  background: rgba(255, 106, 18, 0.1);
  color: var(--text-light);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.mockup-typing {
  display: inline-flex;
  gap: 3px;
  margin-top: 4px;
}

.mockup-typing-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange-start);
  animation: typingBounce 1.4s ease-in-out infinite;
}

.mockup-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.mockup-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Metrics row */
.mockup-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-metric {
  text-align: center;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mockup-metric-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.mockup-metric-label {
  font-size: 0.58rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ========================================
   LOGOS SECTION
   ======================================== */
.logos-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.logos-section .section-label {
  display: block;
  text-align: center;
  margin-bottom: 36px;
  background: none;
  border: none;
  padding: 0;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
}

.logos-title {
  text-align: center;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 36px;
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  letter-spacing: 1px;
}

.logo-item:hover {
  opacity: 1;
  color: var(--text-light);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid:has(.step-card:last-child:nth-child(4)) {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid:has(.step-card:last-child:nth-child(3)) {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  position: relative;
  padding: 24px 20px;
  border-radius: var(--border-radius-sm);
  transition: all 0.3s ease;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.step-card:hover .step-number {
  box-shadow: 0 0 24px rgba(255, 106, 18, 0.4);
}

/* Step content expand animation */
.step-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

/* Override stagger for steps - use custom expand */
.steps-grid.fade-in-stagger.visible > .step-card {
  animation: none;
  opacity: 1;
  transform: none;
}

/* Number pops in */
.steps-grid.visible .step-card .step-number {
  transform: scale(1);
}
.steps-grid.visible .step-card:nth-child(1) .step-number { transition-delay: 0.1s; }
.steps-grid.visible .step-card:nth-child(2) .step-number { transition-delay: 0.25s; }
.steps-grid.visible .step-card:nth-child(3) .step-number { transition-delay: 0.4s; }
.steps-grid.visible .step-card:nth-child(4) .step-number { transition-delay: 0.55s; }
.steps-grid.visible .step-card:nth-child(5) .step-number { transition-delay: 0.7s; }

/* Content expands below */
.steps-grid.visible .step-card .step-content {
  max-height: 300px;
  opacity: 1;
}
.steps-grid.visible .step-card:nth-child(1) .step-content { transition-delay: 0.3s; }
.steps-grid.visible .step-card:nth-child(2) .step-content { transition-delay: 0.45s; }
.steps-grid.visible .step-card:nth-child(3) .step-content { transition-delay: 0.6s; }
.steps-grid.visible .step-card:nth-child(4) .step-content { transition-delay: 0.75s; }
.steps-grid.visible .step-card:nth-child(5) .step-content { transition-delay: 0.9s; }

.step-icon {
  color: var(--orange-start);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.step-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Use case problem/solution blocks */
.usecase-problem,
.usecase-solution {
  text-align: left;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 12px;
}

.usecase-problem {
  background: rgba(255, 59, 48, 0.08);
  border: 1px solid rgba(255, 59, 48, 0.15);
}

.usecase-solution {
  background: rgba(40, 200, 64, 0.08);
  border: 1px solid rgba(40, 200, 64, 0.15);
}

.usecase-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.usecase-label--problem {
  color: #ff3b30;
}

.usecase-label--solution {
  color: #28c840;
}

.usecase-problem p,
.usecase-solution p {
  margin: 0;
  font-size: 0.85rem;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(255, 106, 18, 0.1);
  border: 1px solid rgba(255, 106, 18, 0.15);
  color: var(--orange-start);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover,
.product-card.active {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-card[data-product="agents"]:hover,
.product-card[data-product="agents"].active {
  box-shadow: 0 20px 60px rgba(255, 106, 18, 0.15), 0 0 0 1px rgba(255, 106, 18, 0.1);
}
.product-card[data-product="support"]:hover,
.product-card[data-product="support"].active {
  box-shadow: 0 20px 60px rgba(0, 184, 148, 0.15), 0 0 0 1px rgba(0, 184, 148, 0.1);
}
.product-card[data-product="social"]:hover,
.product-card[data-product="social"].active {
  box-shadow: 0 20px 60px rgba(232, 67, 147, 0.15), 0 0 0 1px rgba(232, 67, 147, 0.1);
}
.product-card[data-product="call"]:hover,
.product-card[data-product="call"].active {
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.15), 0 0 0 1px rgba(255, 107, 107, 0.1);
}

.product-card:hover::before,
.product-card.active::before {
  opacity: 1;
}

/* Product card gradient tops */
.product-card[data-product="agents"]::before {
  background: linear-gradient(90deg, var(--agents-start), var(--agents-end));
}
.product-card[data-product="support"]::before {
  background: linear-gradient(90deg, var(--support-start), var(--support-end));
}
.product-card[data-product="social"]::before {
  background: linear-gradient(90deg, var(--social-start), var(--social-end));
}
.product-card[data-product="call"]::before {
  background: linear-gradient(90deg, var(--call-start), var(--call-end));
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--orange-start);
}

.product-card[data-product="agents"] .product-icon {
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.15), rgba(255, 138, 26, 0.15));
}
.product-card[data-product="support"] .product-icon {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.15), rgba(0, 206, 201, 0.15));
}
.product-card[data-product="social"] .product-icon {
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.15), rgba(108, 92, 231, 0.15));
}
.product-card[data-product="call"] .product-icon {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(238, 90, 36, 0.15));
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.product-card:hover .card-arrow {
  gap: 10px;
}

.product-card[data-product="agents"] .card-arrow {
  color: var(--agents-start);
}

/* ========================================
   HOMEPAGE PRODUCT MOCKUP CARDS
   ======================================== */
.products-mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Products carousel */
.products-carousel {
  position: relative;
  padding: 0 60px;
}

.carousel-track-wrapper {
  overflow: hidden;
  padding: 24px;
  margin: -24px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 16px 0;
}

.carousel-track .product-mockup {
  flex: 0 0 50%;
  padding: 0 12px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.carousel-arrow--left {
  left: 0;
}

.carousel-arrow--right {
  right: 0;
}

.carousel-arrow:hover {
  border-color: rgba(255, 106, 18, 0.4);
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.18), rgba(255, 138, 26, 0.08));
  box-shadow: 0 4px 24px rgba(255, 106, 18, 0.2), 0 0 0 1px rgba(255, 106, 18, 0.1);
  transform: translateY(-50%) scale(1.08);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-dot.active {
  background: var(--orange-start);
  width: 28px;
}

.product-mockup {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-mockup-card {
  width: 100%;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.product-mockup-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.3), rgba(255, 138, 26, 0.1), rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Staggered float with alternating 3D perspective */
.products-mockup-grid .product-mockup:nth-child(1) .product-mockup-card {
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  animation: prodFloat1 6s ease-in-out infinite;
}
.products-mockup-grid .product-mockup:nth-child(2) .product-mockup-card {
  transform: perspective(1000px) rotateY(4deg) rotateX(2deg);
  animation: prodFloat2 6s ease-in-out 1.5s infinite;
}
.products-mockup-grid .product-mockup:nth-child(3) .product-mockup-card {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  animation: prodFloat1 6s ease-in-out 3s infinite;
}
.products-mockup-grid .product-mockup:nth-child(4) .product-mockup-card {
  transform: perspective(1000px) rotateY(3deg) rotateX(1deg);
  animation: prodFloat2 6s ease-in-out 4.5s infinite;
}
.products-mockup-grid .product-mockup:nth-child(5) .product-mockup-card {
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  animation: prodFloat1 6s ease-in-out 1.5s infinite;
}

.carousel-track .product-mockup .product-mockup-card {
  transform: none;
  animation: none;
}

.carousel-track .product-mockup:hover .product-mockup-card {
  transform: translateY(-4px);
}

@keyframes prodFloat1 {
  0%, 100% { transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

@keyframes prodFloat2 {
  0%, 100% { transform: perspective(1000px) rotateY(4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1000px) rotateY(4deg) rotateX(2deg) translateY(-12px); }
}

/* Hide dots, enlarge title in product cards */
.product-mockup-card .mockup-dots {
  display: none;
}

.product-mockup-card .mockup-header {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-mockup-card .mockup-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.product-mockup-card .mockup-status {
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(40, 200, 64, 0.08);
}

.product-mockup-card .mockup-agents {
  gap: 6px;
  margin-bottom: 18px;
}

.product-mockup-card .mockup-agent {
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.product-mockup:hover .mockup-agent {
  background: rgba(255, 255, 255, 0.05);
}

.product-mockup-card .mockup-agent-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.product-mockup-card .mockup-agent-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.product-mockup-card .mockup-badge {
  font-size: 0.58rem;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.product-mockup-card .mockup-metrics {
  gap: 10px;
  margin-bottom: 4px;
}

.product-mockup-card .mockup-metric {
  padding: 12px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.product-mockup-card .mockup-metric-value {
  font-size: 1.1rem;
  font-weight: 800;
}

.product-mockup-card .mockup-metric-label {
  font-size: 0.6rem;
  margin-top: 2px;
}

/* Clickable indicator */
.product-mockup {
  cursor: pointer;
}

.product-mockup-card .mockup-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 0;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  box-shadow: 0 4px 16px rgba(255, 106, 18, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease;
}

.product-mockup-card .mockup-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.product-mockup:hover .mockup-cta::before {
  left: 100%;
}

.product-mockup:nth-child(1) .mockup-cta { background: linear-gradient(135deg, var(--agents-start), var(--agents-end)); box-shadow: 0 4px 16px rgba(72, 184, 252, 0.25); }
.product-mockup:nth-child(2) .mockup-cta { background: linear-gradient(135deg, var(--support-start), var(--support-end)); box-shadow: 0 4px 16px rgba(0, 184, 148, 0.25); }
.product-mockup:nth-child(3) .mockup-cta { background: linear-gradient(135deg, var(--social-start), var(--social-end)); box-shadow: 0 4px 16px rgba(232, 67, 147, 0.25); }
.product-mockup:nth-child(4) .mockup-cta { background: linear-gradient(135deg, var(--call-start), var(--call-end)); box-shadow: 0 4px 16px rgba(255, 77, 58, 0.25); }
.product-mockup:nth-child(5) .mockup-cta { background: linear-gradient(135deg, var(--autopage-start), var(--autopage-end)); box-shadow: 0 4px 16px rgba(245, 200, 66, 0.25); color: #1a1a2e; }

.product-mockup:hover .mockup-cta {
  gap: 12px;
  box-shadow: 0 6px 24px rgba(255, 106, 18, 0.35);
}

.product-mockup:nth-child(1):hover .mockup-cta { box-shadow: 0 6px 24px rgba(72, 184, 252, 0.35); }
.product-mockup:nth-child(2):hover .mockup-cta { box-shadow: 0 6px 24px rgba(0, 184, 148, 0.35); }
.product-mockup:nth-child(3):hover .mockup-cta { box-shadow: 0 6px 24px rgba(232, 67, 147, 0.35); }
.product-mockup:nth-child(4):hover .mockup-cta { box-shadow: 0 6px 24px rgba(255, 77, 58, 0.35); }
.product-mockup:nth-child(5):hover .mockup-cta { box-shadow: 0 6px 24px rgba(245, 200, 66, 0.35); }

/* Product color themes — card background gradient */
.product-mockup:nth-child(1) .product-mockup-card {
  background: linear-gradient(160deg, rgba(72, 184, 252, 0.08) 0%, rgba(26, 26, 46, 0.6) 50%);
  box-shadow: 0 8px 32px rgba(72, 184, 252, 0.08);
}
.product-mockup:nth-child(2) .product-mockup-card {
  background: linear-gradient(160deg, rgba(0, 184, 148, 0.08) 0%, rgba(26, 26, 46, 0.6) 50%);
  box-shadow: 0 8px 32px rgba(0, 184, 148, 0.08);
}
.product-mockup:nth-child(3) .product-mockup-card {
  background: linear-gradient(160deg, rgba(232, 67, 147, 0.08) 0%, rgba(26, 26, 46, 0.6) 50%);
  box-shadow: 0 8px 32px rgba(232, 67, 147, 0.08);
}
.product-mockup:nth-child(4) .product-mockup-card {
  background: linear-gradient(160deg, rgba(255, 107, 107, 0.08) 0%, rgba(26, 26, 46, 0.6) 50%);
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.08);
}
.product-mockup:nth-child(5) .product-mockup-card {
  background: linear-gradient(160deg, rgba(245, 200, 66, 0.08) 0%, rgba(26, 26, 46, 0.6) 50%);
  box-shadow: 0 8px 32px rgba(245, 200, 66, 0.08);
}

/* Product color themes — glow borders */
.product-mockup:nth-child(1) .product-mockup-card::before {
  background: linear-gradient(135deg, rgba(72, 184, 252, 0.4), rgba(35, 76, 249, 0.15), transparent 60%);
}
.product-mockup:nth-child(2) .product-mockup-card::before {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.4), rgba(0, 206, 201, 0.15), transparent 60%);
}
.product-mockup:nth-child(3) .product-mockup-card::before {
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.4), rgba(108, 92, 231, 0.15), transparent 60%);
}
.product-mockup:nth-child(4) .product-mockup-card::before {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.4), rgba(238, 90, 36, 0.15), transparent 60%);
}
.product-mockup:nth-child(5) .product-mockup-card::before {
  background: linear-gradient(135deg, rgba(245, 200, 66, 0.4), rgba(232, 168, 23, 0.15), transparent 60%);
}

/* Product color themes — hover glow */
.product-mockup:nth-child(1):hover .product-mockup-card {
  box-shadow: 0 20px 60px rgba(72, 184, 252, 0.2), 0 0 0 1px rgba(72, 184, 252, 0.2);
}
.product-mockup:nth-child(2):hover .product-mockup-card {
  box-shadow: 0 20px 60px rgba(0, 184, 148, 0.2), 0 0 0 1px rgba(0, 184, 148, 0.2);
}
.product-mockup:nth-child(3):hover .product-mockup-card {
  box-shadow: 0 20px 60px rgba(232, 67, 147, 0.2), 0 0 0 1px rgba(232, 67, 147, 0.2);
}
.product-mockup:nth-child(4):hover .product-mockup-card {
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2), 0 0 0 1px rgba(255, 107, 107, 0.2);
}
.product-mockup:nth-child(5):hover .product-mockup-card {
  box-shadow: 0 20px 60px rgba(245, 200, 66, 0.2), 0 0 0 1px rgba(245, 200, 66, 0.2);
}

/* Product color themes — header border */
.product-mockup:nth-child(1) .product-mockup-card .mockup-header { border-bottom-color: rgba(72, 184, 252, 0.1); }
.product-mockup:nth-child(2) .product-mockup-card .mockup-header { border-bottom-color: rgba(0, 184, 148, 0.1); }
.product-mockup:nth-child(3) .product-mockup-card .mockup-header { border-bottom-color: rgba(232, 67, 147, 0.1); }
.product-mockup:nth-child(4) .product-mockup-card .mockup-header { border-bottom-color: rgba(255, 107, 107, 0.1); }
.product-mockup:nth-child(5) .product-mockup-card .mockup-header { border-bottom-color: rgba(245, 200, 66, 0.1); }

/* Product color themes — title gradient */
.product-mockup:nth-child(1) .mockup-title {
  background: linear-gradient(135deg, #fff 30%, var(--agents-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-mockup:nth-child(2) .mockup-title {
  background: linear-gradient(135deg, #fff 30%, var(--support-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-mockup:nth-child(3) .mockup-title {
  background: linear-gradient(135deg, #fff 30%, var(--social-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-mockup:nth-child(4) .mockup-title {
  background: linear-gradient(135deg, #fff 30%, var(--call-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.product-mockup:nth-child(5) .mockup-title {
  background: linear-gradient(135deg, #fff 30%, var(--autopage-start));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Product color themes — status */
.product-mockup:nth-child(1) .mockup-status { color: var(--agents-start); }
.product-mockup:nth-child(1) .mockup-status-dot { background: var(--agents-start); }
.product-mockup:nth-child(1) .product-mockup-card .mockup-status { background: rgba(72, 184, 252, 0.08); }
.product-mockup:nth-child(2) .mockup-status { color: var(--support-start); }
.product-mockup:nth-child(2) .mockup-status-dot { background: var(--support-start); }
.product-mockup:nth-child(2) .product-mockup-card .mockup-status { background: rgba(0, 184, 148, 0.08); }
.product-mockup:nth-child(3) .mockup-status { color: var(--social-start); }
.product-mockup:nth-child(3) .mockup-status-dot { background: var(--social-start); }
.product-mockup:nth-child(3) .product-mockup-card .mockup-status { background: rgba(232, 67, 147, 0.08); }
.product-mockup:nth-child(4) .mockup-status { color: var(--call-start); }
.product-mockup:nth-child(4) .mockup-status-dot { background: var(--call-start); }
.product-mockup:nth-child(4) .product-mockup-card .mockup-status { background: rgba(255, 107, 107, 0.08); }
.product-mockup:nth-child(5) .mockup-status { color: var(--autopage-start); }
.product-mockup:nth-child(5) .mockup-status-dot { background: var(--autopage-start); }
.product-mockup:nth-child(5) .product-mockup-card .mockup-status { background: rgba(245, 200, 66, 0.08); }

/* Product color themes — icon backgrounds */
.product-mockup:nth-child(1) .mockup-agent-icon {
  background: linear-gradient(135deg, rgba(72, 184, 252, 0.15), rgba(35, 76, 249, 0.1));
  color: var(--agents-start);
}
.product-mockup:nth-child(2) .mockup-agent-icon {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.15), rgba(0, 206, 201, 0.1));
  color: var(--support-start);
}
.product-mockup:nth-child(3) .mockup-agent-icon {
  background: linear-gradient(135deg, rgba(232, 67, 147, 0.15), rgba(108, 92, 231, 0.1));
  color: var(--social-start);
}
.product-mockup:nth-child(4) .mockup-agent-icon {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(238, 90, 36, 0.1));
  color: var(--call-start);
}
.product-mockup:nth-child(5) .mockup-agent-icon {
  background: linear-gradient(135deg, rgba(245, 200, 66, 0.15), rgba(232, 168, 23, 0.1));
  color: var(--autopage-start);
}

/* Product color themes — agent row borders */
.product-mockup:nth-child(1) .product-mockup-card .mockup-agent { border-color: rgba(72, 184, 252, 0.06); }
.product-mockup:nth-child(2) .product-mockup-card .mockup-agent { border-color: rgba(0, 184, 148, 0.06); }
.product-mockup:nth-child(3) .product-mockup-card .mockup-agent { border-color: rgba(232, 67, 147, 0.06); }
.product-mockup:nth-child(4) .product-mockup-card .mockup-agent { border-color: rgba(255, 107, 107, 0.06); }
.product-mockup:nth-child(5) .product-mockup-card .mockup-agent { border-color: rgba(245, 200, 66, 0.06); }

/* Product color themes — metric boxes */
.product-mockup:nth-child(1) .product-mockup-card .mockup-metric { border-color: rgba(72, 184, 252, 0.08); }
.product-mockup:nth-child(2) .product-mockup-card .mockup-metric { border-color: rgba(0, 184, 148, 0.08); }
.product-mockup:nth-child(3) .product-mockup-card .mockup-metric { border-color: rgba(232, 67, 147, 0.08); }
.product-mockup:nth-child(4) .product-mockup-card .mockup-metric { border-color: rgba(255, 107, 107, 0.08); }
.product-mockup:nth-child(5) .product-mockup-card .mockup-metric { border-color: rgba(245, 200, 66, 0.08); }

/* Product color themes — metric values */
.product-mockup:nth-child(1) .mockup-metric-value {
  background: linear-gradient(135deg, var(--agents-start), var(--agents-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-mockup:nth-child(2) .mockup-metric-value {
  background: linear-gradient(135deg, var(--support-start), var(--support-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-mockup:nth-child(3) .mockup-metric-value {
  background: linear-gradient(135deg, var(--social-start), var(--social-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-mockup:nth-child(4) .mockup-metric-value {
  background: linear-gradient(135deg, var(--call-start), var(--call-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-mockup:nth-child(5) .mockup-metric-value {
  background: linear-gradient(135deg, var(--autopage-start), var(--autopage-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Coming soon ribbon */
.coming-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--autopage-start), var(--autopage-end));
  color: #1a1a2e;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(245, 200, 66, 0.3);
}

/* New badge style */
.mockup-badge--new {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}
.product-card[data-product="support"] .card-arrow {
  color: var(--support-start);
}
.product-card[data-product="social"] .card-arrow {
  color: var(--social-start);
}
.product-card[data-product="call"] .card-arrow {
  color: var(--call-start);
}

/* ========================================
   CAROUSEL CARD ANIMATIONS
   Unique per-card animations (carousel only)
   ======================================== */

/* --- 1. Flowix Agents (blue) — Processing pulse --- */
/* Staggered glow on the 3 agent icons */
@keyframes agentPulse {
  0%, 20%, 100% { box-shadow: 0 0 0 0 transparent; }
  10% { box-shadow: 0 0 12px 2px rgba(72, 184, 252, 0.35); }
}

.carousel-track .product-mockup:nth-child(1) .mockup-agent:nth-child(1) .mockup-agent-icon {
  animation: agentPulse 7s ease-in-out infinite;
}
.carousel-track .product-mockup:nth-child(1) .mockup-agent:nth-child(2) .mockup-agent-icon {
  animation: agentPulse 7s ease-in-out 2.3s infinite;
}
.carousel-track .product-mockup:nth-child(1) .mockup-agent:nth-child(3) .mockup-agent-icon {
  animation: agentPulse 7s ease-in-out 4.6s infinite;
}

/* --- 2. Flowix Support (green) — Ticket resolve progress bar --- */
@keyframes ticketResolve {
  0%, 15% { transform: scaleX(0); }
  50%, 65% { transform: scaleX(1); }
  80%, 100% { transform: scaleX(0); }
}

.carousel-track .product-mockup:nth-child(2) .mockup-agents {
  position: relative;
}
.carousel-track .product-mockup:nth-child(2) .mockup-agents::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--support-start), var(--support-end));
  transform-origin: left center;
  animation: ticketResolve 8s ease-in-out infinite;
  opacity: 0.6;
}

/* --- 3. Flowix Social (pink) — Notification pop --- */
@keyframes notifPop {
  0%, 15%, 100% { transform: scale(1); }
  5% { transform: scale(1.25); }
  10% { transform: scale(1); }
}

.carousel-track .product-mockup:nth-child(3) .mockup-agent:nth-child(1) .mockup-badge {
  animation: notifPop 7s ease-in-out infinite;
}
.carousel-track .product-mockup:nth-child(3) .mockup-agent:nth-child(2) .mockup-badge {
  animation: notifPop 7s ease-in-out 2.3s infinite;
}
.carousel-track .product-mockup:nth-child(3) .mockup-agent:nth-child(3) .mockup-badge {
  animation: notifPop 7s ease-in-out 4.6s infinite;
}

/* --- 4. Flowix Call (red) — Ringing ripple --- */
@keyframes ringRipple {
  0%, 30%, 100% { transform: scale(1); opacity: 0.5; }
  5% { transform: scale(2.2); opacity: 0; }
  10% { transform: scale(1); opacity: 0.5; }
  15% { transform: scale(2.2); opacity: 0; }
  20% { transform: scale(1); opacity: 0.5; }
}

.carousel-track .product-mockup:nth-child(4) .mockup-agent:nth-child(1) .mockup-agent-icon {
  position: relative;
}
.carousel-track .product-mockup:nth-child(4) .mockup-agent:nth-child(1) .mockup-agent-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid rgba(255, 107, 107, 0.5);
  animation: ringRipple 8s ease-out infinite;
  pointer-events: none;
}

/* --- 5. Flowix Auto Page (yellow) — Shimmer scan --- */
@keyframes shimmerScan {
  0%, 25%, 100% { background-position: 200% 0; }
  50% { background-position: -100% 0; }
}

.carousel-track .product-mockup:nth-child(5) .product-mockup-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(245, 200, 66, 0.06) 47%,
    rgba(245, 200, 66, 0.12) 50%,
    rgba(245, 200, 66, 0.06) 53%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmerScan 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Reduce animation motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .carousel-track .product-mockup .mockup-agent-icon,
  .carousel-track .product-mockup .mockup-agent-icon::after,
  .carousel-track .product-mockup .mockup-badge,
  .carousel-track .product-mockup .mockup-agents::after,
  .carousel-track .product-mockup .product-mockup-card::after {
    animation: none !important;
  }
}

/* ========================================
   PRODUCT INTRO (text-based)
   ======================================== */
.product-intro {
  padding: var(--section-padding) 0;
}

.product-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.product-intro-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.product-intro-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
}

.product-intro-features {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-intro-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-light);
  line-height: 1.7;
}

.product-intro-features li svg {
  color: var(--orange-start);
  flex-shrink: 0;
  margin-top: 3px;
}

.product-intro-features li strong {
  color: white;
}

.product-intro-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ========================================
   PRODUCT DETAIL SECTIONS
   ======================================== */
.product-detail {
  display: none;
  padding: 60px 0;
  animation: fadeInUp 0.5s ease;
}

.product-detail.active {
  display: block;
}

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

.detail-container {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.detail-header {
  padding: 48px 48px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.detail-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.detail-header-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.detail-header-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
}

.detail-body {
  padding: 40px 48px 48px;
}

.detail-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.feature-item {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.feature-item .feature-icon {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--orange-start);
}

.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.detail-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Detail color themes */
.product-detail[data-detail="agents"] .detail-icon {
  background: linear-gradient(135deg, var(--agents-start), var(--agents-end));
}
.product-detail[data-detail="support"] .detail-icon {
  background: linear-gradient(135deg, var(--support-start), var(--support-end));
}
.product-detail[data-detail="social"] .detail-icon {
  background: linear-gradient(135deg, var(--social-start), var(--social-end));
}
.product-detail[data-detail="call"] .detail-icon {
  background: linear-gradient(135deg, var(--call-start), var(--call-end));
}

.product-detail[data-detail="agents"] .btn-product {
  background: linear-gradient(135deg, var(--agents-start), var(--agents-end));
  box-shadow: 0 4px 20px rgba(255, 106, 18, 0.3);
}
.product-detail[data-detail="support"] .btn-product {
  background: linear-gradient(135deg, var(--support-start), var(--support-end));
  box-shadow: 0 4px 20px rgba(0, 184, 148, 0.3);
}
.product-detail[data-detail="social"] .btn-product {
  background: linear-gradient(135deg, var(--social-start), var(--social-end));
  box-shadow: 0 4px 20px rgba(232, 67, 147, 0.3);
}
.product-detail[data-detail="call"] .btn-product {
  background: linear-gradient(135deg, var(--call-start), var(--call-end));
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
}

.btn-product {
  color: white;
}

.btn-product:hover {
  transform: translateY(-2px);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 8rem;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.08), rgba(255, 138, 26, 0.04));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 18, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  color: var(--orange-start);
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 106, 18, 0.1);
  color: var(--orange-start);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   PRICING
   ======================================== */
.pricing {
  padding: var(--section-padding);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius);
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--orange-start);
  box-shadow: 0 0 40px rgba(255, 106, 18, 0.1);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.popular:hover {
  box-shadow: 0 20px 60px rgba(255, 106, 18, 0.15);
}

.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.pricing-card[data-pricing="agents"] .pricing-icon {
  background: linear-gradient(135deg, var(--agents-start), var(--agents-end));
}
.pricing-card[data-pricing="support"] .pricing-icon {
  background: linear-gradient(135deg, var(--support-start), var(--support-end));
}
.pricing-card[data-pricing="social"] .pricing-icon {
  background: linear-gradient(135deg, var(--social-start), var(--social-end));
}
.pricing-card[data-pricing="call"] .pricing-icon {
  background: linear-gradient(135deg, var(--call-start), var(--call-end));
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card .pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-price .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
}

.pricing-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange-start);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: var(--section-padding);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius-sm);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 18, 0.2);
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.12), rgba(255, 138, 26, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--orange-start);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.2), rgba(255, 138, 26, 0.15));
  transform: scale(1.05);
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
  padding: var(--section-padding);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 18, 0.2);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.team-card:hover .team-avatar {
  border-color: var(--orange-start);
  box-shadow: 0 0 20px rgba(255, 106, 18, 0.25);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark-bg-card), var(--dark-bg-secondary));
  border: 2px solid rgba(255, 106, 18, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--orange-start);
  transition: all 0.3s ease;
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 0.82rem;
  color: var(--orange-start);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card .team-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-linkedin:hover {
  background: rgba(255, 106, 18, 0.12);
  border-color: rgba(255, 106, 18, 0.4);
  color: var(--orange-start);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: var(--section-padding);
}

.faq-container,
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
  border-color: rgba(255, 106, 18, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-question:hover {
  color: var(--orange-start);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--orange-start);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   BLOG SECTION
   ======================================== */
.blog {
  padding: var(--section-padding);
}


.blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.blog-post {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--orange-start);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.blog-post:hover {
  border-color: rgba(255, 106, 18, 0.3);
  border-left-color: var(--orange-end);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.blog-post-header {
  padding: 32px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.blog-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255, 106, 18, 0.1);
  color: var(--orange-start);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date,
.blog-read-time,
.blog-author {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.blog-author {
  font-weight: 500;
  color: var(--text-light);
}

.blog-date::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  margin-right: 12px;
  vertical-align: middle;
}

.blog-post-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.blog-post:hover .blog-post-header h3 {
  color: var(--orange-start);
}

.blog-post-excerpt {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-post-toggle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-start);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
  text-decoration: none;
}

.blog-post-toggle svg {
  transition: transform 0.3s ease;
}

.blog-post.open .blog-post-toggle svg {
  transform: rotate(90deg);
}

.blog-post:hover .blog-post-toggle {
  gap: 10px;
}

.blog-post-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-post.open .blog-post-body {
  max-height: 800px;
}

.blog-post-content {
  padding: 0 32px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.blog-post-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-post-content p:last-child {
  margin-bottom: 0;
}

/* Blog single post page */
.blog-single {
  padding: 60px 0 80px;
}

.blog-single-content {
  max-width: 860px;
  margin: 0 auto;
}

.blog-single-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.blog-single-content p:last-child {
  margin-bottom: 0;
}

.blog-single-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 36px;
  margin-bottom: 16px;
}

.blog-single-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.blog-single-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 6px;
}

.blog-single-content strong {
  color: var(--text-white);
}

.blog-single-content h2 {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 48px;
  margin-bottom: 20px;
  border-left: 3px solid var(--orange-start);
  padding-left: 16px;
}

.blog-single-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 32px;
  margin-bottom: 14px;
}

.blog-single-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.blog-single-content ol::marker {
  color: var(--orange-start);
}

.blog-single-content ol li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 6px;
}

.blog-single-content ol li::marker {
  color: var(--orange-start);
}

.blog-single-content a {
  color: var(--orange-start);
  text-decoration: underline;
}

.blog-single-content a:hover {
  color: var(--orange-end);
}

.blog-single-content blockquote {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--orange-start);
  font-style: italic;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-single-content blockquote p {
  margin-bottom: 0;
}

.blog-single-content > p:first-child {
  font-size: 1.1rem;
}

/* Legacy blog card support */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-start);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 10px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  padding: var(--section-padding);
  position: relative;
  z-index: 1;
}

.cta-box {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(34, 34, 64, 0.6));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 106, 18, 0.2);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 18, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 26, 0.06) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaPulse 5s ease-in-out infinite reverse;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-color: rgba(255, 106, 18, 0.15);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.15), rgba(255, 138, 26, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--orange-start);
}

.contact-method h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-method p a {
  color: inherit;
  text-decoration: none;
}

.contact-method p a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--dark-bg-secondary);
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--orange-start);
  box-shadow: 0 0 0 3px rgba(255, 106, 18, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color: var(--orange-start);
}

.custom-select.open .custom-select-trigger {
  box-shadow: 0 0 0 3px rgba(255, 106, 18, 0.1);
}

.custom-select-trigger.has-value {
  color: var(--text-white);
}

.custom-select-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  list-style: none;
  padding: 6px;
  margin: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-options li {
  padding: 12px 16px;
  color: var(--text-light);
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.custom-select-options li:hover {
  background: rgba(255, 106, 18, 0.15);
  color: var(--orange-start);
}

.custom-select-options li.selected {
  color: var(--orange-start);
}

.custom-datepicker {
  position: relative;
  width: 100%;
}

.datepicker-trigger {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}

.datepicker-trigger:hover,
.custom-datepicker.open .datepicker-trigger {
  border-color: var(--orange-start);
}

.custom-datepicker.open .datepicker-trigger {
  box-shadow: 0 0 0 3px rgba(255, 106, 18, 0.1);
}

.datepicker-trigger.has-value {
  color: var(--text-white);
}

.datepicker-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: rgba(20, 20, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: all 0.25s ease;
  min-width: 300px;
}

.custom-datepicker.open .datepicker-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.datepicker-month-year {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
}

.datepicker-prev,
.datepicker-next {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.4rem;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.datepicker-prev:hover,
.datepicker-next:hover {
  background: rgba(255, 106, 18, 0.15);
  color: var(--orange-start);
}

.datepicker-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.datepicker-days-header span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
}

.datepicker-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.datepicker-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--text-light);
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: none;
  transition: all 0.2s ease;
}

.datepicker-day:hover:not(.disabled):not(.other-month) {
  background: rgba(255, 106, 18, 0.15);
  color: var(--orange-start);
}

.datepicker-day.today {
  border: 1px solid var(--orange-start);
  color: var(--orange-start);
}

.datepicker-day.selected {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: white;
  font-weight: 600;
}

.datepicker-day.other-month {
  color: rgba(255, 255, 255, 0.15);
}

.datepicker-day.disabled {
  color: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.radio-group {
  display: flex;
  gap: 16px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  flex: 1;
  transition: all 0.3s ease;
}

.radio-option:hover {
  border-color: var(--orange-start);
}

.radio-option.active {
  border-color: var(--orange-start);
  background: rgba(255, 106, 18, 0.08);
}

.radio-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.radio-option.active .radio-custom {
  border-color: var(--orange-start);
}

.radio-option.active .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-start);
}

.radio-option.active .radio-label {
  color: var(--text-white);
}

.radio-label {
  font-size: 0.95rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.time-slot {
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--text-light);
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:hover {
  border-color: var(--orange-start);
  color: var(--orange-start);
}

.time-slot.selected {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  border-color: transparent;
  color: white;
  font-weight: 600;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

.contact-form .btn.is-sending {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  pointer-events: none;
  opacity: 0.85;
}

.contact-form .btn.is-sending .btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

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

.contact-form .btn.is-success {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  pointer-events: none;
  animation: btn-success-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes btn-success-pop {
  0%   { transform: scale(0.95); }
  50%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.contact-form .btn.is-success .btn-check {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  animation: btn-check-draw 0.4s ease-out 0.1s both;
}

@keyframes btn-check-draw {
  0%   { opacity: 0; transform: scale(0) rotate(-45deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.contact-form .btn.is-error {
  background: linear-gradient(135deg, #f87171, #ef4444);
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
  pointer-events: none;
  animation: btn-shake 0.4s ease;
}

@keyframes btn-shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(6px); }
  60%      { transform: translateX(-4px); }
  80%      { transform: translateX(4px); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h4 {
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--orange-start);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  color: var(--text-light);
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 106, 18, 0.3);
  color: white;
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */
.pain-points {
  padding: var(--section-padding);
}

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

.pain-card {
  background: linear-gradient(135deg, rgba(255, 45, 45, 0.06), rgba(255, 80, 80, 0.02));
  border: 1px solid rgba(255, 60, 60, 0.12);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff4d4d, #ff6b6b);
  border-radius: 4px 0 0 4px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.pain-card:hover {
  border-color: rgba(255, 60, 60, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 50, 50, 0.08);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card .pain-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(255, 60, 60, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff5c5c;
  transition: all 0.3s ease;
}

.pain-card:hover .pain-icon {
  background: rgba(255, 60, 60, 0.16);
  transform: scale(1.05);
}

.pain-card-content {
  flex: 1;
}

.pain-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Comparison cards (without vs with) */
.compare-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 48px auto 0;
}

.compare-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.compare-label.without {
  background: rgba(255, 60, 60, 0.08);
  color: #ff5c5c;
  border: 1px solid rgba(255, 60, 60, 0.15);
  border-bottom: none;
}

.compare-label.with {
  background: rgba(0, 184, 148, 0.08);
  color: #00d9a6;
  border: 1px solid rgba(0, 184, 148, 0.15);
  border-bottom: none;
}

.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  overflow: hidden;
}

.compare-row:last-child .compare-cell:first-child {
  border-radius: 0 0 0 var(--border-radius);
}

.compare-row:last-child .compare-cell:last-child {
  border-radius: 0 0 var(--border-radius) 0;
}

.compare-cell {
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}

.compare-cell.without {
  background: rgba(255, 60, 60, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.compare-cell.with {
  background: rgba(0, 184, 148, 0.03);
}

.compare-row:hover .compare-cell.without {
  background: rgba(255, 60, 60, 0.06);
}

.compare-row:hover .compare-cell.with {
  background: rgba(0, 184, 148, 0.06);
}

.compare-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.compare-cell.without .compare-icon {
  background: rgba(255, 60, 60, 0.12);
  color: #ff5c5c;
}

.compare-cell.with .compare-icon {
  background: rgba(0, 184, 148, 0.12);
  color: #00d9a6;
}

.compare-text h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.compare-text p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .compare-labels {
    display: none;
  }
  .compare-row {
    grid-template-columns: 1fr;
    border-left: none;
    border-right: none;
    gap: 0;
    margin-bottom: 16px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }
  .compare-row:last-child {
    border-radius: var(--border-radius);
  }
  .compare-cell {
    padding: 20px 22px;
  }
  .compare-cell.without {
    border-right: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  }
  .compare-cell::before {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: absolute;
  }
}

/* Solution cards (green) - kept for reuse */
.solution-header {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 0;
}

.solution-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

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

.solution-card {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.06), rgba(0, 206, 201, 0.02));
  border: 1px solid rgba(0, 184, 148, 0.12);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00b894, #00cec9);
  border-radius: 4px 0 0 4px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.solution-card:hover {
  border-color: rgba(0, 184, 148, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 184, 148, 0.08);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card .solution-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(0, 184, 148, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b894;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
  background: rgba(0, 184, 148, 0.16);
  transform: scale(1.05);
}

.solution-card-content {
  flex: 1;
}

.solution-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.solution-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .solution-card {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pain-transition {
  text-align: center;
  margin-top: 64px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.06), rgba(255, 138, 26, 0.03));
  border: 1px solid rgba(255, 106, 18, 0.12);
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.pain-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
  border-radius: 3px;
}

.pain-transition h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.pain-transition p {
  font-size: 1.02rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.65;
}

.pain-transition .btn {
  margin-top: 4px;
}

@media (max-width: 768px) {
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .pain-card {
    flex-direction: column;
    gap: 14px;
  }
  .pain-transition {
    padding: 36px 24px;
  }
  .pain-transition h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   SAVINGS CALCULATOR
   ======================================== */
.calculator-section {
  padding: var(--section-padding);
}

.calculator-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
}

.calc-field label span {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.calc-slider-row input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  transition: background 0.2s;
}

.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  cursor: pointer;
  border: 3px solid var(--dark-bg);
  box-shadow: 0 2px 8px rgba(255, 106, 18, 0.3);
  transition: transform 0.2s;
}

.calc-slider-row input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider-row input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  cursor: pointer;
  border: 3px solid var(--dark-bg);
  box-shadow: 0 2px 8px rgba(255, 106, 18, 0.3);
}

.calc-value {
  min-width: 52px;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-start);
  font-variant-numeric: tabular-nums;
}

.calculator-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-result-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius-sm);
  padding: 20px 24px;
  transition: all 0.3s ease;
}

.calc-result-card.highlight {
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.08), rgba(0, 206, 201, 0.04));
  border-color: rgba(0, 184, 148, 0.2);
}

.calc-result-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.calc-result-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  font-variant-numeric: tabular-nums;
}

.calc-result-card.highlight .calc-result-value {
  color: #00d9a6;
}

.calc-result-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 2px;
}

.calculator-cta {
  text-align: center;
  margin-top: 32px;
}

.calculator-cta p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .calculator-box {
    padding: 28px 20px;
  }
  .calculator-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .calc-result-value {
    font-size: 1.4rem;
  }
}

/* ========================================
   COOKIE BANNER (Centered Modal)
   ======================================== */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cookie-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner.show .cookie-inner {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.cookie-banner.hiding .cookie-inner {
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}

.cookie-banner.hiding {
  opacity: 0;
}

.cookie-inner {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  background: var(--dark-bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 40px;
  text-align: center;
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.cookie-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 106, 18, 0.15), rgba(255, 138, 26, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.cookie-inner h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cookie-inner p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 28px;
}

.cookie-inner p a {
  color: var(--orange-start);
  text-decoration: underline;
}

.cookie-policy-toggle {
  cursor: pointer;
}

.cookie-policy-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  text-align: left;
}

.cookie-policy-text.open {
  max-height: 300px;
}

.cookie-policy-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.cookie-policy-text p:last-child {
  margin-bottom: 0;
}

.cookie-policy-text p strong {
  color: var(--text-light);
}

.cookie-policy-text a {
  color: var(--orange-start);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-buttons .btn {
  flex: 1;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 106, 18, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 106, 18, 0.45);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  padding: var(--section-padding);
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 40px 0 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section {
  padding: var(--section-padding);
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.result-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: rgba(255, 106, 18, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 106, 18, 0.08);
}

.result-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.result-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(255, 106, 18, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-start);
  transition: background 0.3s ease;
}

.result-icon svg {
  width: 20px;
  height: 20px;
}

.result-card:hover .result-icon {
  background: rgba(255, 106, 18, 0.2);
}

.result-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.result-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.result-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ========================================
   INTEGRATIONS LOGO SLIDER
   ======================================== */
.integrations-section {
  padding: var(--section-padding);
  overflow: hidden;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  margin-top: 48px;
  padding: 8px 0;
}

.logo-slider::before,
.logo-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-bg), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-bg), transparent);
}

.logo-track {
  display: flex;
  gap: 18px;
  animation: logoScroll 45s linear infinite;
  width: max-content;
}

.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.logo-slide:hover {
  border-color: rgba(255, 106, 18, 0.25);
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(255, 106, 18, 0.1);
}

.logo-slide img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s, filter 0.3s;
  filter: grayscale(30%);
}

.logo-slide:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

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

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* ========================================
   BEFORE / AFTER COMPARISON
   ======================================== */
.before-after {
  padding: var(--section-padding);
  position: relative;
}

.before-after .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.compare-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.compare-card.without {
  border-color: rgba(255, 75, 75, 0.25);
}

.compare-card.with {
  border-color: rgba(255, 106, 18, 0.35);
}

.compare-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.compare-card.without h3 {
  color: #ff6b6b;
}

.compare-card.with h3 {
  color: var(--orange-start);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}

.compare-list .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.compare-card.without .icon {
  background: rgba(255, 75, 75, 0.15);
  color: #ff6b6b;
}

.compare-card.with .icon {
  background: rgba(46, 213, 115, 0.15);
  color: #2ed573;
}

/* ========================================
   ROI CALCULATOR + QUOTE
   ======================================== */
.roi-calculator {
  padding: var(--section-padding);
  position: relative;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.roi-quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.quote-text {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--text-white);
  margin-bottom: 32px;
}

.calculator-card {
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 36px 32px;
}

.calculator-card label {
  display: block;
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.slider-wrapper input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 106, 18, 0.4);
  transition: transform 0.2s ease;
}

.slider-wrapper input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-wrapper input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 10px rgba(255, 106, 18, 0.4);
}

.slider-wrapper input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.slider-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-white);
  min-width: 48px;
  text-align: right;
}

.calculator-output {
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calculator-output .stat-item h3,
.calculator-output .stat-item .stat-number,
.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.calculator-output .stat-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* --- Section divider --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 106, 18, 0.2), transparent);
  max-width: 500px;
  margin: 0 auto;
}

/* --- Staggered fade-in for grids --- */
.fade-in-stagger.visible > * {
  opacity: 0;
  transform: translateY(20px);
  animation: staggerIn 0.5s ease forwards;
}
.fade-in-stagger.visible > *:nth-child(1) { animation-delay: 0s; }
.fade-in-stagger.visible > *:nth-child(2) { animation-delay: 0.1s; }
.fade-in-stagger.visible > *:nth-child(3) { animation-delay: 0.15s; }
.fade-in-stagger.visible > *:nth-child(4) { animation-delay: 0.2s; }

@keyframes staggerIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Stats icon draw animation --- */
.hero-stats .stat-item svg path,
.hero-stats .stat-item svg polyline,
.hero-stats .stat-item svg circle,
.hero-stats .stat-item svg line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
}

.hero-stats.visible .stat-item svg path,
.hero-stats.visible .stat-item svg polyline,
.hero-stats.visible .stat-item svg circle,
.hero-stats.visible .stat-item svg line {
  animation: drawIcon 1.2s ease-out forwards;
}

.hero-stats.visible .stat-item:nth-child(1) svg path,
.hero-stats.visible .stat-item:nth-child(1) svg polyline,
.hero-stats.visible .stat-item:nth-child(1) svg circle,
.hero-stats.visible .stat-item:nth-child(1) svg line { animation-delay: 0.3s; }

.hero-stats.visible .stat-item:nth-child(2) svg path,
.hero-stats.visible .stat-item:nth-child(2) svg polyline,
.hero-stats.visible .stat-item:nth-child(2) svg circle,
.hero-stats.visible .stat-item:nth-child(2) svg line { animation-delay: 0.5s; }

.hero-stats.visible .stat-item:nth-child(3) svg path,
.hero-stats.visible .stat-item:nth-child(3) svg polyline,
.hero-stats.visible .stat-item:nth-child(3) svg circle,
.hero-stats.visible .stat-item:nth-child(3) svg line { animation-delay: 0.7s; }

.hero-stats.visible .stat-item:nth-child(4) svg path,
.hero-stats.visible .stat-item:nth-child(4) svg polyline,
.hero-stats.visible .stat-item:nth-child(4) svg circle,
.hero-stats.visible .stat-item:nth-child(4) svg line { animation-delay: 0.9s; }

@keyframes drawIcon {
  to {
    stroke-dashoffset: 0;
  }
}

/* --- Navbar logo hover glow --- */
.nav-logo:hover span {
  filter: brightness(1.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid-layout {
    gap: 24px;
  }

  .mockup-card {
    max-width: 360px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-mockup-grid {
    gap: 24px;
  }

  .detail-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid::before {
    display: none;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
    --nav-height: 70px;
  }

  .navbar.menu-open,
  .navbar:has(.nav-menu.open) {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    border-bottom: none;
    height: auto;
  }

  .navbar.menu-open .nav-container,
  .navbar:has(.nav-menu.open) .nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10001;
    padding: 0 24px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 9999;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .nav-menu.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu .nav-link {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-dropdown .dropdown-arrow {
    transform: rotate(0deg);
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    max-height: 250px;
    padding: 12px 0 0;
  }

  .dropdown-menu li a {
    padding: 10px 0;
    font-size: 1rem;
    text-align: center;
    color: var(--text-muted);
  }

  .nav-logo-img {
    height: 60px;
  }

  .nav-actions {
    position: relative;
    z-index: 10000;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid-layout {
    grid-template-columns: 1fr;
  }

  .hero-mockup {
    display: none;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-mockup-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .products-carousel {
    padding: 0 40px;
  }

  .carousel-track .product-mockup {
    flex: 0 0 100%;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .carousel-arrow svg {
    width: 15px;
    height: 15px;
  }

  .product-mockup-card {
    padding: 22px;
    border-radius: 16px;
  }

  .product-mockup-card::before {
    border-radius: 17px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .result-number {
    font-size: 2.2rem;
  }

  .before-after .compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .roi-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .roi-quote {
    text-align: center;
    align-items: center;
  }

  .calculator-card {
    padding: 28px 20px;
  }

  .calculator-output {
    flex-direction: column;
    gap: 24px;
  }

  .slider-wrapper {
    gap: 14px;
  }

  .product-mockup-card {
    transform: none !important;
    animation: none !important;
  }

  .detail-header {
    padding: 32px 24px 0;
    flex-direction: column;
  }

  .detail-body {
    padding: 24px;
  }

  .detail-features {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 50px 24px;
  }

  .contact-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .blog-post-header {
    padding: 24px;
  }

  .blog-post-content {
    padding: 0 24px 24px;
  }

  .blog-post-header h3 {
    font-size: 1.1rem;
  }

  .blog-single {
    padding: 40px 0 60px;
  }

  .blog-single-content h4 {
    font-size: 1.05rem;
  }

  .blog-single-content h2 {
    font-size: 1.3rem;
  }

  .blog-single-content h3 {
    font-size: 1.1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .logos-grid {
    gap: 32px;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 50px 0;
  }

  .container {
    padding: 0 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .stat-item h3,
  .stat-item .stat-number {
    font-size: 1.7rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .detail-cta {
    flex-direction: column;
  }

  .detail-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .cookie-inner {
    padding: 28px 20px;
  }

  .steps-grid,
  .team-grid,
  .blog-grid,
  .products-mockup-grid {
    max-width: 100%;
  }

  .steps-grid {
    gap: 24px;
  }

  .step-card {
    padding: 20px 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .result-card {
    padding: 24px 20px;
  }

  .result-number {
    font-size: 1.8rem;
  }

  .compare-card {
    padding: 28px 20px;
  }

  .compare-list li {
    font-size: 0.9rem;
  }

  .products-mockup-grid {
    max-width: 100%;
    margin: 0 auto;
  }

  .roi-grid {
    gap: 28px;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .calculator-card {
    padding: 24px 18px;
  }

  .calculator-output .stat-item h3,
.calculator-output .stat-item .stat-number,
.stat-item .stat-number {
    font-size: 1.3rem;
  }

  .testimonial-card {
    padding: 28px 20px;
  }

  .testimonial-card blockquote {
    font-size: 0.9rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 16px;
  }

  .faq-answer-inner {
    font-size: 0.9rem;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  .cta-box p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-grid {
    gap: 28px;
  }

  .nav-logo-img {
    height: 32px;
  }

  .logo-slider {
    margin-top: 32px;
  }

  .logo-slider::before,
  .logo-slider::after {
    width: 40px;
  }

  .logo-slide {
    width: 52px;
    height: 52px;
  }

  .logo-slide img {
    width: 24px;
    height: 24px;
  }

  .logo-track {
    gap: 12px;
  }
}

@media (max-width: 375px) {
  :root {
    --section-padding: 36px 0;
  }

  .container {
    padding: 0 14px;
  }

  .nav-logo-img {
    height: 28px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-stats {
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .stat-item h3,
  .stat-item .stat-number {
    font-size: 1.4rem;
  }

  .stat-item p {
    font-size: 0.8rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .step-number {
    width: 44px;
    height: 44px;
  }

  .results-grid {
    gap: 10px;
  }

  .result-card {
    padding: 20px 16px;
  }

  .result-number {
    font-size: 1.6rem;
  }

  .result-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }

  .result-icon svg {
    width: 16px;
    height: 16px;
  }

  .compare-card {
    padding: 24px 16px;
  }

  .compare-list li {
    font-size: 0.85rem;
    gap: 8px;
  }

  .compare-list .icon {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
  }

  .roi-grid {
    gap: 24px;
  }

  .quote-text {
    font-size: 1.1rem;
  }

  .calculator-card {
    padding: 20px 14px;
  }

  .calculator-card label {
    font-size: 0.9rem;
  }

  .calculator-output .stat-item h3,
.calculator-output .stat-item .stat-number,
.stat-item .stat-number {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 24px 16px;
  }

  .testimonial-card blockquote {
    font-size: 0.85rem;
  }

  .faq-question {
    font-size: 0.9rem;
    padding: 14px;
  }

  .faq-answer-inner {
    font-size: 0.85rem;
  }

  .cta-box {
    padding: 32px 14px;
  }

  .cta-box h2 {
    font-size: 1.3rem;
  }

  .cta-box p {
    font-size: 0.9rem;
  }

  .footer-grid {
    gap: 20px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .pricing-grid {
    max-width: 100%;
  }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

