:root {
  --color-sand: #e8dcc4;
  --color-graphite: #4a4a4a;
  --color-charcoal: #2d2d2d;
  --color-neon-teal: #00d9ff;
  --color-amber: #ffb347;
  --color-moss: #8fbc8f;
  --color-white: #ffffff;
  --color-light-gray: #f5f5f5;
  --color-dark: #1a1a1a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-light-gray) 50%, var(--color-graphite) 100%);
}

.navbar {
  background: rgba(45, 45, 45, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-neon-teal), var(--color-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--color-white);
  margin: 0 1rem;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-neon-teal);
}

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

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-charcoal) 50%, var(--color-graphite) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 179, 71, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 35px,
    rgba(0, 217, 255, 0.03) 35px,
    rgba(0, 217, 255, 0.03) 70px
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4rem 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.hero-panel:hover {
  transform: translateY(-5px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-neon-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-light-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-secondary {
  min-height: 60vh;
}

.btn-hero {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--color-neon-teal), var(--color-amber));
  color: var(--color-dark);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: "";
  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;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
  color: var(--color-dark);
  text-decoration: none;
}

.btn-hero:hover::before {
  width: 300px;
  height: 300px;
}

.btn-neon {
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--color-neon-teal), var(--color-moss));
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.btn-neon:hover {
  transform: translateY(-2px) rotate(1deg);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5);
}

.btn-secondary-neon {
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-neon-teal);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-neon:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-2px);
}

.section-light {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light-gray) 100%);
  position: relative;
}

.section-dark {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-charcoal) 0%, var(--color-dark) 100%);
  color: var(--color-white);
}

.section-wave {
  padding: 6rem 0;
  background: var(--color-graphite);
  color: var(--color-white);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 3rem 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-dark .section-title {
  background: linear-gradient(135deg, var(--color-white), var(--color-neon-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon-teal), var(--color-amber));
  box-shadow: 0 0 10px var(--color-neon-teal);
}

.section-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.ritual-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid transparent;
}

.ritual-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.2);
  border-color: var(--color-neon-teal);
}

.ritual-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.ritual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.floating-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.2), transparent);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.floating-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 20px 40px rgba(0, 217, 255, 0.2);
  border-color: var(--color-neon-teal);
}

.floating-card:hover::before {
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
}

.floating-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-neon-teal);
}

.calculator-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.calculator-result {
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid var(--color-neon-teal);
  border-radius: 15px;
  padding: 2rem;
}

.calculator-result h4 {
  color: var(--color-neon-teal);
  margin-bottom: 1rem;
}

.neon-tip {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(143, 188, 143, 0.05));
  border: 2px solid var(--color-neon-teal);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
}

.neon-tip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-neon-teal), var(--color-moss));
  border-radius: 20px 20px 0 0;
}

.neon-tip:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

.neon-tip.focus {
  border-color: var(--color-neon-teal);
}

.neon-tip.vitality {
  border-color: var(--color-amber);
}

.neon-tip.vitality::before {
  background: linear-gradient(90deg, var(--color-amber), var(--color-neon-teal));
}

.neon-tip.recovery {
  border-color: var(--color-moss);
}

.neon-tip.recovery::before {
  background: linear-gradient(90deg, var(--color-moss), var(--color-amber));
}

.tip-badge {
  display: inline-block;
  background: var(--color-neon-teal);
  color: var(--color-dark);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.neon-tip h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.neon-tip ul {
  list-style: none;
  padding: 0;
}

.neon-tip ul li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.neon-tip ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-neon-teal);
  font-weight: 700;
}

.meal-guide {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
}

.guide-panel {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.guide-panel:hover {
  border-color: var(--color-amber);
  box-shadow: 0 10px 30px rgba(255, 179, 71, 0.2);
}

.guide-panel h4 {
  color: var(--color-amber);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.guide-list {
  list-style: none;
  padding: 0;
}

.guide-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.guide-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-moss);
  font-weight: 700;
}

.habits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.habit-item {
  background: var(--color-white);
  border: 2px solid var(--color-light-gray);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.habit-item:hover {
  border-color: var(--color-neon-teal);
  box-shadow: 0 5px 20px rgba(0, 217, 255, 0.2);
  transform: translateX(5px);
}

.habit-checkbox {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-neon-teal), var(--color-moss));
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.expert-quotes {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.quote-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--color-neon-teal);
  border-radius: 15px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: rgba(0, 217, 255, 0.1);
  font-family: Georgia, serif;
}

.quote-card:hover {
  transform: translateX(10px);
  border-left-width: 8px;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.quote-text {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-weight: 700;
  color: var(--color-neon-teal);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: "★★★★★";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-amber);
  font-size: 0.9rem;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-name {
  font-weight: 700;
  color: var(--color-charcoal);
  margin-top: 1rem;
}

.faq-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-light-gray) 0%, var(--color-white) 100%);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
  border-color: var(--color-neon-teal);
}

.faq-card h4 {
  color: var(--color-charcoal);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-panel {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  font-size: 3rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-panel p {
  font-size: 1.3rem;
  color: var(--color-light-gray);
  margin-bottom: 2rem;
}

.footer {
  background: var(--color-dark);
  color: var(--color-light-gray);
  padding: 4rem 0 2rem;
}

.footer-title {
  color: var(--color-neon-teal);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

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

.footer-links a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-neon-teal);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-neon-teal);
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 100%;
}

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

.footer-bottom a {
  color: var(--color-light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--color-neon-teal);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  border-top: 2px solid var(--color-neon-teal);
}

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

.cookie-content p {
  color: var(--color-white);
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: var(--color-neon-teal);
  text-decoration: underline;
}

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

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-sand) 0%, var(--color-light-gray) 100%);
}

.thank-you-panel {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-neon-teal), var(--color-moss));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--color-white);
  font-weight: 700;
}

.contact-info {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h4 {
  color: var(--color-neon-teal);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--color-light-gray);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-neon-teal);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.2);
}

.policy-section {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-light-gray) 100%);
}

.policy-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.policy-date {
  color: var(--color-graphite);
  font-style: italic;
  margin-bottom: 3rem;
}

.policy-content {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--color-charcoal);
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-neon-teal);
}

.policy-content h3 {
  color: var(--color-graphite);
  font-size: 1.4rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.policy-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--color-neon-teal);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--color-moss);
}

.disclaimer-notice {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(143, 188, 143, 0.1));
  border: 2px solid var(--color-neon-teal);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.disclaimer-notice h3 {
  color: var(--color-neon-teal);
  margin-top: 0;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.about-intro .lead {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-graphite);
}

.principle-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.principle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-neon-teal), var(--color-amber));
  transition: width 0.3s ease;
}

.principle-card:hover {
  transform: translateX(10px);
  border-color: var(--color-neon-teal);
}

.principle-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.principle-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(0, 217, 255, 0.3);
  margin-bottom: 1rem;
}

.principle-card h3 {
  color: var(--color-neon-teal);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.educator-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 3rem;
}

.role-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.role-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-amber);
  box-shadow: 0 10px 30px rgba(255, 179, 71, 0.2);
}

.role-card h4 {
  color: var(--color-amber);
  margin-bottom: 1rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.philosophy-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-item h3 {
  color: var(--color-neon-teal);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-panel {
    padding: 2.5rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .cta-panel h2 {
    font-size: 2rem;
  }

  .policy-content {
    padding: 2rem 1.5rem;
  }

  .habits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .neon-tip,
  .floating-card,
  .ritual-card {
    margin-bottom: 1rem;
  }
}
