/* Modern TechPoint Redesign - Completely New Design System */

/* CSS Variables - Shapedesign Creative Palette */
:root {
  /* Primary - Light Blue & Dark Pink */
  --primary: #87CEEB;      /* sky blue - светло-голубой */
  --primary-dark: #6BB6D6;  /* darker sky blue */
  --primary-light: #B0E0E6; /* powder blue - очень светло-голубой */
  --secondary: #C2185B;     /* dark pink - темно-розовый */
  --secondary-dark: #AD1457;/* darker pink */
  --secondary-light: #E91E63; /* medium pink */
  
  /* Accent - Dark Pink & Light Blue */
  --accent: #C2185B;        /* dark pink */
  --accent-dark: #AD1457;   /* darker pink */
  --accent-light: #E91E63;  /* medium pink */
  --success: #10b981;
  --success-dark: #059669;
  --success-light: #34d399;
  
  /* Neutral Colors - Adjusted for dark theme */
  --gray-50: #2d1b2e;
  --gray-100: #3d1f3d;
  --gray-200: #4d234d;
  --gray-300: #5d275d;
  --gray-400: #7d3b7d;
  --gray-500: #9d4b9d;
  --gray-600: #bd5bbd;
  --gray-700: #dd6bdd;
  --gray-800: #ed7bed;
  --gray-900: #ffffff;
  
  /* Background Colors - Dark Dark Pink */
  --bg-primary: #1a0d14;    /* темно-темно розовый */
  --bg-secondary: #2d1b2e;  /* темно-розовый */
  --bg-dark: #0f0a0f;       /* очень темный */
  --bg-gradient: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  --bg-gradient-alt: linear-gradient(135deg, #C2185B 0%, #87CEEB 100%);
  
  /* Text Colors - Light for dark background */
  --text-primary: #ffffff;
  --text-secondary: #e0b0e0;
  --text-light: #c080c0;
  --text-white: #ffffff;
  
  /* Shadows & Effects */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

/* Font: Zilla Slab */
body {
  font-family: 'Zilla Slab', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
}

/* Shapedesign Header New */
.shapedesign-header-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 13, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(135, 206, 235, 0.3);
  box-shadow: 0 4px 30px rgba(194, 24, 91, 0.2);
  transition: all 0.4s ease;
}

.shapedesign-header-new.scrolled {
  background: rgba(26, 13, 20, 0.98);
  box-shadow: 0 6px 40px rgba(194, 24, 91, 0.3);
  border-bottom-color: rgba(135, 206, 235, 0.4);
}

.header-background-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.05) 0%, rgba(194, 24, 91, 0.05) 100%);
  opacity: 0.5;
  pointer-events: none;
}

.header-wrapper-new {
  position: relative;
}

.header-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.header-logo-new {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  z-index: 2;
}

.header-logo-new:hover {
  transform: scale(1.05);
}

.logo-wrapper-new {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.logo-icon-new {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4), 0 0 0 2px rgba(194, 24, 91, 0.2);
  transition: all 0.3s ease;
}

.logo-icon-new i {
  font-size: 1.875rem;
  color: white;
}

.logo-text-new {
  font-size: 1.625rem;
  font-weight: 800;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(135, 206, 235, 0.3);
}

