/* Modern Minimal CSS for Lur8 Landing Page */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=SUSE:wght@100..800&display=swap');

:root {
  /* Primary colors */
  --primary: #560bad;      /* Ana renk: mor */
  --secondary: #560bad;    /* Platform bölümü: mor */
  --studio: #4895ef;       /* Studio bölümü: mavi */
  --ai: #b5179e;           /* AI bölümü: pembe */
  
  /* Neutral colors */
  --dark: #0F172A;
  --gray-900: #1E293B;
  --gray-800: #334155;
  --gray-700: #475569;
  --gray-600: #64748B;
  --gray-500: #94A3B8;
  --gray-400: #CBD5E1;
  --gray-300: #E2E8F0;
  --gray-200: #F1F5F9;
  --gray-100: #F8FAFC;
  --gray-50: #FCFCFD;
  --white: #FFFFFF;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.07), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-full: 9999px;
}

/* ===== BASE STYLES ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  border-top: 4px solid var(--primary);
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
  font-weight: 400;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
  position: relative;
}

.highlight-yellow {
  color: #FFFF00;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  opacity: 0.6;
  border-radius: 2px;
}

/* ===== UTILITY CLASSES ===== */
/* Badge */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(86, 11, 173, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(86, 11, 173, 0.12);
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
  border: none;
  gap: 0.5rem;
}

.btn i {
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-full);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background-color: #44087d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  transition: transform 0.1s;
}

.btn-outline {
  background-color: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background-color: var(--gray-50);
  border-color: var(--gray-400);
  color: var(--gray-900);
}

.btn-light {
  background-color: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem 2rem;
  font-weight: 500;
  border: 1px solid rgba(86, 11, 173, 0.15);
  border-radius: var(--radius-full);
  transition: all 0.25s ease;
}

.btn-light:hover {
  background-color: var(--gray-50);
  color: #44087d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  z-index: 999;
  margin-right: auto;
}

.logo-img {
  height: 36px;
  width: auto;
}

/* Desktop Navigation */
.nav-menu {
  display: none;
  margin-right: 2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--gray-800);
  position: relative;
}

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

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

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

.header-actions {
  display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1010;
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0;
  display: block;
}

.mobile-menu-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--gray-700);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.mobile-menu-toggle .bar-1 {
  top: 0.1rem;
}

.mobile-menu-toggle .bar-2 {
  bottom: 0.1rem;
}

.mobile-menu-toggle.active {
  width: 30px;
  height: 30px;
  top: 1.4rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle.active .bar {
  background-color: var(--gray-700);
  width: 100%;
}

.mobile-menu-toggle.active .bar-1 {
  top: 50%;
  margin-top: -1.5px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .bar-2 {
  bottom: 50%;
  margin-bottom: -1.5px;
  transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
  padding-bottom: 3rem;
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(15, 23, 42, 0.05);
}

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

.mobile-nav {
  padding: 0 2rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 0.75rem;
}

.mobile-nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gray-800);
  display: block;
  transition: all 0.25s ease;
  padding: 0.4rem 0;
  position: relative;
}

