/* ========================================
   Fast Trade Technologies - Main Styles
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --ftt-black: #000000;
  --ftt-white: #FFFFFF;
  --ftt-accent: #F5C518;
  --ftt-gray: #333333;
  --ftt-light-gray: #F5F5F5;
  
  /* Animation Easings */
  --ease-orbital: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--ftt-gray);
  background: var(--ftt-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Padding */
.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 0;
  }
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.5s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 3rem;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--ftt-accent);
  transition: width 0.3s var(--ease-expo-out), left 0.3s var(--ease-expo-out);
}

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

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  transition: color 0.2s ease;
}

.phone-link:hover {
  color: var(--ftt-black);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--ftt-black);
  color: var(--ftt-white);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: var(--ftt-accent);
  color: var(--ftt-black);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 197, 24, 0.4);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--ftt-white);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  padding: 5rem 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-expo-out);
  z-index: 999;
}

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

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1f2937;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: var(--ftt-black);
}

/* Scroll Progress */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ftt-accent);
  width: 0;
  transition: opacity 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background: var(--ftt-white);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 20px 20px;
}

.floating-shape {
  position: absolute;
  border: 2px solid var(--ftt-accent);
  border-radius: 0.5rem;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
  top: 5rem;
  left: 2.5rem;
  width: 4rem;
  height: 4rem;
}

.floating-shape:nth-child(2) {
  top: 10rem;
  right: 5rem;
  width: 2rem;
  height: 2rem;
  background: var(--ftt-accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-slow 8s ease-in-out infinite;
}

.floating-shape:nth-child(3) {
  bottom: 10rem;
  left: 5rem;
  width: 3rem;
  height: 3rem;
  border-color: var(--ftt-black);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-shape:nth-child(4) {
  bottom: 5rem;
  right: 10rem;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--ftt-black);
  border-radius: 2px;
  opacity: 0.1;
  animation: float-slow 8s ease-in-out infinite;
  animation-delay: 2s;
}

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

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ftt-black);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title .accent {
  color: var(--ftt-accent);
}

.hero-description {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 2px solid var(--ftt-black);
  color: var(--ftt-black);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--ftt-black);
  color: var(--ftt-white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.stat-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ftt-black);
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.hero-image-container {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-image-container {
    display: block;
  }
}

.hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.floating-card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--ftt-accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   Services Section
   ======================================== */
.services {
  background: var(--ftt-light-gray);
  position: relative;
  overflow: hidden;
  display: block;
  visibility: visible;
}

.services-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #000 1px, transparent 1px);
  background-size: 30px 30px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-title .accent {
  color: var(--ftt-accent);
}

.section-underline {
  width: 6rem;
  height: 4px;
  background: var(--ftt-accent);
  margin: 0 auto 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  color: #4b5563;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0;
}

.service-card:hover::before {
  border-color: var(--ftt-accent);
  opacity: 1;
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--ftt-black);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--ftt-accent);
}

.service-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--ftt-white);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
  color: var(--ftt-black);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 0.75rem;
  transition: letter-spacing 0.2s ease;
}

.service-card:hover .service-title {
  letter-spacing: 0.5px;
}

.service-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 1rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--ftt-accent);
  border-radius: 50%;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ftt-black);
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--ftt-accent);
}

.service-link svg {
  transition: transform 0.3s ease;
}

.service-link:hover svg {
  transform: translateX(4px);
}

/* ========================================
   Products Section
   ======================================== */
.products {
  background: var(--ftt-white);
  position: relative;
  overflow: hidden;
}

.products-bg-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, var(--ftt-light-gray), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.products-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .products-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.products-header-content {
  max-width: 500px;
}

.products-number-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.products-number {
  font-size: 8rem;
  font-weight: 700;
  color: rgba(245, 197, 24, 0.2);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

@media (min-width: 1024px) {
  .products-number {
    font-size: 10rem;
  }
}

.products-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.products-nav {
  display: none;
}

@media (min-width: 1024px) {
  .products-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 0;
  }
}

.nav-arrow {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--ftt-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: var(--ftt-black);
  color: var(--ftt-white);
}

/* Featured Product */
.featured-product {
  display: none;
}

@media (min-width: 1024px) {
  .featured-product {
    display: block;
    margin-bottom: 3rem;
  }
}

.featured-product-card {
  background: var(--ftt-black);
  border-radius: 1rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-product-image {
  position: relative;
  height: 400px;
}

.featured-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}

.featured-product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.featured-product-badge img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  background: var(--ftt-white);
  border-radius: 0.5rem;
  padding: 0.25rem;
}