.header-nav-new {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list-new {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-item-new {
  position: relative;
}

.nav-link-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  color: #e0b0e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.nav-link-new i {
  font-size: 1rem;
  opacity: 0.8;
}

.nav-link-new:hover {
  color: #87CEEB;
  background: rgba(135, 206, 235, 0.15);
  border-color: rgba(135, 206, 235, 0.3);
  transform: translateY(-2px);
}

.nav-link-new:hover i {
  opacity: 1;
  color: #87CEEB;
}

.header-actions-new {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta-btn-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
  border: 1px solid rgba(135, 206, 235, 0.3);
}

.header-cta-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  color: white;
  background: linear-gradient(135deg, #B0E0E6 0%, #E91E63 100%);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10000;
}

.mobile-menu-btn:hover {
  background: rgba(135, 206, 235, 0.2);
  border-color: rgba(135, 206, 235, 0.5);
  transform: scale(1.05);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.menu-line {
  width: 100%;
  height: 3px;
  background: #87CEEB;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: #C2185B;
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: #C2185B;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 5, 8, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1a0d14 0%, #2d1b2e 100%);
  box-shadow: -4px 0 24px rgba(194, 24, 91, 0.3);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
  background: rgba(135, 206, 235, 0.05);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #87CEEB;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu-logo i {
  font-size: 1.5rem;
  color: #87CEEB;
}

.mobile-menu-logo:hover {
  color: #C2185B;
  transform: scale(1.05);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
  border-radius: 8px;
  color: #87CEEB;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(194, 24, 91, 0.2);
  border-color: #C2185B;
  color: #C2185B;
  transform: rotate(90deg);
}

.mobile-menu-nav {
  flex: 1;
  padding: 2rem 0;
  overflow-y: auto;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu-item {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.mobile-menu.active .mobile-menu-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu.active .mobile-menu-item:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-menu-item:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-menu-item:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-menu-item:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-menu-item:nth-child(5) { transition-delay: 0.3s; }

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: #e0b0e0;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
  left: 100%;
}

.mobile-menu-link i:first-child {
  font-size: 1.25rem;
  color: #87CEEB;
  min-width: 24px;
  transition: all 0.3s ease;
}

.mobile-menu-link i:last-child {
  margin-left: auto;
  font-size: 0.875rem;
  color: rgba(135, 206, 235, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  background: rgba(135, 206, 235, 0.1);
  border-color: rgba(135, 206, 235, 0.3);
  color: #87CEEB;
  transform: translateX(4px);
}

.mobile-menu-link:hover i:first-child {
  color: #C2185B;
  transform: scale(1.1);
}

.mobile-menu-link:hover i:last-child {
  color: #87CEEB;
  transform: translateX(4px);
}

.mobile-menu-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.mobile-menu-link-cta {
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
  border: 1px solid rgba(135, 206, 235, 0.4);
  color: #87CEEB;
}

.mobile-menu-link-cta:hover {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  border-color: transparent;
  transform: translateX(0) scale(1.02);
}

.mobile-menu-link-cta:hover i {
  color: white;
}

@media (max-width: 992px) {
  .header-nav-new {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-cta-btn-new span {
    display: none;
  }
  
  .header-cta-btn-new {
    padding: 0.875rem 1rem;
  }
}

@media (max-width: 480px) {
  .mobile-menu-content {
    max-width: 100%;
  }
}

/* Shapedesign Header (old - keep for compatibility) */
.shapedesign-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 13, 20, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.shapedesign-header.scrolled {
  box-shadow: 0 4px 30px rgba(135, 206, 235, 0.25);
}

.header-wrapper {
  position: relative;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.logo-icon-wrapper i {
  font-size: 1.75rem;
  color: white;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.header-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #e0b0e0;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #87CEEB;
  background: rgba(135, 206, 235, 0.15);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 60%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(135, 206, 235, 0.5);
  color: white;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  padding: 1rem 2rem;
  background: #2d1b2e;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-list li a {
  display: block;
  padding: 0.75rem 1rem;
  color: #e0b0e0;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li a.mobile-cta {
  background: rgba(135, 206, 235, 0.15);
  color: #87CEEB;
}

@media (max-width: 992px) {
  .header-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-cta-btn span {
    display: none;
  }
}

/* Shapedesign Hero Section */
.shapedesign-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: #2d1b2e;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 50%, rgba(233, 30, 99, 0.1) 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(233, 30, 99, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-main-content {
  position: relative;
  z-index: 2;
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.badge-icon {
  font-size: 1rem;
  color: #87CEEB;
}

.badge-arrow {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.7;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 0.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-new {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.title-line {
  display: block;
}

.title-highlight {
  display: inline-block;
  position: relative;
}

.gradient-text {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 50%, #E91E63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-accent {
  color: #C2185B;
}

.hero-description-new {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0b0e0;
  max-width: 600px;
  line-height: 1.8;
}

.hero-description-new strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: #e0b0e0;
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(135, 206, 235, 0.3);
}

.hero-actions-new {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn-primary {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  color: white;
}

.hero-btn-secondary {
  background: #2d1b2e;
  color: #87CEEB;
  border: 2px solid #87CEEB;
}

.hero-btn-secondary:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
}

.hero-trust {
  margin-top: 2rem;
}

.trust-label {
  font-size: 0.875rem;
  color: #e0b0e0;
  margin-bottom: 1rem;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(135, 206, 235, 0.1);
  border-radius: 8px;
  font-size: 0.875rem;
  color: #e0b0e0;
}

.trust-badge i {
  color: #87CEEB;
  font-size: 1rem;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.action-btn.primary:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Hero Visual New */
.hero-visual-new {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
}

.floating-card {
  position: absolute;
  background: #2d1b2e;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.3);
  border: 1px solid rgba(135, 206, 235, 0.2);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s ease;
  z-index: 2;
}

.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(135, 206, 235, 0.3);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-wrapper i {
  font-size: 1.5rem;
  color: white;
}

.card-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.card-info p {
  font-size: 0.875rem;
  color: #e0b0e0;
  margin: 0;
}

.floating-card.card-1 {
  top: 10%;
  left: 0;
  animation: float1 6s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 0;
  right: 0;
  animation: float2 6s ease-in-out infinite 1.5s;
}

.floating-card.card-3 {
  bottom: 20%;
  left: 10%;
  animation: float3 6s ease-in-out infinite 3s;
}

.floating-card.card-4 {
  bottom: 0;
  right: 10%;
  animation: float4 6s ease-in-out infinite 4.5s;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(-5px); }
}

@keyframes float4 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(5px); }
}

.hero-center-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.center-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 50%, #E91E63 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(135, 206, 235, 0.4);
  position: relative;
  z-index: 2;
}

.center-icon i {
  font-size: 3rem;
  color: white;
}

.center-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 50%;
  animation: pulse-ring 3s ease-out infinite;
}

.ring-1 {
  width: 160px;
  height: 160px;
  animation-delay: 0s;
}

.ring-2 {
  width: 200px;
  height: 200px;
  animation-delay: 1s;
}

.ring-3 {
  width: 240px;
  height: 240px;
  animation-delay: 2s;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.tech-showcase {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.tech-card {
  position: relative;
  background: #2d1b2e;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 
    0 10px 25px -5px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.tech-card:hover::before {
  transform: scaleX(1);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px -10px rgba(0, 0, 0, 0.15),
    0 8px 16px -4px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.card-icon i {
  font-size: 1.8rem;
  color: white;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.tech-card:hover .card-glow {
  opacity: 1;
}

.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hub-core {
  width: 120px;
  height: 120px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(99, 102, 241, 0.4),
    0 0 60px rgba(6, 182, 212, 0.2);
  position: relative;
  animation: pulse 3s ease-in-out infinite;
}

.core-icon {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.core-text {
  text-align: center;
  color: white;
}

.core-text span {
  font-size: 0.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.core-text small {
  font-size: 0.6rem;
  opacity: 0.9;
  display: block;
  line-height: 1;
}

.connection-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, var(--primary), transparent);
  height: 2px;
  border-radius: 1px;
  opacity: 0.3;
  animation: linePulse 2s ease-in-out infinite;
}

.line-1 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(45deg);
  animation-delay: 0s;
}

.line-2 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(135deg);
  animation-delay: 0.5s;
}

.line-3 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(225deg);
  animation-delay: 1s;
}

.line-4 {
  top: 50%;
  left: 50%;
  width: 80px;
  transform: translate(-50%, -50%) rotate(315deg);
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 0 30px rgba(99, 102, 241, 0.4),
      0 0 60px rgba(6, 182, 212, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 
      0 0 40px rgba(99, 102, 241, 0.6),
      0 0 80px rgba(6, 182, 212, 0.3);
  }
}

@keyframes linePulse {
  0%, 100% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scaleX(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scaleX(1.2);
  }
}

/* Section Headers */
.section-header, .features-header, .solutions-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: var(--bg-gradient);
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-description, .section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #2d1b2e;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.feature-visual {
  position: relative;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-gradient);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.feature-icon i {
  font-size: 1.75rem;
  color: white;
}

.feature-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--transition);
}



.feature-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Solutions Section */
/* Shapedesign Solutions Section */
.shapedesign-solutions {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: #2d1b2e;
}

.solutions-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.solutions-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.08) 0%, rgba(194, 24, 91, 0.08) 50%, rgba(233, 30, 99, 0.08) 100%);
}