.mobile-actions {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.mobile-actions .btn {
  width: 100%;
  padding: 0.85rem 1.5rem;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 10rem 0 8rem;
  overflow: hidden;
  background: linear-gradient(170deg, #f3eaff 0%, #f9f4ff 100%);
  color: var(--gray-900);
}

.hero-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
  animation: fadeIn 1s ease-out;
  position: relative;
  z-index: 4;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.25rem;
  color: var(--gray-700);
  font-weight: 400;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-actions-mobile {
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  display: none;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.lur8-mobile {
  position: relative;
  animation: fadeIn 1s ease-out 0.3s both;
  z-index: 3;
}

/* ===== BACKGROUND ELEMENTS ===== */
.noise-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  box-shadow: 0 0 25px rgba(86, 11, 173, 0);
  border: 1px solid rgba(86, 11, 173, 0.03);
  background: radial-gradient(circle, rgba(86, 11, 173, 0.03) 0%, rgba(86, 11, 173, 0.01) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Shape variations */
.shape-1 {
  width: 320px;
  height: 320px;
  top: auto;
  bottom: 50px;
  right: 35%;
  z-index: 2;
  animation: float 18s ease-in-out infinite;
  background: radial-gradient(circle, rgba(86, 11, 173, 0.1) 0%, rgba(72, 149, 239, 0.03) 100%);
}

.shape-2 {
  width: 250px;
  height: 250px;
  top: 100px;
  right: 10%;
  z-index: 2;
  animation: float 12s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(181, 23, 158, 0.1) 0%, rgba(86, 11, 173, 0.03) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(86, 11, 173, 0.05) 0%, rgba(86, 11, 173, 0) 30%),
    radial-gradient(circle at 80% 80%, rgba(72, 149, 239, 0.05) 0%, rgba(72, 149, 239, 0) 30%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.03);
  z-index: 1;
}

/* Section shapes */
.pro-shape-1, .studio-shape-1, .ai-shape-1, .demo-shape-1 {
  width: 450px;
  height: 450px;
  top: -120px;
  right: -180px;
  animation: float 16s ease-in-out infinite;
}

.pro-shape-1 {
  background: radial-gradient(circle, rgba(86, 11, 173, 0.1) 0%, rgba(86, 11, 173, 0.05) 50%, rgba(86, 11, 173, 0.02) 100%);
  box-shadow: 0 0 100px rgba(86, 11, 173, 0.15);
  border: 1px solid rgba(86, 11, 173, 0.1);
}

.studio-shape-1 {
  bottom: -180px;
  top: auto;
  background: radial-gradient(circle, rgba(72, 149, 239, 0.1) 0%, rgba(72, 149, 239, 0.05) 50%, rgba(72, 149, 239, 0.02) 100%);
  box-shadow: 0 0 100px rgba(72, 149, 239, 0.15);
  border: 1px solid rgba(72, 149, 239, 0.1);
  animation: float 18s ease-in-out infinite;
}

.ai-shape-1 {
  background: radial-gradient(circle, rgba(181, 23, 158, 0.1) 0%, rgba(181, 23, 158, 0.05) 50%, rgba(181, 23, 158, 0.02) 100%);
  box-shadow: 0 0 100px rgba(181, 23, 158, 0.15);
  border: 1px solid rgba(181, 23, 158, 0.1);
  animation: float 20s ease-in-out infinite;
}

.pro-shape-2, .studio-shape-2, .ai-shape-2, .why-shape-1, .why-shape-2, .demo-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -120px;
  left: -150px;
  animation: float 14s ease-in-out infinite alternate;
}

.pro-shape-2 {
  background: radial-gradient(circle, rgba(86, 11, 173, 0.08) 0%, rgba(86, 11, 173, 0.04) 50%, rgba(86, 11, 173, 0.01) 100%);
  box-shadow: 0 0 80px rgba(86, 11, 173, 0.1);
  border: 1px solid rgba(86, 11, 173, 0.08);
}

.studio-shape-2 {
  top: -150px;
  bottom: auto;
  background: radial-gradient(circle, rgba(72, 149, 239, 0.08) 0%, rgba(72, 149, 239, 0.04) 50%, rgba(72, 149, 239, 0.01) 100%);
  box-shadow: 0 0 80px rgba(72, 149, 239, 0.1);
  border: 1px solid rgba(72, 149, 239, 0.08);
  animation: float 15s ease-in-out infinite alternate;
}

.ai-shape-2 {
  width: 380px;
  height: 380px;
  bottom: -180px;
  left: -200px;
  background: radial-gradient(circle, rgba(181, 23, 158, 0.08) 0%, rgba(181, 23, 158, 0.04) 50%, rgba(181, 23, 158, 0.01) 100%);
  box-shadow: 0 0 80px rgba(181, 23, 158, 0.1);
  border: 1px solid rgba(181, 23, 158, 0.08);
  animation: float 17s ease-in-out infinite alternate;
}

.why-shape-1 {
  width: 400px;
  height: 400px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(86, 11, 173, 0.08) 0%, rgba(86, 11, 173, 0.04) 50%, rgba(86, 11, 173, 0.01) 100%);
  box-shadow: 0 0 80px rgba(86, 11, 173, 0.1);
  border: 1px solid rgba(86, 11, 173, 0.08);
  animation: float 16s ease-in-out infinite alternate;
}

.why-shape-2 {
  bottom: -150px;
  right: -150px;
  left: auto;
  background: radial-gradient(circle, rgba(86, 11, 173, 0.08) 0%, rgba(86, 11, 173, 0.04) 50%, rgba(86, 11, 173, 0.01) 100%);
  box-shadow: 0 0 80px rgba(86, 11, 173, 0.1);
  border: 1px solid rgba(86, 11, 173, 0.08);
  animation: float 20s ease-in-out infinite;
}

.demo-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -150px;
  animation: float 16s ease-in-out infinite;
}

