/* ===== CSS Variables ===== */
:root {
  --primary: #ff6b35;
  --primary-light: #ff8c42;
  --primary-dark: #e65520;
  --secondary: #ff4757;
  --bg-dark: #0b0d17;
  --bg-light: #fafbfc;
  --text-primary: #1a1d29;
  --text-secondary: #64748b;
  --text-light: #f8f9fa;
  --border-color: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --font-primary:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "Courier New", monospace;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

.section-t-space {
  padding-top: calc(40px + (80 - 40) * ((100vw - 320px) / (1920 - 320)));
}

.section-b-space {
  padding-bottom: calc(40px + (80 - 40) * ((100vw - 320px) / (1920 - 320)));
}

.custom-container {
  padding-inline: calc(20px + (255 - 20) * ((100vw - 320px) / (1920 - 320)));
  margin: 0 auto;
}

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

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

body {
  font-family: var(--font-primary);
  background: linear-gradient(
    180deg,
    #fffcfb 0%,
    #fff6f2 10%,
    #fcf7f5 25%,
    #fafbfc 45%,
    #f6f8fd 65%,
    #f6f3ff 80%,
    #fffbfe 100%
  );
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 53, 0.05);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
}

.btn-full {
  width: 100%;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1400px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  transition: all 0.3s ease;
}

.header.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 14px 32px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  width: 150px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

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

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--text-primary);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: calc(50px + (160 - 50) * ((100vw - 320px) / (1920 - 320))) 50px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.35;
}

.hero-gradient-1 {
  top: -10%;
  left: -5%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    var(--primary) 0%,
    rgba(255, 107, 53, 0.2) 60%,
    transparent 100%
  );
}

.hero-gradient-2 {
  bottom: -5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--secondary) 0%,
    rgba(255, 71, 87, 0.2) 60%,
    transparent 100%
  );
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: -1;
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.badge-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}

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

  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.title-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto calc(20px + (40 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: calc(15px + (60 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px dashed var(--border-color);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.stat-value.highlight {
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-color);
}

.hero-image-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-image-glow {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 60px;
  background: var(--primary);
  filter: blur(60px);
  opacity: 0.3;
  z-index: 0;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 4px);
  position: relative;
  z-index: 1;
}

.hero-image-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

.overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100vh;
  background: white;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--secondary);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-mobile-link {
  padding: 14px 16px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-mobile-link:hover {
  background: rgba(255, 107, 53, 0.05);
  color: var(--primary);
}

.mobile-menu-actions {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===== Demos Section ===== */
.demos-section {
  position: relative;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 53, 0.02) 100%
  );
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .highlight {
  color: var(--primary);
  position: relative;
}

.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(255, 107, 53, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.demos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.demo-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
  border-color: var(--primary);
}

.demo-image-wrapper {
  position: relative;
  padding: 6px;
}

.demo-image-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: var(--primary);
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}

.demo-image {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 4px);
  position: relative;
  z-index: 1;
  display: block;
  transition: transform 0.3s ease;
}

.demo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.demo-card:hover .demo-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.demo-content {
  padding: 32px;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.demo-badge svg {
  width: 16px;
  height: 16px;
}

.admin-badge {
  background: rgba(230, 85, 32, 0.1);
  color: var(--primary-dark);
}

.demo-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.demo-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-demo {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
}

.btn-demo svg {
  transition: transform 0.3s ease;
}

.btn-demo:hover svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .nav-desktop {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding: 120px 20px 60px;
  }

  .hero-stats {
    gap: 24px;
  }

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

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    top: 12px;
    width: calc(100% - 24px);
  }

  .header.scrolled {
    padding: 10px 20px;
    top: 8px;
  }

  .hero {
    padding: 100px 16px 40px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

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

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .hero-image-wrapper {
    margin-top: 40px;
  }

  .hero-image-frame {
    max-width: 100%;
  }

  .overlay-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .demos-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .section-title p {
    font-size: 1rem;
  }

  .demo-content {
    padding: 24px;
  }

  .demo-content h3 {
    font-size: 1.25rem;
  }

  .demo-content p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .demos-section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .demo-content {
    padding: 20px;
  }

  .demo-content h3 {
    font-size: 1.125rem;
  }

  .demo-content p {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }

  .btn-demo {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .overlay-icon {
    width: 60px;
    height: 60px;
  }

  .overlay-icon svg {
    width: 32px;
    height: 32px;
  }
}

/* ===== Key Features Section (With Images) ===== */
.key-features-section {
  background: linear-gradient(
    180deg,
    rgba(255, 107, 53, 0.02) 0%,
    transparent 100%
  );
  position: relative;
}

.key-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .key-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .key-features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.key-feature-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.key-feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
}

.key-feature-image {
  position: relative;
  overflow: hidden;
  padding: 4px;
}

.key-feature-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px) calc(var(--radius-lg) - 4px) 0 0;
  display: block;
  transition: transform 0.4s ease;
}

.feature-icon-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0;
  transform: rotate(-180deg) scale(0.6);
  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease,
    box-shadow 0.4s ease;
}