.solutions-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.5;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.solutions-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.solutions-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.solutions-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.solutions-title-highlight {
  display: inline-block;
}

.solutions-subtitle-new {
  font-size: 1.125rem;
  color: #e0b0e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.solutions-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Course Cards */
.course-card {
  background: #2d1b2e;
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(135, 206, 235, 0.25);
  border-color: rgba(135, 206, 235, 0.5);
}

.course-card-premium {
  border: 2px solid #87CEEB;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
  position: relative;
}

.course-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 50%, #E91E63 100%);
}

.course-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(135, 206, 235, 0.2);
  color: #87CEEB;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.course-badge i {
  font-size: 0.875rem;
}

.course-badge-premium {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.course-header-new {
  margin-bottom: 2rem;
}

.course-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.course-icon-new i {
  font-size: 2rem;
  color: white;
}

.course-title-new {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.course-description-new {
  font-size: 1rem;
  color: #e0b0e0;
  line-height: 1.7;
  margin-bottom: 0;
}

.course-pricing-new {
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-main {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.price-current {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-old {
  font-size: 1.5rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.pricing-discount {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pricing-discount i {
  font-size: 1rem;
}

.pricing-installment {
  font-size: 0.9rem;
  color: #e0b0e0;
}

.course-features-new {
  margin-bottom: 2rem;
  flex: 1;
}

.course-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: rgba(135, 206, 235, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(135, 206, 235, 0.2);
  transition: all 0.3s ease;
}

.course-feature-item:hover {
  background: rgba(135, 206, 235, 0.15);
  border-color: rgba(135, 206, 235, 0.4);
  transform: translateX(4px);
}

.feature-icon-new {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-new i {
  font-size: 1.125rem;
  color: white;
}

.feature-text-new h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.feature-text-new p {
  font-size: 0.875rem;
  color: #e0b0e0;
  margin: 0;
  line-height: 1.5;
}

.course-actions-new {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.course-btn-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
}

.course-btn-primary-new {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
}

.course-btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  color: white;
}

.course-btn-secondary-new {
  background: #2d1b2e;
  color: #87CEEB;
  border: 2px solid #87CEEB;
}

.course-btn-secondary-new:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .solutions-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions-grid-new {
    grid-template-columns: 1fr;
  }
  
  .solutions-title-new {
    font-size: 2rem;
  }
}


/* Reviews Section */
.reviews-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.reviews-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.review-card {
  background: #2d1b2e;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.review-card.main-review {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
  border: 2px solid var(--primary);
}

.review-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-quote {
  margin-bottom: 2rem;
}

.review-quote i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0.3;
}

.review-quote p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 0;
  font-style: italic;
  position: relative;
}

.review-quote p::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary);
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.avatar-placeholder i {
  font-size: 1.5rem;
  color: white;
}

.author-info h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Modern Contact Section */
.modern-contact-section {
  padding: 6rem 0;
  background: #2d1b2e;
  position: relative;
  overflow: hidden;
}

.modern-contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.method-card {
  background: #2d1b2e;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.method-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.method-card:hover::before {
  transform: scaleX(1);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.method-card.primary {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
}

.method-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.method-icon i {
  font-size: 2rem;
  color: white;
}

.method-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.method-content p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.method-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature i {
  color: var(--success);
  font-size: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1rem;
  width: 16px;
  text-align: center;
}

.method-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  width: 100%;
}

.method-btn.primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.method-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.method-btn:not(.primary) {
  background: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--gray-300);
}

.method-btn:not(.primary):hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  padding: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--transition);
  background: #2d1b2e;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  outline: none;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: #ef4444;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .form-error {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #ef4444;
}

