/* Swiss Spedwise Learning Hub - Unique Creative Design */

:root {
  --primary-dark: #0a1a2e;
  --secondary-dark: #162447;
  --accent-blue: #00d4ff;
  --accent-neon: #00ffd4;
  --accent-purple: #8b5cf6;
  --text-light: #e8f4f8;
  --text-gray: #b0c4d1;
  --card-bg: #1a2a4a;
  --border-color: #2a3a5a;
  --gradient-1: linear-gradient(135deg, #0a1a2e 0%, #162447 50%, #1a2a4a 100%);
  --gradient-2: linear-gradient(135deg, #00d4ff 0%, #00ffd4 50%, #8b5cf6 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--gradient-1);
  background-attachment: fixed;
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Animated Background Elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 212, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Header Styles - Unique Design */
header {
  background: rgba(10, 26, 46, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1001;
  padding: 0;
  flex-shrink: 0;
  min-width: fit-content;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  position: relative;
  line-height: 1.2;
  display: inline-block;
  text-align: left;
}

/* Navigation - Creative Style */
nav {
  position: relative;
  flex: 1;
  min-width: 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 0.3rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 100%;
}

nav li {
  position: relative;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  white-space: nowrap;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: var(--gradient-2);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

nav a:hover {
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

nav a:hover::before {
  opacity: 1;
}

nav a.active {
  color: var(--accent-blue);
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

nav a.active::before {
  opacity: 1;
}

/* Mobile Menu Toggle - Hamburger Icon */
.menu-toggle {
  display: none;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--accent-blue);
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-toggle:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.05);
}

.menu-toggle .hamburger-icon,
.menu-toggle .close-icon {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle.active .hamburger-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.menu-toggle.active .close-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.menu-toggle:not(.active) .close-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #0a1a2e 0%, #162447 100%);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  padding: 2rem;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-menu-close {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--accent-blue);
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mobile-menu-close:hover {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  display: block;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid transparent;
  position: relative;
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-blue);
  transition: width 0.3s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
  color: var(--accent-blue);
  transform: translateX(5px);
  padding-left: 2rem;
}

.mobile-menu a:hover::before,
.mobile-menu a.active::before {
  width: 8px;
}

/* Main Content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

.hero {
  text-align: center;
  padding: 5rem 0 4rem;
  margin-bottom: 4rem;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Hero Main - Advertising Style */
.hero-main {
  padding: 8rem 0;
  margin-bottom: 8rem;
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  z-index: 0;
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  color: var(--text-light);
  margin-bottom: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
  line-height: 1.6;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-blue);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-outline span,
.btn-outline {
  position: relative;
  z-index: 1;
}

.btn-outline:hover {
  color: var(--primary-dark);
  border-color: var(--accent-blue);
}

.btn-outline:hover::before {
  left: 0;
}

/* Features Section */
.features-section {
  margin: 8rem 0;
  position: relative;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 8rem;
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  transition: all 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.3) 0%, rgba(10, 26, 46, 0.2) 100%);
  border-radius: 40px;
  border: 2px solid rgba(0, 212, 255, 0.1);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 1;
  box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-card:hover {
  transform: translateY(-15px);
}

.feature-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card.reverse {
  direction: rtl;
}

.feature-card.reverse > * {
  direction: ltr;
}

.feature-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 25px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 25px 70px rgba(0, 212, 255, 0.2), 0 0 40px rgba(0, 212, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover .feature-image {
  transform: scale(1.05);
  box-shadow: 0 30px 90px rgba(0, 212, 255, 0.3), 0 0 60px rgba(0, 212, 255, 0.2);
  border-color: rgba(0, 212, 255, 0.5);
}

.feature-card:hover .feature-image::after {
  opacity: 1;
}

.feature-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.feature-content p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.feature-content ul {
  list-style: none;
  margin: 2rem 0;
  padding-left: 0;
}

.feature-content ul li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.feature-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-neon);
  font-weight: bold;
  font-size: 1.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 255, 212, 0.1);
  border-radius: 50%;
  border: 2px solid var(--accent-neon);
  transition: all 0.3s ease;
}

.feature-content ul li:hover {
  transform: translateX(5px);
  color: var(--accent-neon);
}

.feature-content ul li:hover::before {
  background: var(--accent-neon);
  color: var(--primary-dark);
  transform: scale(1.1);
}

/* Benefits Section */
.benefits-section {
  margin: 8rem 0;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(26, 42, 74, 0.4) 0%, rgba(10, 26, 46, 0.3) 100%);
  border-radius: 40px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 0 60px rgba(0, 212, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 212, 0.1) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite;
  z-index: 0;
}

.benefits-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit-item {
  text-align: center;
  background: rgba(10, 26, 46, 0.5);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  z-index: 0;
}

.benefit-item:hover::before {
  width: 300px;
  height: 300px;
}

.benefit-item > * {
  position: relative;
  z-index: 1;
}

.benefit-item:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
  background: rgba(10, 26, 46, 0.7);
}

