:root {
  /* Color scheme */
  --primary-color: #4a6bff;
  --primary-dark: #3a55d9;
  --primary-light: #7a8dff;
  --secondary-color: #ff6b4a;
  --secondary-dark: #e55a3a;
  --secondary-light: #ff8d6a;
  --accent-color: #9c4aff;
  --accent-dark: #7a3ad9;
  --accent-light: #b16aff;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f7fa;
  --medium-gray: #e1e5ee;
  --dark-gray: #596377;
  --black: #1a2030;
  
  /* Gradient backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: rgba(31, 38, 135, 0.15);
  
  /* Typography */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

/* Base Styles */
html, body {
  font-family: var(--body-font);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--light-gray);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.3;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

.title, .subtitle {
  font-family: var(--heading-font);
}

/* Glassmorphism */
.glassmorphism {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

/* Button Styles */
.button {
  font-family: var(--heading-font);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.button.is-primary {
  background: var(--gradient-primary);
  border: none;
}

.button.is-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

.button.is-primary.is-outlined {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-primary.is-outlined:hover {
  background: var(--primary-color);
  color: var(--white);
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 107, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(74, 107, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 107, 255, 0);
  }
}

/* Header & Navigation */
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 1rem 0;
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-color);
  transition: all 0.3s ease;
}

.navbar-item:hover::after {
  width: 100%;
  left: 0;
}

.navbar-brand .title {
  margin-bottom: 0;
}

.navbar-brand .has-text-primary {
  color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
  position: relative;
  margin-top: 70px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.7);
}

.hero-content {
  padding: var(--spacing-lg);
  max-width: 750px;
  z-index: 10;
}

.hero .title,
.hero .subtitle,
.hero p {
  color: var(--white) !important;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Plans Section */
.planes-section {
  background: linear-gradient(180deg, var(--white), var(--light-gray));
  padding: var(--spacing-xl) 0;
}

.price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.price-card .content {
  flex-grow: 1;
}

.price-card .card-image {
  overflow: hidden;
}

.price-card .card-image img {
  transition: transform 0.3s ease;
  object-fit: cover;
}

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

.price {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price span {
  font-size: 1rem;
  color: var(--dark-gray);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.feature-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.progress-container {
  margin-bottom: 1.5rem;
}

.progress-container label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.recommended {
  position: relative;
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.recommended-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 10;
  border-bottom-left-radius: 10px;
}

/* Innovation Section */
.innovation-section {
  background: linear-gradient(180deg, var(--light-gray), var(--white));
  padding: var(--spacing-xl) 0;
}

.content-block {
  padding: var(--spacing-md);
  height: 100%;
  transition: transform 0.3s ease;
}

.content-block:hover {
  transform: translateY(-5px);
}

.image-card {
  height: 100%;
  overflow: hidden;
}

.image-card .card-image {
  height: 100%;
}

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

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

.animation-block {
  position: relative;
  overflow: hidden;
}

.animation-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: rotate(30deg);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }
  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Resources Section */
.resources-section {
  background: linear-gradient(180deg, var(--white), var(--light-gray));
  padding: var(--spacing-xl) 0;
}

.resource-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.resource-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.resource-card .card-image {
  overflow: hidden;
}

.resource-card img {
  transition: transform 0.5s ease;
  object-fit: cover;
}

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

/* Sustainability Section */
.sustainability-section {
  background: linear-gradient(180deg, var(--light-gray), var(--white));
  padding: var(--spacing-xl) 0;
}

.sustainability-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.sustainability-card .card-content {
  flex-grow: 1;
}

.sustainability-card .card-image {
  overflow: hidden;
}

.sustainability-card img {
  transition: transform 0.5s ease;
  object-fit: cover;
}

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

/* Team Section */
.team-section {
  background: linear-gradient(180deg, var(--white), var(--light-gray));
  padding: var(--spacing-xl) 0;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.team-card .card-image {
  overflow: hidden;
}

.team-card img {
  border-radius: 50%;
  margin: 0 auto;
  transition: transform 0.5s ease;
  object-fit: cover;
  width: 200px;
  height: 200px;
}

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

.team-card .card-content {
  flex-grow: 1;
  padding: var(--spacing-md);
}

.team-card .title {
  margin-bottom: 0.5rem;
}

.team-card .subtitle {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Webinars Section */
.webinars-section {
  background: linear-gradient(180deg, var(--light-gray), var(--white));
  padding: var(--spacing-xl) 0;
}

.webinar-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.webinar-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.webinar-card .card-image {
  overflow: hidden;
}

.webinar-card img {
  transition: transform 0.5s ease;
  object-fit: cover;
}

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

.webinar-date {
  display: inline-block;
  padding: 5px 10px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.webinar-carousel {
  position: relative;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(180deg, var(--white), var(--light-gray));
  padding: var(--spacing-xl) 0;
}

.contact-form-container {
  padding: var(--spacing-lg);
  height: 100%;
}

.contact-form .field {
  margin-bottom: 1.5rem;
}

.contact-info {
  padding: var(--spacing-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-item .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  margin-right: 1rem;
}

.map-container {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-brand {
  margin-bottom: var(--spacing-md);
}

.footer-brand .title {
  color: var(--white);
}

.footer-brand span {
  color: var(--primary-color);
}

.footer-title {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--medium-gray);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
  transform: translateX(5px);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  color: var(--white);
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  text-decoration: none;
  transform: translateY(-2px);
}

.newsletter-form .input {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--medium-gray);
}

/* Success Page */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-gray), var(--white));
}

.success-container {
  max-width: 600px;
  text-align: center;
  padding: var(--spacing-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

/* Privacy & Terms Pages */
.content-page {
  padding-top: 100px;
  min-height: 100vh;
  background: var(--white);
}

.content-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-lg);
}

/* Responsive Adjustments */
@media screen and (max-width: 1023px) {
  .hero-content {
    padding: var(--spacing-md);
  }
  
  .title.is-1 {
    font-size: 2.5rem;
  }
  
  .subtitle.is-4 {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-content {
    padding: var(--spacing-sm);
  }
  
  .title.is-1 {
    font-size: 2rem;
  }
  
  .subtitle.is-4 {
    font-size: 1.1rem;
  }
  
  .contact-info {
    margin-top: var(--spacing-md);
  }
  
  .footer {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Utility Classes */
.has-text-primary {
  color: var(--primary-color) !important;
}

.has-text-secondary {
  color: var(--secondary-color) !important;
}

.has-text-accent {
  color: var(--accent-color) !important;
}

.bg-primary {
  background-color: var(--primary-color);
}

.bg-secondary {
  background-color: var(--secondary-color);
}

.bg-accent {
  background-color: var(--accent-color);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

/* Animation Classes */
.fade-in {
  animation: fadeIn 1s ease;
}

.slide-up {
  animation: slideUp 1s ease;
}

.slide-in-left {
  animation: slideInLeft 1s ease;
}

.slide-in-right {
  animation: slideInRight 1s ease;
}

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

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}