/* Checkbox Styles */
.checkbox-group {
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.submit-button {
  background: var(--bg-gradient);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.button-loading {
  display: none;
}

.submit-button.loading .button-text {
  display: none;
}

.submit-button.loading .button-loading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.button-icon {
  font-size: 1.1rem;
}

/* New Contact Form Styles */
.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-field-group {
  position: relative;
}

.form-label-new {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.required-star {
  color: #C2185B;
  margin-left: 0.25rem;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: inherit;
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.form-input-new:focus,
.form-textarea-new:focus {
  border-color: #87CEEB;
  box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
  outline: none;
  background: var(--bg-primary);
}

.form-input-new:invalid:not(:placeholder-shown),
.form-textarea-new:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.form-textarea-new {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
  line-height: 1.6;
}

.invalid-feedback {
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: none;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback,
.form-input-new:invalid:not(:placeholder-shown):not(:focus) ~ .invalid-feedback,
.form-textarea-new:invalid:not(:placeholder-shown):not(:focus) ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
}

.form-submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  background: linear-gradient(135deg, #B0E0E6 0%, #E91E63 100%);
}

.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit-button svg {
  transition: transform 0.3s ease;
}

.form-submit-button:hover:not(:disabled) svg {
  transform: translateX(4px);
}

.form-status {
  margin-top: 1.5rem;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  padding: 1rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.form-status .loading {
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.3);
}

.form-status .error-message {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-status .sent-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Responsive for New Contact Form */
@media (max-width: 768px) {
  .contact-form-new {
    gap: 1.5rem;
  }
  
  .form-input-new,
  .form-textarea-new {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
  
  .form-submit-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
  }
  
  .form-label-new {
    font-size: 0.9rem;
  }
}

/* Contact Info Cards */
.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.info-card {
  background: #2d1b2e;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card-content span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Social Proof */
.contact-social-proof {
  background: var(--bg-gradient);
  color: white;
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-social-proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.proof-content {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.proof-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.proof-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.proof-stat {
  text-align: center;
}

.proof-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.proof-stat .stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* CTA Section */
/* Shapedesign CTA Section */
.shapedesign-cta {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: #2d1b2e;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.15) 0%, rgba(194, 24, 91, 0.15) 50%, rgba(233, 30, 99, 0.15) 100%);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 20%, rgba(135, 206, 235, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(194, 24, 91, 0.2) 0%, transparent 50%);
  opacity: 0.5;
}

.cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cta-main-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.cta-content-new {
  position: relative;
  z-index: 2;
}

.cta-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.cta-title-new {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.cta-title-highlight {
  display: inline-block;
}

.cta-description-new {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: #e0b0e0;
  line-height: 1.8;
}

.cta-description-new strong {
  color: #ffffff;
  font-weight: 700;
}

.cta-actions-new {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-btn-primary-new {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
}

.cta-btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  color: white;
}

.cta-btn-secondary-new {
  background: #2d1b2e;
  color: #87CEEB;
  border: 2px solid #87CEEB;
}

.cta-btn-secondary-new:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
}

.cta-visual-new {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 450px;
}

.cta-feature-card {
  position: absolute;
  background: #2d1b2e;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.3);
  border: 1px solid rgba(135, 206, 235, 0.2);
  text-align: center;
  transition: all 0.4s ease;
  z-index: 2;
  width: 160px;
}

.cta-feature-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(135, 206, 235, 0.3);
}

.feature-icon-new {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon-new i {
  font-size: 1.5rem;
  color: white;
}

.cta-feature-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
}

.cta-feature-card p {
  font-size: 0.875rem;
  color: #e0b0e0;
  margin: 0;
}

.cta-feature-card.feature-1 {
  top: 10%;
  left: 0;
  animation: cta-float1 6s ease-in-out infinite;
}

.cta-feature-card.feature-2 {
  top: 0;
  right: 0;
  animation: cta-float2 6s ease-in-out infinite 1.5s;
}

.cta-feature-card.feature-3 {
  bottom: 20%;
  left: 0;
  animation: cta-float3 6s ease-in-out infinite 3s;
}

.cta-feature-card.feature-4 {
  bottom: 0;
  right: 0;
  animation: cta-float4 6s ease-in-out infinite 4.5s;
}

@keyframes cta-float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
}

@keyframes cta-float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes cta-float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(-5px); }
}

@keyframes cta-float4 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(5px); }
}

.cta-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: cta-pulse 3s ease-out infinite;
  z-index: 1;
}

@keyframes cta-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

.cta-trust-section {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e0b0e0;
  font-size: 1rem;
  font-weight: 500;
}

.trust-item i {
  color: #87CEEB;
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .hero-content-wrapper,
  .cta-main-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-visual-new,
  .cta-visual-new {
    height: 400px;
  }
  
  .hero-title-new {
    font-size: 3rem;
  }
  
  .cta-title-new {
    font-size: 2.5rem;
  }
  
  .cta-trust-section {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
} 
    transform: translateX(-50%) translateY(-15px) rotate(1deg); 
  }
}

.item-2, .item-4 {
  animation-name: float-cta-side;
}

@keyframes float-cta-side {
  0%, 100% { 
    transform: translateY(-50%) translateX(0px) rotate(0deg); 
  }
  25% { 
    transform: translateY(-50%) translateX(-10px) rotate(2deg); 
  }
  50% { 
    transform: translateY(-50%) translateX(-5px) rotate(-1deg); 
  }
  75% { 
    transform: translateY(-50%) translateX(-15px) rotate(1deg); 
  }
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-features .feature-item {
  background: #2d1b2e;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.cta-features .feature-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-features .feature-icon i {
  font-size: 1.25rem;
  color: white;
}

.cta-features .feature-content h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cta-features .feature-content p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
}

/* Modern Testimonials Section */
/* Shapedesign Testimonials Section */
.shapedesign-testimonials {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: #2d1b2e;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.testimonials-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.08) 0%, rgba(194, 24, 91, 0.08) 50%, rgba(233, 30, 99, 0.08) 100%);
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.5;
}