.benefit-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
}

.benefit-item:hover .benefit-image {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
  border-color: rgba(0, 212, 255, 0.5);
}

.benefit-item h3 {
  color: var(--accent-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* CTA Section - New Creative Design */
.cta-section-new {
  margin: 8rem 0;
  padding: 0;
  position: relative;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-left {
  position: relative;
}

.cta-left h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-left p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-gray);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(26, 42, 74, 0.4);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cta-card {
  background: rgba(26, 42, 74, 0.6);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.cta-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.cta-card:hover::before {
  transform: scaleX(1);
}

.cta-card h3 {
  font-size: 1.8rem;
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-card p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.cta-card .btn {
  width: auto;
  min-width: 200px;
  max-width: 100%;
  text-align: center;
  justify-content: center;
  display: inline-flex;
}

/* Card Grids - Unique Layouts */
.card-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.card-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards - Creative Design */
.card {
  background: rgba(26, 42, 74, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.card:hover::before {
  opacity: 0.05;
}

.card:hover::after {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h2 {
  color: var(--accent-blue);
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.card h3 {
  color: var(--accent-neon);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.card p {
  color: var(--text-gray);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.card ul {
  list-style: none;
  padding-left: 0;
}

.card ul li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.7;
}

.card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

.card a:not(.btn) {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.card a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s ease;
}

.card a:not(.btn):hover {
  color: var(--accent-neon);
}

.card a:not(.btn):hover::after {
  width: 100%;
}

/* Images */
.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-placeholder {
  border: 2px dashed rgba(0, 212, 255, 0.3);
  background: rgba(26, 42, 74, 0.5);
}

/* Forms */
.form-container {
  max-width: 700px;
  margin: 3rem auto;
  background: rgba(26, 42, 74, 0.6);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(10, 26, 46, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  background: rgba(10, 26, 46, 0.8);
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #ff4444;
}

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

.checkbox-group {
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--accent-blue);
  flex-shrink: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-group a {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.checkbox-group a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s ease;
}

.checkbox-group a:hover {
  color: var(--accent-neon);
  border-bottom-color: transparent;
}

.checkbox-group a:hover::after {
  width: 100%;
}

.btn {
  background: var(--gradient-2);
  color: var(--primary-dark);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn:active {
  transform: translateY(-1px);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 42, 74, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 212, 255, 0.3);
  padding: 2rem;
  z-index: 10000;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  display: block;
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.cookie-text a {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.cookie-text a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s ease;
}

.cookie-text a:hover {
  color: var(--accent-neon);
  border-bottom-color: transparent;
}

.cookie-text a:hover::after {
  width: 100%;
}

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

.cookie-btn {
  padding: 0.8rem 2rem;
  border: 1px solid var(--accent-blue);
  background: transparent;
  color: var(--accent-blue);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.cookie-btn:hover {
  background: var(--accent-blue);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.cookie-btn.accept {
  background: var(--gradient-2);
  color: var(--primary-dark);
  border: none;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cookie-modal.active {
  display: flex;
  opacity: 1;
}

.cookie-modal-content {
  background: rgba(26, 42, 74, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  max-width: 650px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-content h2 {
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.cookie-setting {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(10, 26, 46, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
}

.cookie-setting h3 {
  color: var(--accent-neon);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.cookie-setting p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 55px;
  height: 28px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(42, 58, 90, 0.8);
  transition: 0.3s;
  border-radius: 28px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

input:checked + .toggle-slider {
  background: var(--gradient-2);
  border-color: var(--accent-blue);
}

input:checked + .toggle-slider:before {
  transform: translateX(27px);
}

.modal-close {
  margin-top: 2rem;
  text-align: right;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

/* Footer */
footer {
  background: rgba(10, 26, 46, 0.8);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-gray);
  margin-top: 6rem;
  position: relative;
  z-index: 1;
}

footer a {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s ease;
}

footer a:hover {
  color: var(--accent-neon);
}

footer a:hover::after {
  width: 100%;
}

/* Contact Info Styles */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-item {
  background: rgba(26, 42, 74, 0.6);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
}

.contact-item h3 {
  color: var(--accent-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.8;
}

.contact-item a {
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

.contact-item a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s ease;
}

.contact-item a:hover {
  color: var(--accent-neon);
}

.contact-item a:hover::after {
  width: 100%;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.faq-item {
  padding: 1.5rem;
  background: rgba(10, 26, 46, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.faq-item h3 {
  color: var(--accent-blue);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.7;
}

/* Global Link Styles */
a:not(.btn):not(nav a):not(.cookie-btn):not(.mobile-menu a):not(.logo):not(.card a) {
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  padding-bottom: 2px;
}

a:not(.btn):not(nav a):not(.cookie-btn):not(.mobile-menu a):not(.logo):not(.card a)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-neon);
  transition: width 0.3s ease;
}

a:not(.btn):not(nav a):not(.cookie-btn):not(.mobile-menu a):not(.logo):not(.card a):hover {
  color: var(--accent-neon);
  border-bottom-color: transparent;
}

a:not(.btn):not(nav a):not(.cookie-btn):not(.mobile-menu a):not(.logo):not(.card a):hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 1.5rem 1rem;
    min-height: 80px;
  }
  
  .header-container {
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    min-height: 50px;
  }
  
  .logo {
    width: auto;
    flex: 0 0 auto;
    padding: 0;
    min-width: fit-content;
  }
  
  .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1001;
    margin-left: auto;
    flex-shrink: 0;
  }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
  
  nav {
    display: block;
  }
  
  .header-container {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .logo {
    flex: 0 0 auto;
    min-width: fit-content;
    padding: 0;
  }
  
  nav {
    flex: 1 1 100%;
    min-width: 0;
  }
  
  nav ul {
    gap: 0.2rem;
    flex-wrap: wrap;
  }
  
  nav a {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
    max-width: 180px;
  }
}

@media (min-width: 1024px) {
  .header-container {
    flex-wrap: nowrap;
    align-items: center;
  }
  
  nav {
    flex: 1;
    min-width: 0;
  }
  
  nav ul {
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  
  nav a {
    padding: 0.7rem 1.2rem;
    font-size: 1.05rem;
  }
  
  .logo {
    padding: 0;
    flex-shrink: 0;
  }
  
  .logo-text {
    font-size: 1.6rem;
    max-width: 220px;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) {
  nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
  
  nav a {
    padding: 0.7rem 1.3rem;
    font-size: 1.1rem;
  }
  
  .logo {
    padding: 0;
    flex-shrink: 0;
  }
  
  .logo-text {
    font-size: 1.8rem;
    max-width: 250px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .hero-main {
    padding: 5rem 0;
  }
  
  .benefits-section {
    padding: 3rem 1.5rem;
    border-radius: 25px;
  }
  
  .cta-section {
    padding: 4rem 2rem;
    border-radius: 25px;
  }
  
  .hero-cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .hero-cta .btn {
    flex: 0 1 auto;
    min-width: 200px;
    text-align: center;
  }
  
  .feature-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 4rem;
  }
  
  .feature-card.reverse {
    direction: ltr;
  }
  
  .feature-image {
    height: 300px;
  }
  
  .feature-content h2 {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .cta-left {
    position: relative;
    text-align: center;
  }
  
  .cta-left h2 {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 1.5rem;
  }
  
  .cta-left p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 2rem;
  }
  
  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  .cta-right {
    gap: 1.5rem;
  }
  
  .cta-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  
  .cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .cta-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .cta-card .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .card-grid-2,
  .card-grid-3,
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
  
  .card {
    padding: 2rem;
  }
  
  .form-container {
    padding: 2rem 1.5rem;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
  
  main {
    padding: 2rem 1rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.price-highlight {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1.5rem 0;
  display: block;
}

.error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 6px;
  border-left: 3px solid #ff6b6b;
}

#form-error {
  display: block;
}