.featured-product-tag {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ftt-white);
}

.featured-product-content {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-product-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ftt-white);
  margin-bottom: 1rem;
}

.featured-product-description {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.featured-product-features {
  margin-bottom: 2rem;
}

.featured-product-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  margin-bottom: 0.75rem;
}

.feature-dot-colored {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.featured-product-buttons {
  display: flex;
  gap: 1rem;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--ftt-white);
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Product Thumbnails */
.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .product-thumbnails {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-thumbnails {
    grid-template-columns: repeat(6, 1fr);
  }
}

.product-thumbnail {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.product-thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

.product-thumbnail.active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 0 3px var(--ftt-accent);
}

.product-thumbnail-image {
  aspect-ratio: 4/3;
  position: relative;
}

.product-thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent);
}

.product-thumbnail-content {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
}

.product-thumbnail-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

/* Product thumbnail - logo removed from small boxes */
.product-thumbnail-logo {
  display: none;
}

.product-thumbnail-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ftt-white);
  font-family: 'Montserrat', sans-serif;
}

.product-thumbnail-fullname {
  font-size: 0.75rem;
  color: #d1d5db;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Mobile Product Cards */
.mobile-products {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .mobile-products {
    display: none;
  }
}

.mobile-product-card {
  background: var(--ftt-white);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.mobile-product-image {
  position: relative;
  aspect-ratio: 16/9;
}

.mobile-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-product-badge img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  background: var(--ftt-white);
  border-radius: 0.25rem;
  padding: 0.125rem;
}

.mobile-product-tag {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ftt-white);
}

.mobile-product-content {
  padding: 1.5rem;
}

.mobile-product-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 0.5rem;
}

.mobile-product-description {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* ========================================
   About Section
   ======================================== */
.about {
  background: var(--ftt-white);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .about-image img {
    height: 500px;
  }
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  border-radius: 1rem;
}

.about-floating-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--ftt-accent);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
  text-align: center;
}

.about-floating-badge .value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ftt-black);
  font-family: 'Montserrat', sans-serif;
}

.about-floating-badge .label {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7);
}

.about-decorative-1 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  border: 2px solid var(--ftt-accent);
  border-radius: 0.75rem;
  opacity: 0.5;
}

.about-decorative-2 {
  position: absolute;
  top: 2.5rem;
  left: -2rem;
  width: 1rem;
  height: 1rem;
  background: var(--ftt-black);
  border-radius: 50%;
}

.about-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ftt-accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ftt-black);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .about-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 3rem;
  }
}

.about-description {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-cta {
  margin-top: 2rem;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
}

@media (min-width: 1024px) {
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}

.about-stat:hover {
  background: #f9fafb;
}

.about-stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--ftt-black);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.about-stat:hover .about-stat-icon {
  background: var(--ftt-accent);
}

.about-stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ftt-white);
  transition: color 0.3s ease;
}

.about-stat:hover .about-stat-icon svg {
  color: var(--ftt-black);
}

.about-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ftt-black);
  font-family: 'Montserrat', sans-serif;
}

.about-stat-label {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
  background: var(--ftt-black);
  position: relative;
  overflow: visible;
  display: block;
  visibility: visible;
}

.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 30px 30px;
}

.testimonials .section-title {
  color: var(--ftt-white);
}

.testimonials .section-description {
  color: #9ca3af;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.quote-mark svg {
  width: 4rem;
  height: 4rem;
  color: var(--ftt-accent);
  fill: rgba(245, 197, 24, 0.2);
}

.testimonial-cards {
  position: relative;
  min-height: 350px;
  perspective: 1000px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--ftt-white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.6s ease;
}

.testimonial-card.active {
  transform: translateZ(100px) scale(1);
  opacity: 1;
  z-index: 10;
}

.testimonial-card.prev,
.testimonial-card.next {
  transform: translateZ(-50px) scale(0.9);
  opacity: 0.5;
  z-index: 5;
}

.testimonial-card.hidden {
  transform: translateZ(-100px) scale(0.8);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ftt-accent);
  fill: var(--ftt-accent);
}

.testimonial-content {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6b7280;
}

.testimonial-name {
  font-weight: 700;
  color: var(--ftt-black);
}