.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.testimonials-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.testimonials-title-new {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testimonials-title-highlight {
  display: inline-block;
}

.testimonials-subtitle-new {
  font-size: 1.125rem;
  color: #e0b0e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-gradient);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.testimonials-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #2d1b2e;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  margin-bottom: 4rem;
  z-index: 1;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card-new {
  background: #2d1b2e;
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(135, 206, 235, 0.25);
  border-color: rgba(135, 206, 235, 0.5);
}

.testimonial-featured {
  border: 2px solid #87CEEB;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
}

.testimonial-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 50%, #E91E63 100%);
}

.testimonial-header-new {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.testimonial-avatar-new {
  position: relative;
  flex-shrink: 0;
}

.avatar-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.avatar-circle i {
  font-size: 2rem;
  color: white;
}

.verified-badge-new {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.verified-badge-new i {
  font-size: 0.875rem;
  color: white;
}

.testimonial-author-info {
  flex: 1;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.author-role {
  color: #e0b0e0;
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}

.author-company {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0b0e0;
  font-size: 0.875rem;
}

.author-company i {
  color: #87CEEB;
  font-size: 1rem;
}

.testimonial-rating-new {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.stars-new {
  display: flex;
  gap: 0.25rem;
}

.stars-new i {
  color: #fbbf24;
  font-size: 1.125rem;
}

.rating-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0b0e0;
}

.company-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.company-info i {
  color: var(--primary);
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: var(--accent);
  font-size: 1.1rem;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.testimonial-content-new {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon-new {
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 4rem;
  color: #87CEEB;
  opacity: 0.1;
  z-index: 0;
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #e0b0e0;
  margin: 0 0 2rem 0;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-results {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.result-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(135, 206, 235, 0.1);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e0b0e0;
  transition: all 0.3s ease;
}

.result-badge:hover {
  background: rgba(135, 206, 235, 0.2);
  border-color: rgba(135, 206, 235, 0.4);
  transform: translateY(-2px);
}

.result-badge i {
  color: #87CEEB;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .testimonials-grid-new {
    grid-template-columns: 1fr;
  }
  
  .testimonials-title-new {
    font-size: 2rem;
  }
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: #2d1b2e;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.75rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--primary);
}

/* Video Testimonials */
.video-testimonials {
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.video-header {
  text-align: center;
  margin-bottom: 3rem;
}

.video-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.video-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-item {
  background: #2d1b2e;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.play-button {
  font-size: 4rem;
  color: white;
  opacity: 0.9;
  transition: var(--transition);
}

.video-item:hover .play-button {
  opacity: 1;
  transform: scale(1.1);
}

.video-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Testimonials CTA */
/* Testimonials CTA Section */
.testimonials-cta-new {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  background: #2d1b2e;
  margin-top: 4rem;
}

.testimonials-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.testimonials-cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 50%, rgba(233, 30, 99, 0.1) 100%);
}

.testimonials-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(135, 206, 235, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(194, 24, 91, 0.2) 0%, transparent 50%);
  opacity: 0.4;
}

.testimonials-cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.testimonials-cta-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.testimonials-cta-main {
  position: relative;
  z-index: 2;
}

.testimonials-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.2) 0%, rgba(194, 24, 91, 0.2) 100%);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.2);
}

.testimonials-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.testimonials-cta-highlight {
  display: inline-block;
}

.testimonials-cta-description {
  font-size: 1.125rem;
  color: #e0b0e0;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonials-cta-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.cta-stat-item {
  display: flex;
  flex-direction: column;
}

.cta-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.cta-stat-label {
  font-size: 0.875rem;
  color: #e0b0e0;
  margin-top: 0.25rem;
}

.cta-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(135, 206, 235, 0.3);
}

.testimonials-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonials-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.testimonials-cta-btn-primary {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
}

.testimonials-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  color: white;
}

.testimonials-cta-btn-secondary {
  background: #2d1b2e;
  color: #87CEEB;
  border: 2px solid #87CEEB;
}

.testimonials-cta-btn-secondary:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
}

.testimonials-cta-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-cta-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 400px;
}

.floating-quote-card {
  position: absolute;
  background: #2d1b2e;
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 24px rgba(194, 24, 91, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  z-index: 2;
}

.floating-quote-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(135, 206, 235, 0.3);
  border-color: rgba(135, 206, 235, 0.5);
}

.quote-icon-wrapper {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-icon-wrapper i {
  font-size: 1.25rem;
  color: white;
}

.quote-text {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.floating-quote-card.quote-1 {
  top: 10%;
  left: 0;
  animation: quote-float1 6s ease-in-out infinite;
}

.floating-quote-card.quote-2 {
  top: 0;
  right: 0;
  animation: quote-float2 6s ease-in-out infinite 1.5s;
}

.floating-quote-card.quote-3 {
  bottom: 20%;
  left: 10%;
  animation: quote-float3 6s ease-in-out infinite 3s;
}

.floating-quote-card.quote-4 {
  bottom: 0;
  right: 10%;
  animation: quote-float4 6s ease-in-out infinite 4.5s;
}

@keyframes quote-float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-15px) translateX(10px); }
}

@keyframes quote-float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes quote-float3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(-5px); }
}

@keyframes quote-float4 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(10px) translateX(5px); }
}

.testimonials-cta-center-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(135, 206, 235, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: testimonials-cta-pulse 3s ease-out infinite;
  z-index: 1;
}

@keyframes testimonials-cta-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
}

@media (max-width: 992px) {
  .testimonials-cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonials-cta-visual {
    height: 300px;
  }
  
  .testimonials-cta-title {
    font-size: 2.5rem;
  }
  
  .testimonials-cta-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .cta-stat-divider {
    display: none;
  }
}

/* Shapedesign Footer */
.shapedesign-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  padding: 4rem 0 0;
  position: relative;
}

.footer-main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-company {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.footer-logo-icon i {
  font-size: 1.75rem;
  color: white;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #e0b0e0;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.company-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #e0b0e0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.company-info-item i {
  color: #87CEEB;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.company-info-item a {
  color: #e0b0e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-info-item a:hover {
  color: #87CEEB;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: #e0b0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links-list a:hover {
  color: #87CEEB;
  transform: translateX(4px);
}

.footer-newsletter {
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
  border: 1px solid rgba(135, 206, 235, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
}

.newsletter-description {
  color: #e0b0e0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 1.5rem;
}

.newsletter-input-wrapper {
  display: flex;
  gap: 0.5rem;
  background: #2d1b2e;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
  border-color: #87CEEB;
  box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
}

.newsletter-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #ffffff;
}

.newsletter-input-wrapper input::placeholder {
  color: var(--gray-400);
}

.newsletter-submit {
  width: 40px;
  height: 40px;
  border: none;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.newsletter-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.social-media {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2d1b2e;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  color: #e0b0e0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(135, 206, 235, 0.2);
  padding: 1.5rem 0;
  background: #2d1b2e;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #e0b0e0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #e0b0e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #87CEEB;
}

.separator {
  color: var(--gray-400);
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-input-wrapper {
    flex-direction: column;
  }
  
  .newsletter-submit {
    width: 100%;
  }
  
  .social-media {
    justify-content: flex-start;
  }
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.newsletter-form button:hover::before {
  left: 100%;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

/* Old footer styles removed - using new shapedesign-footer styles above */

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
  border-color: var(--primary);
}

.social-link:hover i {
  color: white;
}

/* Page Main Styles */
.page-main {
  padding: 2rem 0;
  background: var(--bg-secondary);
  min-height: 60vh;
  position: relative;
}

/* Policy Pages Main Styles */
main.page-main {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

main.page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 70%);
  pointer-events: none;
  animation: float 25s ease-in-out infinite;
}

main.page-main::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.02) 0%, transparent 50%);
  animation: float 30s ease-in-out infinite reverse;
  pointer-events: none;
}