.demo-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -100px;
  animation: float 12s ease-in-out infinite alternate;
}

/* ===== PRODUCT SECTIONS ===== */
.product-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  background-color: var(--white);
}

/* Section backgrounds */
.pro-section {
  background: linear-gradient(160deg, #f3eaff 0%, var(--white) 100%);
  position: relative;
}

.pro-section::before,
.studio-section::before,
.ai-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pro-section::before {
  background-image: radial-gradient(circle at 10% 20%, rgba(86, 11, 173, 0.02) 0%, rgba(86, 11, 173, 0) 60%);
}

.studio-section {
  background: linear-gradient(200deg, var(--white) 0%, #f5faff 100%);
  position: relative;
}

.studio-section::before {
  background-image: radial-gradient(circle at 90% 30%, rgba(72, 149, 239, 0.02) 0%, rgba(72, 149, 239, 0) 60%);
}

.ai-section {
  background: linear-gradient(160deg, #fef3ff 0%, var(--white) 100%);
  position: relative;
}

.ai-section::before {
  background-image: radial-gradient(circle at 20% 80%, rgba(181, 23, 158, 0.02) 0%, rgba(181, 23, 158, 0) 60%);
}

/* Section content */
.product-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.product-content.reverse {
  flex-direction: column-reverse;
}

.product-text {
  flex: 1;
  max-width: 100%;
  animation: fadeIn 0.8s ease-out;
}

.product-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

/* Section logos and titles */
.section-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-logo .logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.section-logo::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.pro-section .section-logo::after {
  background-color: var(--secondary);
}

.studio-section .section-logo::after {
  background-color: var(--studio);
}

.ai-section .section-logo::after {
  background-color: var(--ai);
}

.product-text:hover .section-logo::after {
  width: 60px;
}

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

/* Highlight colors by section */
.pro-section .highlight {
  color: var(--secondary);
}

.studio-section .highlight {
  color: var(--studio);
}

.ai-section .highlight {
  color: var(--ai);
}

.product-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--gray-700);
  max-width: 700px;
}

/* Product features */
.product-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.feature-large {
  display: flex;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.feature-large:hover {
  transform: translateX(8px);
}

.feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background-color: rgba(86, 11, 173, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid rgba(86, 11, 173, 0.15);
  color: var(--primary);
}

.feature-icon i {
  opacity: 0.85;
}

/* Feature icons by section */
.pro-section .feature-icon {
  background-color: rgba(86, 11, 173, 0.03);
  border: 1.5px solid rgba(86, 11, 173, 0.15);
  color: var(--secondary);
}

.studio-section .feature-icon,
.studio-icon {
  background-color: rgba(72, 149, 239, 0.03);
  border: 1.5px solid rgba(72, 149, 239, 0.15);
  color: var(--studio);
}

.ai-section .feature-icon,
.ai-icon {
  background-color: rgba(181, 23, 158, 0.03);
  border: 1.5px solid rgba(181, 23, 158, 0.15);
  color: var(--ai);
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.feature-content p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Product actions */
.product-action {
  margin-top: 2.5rem;
}

.product-action-mobile {
  flex-direction: column;
  gap: 1rem;
  display: none;
}

/* Button colors by section */
.pro-section .btn-primary {
  background-color: var(--secondary);
}

.pro-section .btn-primary:hover {
  background-color: #44087d;
}

.studio-section .btn-primary,
.studio-btn {
  background-color: var(--studio);
}

.studio-section .btn-primary:hover,
.studio-btn:hover {
  background-color: #3677c7;
}

.ai-section .btn-primary,
.ai-btn {
  background-color: var(--ai);
}

.ai-section .btn-primary:hover,
.ai-btn:hover {
  background-color: #93117f;
}

/* ===== DEVICE MOCKUPS ===== */
.device-mockup {
  position: relative;
  width: 280px;
  height: 570px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  border: 8px solid var(--white);
  overflow: hidden;
  z-index: 2;
  margin: 0 auto;
  transform: rotate(-3deg);
  animation: fadeIn 1s ease-out 0.3s both;
}

.device-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Studio mockup */
.studio-mockup {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 2;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.3s both;
}

.studio-screen {
  width: 100%;
  height: 100%;
  background-color: var(--gray-100);
  overflow: hidden;
}

/* AI visualization */
.ai-visualization {
  position: relative;
  background: var(--white);
  border-radius: 1em;
  box-shadow: var(--shadow-md);
  z-index: 2;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.3s both;
}

.ai-visualization img {
  border-radius: 1em;
}

.placeholder-image {
  background-color: var(--gray-200);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 500;
  text-align: center;
  padding: 1.5rem;
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 7rem 0;
  background: linear-gradient(180deg, var(--white) 0%, #f3eaff 100%);
  color: var(--gray-900);
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 20px -10px rgba(15, 23, 42, 0.03);
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(86, 11, 173, 0.04) 0%, rgba(86, 11, 173, 0) 50%),
    radial-gradient(circle at 90% 10%, rgba(86, 11, 173, 0.04) 0%, rgba(86, 11, 173, 0) 50%);
  pointer-events: none;
}

.why-section .section-title {
  color: var(--gray-900);
  margin-bottom: 3rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
  justify-content: center;
}

.why-feature {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.why-feature:hover {
  background-color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(86, 11, 173, 0.08);
}

/* Animation delay for why-features */
.why-feature:nth-child(1) { animation-delay: 0.1s; }
.why-feature:nth-child(2) { animation-delay: 0.2s; }
.why-feature:nth-child(3) { animation-delay: 0.3s; }
.why-feature:nth-child(4) { animation-delay: 0.4s; }
.why-feature:nth-child(5) { animation-delay: 0.5s; }

.why-feature-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(86, 11, 173, 0.03);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  flex-shrink: 0;
  border: 1.5px solid rgba(86, 11, 173, 0.15);
  box-shadow: none;
}

.why-feature-icon i {
  opacity: 0.85;
}

.why-feature-title {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 0;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.why-feature-description {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #560bad 0%, #b5179e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(15, 23, 42, 0.03);
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 4rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ===== FOOTER ===== */
.footer {
  padding: 5rem 0 2rem;
  background-color: #240046;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  margin-bottom: 1.5rem;
  height: 36px;
  width: auto;
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  opacity: 0.8;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.social-link:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* Footer navigation */
.footer-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  color: var(--white);
}

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

.footer-links a, .footer-links li {
  color: var(--gray-400);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

/* Footer form */
.footer-form-group {
  display: flex;
  margin-top: 1.5rem;
}

.footer-form-input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  font-size: 0.95rem;
  outline: none;
}

.footer-form-input:focus {
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-form-button {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  padding: 0 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.footer-form-button:hover {
  background-color: #44087d;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.copyright {
  color: var(--gray-500);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.03);
  z-index: 1;
  pointer-events: none;
}

/* ===== SOLUTIONS PAGE ===== */
.solutions-banner,
.resources-banner,
.about-banner {
  padding: 8rem 0 4rem;
  background: linear-gradient(170deg, #f3eaff 0%, #f9f4ff 100%);
  text-align: center;
}

.solutions-title,
.resources-title,
.about-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.solutions-subtitle,
.resources-subtitle,
.about-subtitle {
  font-size: 1.5rem;
  color: var(--gray-700);
  max-width: 800px;
  margin: 0 auto;
}

.about-banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.solutions-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.solutions-section-alt {
  background-color: var(--gray-50);
}

.solution-card {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  overflow: hidden;
}

/* Section logos and titles */
.solution-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  position: relative;
}

.solution-logo .logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.solution-logo::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.solution-logo::after {
  background-color: var(--secondary);
}

.solution-image {
  flex: 1;
  padding: 2rem;
  justify-content: center;
}

.solution-image img {
  max-width: 100%;
  border-radius: 1em;
}

.solution-content {
  flex: 1;
  padding: 2rem;
}

.solution-logo {
  margin-bottom: 1.5rem;
}

.solution-logo img {
  height: 40px;
  width: auto;
}

.solution-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.solution-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: var(--gray-700);
}

.solution-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.solution-feature {
  display: flex;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.solution-feature:hover {
  transform: translateX(8px);
}

.solution-action {
  margin-top: 1rem;
}

/* ===== RESOURCES PAGE ===== */
.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 5rem 0;
}

.resource-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.resource-image {
  height: 200px;
  overflow: hidden;
}

.resource-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.resource-card:hover .resource-image img {
  transform: scale(1.05);
}

.resource-content {
  padding: 1.5rem;
}

.resource-category {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: rgba(86, 11, 173, 0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.resource-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.resource-excerpt {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0;
  line-height: 1.6;
}

.resource-meta {
  display: none; /* Hide the entire meta section */
}

/* ===== RESOURCE DETAIL PAGE ===== */
.resource-detail {
  padding: 8rem 0 5rem;
  background-color: var(--white);
}

.resource-detail .container {
  max-width: 1000px;
}

.resource-header {
  margin-bottom: 3rem;
  text-align: center;
}

.resource-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--gray-600);
}

.resource-detail-category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: rgba(86, 11, 173, 0.08);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(86, 11, 173, 0.15);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.resource-detail-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--gray-900);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.02em;
}

.resource-content-wrapper {
  display: block;
  position: relative;
}

.resource-detail-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}

.resource-detail-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.resource-detail-content {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.content-table {
  border: solid 1px var(--gray-700);
  border-collapse: collapse;
  font-size: 1.1rem;
}

.content-table th {
  background-color: var(--gray-300);
  padding: 0.3em 0.6em;
}

.content-table td {
  padding: 0.3em 0.6em;
}

.first-paragraph {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  color: var(--gray-800);
  max-width: 100%;
}

.wrapped-content {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.full-width-content {
  clear: both;
  padding-top: 2rem;
}

/* Resource detail typography */
.resource-detail-content h2,
.resource-detail-content h3 {
  margin: 2.5rem 0 1.25rem;
  color: var(--gray-800);
  position: relative;
  clear: both;
}

.resource-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
}

.resource-detail-content h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  opacity: 0.6;
  border-radius: 2px;
}

.resource-detail-content h3 {
  font-size: 1.6rem;
}

.resource-detail-content p {
  margin-bottom: 1.5rem;
}

/* Resource list styles */
.resource-detail-content ul,
.resource-detail-content ol {
  margin-bottom: 1.5rem;
  margin-left: 0;
  list-style: none;
}

.resource-detail-content ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.9rem;
}

.resource-detail-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 7px;
  height: 7px;
  background-color: var(--gray-800);
  border-radius: 50%;
  opacity: 0.8;
}