.key-feature-card:hover .feature-icon-badge {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.key-feature-content {
  padding: calc(10px + (32 - 10) * ((100vw - 320px) / (1920 - 320)));
}

.key-feature-content h3 {
  font-size: calc(18px + (20 - 18) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: calc(6px + (12 - 6) * ((100vw - 320px) / (1920 - 320)));
  transition: color 0.3s ease;
}

.key-feature-card:hover .key-feature-content h3 {
  color: var(--primary);
}

.key-feature-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.feature-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-list li:hover {
  color: var(--text-primary);
  transform: translateX(8px);
}

.feature-list li:hover svg {
  transform: scale(1.2);
}

/* ===== Complete Features Showcase (Without Images) ===== */
.features-showcase-section {
  background: transparent;
  position: relative;
}

.features-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-category {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #eee;
}

.feature-category::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #ff6b35, #ff8c42);
  transition: height 0.4s ease;
}

.feature-category::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #ff8c42, #ff6b35);
  transition: height 0.4s ease;
}

.feature-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.12);
}

.feature-category:hover::before {
  height: 100%;
}

.feature-category:hover::after {
  height: 100%;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.category-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.feature-category:hover .category-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.channel-icon {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.crm-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.ai-icon {
  background: linear-gradient(135deg, #6c5dd3 0%, #8b7fd9 100%);
}

.analytics-icon {
  background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

.templates-icon {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.security-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.integration-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.workspace-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.category-header h3 {
  font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: var(--text-primary);
  width: calc(100% - 40px - 14px);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(6px);
}

.feature-check {
  width: 24px;
  height: 24px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-check {
  background: var(--primary);
  color: white;
  transform: scale(1.15);
}

.feature-item span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.feature-item:hover span {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== Responsive Styles for Feature Sections ===== */
@media (max-width: 1600px) {
  .features-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1192px) {
  .features-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .key-features-section,
  .features-showcase-section {
    padding: 70px 0;
  }

  .key-feature-image img {
    height: 200px;
  }

  .key-feature-content h3 {
    font-size: 1.375rem;
  }

  .key-feature-content p {
    font-size: 0.9375rem;
  }

  .features-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-category {
    padding: 20px;
  }

  .category-header {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

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

  .features-list {
    gap: 10px;
  }

  .feature-item {
    padding: 6px;
  }

  .feature-check {
    width: 22px;
    height: 22px;
  }

  .feature-check svg {
    width: 12px;
    height: 12px;
  }

  .feature-item span {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .key-features-section,
  .features-showcase-section {
    padding: 50px 0;
  }

  .key-features-grid {
    gap: 24px;
  }

  .key-feature-image img {
    height: 180px;
  }

  .key-feature-content {
    padding: 20px;
  }

  .key-feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
  }

  .key-feature-content p {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .feature-list {
    gap: 10px;
  }

  .feature-list li {
    font-size: 0.8125rem;
  }

  .feature-list li svg {
    width: 14px;
    height: 14px;
  }

  .features-categories {
    gap: 14px;
  }

  .feature-category {
    padding: 16px;
  }

  .category-header {
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }

  .category-header h3 {
    font-size: 1rem;
  }

  .category-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .category-icon svg {
    width: 18px;
    height: 18px;
  }

  .features-list {
    gap: 8px;
  }

  .feature-item {
    gap: 10px;
    padding: 4px;
  }

  .feature-check {
    width: 20px;
    height: 20px;
  }

  .feature-check svg {
    width: 10px;
    height: 10px;
  }

  .feature-item span {
    font-size: 0.75rem;
  }

  .license-card.featured {
    transform: scale(1);
  }

  .license-card.featured:hover {
    transform: translateY(-12px);
  }

  .license-header h3 {
    font-size: 1.5rem;
  }
}

/* ===== Footer Section ===== */
.footer-section {
  background: linear-gradient(191deg, #ffffff, #fff1eb, #ff6b3510);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* CTA Section */
.footer-cta {
  padding: 80px 0 40px;
  position: relative;
}

.cta-card-wrapper {
  border: 1px solid #ff6b35;
  background: #ffffff;
  width: 100%;
  height: auto;
  padding: calc(40px + (40 - 20) * ((100vw - 320px) / (1920 - 320)))
    calc(80px + (200 - 80) * ((100vw - 320px) / (1920 - 320)));
  border-radius: var(--radius-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.cta-card-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: black;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.cta-card-content p {
  font-size: 1.05rem;
  color: rgb(131, 130, 130);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-card-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-gradient {
  background: #ff6b35;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.btn-gradient:hover {
  border-color: #ff6b35;
  color: black;
  background: transparent;
}

.btn-outline-dark {
  background: transparent;
  color: black;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #ff6b35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-dark:hover {
  border-color: #ff6b35;
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
}

/* Stats Section */
.footer-stats {
  padding: 40px;
}

.stats-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  border: 1px solid #ff6b35;
  background: white;
  border-radius: 20px;
  padding: 25px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.laurel-container {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.laurel-image img {
  width: 100px;
  height: 100px;
}

.laurel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ff9f43;
}

.wreath-title {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
}

.wreath-sub {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px;
}

.laurel-content svg {
  color: #ff9f43;
  margin-bottom: 2px;
}

.stat-card-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: black;
  margin: 0 0 4px 0;
  line-height: 1;
}

.stat-card-info p {
  font-size: 0.85rem;
  color: #8d8d8d;
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Centered Brand Footer */
.footer-main {
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand-center .logo {
  display: inline-flex;
}

.footer-brand-center .brand-description {
  font-size: 0.95rem;
  color: black;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white !important;
  padding: 14px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
}

.btn-footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 107, 53, 0.45);
}

/* Copyright Bar */
.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgb(229 229 229);
}

.copyright-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 0.875rem;
  color: black;
  margin: 0;
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.powered-by span {
  color: black;
}

/* Footer Responsive */
@media (max-width: 991px) {
  .stats-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 60px 0 30px;
  }

  .cta-card-wrapper {
    padding: 40px 24px;
  }

  .cta-card-content h2 {
    font-size: 1.75rem;
  }

  .cta-card-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-card-actions .btn {
    width: 100%;
  }

  .stats-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-brand-center .brand-description {
    font-size: 0.9rem;
  }

  .copyright-wrapper {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 40px 0 24px;
  }

  .cta-card-wrapper {
    padding: 32px 16px;
    border-radius: var(--radius-xl);
  }

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

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

/* ===== Testimonials Section ===== */
.testimonials-section {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 53, 0.02) 100%
  );
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  border: 1px solid var(--border-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: calc(15px + (20 - 15) * ((100vw - 320px) / (1920 - 320)));
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0px;
  right: calc(10px + (14 - 10) * ((100vw - 320px) / (1920 - 320)));
  font-size: calc(100px + (130 - 100) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: rgba(255, 107, 53, 0.08);
  line-height: 1;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
  border-color: var(--primary);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  color: #ffb800;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
  width: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
  height: calc(40px + (60 - 40) * ((100vw - 320px) / (1920 - 320)));
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: calc(14px + (18 - 14) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-info span {
  font-size: calc(13px + (16 - 13) * ((100vw - 320px) / (1920 - 320)));
  color: var(--text-secondary);
  font-weight: 500;
}

/* ======= Responsive ========*/

@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 675px) {
  .testimonials-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===== License Section ===== */
.license-section {
  background: transparent;
  position: relative;
}

.license-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 730px) {
  .license-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.license-card {
  padding: calc(20px + (32 - 20) * ((100vw - 320px) / (1920 - 320)));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid var(--primary);
  transform: scale(1.05);
  border-radius: 10px;
}

.license-card:hover {
  transform: scale(1.05) translateY(-12px);
}

.license-badge-popular {
  position: absolute;
  top: 0px;
  right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 6px 16px;
  font-size: 13px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.license-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary) 100%
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}
.license-icon svg {
  width: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
  height: calc(20px + (30 - 20) * ((100vw - 320px) / (1920 - 320)));
}

.license-card:hover .license-icon {
  transform: rotate(-10deg) scale(1.1);
}

.license-header h3 {
  font-size: calc(24px + (20 - 24) * ((100vw - 320px) / (1920 - 320)));
  font-weight: 700;
  color: var(--text-primary);
  margin-top: calc(6px + (10 - 6) * ((100vw - 320px) / (1920 - 320)));
}

.license-subtitle {
  font-size: calc(16px + (14 - 16) * ((100vw - 320px) / (1920 - 320)));
  color: var(--text-secondary);
  margin-top: 4px;
}

.license-content {
  margin-top: 20px;
}

.license-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.license-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.license-features li:hover {
  background: rgba(255, 107, 53, 0.05);
  transform: translateX(8px);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-included .feature-icon {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

.feature-excluded .feature-icon {
  background: rgba(100, 100, 100, 0.1);
  color: #999;
}

.license-features li:hover .feature-icon {
  transform: scale(1.15);
}

.license-features li span {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  flex: 1;
}

.feature-excluded span {
  color: #999;
  text-decoration: line-through;
  opacity: 0.6;
}

/* ===== Section Background Gradients ===== */
.demos-section,
.key-features-section,
.features-showcase-section,
.testimonials-section,
.license-section {
  position: relative;
  overflow: hidden;
}

.section-bg-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* Demos section blob */
.section-bg-gradient-1 {
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    var(--primary) 0%,
    rgba(255, 107, 53, 0) 70%
  );
}

/* Key features section blob */
.section-bg-gradient-2 {
  bottom: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    var(--secondary) 0%,
    rgba(255, 71, 87, 0) 70%
  );
}

/* Features showcase section blob */
.section-bg-gradient-3 {
  top: 30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #6c5dd3 0%, rgba(108, 93, 211, 0) 70%);
}

/* Testimonials section blob */
.section-bg-gradient-4 {
  bottom: 5%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, #ff8c42 0%, rgba(255, 140, 66, 0) 70%);
}

/* License section blob */
.section-bg-gradient-5 {
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--primary) 0%,
    rgba(255, 107, 53, 0) 70%
  );
}