.testimonial-role {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonial-product {
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-arrow {
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--ftt-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-arrow:hover {
  background: var(--ftt-white);
  color: var(--ftt-black);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--ftt-accent);
  width: 2rem;
  border-radius: 9999px;
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Client Logos */
.client-logos {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.client-logos-title {
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.client-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .client-logos-grid {
    gap: 4rem;
  }
}

.client-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ftt-white);
  opacity: 0.5;
  transition: opacity 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.client-logo:hover {
  opacity: 1;
}

/* ========================================
   Portfolio Section
   ======================================== */
.portfolio {
  background: var(--ftt-light-gray);
}

.client-logos-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.client-logos-viewport {
  flex: 1;
  overflow: hidden;
}

.client-logos-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 0.4s var(--ease-smooth);
}

.client-logo-item {
  flex: 0 0 140px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  background: var(--ftt-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  filter: grayscale(1);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.client-logos-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  background: var(--ftt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111827;
  transition: all 0.3s ease;
}

.client-logos-arrow:hover {
  background: #111827;
  color: #ffffff;
}

.portfolio-slider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-slide-wrapper {
  flex: 1;
  position: relative;
  min-height: 220px;
}

.portfolio-card {
  position: absolute;
  inset: 0;
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  pointer-events: none;
}

.portfolio-card.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 0.5rem;
}

.portfolio-text {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.portfolio-tags {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.portfolio-link {
  font-size: 0.875rem;
}

.portfolio .btn-outline-white {
  border-color: rgba(15, 23, 42, 0.15);
  color: #111827;
}

.portfolio .btn-outline-white:hover {
  background: rgba(15, 23, 42, 0.04);
}

.portfolio-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid #d1d5db;
  background: var(--ftt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-arrow:hover {
  background: var(--ftt-black);
  color: var(--ftt-white);
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.portfolio-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  background: #d1d5db;
  transition: all 0.3s ease;
}

.portfolio-dot.active {
  width: 1.75rem;
  background: var(--ftt-accent);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ftt-black) 0%, var(--ftt-black) 50%, var(--ftt-light-gray) 50%, var(--ftt-light-gray) 100%);
}

.cta-shapes .floating-shape {
  position: absolute;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ftt-white);
  margin-bottom: 1rem;
}

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

.cta-title .accent {
  color: var(--ftt-accent);
}

.cta-description {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2.5rem;
}

.cta-phone {
  margin-top: 1.5rem;
  color: #9ca3af;
}

.cta-phone a {
  color: var(--ftt-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.3s ease;
}

.cta-phone a:hover {
  text-decoration-color: var(--ftt-accent);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--ftt-accent);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ftt-black);
}

.contact-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.contact-value {
  font-weight: 600;
  color: var(--ftt-black);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--ftt-black);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-watermark {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  font-family: 'Montserrat', sans-serif;
  pointer-events: none;
  user-select: none;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-logo img {
  height: 4rem;
  margin-bottom: 1.5rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-address {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--ftt-accent);
  border-color: var(--ftt-accent);
  color: var(--ftt-black);
  transform: rotate(360deg);
}

.footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-partners {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners-title {
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-partners-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  align-items: center;
}

.footer-partner-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ftt-white);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  transition: opacity 0.3s ease;
}

.footer-partner-badge:hover {
  opacity: 0.9;
}

.footer-partner-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--ftt-white);
}

.footer-partner-icon.bni {
  background: #dc2626;
}

.footer-partner-icon.techjockey {
  background: #2563eb;
  border-radius: 0.25rem;
}

.footer-partner-text {
  font-size: 0.75rem;
  color: var(--ftt-black);
}

.footer-partner-text .name {
  font-weight: 700;
}

.footer-partner-text .desc {
  color: #6b7280;
}

.footer-column-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ftt-white);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.footer-link svg {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
}

.footer-link:hover {
  color: var(--ftt-accent);
}

.footer-link:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--ftt-accent);
}

/* ========================================
   Team Section
   ======================================== */
.team {
  background: var(--ftt-white);
}

.team-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.team-card {
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1.75rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.team-photo {
  margin-bottom: 1.25rem;
}

.team-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  color: #4b5563;
}

/* ========================================
   Product Landing Pages
   ======================================== */
.product-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  color: var(--ftt-white);
}

.product-hero-dms {
  background: linear-gradient(135deg, #000 0%, #1f2937 50%, #000 100%);
}

.product-hero-mis {
  background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
}

.product-hero-qr {
  background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fbbf24 100%);
}