.resource-detail-content ol {
  counter-reset: item;
  padding-left: 0.5rem;
}

.resource-detail-content ol li {
  counter-increment: item;
  margin-bottom: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.resource-detail-content ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 600;
}

.resource-detail-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.resource-detail-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background-color: rgba(86, 11, 173, 0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.resource-back-link{
  text-align: center;
  margin-top: 3em;
}

.related-resources {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.related-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 5rem 0;
  position: relative;
  background-color: var(--white);
  overflow: hidden;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-description {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.about-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 3rem 0 1.5rem;
  position: relative;
  display: inline-block;
}

.about-section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.about-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-card-title i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(86, 11, 173, 0.1);
  border-radius: 50%;
  color: var(--primary);
}

.about-card-content {
  color: var(--gray-700);
  line-height: 1.6;
}

/* Team section */
.team-section {
  padding: 4rem 0;
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: all 0.3s;
}

.team-member:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.member-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

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

.member-info {
  flex: 1;
}

.member-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.member-title {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Contact section */
.contact-section {
  padding: 4rem 0;
  background: linear-gradient(170deg, #f9f4ff 0%, white 100%);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

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

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(86, 11, 173, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-text {
  font-size: 1.1rem;
  color: var(--gray-700);
}

.contact-text a {
  color: var(--primary);
  font-weight: 500;
}

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

/* ===== DEMO REQUEST PAGE ===== */
.demo-section {
  padding: 8rem 0 5rem;
  position: relative;
  background: linear-gradient(170deg, #f3eaff 0%, #f9f4ff 100%);
  overflow: hidden;
}

.demo-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.demo-content {
  display: flex;
  flex-direction: column;
}

.demo-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  letter-spacing: -0.04em;
}

.demo-description {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.demo-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.demo-feature .feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: rgba(86, 11, 173, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.875rem;
}

.feature-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.5;
}

/* Demo form */
.demo-form-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.form-header {
  background: linear-gradient(135deg, var(--primary) 0%, #7209b7 100%);
  padding: 2rem;
  color: white;
  text-align: center;
}

.form-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.form-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
}

.form-body {
  padding: 2.5rem;
}

/* Form elements */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-800);
  font-size: 0.95rem;
}

.form-input, 
.form-select, 
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1rem;
  color: var(--gray-900);
  transition: all 0.3s ease;
  outline: none;
  background-color: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(86, 11, 173, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-hint {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

.form-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background-color: #44087d;
  transform: translateY(-2px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-privacy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 1.5rem;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: none;
}

.form-privacy a:hover {
  text-decoration: underline;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.45;
  }
}

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

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

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

#changing-word {
  transition: opacity 0.3s ease;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 575px) {
  .hero-title,
  .product-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
  
  .container {
    width: 95%;
    padding: 0 1rem;
  }
  
  .cta-content {
    padding: 2rem 1.5rem;
  }
  
  .hero-section {
    padding: 7rem 0 4rem;
  }
  
  .why-feature {
    padding: 1.5rem;
  }
  
  .product-section {
    padding: 5rem 0;
  }
  
  .image-container {
    height: 400px;
  }
  
  .device-mockup {
    width: 220px;
    height: 450px;
  }
  
  .product-features {
    gap: 1.5rem;
  }
  
  .feature-large {
    gap: 1rem;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .product-description {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    display: none;
  }

  .hero-actions-mobile {
    display: flex;
  }
  
  .product-action {
    display: none;
  }

  .product-action-mobile {
    display: flex;
  }
  
  .product-content {
    gap: 2rem;
  }
  
  .demo-container {
    gap: 0 !important;
  }
  
  .demo-features, 
  .mobile-hidden {
    display: none !important;
  }
  
  .shape-1 {
    width: 320px;
    height: 320px;
    top: auto;
    bottom: 20px;
    right: 40%;
  }

  .shape-2 {
    width: 200px;
    height: 200px;
    top: auto;
    bottom: 350px;
    right: -30px;
  }
}

@media (min-width: 576px) {
  .hero-actions, .cta-actions {
    flex-direction: row;
  }
  
  .container {
    width: 90%;
    padding: 0 1.25rem;
  }
  
  .product-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-content {
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
  
  .product-title {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .why-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .header-actions {
    display: flex;
  }
  
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-text {
    flex: 1;
    padding-right: 2rem;
  }
  
  .hero-image {
    flex: 1;
  }
  
  .footer-content {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
  }
  
  .device-mockup {
    transform: rotate(-5deg);
  }
  
  .demo-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Resource detail image wrapping */
  .resource-detail-image {
    float: right;
    width: 45%;
    margin: 0 0 2rem 3rem;
  }
  
  .wrapped-content h2 {
    clear: none;
  }
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .header .container {
    flex-wrap: nowrap;
  }
  
  .header-actions {
    display: flex;
  }
  
  .why-features {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1.5fr 1.5fr;
  }
  
  .container {
    width: 85%;
    max-width: 1200px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .product-section {
    padding: 6rem 0;
  }
  
  .product-content {
    flex-direction: row;
    gap: 4rem;
  }
  
  .product-content.reverse {
    flex-direction: row-reverse;
  }
  
  .product-text {
    flex: 1;
    max-width: 60%;
  }
  
  .product-image {
    flex: 1;
    max-width: 40%;
  }
  
  .product-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .solution-card {
    flex-direction: row;
  }
  
  .solution-content {
    flex: 1;
    padding: 2rem;
    max-width: 60%;
  }

  .solution-image {
    flex: 1;
    padding: 2rem;
    max-width: 40%;
  }
  
  .solution-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .demo-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .demo-title {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 80%;
  }
  
  .hero-text {
    padding-right: 3rem;
  }
  
  .hero-section {
    padding: 9rem 0 7rem;
  }
  
  .why-features {
    gap: 1.5rem;
  }
  
  .product-section {
    padding: 8rem 0;
  }
  
  .image-container {
    height: 550px;
  }
  
  .product-title {
    font-size: 3.25rem;
  }
  
  .product-description {
    font-size: 1.2rem;
  }
  
  .floating-shape {
    opacity: 0.7;
    transform: scale(1.2);
  }
}