.page-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.page-main .container {
  position: relative;
  z-index: 1;
}

/* Page Section Styles */
.page-section {
  position: relative;
  z-index: 2;
}

/* Policy Content Styles */
.policy-content {
  background: #2d1b2e;
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.policy-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
}

.policy-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Policy Section Styles */
.policy-section {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: rgba(248, 250, 252, 0.5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.policy-section:hover::before {
  transform: scaleX(1);
}

.policy-section:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: rgba(99, 102, 241, 0.2);
}

.policy-section h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-section h3 i {
  color: var(--primary);
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.policy-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 0;
  list-style: none;
}

.policy-section li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.policy-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.policy-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-section a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.policy-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.policy-section a:hover::after {
  width: 100%;
}

.policy-section a:hover {
  color: var(--primary-dark);
}

/* Page Header Styles */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
  padding: 2rem 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Content Section Styles */
.content-section {
  background: #2d1b2e;
  border-radius: var(--radius-xl);
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
}

.content-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--bg-gradient);
  border-radius: 2px;
}

.content-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 1rem 0;
}

.content-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-section ul {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.content-section li {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.content-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.content-section strong {
  color: var(--text-primary);
  font-weight: 600;
}

.content-section a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.content-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: var(--transition);
}

.content-section a:hover::after {
  width: 100%;
}

.content-section a:hover {
  color: var(--primary-dark);
}

/* Contact Info Styles */
.contact-info {
  background: var(--bg-gradient);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.contact-info a:hover {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .solution-card.premium {
    grid-column: 1 / -1;
  }
  
  .reviews-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  
  .review-card.main-review {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .tech-showcase {
    max-width: 500px;
    height: 400px;
  }
  
  .showcase-grid {
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .tech-card {
    padding: 1.25rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.5rem;
  }
  
  .hub-core {
    width: 100px;
    height: 100px;
  }
  
  .core-icon {
    font-size: 1.5rem;
  }
  
  .orbit-center {
    width: 80px;
    height: 80px;
  }
  
  .center-icon {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-methods {
    margin-bottom: 2rem;
  }
  
  .method-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  
  .testimonial-card.featured {
    grid-column: 1;
    grid-row: 1;
  }
  
  .testimonial-metrics {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .content-section {
    padding: 2rem;
  }
  
  .cta-hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .cta-visual {
    height: 300px;
  }
  
  .floating-elements {
    width: 250px;
    height: 250px;
  }
  
  .floating-item {
    width: 60px;
    height: 60px;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  
  .testimonial-card.featured {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .page-title {
    font-size: 1.8rem;
  }
  
  .page-description {
    font-size: 1rem;
  }
  
  .content-section {
    padding: 1.5rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  .content-section h3 {
    font-size: 1.2rem;
  }
  
  .policy-content {
    padding: 2rem;
  }
  
  .policy-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .policy-section h3 {
    font-size: 1.2rem;
  }
  
  main.page-main {
    padding: 2rem 0;
  }
  
  .policy-content {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .policy-section {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }
  
  .policy-section h3 {
    font-size: 1.1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .policy-section h3 i {
    font-size: 1rem;
  }
  
  .tech-showcase {
    max-width: 400px;
    height: 350px;
  }
  
  .showcase-grid {
    gap: 1rem;
    padding: 1rem;
  }
  
  .tech-card {
    padding: 1rem;
  }
  
  .card-content h4 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.8rem;
  }
  
  .hub-core {
    width: 80px;
    height: 80px;
  }
  
  .core-icon {
    font-size: 1.2rem;
  }
  
  .core-text span {
    font-size: 0.7rem;
  }
  
  .core-text small {
    font-size: 0.5rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* Shapedesign Cookie Banner */
.shapedesign-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shapedesign-cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-container {
  background: #2d1b2e;
  border-top: 2px solid #87CEEB;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 300px;
}

.cookie-banner-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.4);
}

.cookie-banner-icon i {
  font-size: 1.5rem;
  color: white;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.cookie-banner-description {
  font-size: 0.9rem;
  color: #e0b0e0;
  margin: 0;
  line-height: 1.5;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cookie-link {
  color: #e0b0e0;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.cookie-link:hover {
  color: #87CEEB;
}

.cookie-link-separator {
  color: var(--gray-400);
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-btn-decline {
  background: var(--gray-100);
  color: #e0b0e0;
}

.cookie-btn-decline:hover {
  background: var(--gray-200);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(135, 206, 235, 0.4);
}

.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.cookie-btn-settings {
  width: 40px;
  height: 40px;
  padding: 0;
  justify-content: center;
  background: var(--gray-100);
  color: #e0b0e0;
  border-radius: 8px;
}

.cookie-btn-settings:hover {
  background: var(--gray-200);
}

.cookie-settings-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d1b2e;
  border-top: 2px solid #87CEEB;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin: 0 auto;
  max-height: 80vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
}

.cookie-settings-panel.active {
  transform: translateY(0);
}

.cookie-settings-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-settings-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.cookie-settings-close {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  background: var(--gray-200);
}

.cookie-settings-content {
  padding: 2rem;
}

.cookie-setting-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.cookie-setting-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.cookie-setting-info p {
  margin: 0;
  font-size: 0.875rem;
  color: #e0b0e0;
  line-height: 1.5;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-300);
  transition: 0.3s;
  border-radius: 28px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
}

.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-settings-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: flex-end;
}

.cookie-btn-secondary {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

@media (max-width: 768px) {
  .cookie-banner-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}

.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cookie-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-gradient);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.cookie-icon i {
  font-size: 1.5rem;
  color: white;
}

.cookie-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.cookie-title p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-content {
  margin-bottom: 2rem;
}

.cookie-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-category {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--transition);
}

.cookie-category:hover {
  background: rgba(248, 250, 252, 1);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.category-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.category-info p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  display: none;
}

.toggle-switch {
  display: block;
  width: 50px;
  height: 28px;
  background: var(--gray-300);
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch:hover {
  background: var(--gray-400);
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: #2d1b2e;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .toggle-switch {
  background: var(--primary);
}

.cookie-toggle input:checked + .toggle-switch .toggle-slider {
  transform: translateX(22px);
}

.cookie-toggle input:disabled + .toggle-switch {
  background: var(--primary);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-toggle input:disabled + .toggle-switch .toggle-slider {
  transform: translateX(22px);
}

.cookie-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.policy-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.policy-link:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.policy-link i {
  font-size: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cookie-btn i {
  font-size: 1rem;
}

.cookie-btn.primary {
  background: var(--bg-gradient);
  color: white;
  box-shadow: var(--shadow);
}

.cookie-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-gradient-alt);
}

.cookie-btn.secondary {
  background: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--gray-300);
}

.cookie-btn.secondary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

.cookie-btn.success {
  background: var(--success);
  color: white;
  box-shadow: var(--shadow);
}

.cookie-btn.success:hover {
  background: var(--success-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Cookie Banner Animations */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.modern-cookie-banner.show {
  animation: slideUp 0.4s ease-out;
}

.modern-cookie-banner.hide {
  animation: slideDown 0.3s ease-in;
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
  .cookie-container {
    padding: 1.5rem;
  }
  
  .cookie-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cookie-title h3 {
    font-size: 1.25rem;
  }
  
  .cookie-categories {
    gap: 0.75rem;
  }
  
  .cookie-category {
    padding: 1rem;
  }
  
  .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  
  .cookie-links {
    justify-content: center;
    gap: 1rem;
  }
  
  .cookie-buttons {
    justify-content: center;
    gap: 0.75rem;
  }
  
  .cookie-btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-container {
    padding: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 1200px) {
  .testimonials-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .modern-testimonials-section {
    padding: 4rem 0;
  }
  
  .modern-contact-section {
    padding: 4rem 0;
  }
  
  .testimonials-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-cta {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .cta-visual {
    height: 200px;
  }
  
  .contact-form-section {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
  }
  
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767.98px) {
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-header .section-subtitle {
    font-size: 1rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .author-info {
    text-align: center;
  }
  
  .rating {
    align-items: center;
  }
  
  .results {
    justify-content: center;
  }
  
  .video-header h3 {
    font-size: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact-header h2 {
    font-size: 2rem;
  }
  
  .method-card {
    padding: 2rem;
  }
  
  .method-icon {
    width: 60px;
    height: 60px;
  }
  
  .method-icon i {
    font-size: 1.5rem;
  }
  
  .method-content h3 {
    font-size: 1.25rem;
  }
  
  .form-container {
    padding: 0;
  }
  
  .contact-form-section {
    padding: 1.5rem;
    margin: 0 1rem 2rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon i {
    font-size: 1.25rem;
  }
  
  .proof-content h3 {
    font-size: 1.5rem;
  }
  
  .proof-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .testimonials-stats {
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-content blockquote {
    font-size: 1.1rem;
  }
  
  .results {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .result-item {
    justify-content: center;
  }
  
  .carousel-controls {
    gap: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .video-thumbnail {
    height: 150px;
  }
  
  .play-button {
    font-size: 3rem;
  }
  
  .video-info {
    padding: 1rem;
  }
  
  .cta-content h3 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .floating-quote {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .contact-header h2 {
    font-size: 1.75rem;
  }
  
  .method-card {
    padding: 1.5rem;
  }
  
  .method-content h3 {
    font-size: 1.1rem;
  }
  
  .method-content p {
    font-size: 0.9rem;
  }
  
  .method-features {
    gap: 0.5rem;
  }
  
  .feature {
    font-size: 0.85rem;
  }
  
  .contact-form-section {
    padding: 1rem;
    margin: 0 0.5rem 2rem;
  }
  
  .form-header h3 {
    font-size: 1.25rem;
  }
  
  .form-header p {
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .submit-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .card-content h4 {
    font-size: 1rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
  
  .card-content span {
    font-size: 0.8rem;
  }
  
  .contact-social-proof {
    padding: 2rem 1rem;
  }
  
  .proof-content h3 {
    font-size: 1.25rem;
  }
  
  .proof-content p {
    font-size: 0.95rem;
  }
  
  .proof-stat .stat-number {
    font-size: 2rem;
  }
  
  .proof-stat .stat-label {
    font-size: 0.8rem;
  }
}

/* About Page Styles */
.about-hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.about-hero-highlight .gradient-text {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.about-features-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
  position: relative;
}

.about-features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about-features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
}

.about-features-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-features-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.about-mission-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.about-mission-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-mission-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.05) 0%, rgba(194, 24, 91, 0.05) 100%);
}

.about-mission-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.about-mission-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
}

.mission-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.mission-lead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 500;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.mission-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.mission-stat-item {
  display: flex;
  flex-direction: column;
}

.mission-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mission-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

.mission-stat-divider {
  width: 1px;
  background: rgba(135, 206, 235, 0.2);
}

.about-mission-visual {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-icon-large {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(135, 206, 235, 0.4);
  position: relative;
  z-index: 2;
}

.mission-icon-large i {
  font-size: 5rem;
  color: white;
}

.mission-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.mission-ring {
  position: absolute;
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 50%;
  animation: expand-ring 3s ease-out infinite;
}

.mission-ring.ring-1 { width: 100%; height: 100%; opacity: 0.8; animation-delay: 0s; }
.mission-ring.ring-2 { width: 80%; height: 80%; opacity: 0.6; animation-delay: 1s; }
.mission-ring.ring-3 { width: 60%; height: 60%; opacity: 0.4; animation-delay: 2s; }

.about-values-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.about-values-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.values-header {
  text-align: center;
  margin-bottom: 4rem;
}

.values-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
}

.values-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.values-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card-new {
  background: var(--bg-primary);
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card-new:hover {
  transform: translateY(-8px);
  border-color: rgba(135, 206, 235, 0.5);
  box-shadow: 0 12px 32px rgba(135, 206, 235, 0.2);
}

.value-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.3);
}

.value-icon-new i {
  font-size: 2.5rem;
  color: white;
}

.value-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-description-new {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Contact Page Styles */
.contact-hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.contact-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.contact-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-hero-highlight .gradient-text {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.modern-contact-section-new {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.contact-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
}

.contact-header-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-header-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* FAQ Page Styles */
.faq-hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.faq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
}

.faq-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.faq-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.faq-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.faq-hero-highlight .gradient-text {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

.faq-section-new {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.faq-section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-header-new {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #87CEEB;
}

.faq-header-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-header-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

/* Responsive for About, Contact, FAQ pages */
@media (max-width: 992px) {
  .about-mission-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .mission-stat-divider {
    display: none;
  }
  
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2.5rem;
  }
}

/* Policy Pages Styles (Cookie, Privacy, Terms) */
.policy-hero-section {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

.policy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.policy-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
}

.policy-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.policy-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.policy-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(135, 206, 235, 0.15);
  border: 1px solid rgba(135, 206, 235, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #87CEEB;
}

.policy-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.policy-hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.policy-hero-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.meta-item i {
  color: #87CEEB;
}

.policy-content-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.policy-content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.policy-content-wrapper {
  position: relative;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.policy-section-new {
  background: var(--bg-primary);
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.policy-section-new:hover {
  border-color: rgba(135, 206, 235, 0.4);
  box-shadow: 0 8px 24px rgba(135, 206, 235, 0.15);
  transform: translateY(-4px);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

.policy-section-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

.policy-section-icon i {
  font-size: 1.5rem;
  color: white;
}

.policy-section-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.policy-section-body {
  color: var(--text-secondary);
  line-height: 1.8;
}

.policy-section-body p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.policy-list-new {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-list-new li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(135, 206, 235, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(135, 206, 235, 0.1);
  transition: all 0.3s ease;
}

.policy-list-new li:hover {
  background: rgba(135, 206, 235, 0.1);
  border-color: rgba(135, 206, 235, 0.3);
  transform: translateX(4px);
}

.policy-list-new li i {
  font-size: 1.25rem;
  color: #87CEEB;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.policy-list-new li div {
  flex: 1;
  color: var(--text-secondary);
  line-height: 1.7;
}

.policy-list-new li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-contact-link {
  color: #87CEEB;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.policy-contact-link:hover {
  color: #C2185B;
  border-bottom-color: #C2185B;
}

/* Thanks Page Styles */
.thanks-hero-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.thanks-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, rgba(194, 24, 91, 0.1) 100%);
}

.thanks-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(194, 24, 91, 0.15) 0%, transparent 50%);
  opacity: 0.6;
}

.thanks-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.thanks-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.thanks-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.thanks-icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(135, 206, 235, 0.4);
  position: relative;
  z-index: 2;
  animation: thanks-pulse 2s ease-in-out infinite;
}

@keyframes thanks-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 40px rgba(135, 206, 235, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(135, 206, 235, 0.6);
  }
}

.thanks-icon-circle i {
  font-size: 4rem;
  color: white;
}

.thanks-icon-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  pointer-events: none;
}

.thanks-ring {
  position: absolute;
  border: 2px solid rgba(135, 206, 235, 0.3);
  border-radius: 50%;
  animation: expand-ring 3s ease-out infinite;
}

.thanks-ring.ring-1 { width: 100%; height: 100%; opacity: 0.8; animation-delay: 0s; }
.thanks-ring.ring-2 { width: 80%; height: 80%; opacity: 0.6; animation-delay: 1s; }
.thanks-ring.ring-3 { width: 60%; height: 60%; opacity: 0.4; animation-delay: 2s; }

.thanks-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.thanks-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.thanks-info-card {
  background: var(--bg-secondary);
  border: 2px solid rgba(135, 206, 235, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.thanks-info-card:hover {
  transform: translateY(-8px);
  border-color: rgba(135, 206, 235, 0.5);
  box-shadow: 0 12px 32px rgba(135, 206, 235, 0.2);
}

.thanks-info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.3);
}

.thanks-info-icon i {
  font-size: 2rem;
  color: white;
}

.thanks-info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.thanks-info-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.thanks-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.thanks-btn-primary {
  background: linear-gradient(135deg, #87CEEB 0%, #C2185B 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(135, 206, 235, 0.4);
}

.thanks-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(135, 206, 235, 0.5);
  color: white;
}

.thanks-btn-secondary {
  background: var(--bg-secondary);
  color: #87CEEB;
  border: 2px solid #87CEEB;
}

.thanks-btn-secondary:hover {
  background: rgba(135, 206, 235, 0.1);
  transform: translateY(-2px);
  border-color: #C2185B;
  color: #C2185B;
}

/* Responsive for Policy and Thanks pages */
@media (max-width: 992px) {
  .policy-hero-title,
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .thanks-info-cards {
    grid-template-columns: 1fr;
  }
  
  .policy-section-new {
    padding: 2rem;
  }
  
  .policy-section-header h3 {
    font-size: 1.25rem;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .thanks-btn {
    width: 100%;
    justify-content: center;
  }
}