.product-hero-lens {
  background: linear-gradient(135deg, #0f766e 0%, #0d9488 50%, #06b6d4 100%);
}

.product-hero-consulting {
  background: linear-gradient(135deg, #111827 0%, #1f2937 40%, #0f766e 100%);
}

.product-hero-events {
  background: linear-gradient(135deg, #7e22ce 0%, #9333ea 50%, #ec4899 100%);
}

.product-hero-chatbot {
  background: linear-gradient(135deg, #312e81 0%, #3730a3 50%, #2563eb 100%);
}

.product-hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-hero-badge img {
  height: 4rem;
  width: auto;
}

.product-hero-tag {
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .product-hero-title {
    font-size: 3.5rem;
  }
}

.product-hero-title .accent {
  color: var(--ftt-accent);
}

.product-hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.product-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-hero-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.product-hero-image img {
  width: 100%;
  height: auto;
}

/* Stats Bar */
.stats-bar {
  background: var(--ftt-white);
  border-bottom: 1px solid #e5e7eb;
  padding: 2rem 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-bar-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.stat-bar-value.green {
  color: #16a34a;
}

.stat-bar-value.orange {
  color: #ea580c;
}

.stat-bar-value.teal {
  color: #0d9488;
}

.stat-bar-value.purple {
  color: #9333ea;
}

.stat-bar-value.indigo {
  color: #4f46e5;
}

.stat-bar-label {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Feature Cards */
.features-section {
  background: var(--ftt-light-gray);
}

.features-grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card-colored {
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-card-colored:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.feature-card-icon.green {
  background: #dcfce7;
  color: #16a34a;
}

.feature-card-icon.orange {
  background: #ffedd5;
  color: #ea580c;
}

.feature-card-icon.teal {
  background: #ccfbf1;
  color: #0d9488;
}

.feature-card-icon.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.feature-card-icon.indigo {
  background: #e0e7ff;
  color: #4f46e5;
}

.feature-card-icon.white {
  background: var(--ftt-white);
  color: #16a34a;
}

.feature-card-colored:hover .feature-card-icon.green {
  background: #16a34a;
  color: var(--ftt-white);
}

.feature-card-colored:hover .feature-card-icon.orange {
  background: #ea580c;
  color: var(--ftt-white);
}

.feature-card-colored:hover .feature-card-icon.teal {
  background: #0d9488;
  color: var(--ftt-white);
}

.feature-card-colored:hover .feature-card-icon.purple {
  background: #9333ea;
  color: var(--ftt-white);
}

.feature-card-colored:hover .feature-card-icon.indigo {
  background: #4f46e5;
  color: var(--ftt-white);
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 0.5rem;
}

.feature-card-description {
  font-size: 0.875rem;
  color: #4b5563;
}

.feature-card-list {
  margin-top: 1rem;
}

.feature-card-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.feature-card-list-item svg {
  width: 1rem;
  height: 1rem;
  color: #22c55e;
}

/* Highlight Card */
.feature-card-highlight {
  background: #16a34a;
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: var(--ftt-white);
}

.feature-card-highlight.green {
  background: #16a34a;
}

.feature-card-highlight.orange {
  background: #ea580c;
}

.feature-card-highlight.teal {
  background: #0d9488;
}

.feature-card-highlight.purple {
  background: #9333ea;
}

.feature-card-highlight.indigo {
  background: #4f46e5;
}

.feature-card-highlight-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-card-highlight-list {
  list-style: none;
}

.feature-card-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.feature-card-highlight-item svg {
  width: 1rem;
  height: 1rem;
}

/* Dark Section */
.dark-section {
  background: var(--ftt-black);
  color: var(--ftt-white);
}

.dark-section-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .dark-section-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.dark-section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .dark-section-title {
    font-size: 2.5rem;
  }
}

.dark-section-title .accent {
  color: var(--ftt-accent);
}

.dark-section-description {
  color: #9ca3af;
  margin-bottom: 2rem;
}

.dark-section-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dark-section-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dark-section-list-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ftt-accent);
}

.dark-section-image {
  border-radius: 1rem;
  overflow: hidden;
}

.dark-section-image img {
  width: 100%;
  height: auto;
}

/* Steps */
.steps-section {
  background: var(--ftt-light-gray);
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  background: var(--ftt-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.step-number.green {
  color: #16a34a;
}

.step-number.orange {
  color: #ea580c;
}

.step-number.purple {
  color: #9333ea;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ftt-black);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card-simple {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card-simple-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-card-simple-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--ftt-accent);
  fill: var(--ftt-accent);
}

.testimonial-card-simple-content {
  color: #d1d5db;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-card-simple-author {
  font-weight: 600;
  color: var(--ftt-white);
}

.testimonial-card-simple-role {
  font-size: 0.875rem;
  color: #6b7280;
}

/* CTA Section Colors */
.cta-section {
  padding: 5rem 0;
}

.cta-section.green {
  background: linear-gradient(to right, #16a34a, #15803d);
}

.cta-section.orange {
  background: #ea580c;
}

.cta-section.teal {
  background: #0d9488;
}

.cta-section.purple {
  background: #9333ea;
}

.cta-section.indigo {
  background: #4f46e5;
}

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

.cta-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ftt-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-section-title {
    font-size: 2.5rem;
  }
}

.cta-section-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.cta-section-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* Info Grid */
.info-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--ftt-white);
}

.info-card-icon.green {
  background: #16a34a;
}

.info-card-icon.orange {
  background: #ea580c;
}

.info-card-icon.teal {
  background: #0d9488;
}

.info-card-icon.purple {
  background: #9333ea;
}

.info-card-icon.indigo {
  background: #4f46e5;
}

.info-card-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.info-card-value {
  font-weight: 600;
  color: var(--ftt-black);
}

/* App Preview */
.app-preview {
  display: flex;
  justify-content: center;
}

.app-preview-frame {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-preview-screen {
  width: 16rem;
  height: 24rem;
  background: #1f2937;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-preview-content {
  text-align: center;
  padding: 1.5rem;
}

.app-preview-content svg {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
}

.app-preview-content.green svg {
  color: #22c55e;
}

.app-preview-content.purple svg {
  color: #a855f7;
}

.app-preview-text {
  color: #9ca3af;
  font-size: 0.875rem;
}

/* QR Preview */
.qr-preview {
  display: flex;
  justify-content: center;
}

.qr-preview-frame {
  background: #16a34a;
  border-radius: 1.5rem;
  padding: 1.5rem;
}

.qr-preview-card {
  width: 18rem;
  height: 24rem;
  background: var(--ftt-white);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.qr-preview-card svg {
  width: 8rem;
  height: 8rem;
  color: #16a34a;
  margin-bottom: 1rem;
}

.qr-preview-title {
  color: var(--ftt-black);
  font-weight: 600;
  text-align: center;
}

.qr-preview-text {
  color: #6b7280;
  font-size: 0.875rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* Chat Preview */
.chat-preview {
  display: flex;
  justify-content: center;
}

.chat-preview-frame {
  background: #1f2937;
  border-radius: 1.5rem;
  padding: 1rem;
  width: 20rem;
}

.chat-preview-header {
  background: #374151;
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.chat-preview-header-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chat-preview-avatar {
  width: 2rem;
  height: 2rem;
  background: #4f46e5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-preview-avatar svg {
  width: 1rem;
  height: 1rem;
  color: var(--ftt-white);
}

.chat-preview-name {
  color: var(--ftt-white);
  font-weight: 600;
}

.chat-preview-message {
  color: #d1d5db;
  font-size: 0.875rem;
}

.chat-preview-input {
  display: flex;
  gap: 0.5rem;
}

.chat-preview-input-field {
  flex: 1;
  background: #374151;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: var(--ftt-white);
  font-size: 0.875rem;
}

.chat-preview-input-field::placeholder {
  color: #9ca3af;
}

.chat-preview-send {
  width: 2.5rem;
  height: 2.5rem;
  background: #4f46e5;
  border: none;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.chat-preview-send svg {
  width: 1rem;
  height: 1rem;
  color: var(--ftt-white);
}

/* Chat Messages */
.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.chat-message {
  border-radius: 0.75rem;
  padding: 1rem;
}

.chat-message.user {
  background: rgba(255, 255, 255, 0.1);
  align-self: flex-start;
}

.chat-message.bot {
  background: #4f46e5;
  margin-left: 2rem;
  align-self: flex-end;
}

.chat-message-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.chat-message-text {
  color: var(--ftt-white);
}

/* Feature Grid 2x2 */
.feature-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-grid-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-grid-item svg {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
}

.feature-grid-item.teal svg {
  color: #2dd4bf;
}

.feature-grid-item-title {
  font-weight: 600;
  color: var(--ftt-white);
  margin-bottom: 0.25rem;
}

.feature-grid-item-text {
  font-size: 0.875rem;
  color: #9ca3af;
}

/* URL Input */
.url-input-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.url-input-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.url-input-text {
  color: var(--ftt-white);
  margin-bottom: 1rem;
}

.url-input-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .url-input-form {
    flex-direction: row;
  }
}

.url-input-field {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--ftt-white);
  color: var(--ftt-black);
  font-size: 1rem;
}

.url-input-field::placeholder {
  color: #9ca3af;
}

.url-input-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--ftt-accent);
  color: var(--ftt-black);
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.url-input-btn:hover {
  background: #e5b517;
}

/* Badges Row */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.badge-item svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s var(--ease-expo-out);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s var(--ease-expo-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s var(--ease-expo-out);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
  transition: all 0.8s var(--ease-expo-out);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
