/* ============================================
   DYNEXA POINT - SOFT PASTEL DESIGN SYSTEM
   Comprehensive CSS for Classical Music Platform
   ============================================ */

/* CSS RESET & NORMALIZATION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9FB 50%, #F5F9FF 100%);
  min-height: 100vh;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-rose: #FFE5EC;
  --pastel-lavender: #E5DEFF;
  --pastel-mint: #E0F7EF;
  --pastel-peach: #FFE8D9;
  --pastel-blue: #E3F2FD;
  --pastel-pink: #FCE4EC;
  --soft-gray: #F5F5F7;
  --text-dark: #4A4A4A;
  --text-light: #6B6B6B;
  --border-soft: #F0E5F5;
  --white: #FFFFFF;
  --accent-rose: #FFB6C1;
  --accent-lavender: #C8A2F0;
  --accent-mint: #A8E6CF;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

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

/* CONTAINER SYSTEM */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* BUTTON SYSTEM */
.btn-primary,
.btn-secondary,
.btn-link,
.btn-small {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-pink) 100%);
  color: var(--text-dark);
  border-color: var(--accent-rose);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--pastel-rose) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
  color: var(--text-dark);
  border-color: var(--accent-lavender);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--accent-lavender) 0%, var(--pastel-lavender) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 162, 240, 0.3);
}

.btn-link {
  background: transparent;
  color: var(--accent-rose);
  padding: 10px 24px;
  border: 2px solid var(--accent-rose);
  box-shadow: none;
}

.btn-link:hover {
  background: var(--pastel-rose);
  transform: translateY(-1px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 14px;
  background: var(--pastel-mint);
  color: var(--text-dark);
  border-color: var(--accent-mint);
}

.btn-small:hover {
  background: var(--accent-mint);
  transform: translateY(-1px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  border: none;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  color: var(--text-dark);
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 182, 193, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-rose) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--white);
  color: var(--text-dark);
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-peach);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--white);
  transform: translateX(-5px);
  box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
}

/* HEADER STYLES */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 247, 0.95) 100%);
  padding: 20px 0;
  box-shadow: 0 2px 20px rgba(255, 182, 193, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-rose) 0%, var(--accent-lavender) 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-rose);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 230, 236, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(229, 222, 255, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: 0 2px 10px rgba(255, 182, 193, 0.2);
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
  text-align: center;
}

.page-hero.legal {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--accent-lavender);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--text-dark);
}

.update-date {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services-overview,
.testimonials,
.subscription-teaser,
.contact-preview {
  padding: 60px 20px;
  margin-bottom: 0;
}

.value-proposition {
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-mint) 100%);
}

.services-overview {
  background: linear-gradient(135deg, var(--pastel-blue) 0%, var(--white) 100%);
}

.testimonials {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-rose) 100%);
}

.subscription-teaser {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 100%);
  text-align: center;
}

.contact-preview {
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-blue) 100%);
}

/* GRID SYSTEMS USING FLEXBOX */
.benefits-grid,
.services-grid,
.testimonials-grid,
.concerts-grid,
.events-grid,
.packages-grid,
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* CARD STYLES */
.benefit-card,
.service-card,
.testimonial-card,
.concert-card,
.event-card-large,
.package-card,
.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(255, 182, 193, 0.15);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.benefit-card:hover,
.service-card:hover,
.concert-card:hover,
.package-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 182, 193, 0.25);
}

.benefit-card img,
.use-case img,
.benefit-item img,
.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.service-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-rose);
  margin-bottom: 20px;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: var(--white);
  padding: 30px;
  flex: 1 1 calc(50% - 15px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 14px;
}

/* SUBSCRIPTION CONTENT */
.subscription-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.benefits-list {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0 12px 35px;
  position: relative;
  font-size: 16px;
  color: var(--text-dark);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 20px;
}

.price-highlight {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-rose);
  margin: 30px 0;
}

/* CONCERT CARDS */
.concert-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-direction: row;
  flex: 1 1 100%;
}

.concert-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  border-radius: 15px;
  padding: 15px 20px;
  min-width: 80px;
  box-shadow: 0 3px 10px rgba(255, 182, 193, 0.2);
}

.concert-date .day {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.concert-date .month {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.concert-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.concert-info h3 {
  margin-bottom: 8px;
}

.venue {
  font-weight: 600;
  color: var(--accent-lavender);
  margin-bottom: 8px;
}

.composer {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 8px;
}

.performer {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.concert-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}

.concert-footer .price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-rose);
}

.availability {
  padding: 6px 14px;
  background: var(--pastel-mint);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.availability.limited {
  background: var(--pastel-peach);
}

/* FILTER BAR */
.concert-filters {
  padding: 30px 20px;
  background: var(--white);
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--border-soft);
  background: var(--white);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  border-color: var(--accent-rose);
  transform: translateY(-2px);
}

/* EVENT CARDS */
.event-card-large {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

.event-header {
  margin-bottom: 20px;
}

.event-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-lavender) 100%);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-date,
.event-venue {
  font-weight: 600;
  color: var(--text-dark);
}

.event-description {
  color: var(--text-light);
  line-height: 1.7;
}

.event-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.event-pricing .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-rose);
}

/* PACKAGE CARDS */
.package-card {
  position: relative;
}

.package-card.featured {
  border: 3px solid var(--accent-lavender);
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-lavender) 100%);
  color: var(--white);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-features {
  list-style: none;
  margin: 20px 0;
  flex: 1;
}

.package-features li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-dark);
  font-size: 15px;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 18px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-rose);
  margin: 20px 0;
}

/* PRICING GRID */
.pricing-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 300px;
}

.pricing-card .price {
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-rose);
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-light);
}

.features-list {
  list-style: none;
  margin: 20px 0;
  flex: 1;
}

.features-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--text-dark);
  font-size: 15px;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-mint);
  font-weight: 700;
  font-size: 18px;
}

.tier-note {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  margin-top: 30px;
}

/* CONTENT SECTIONS */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
}

.use-cases {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.use-case {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(255, 182, 193, 0.1);
}

/* STATS AND EXPERTISE */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.stat-card {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

/* MISSION GRID */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.mission-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(255, 182, 193, 0.1);
}

.values-list {
  list-style: none;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(255, 182, 193, 0.1);
}

.values-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
}

.values-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--accent-lavender);
  font-size: 14px;
}

/* CONTACT PAGE */
.contact-grid,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 20px;
}

.contact-method,
.inquiry-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(255, 182, 193, 0.1);
}

.contact-method a {
  color: var(--accent-lavender);
  font-weight: 600;
}

.contact-method a:hover {
  color: var(--accent-rose);
}

/* FORM STYLES */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pastel-blue) 100%);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-container {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 182, 193, 0.15);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border-soft);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-lavender);
  box-shadow: 0 0 0 3px rgba(200, 162, 240, 0.1);
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group.checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-group.checkbox label {
  margin: 0;
  font-weight: 400;
  flex: 1;
}

.form-group.checkbox label a {
  color: var(--accent-lavender);
  text-decoration: underline;
}

.form-group.checkbox label a:hover {
  color: var(--accent-rose);
}

button[type="button"] {
  width: 100%;
  margin-top: 10px;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px 60px;
  background: var(--white);
}

.legal-content .content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border-soft);
}

.legal-content .content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content .content-wrapper h3 {
  margin-top: 24px;
  font-size: 20px;
}

.legal-content .content-wrapper ul {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content .content-wrapper ul li {
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-blue) 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, var(--accent-mint) 0%, var(--pastel-mint) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  box-shadow: 0 5px 20px rgba(168, 230, 207, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.confirmation {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.steps-grid,
.actions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.step-card,
.action-card,
.link-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow: 0 3px 15px rgba(255, 182, 193, 0.1);
  text-align: center;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 auto 20px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-legal {
  flex: 1 1 200px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: var(--text-dark);
  font-size: 14px;
}

.footer-nav h4,
.footer-contact h4,
.footer-legal h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.footer-nav a,
.footer-legal a {
  display: block;
  color: var(--text-dark);
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent-rose);
  transform: translateX(5px);
}

.footer-contact p {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

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

.footer-bottom p {
  color: var(--text-dark);
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 230, 236, 0.98) 0%, rgba(229, 222, 255, 0.98) 100%);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-banner.show {
  transform: translateY(0);
}

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

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

.cookie-text p {
  color: var(--text-dark);
  font-size: 14px;
  margin: 0;
}

.cookie-text a {
  color: var(--accent-lavender);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--accent-mint) 0%, var(--pastel-mint) 100%);
  color: var(--text-dark);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(168, 230, 207, 0.3);
}

.cookie-reject {
  background: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border-soft);
}

.cookie-reject:hover {
  background: var(--pastel-peach);
}

.cookie-settings {
  background: transparent;
  color: var(--accent-lavender);
  border: 2px solid var(--accent-lavender);
}

.cookie-settings:hover {
  background: var(--pastel-lavender);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-close {
  width: 35px;
  height: 35px;
  border: none;
  background: var(--pastel-rose);
  color: var(--text-dark);
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--accent-rose);
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: var(--soft-gray);
  border-radius: 12px;
  margin-bottom: 15px;
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.category-header h4 {
  margin: 0;
  font-size: 16px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--border-soft);
  border-radius: 26px;
  cursor: pointer;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: var(--accent-mint);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .use-case,
  .stat-card,
  .contact-method,
  .inquiry-card,
  .step-card,
  .action-card,
  .link-card {
    flex: 1 1 calc(50% - 15px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .package-card,
  .pricing-card,
  .mission-item,
  .use-case,
  .stat-card,
  .contact-method,
  .inquiry-card,
  .step-card,
  .action-card,
  .link-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .concert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .concert-footer {
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-container {
    padding: 25px;
  }
  
  /* Pricing featured scale */
  .package-card.featured {
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .section {
    padding: 30px 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
:focus-visible {
  outline: 3px solid var(--accent-lavender);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* LOADING ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 100px;
}

/* SELECTION STYLING */
::selection {
  background: var(--pastel-lavender);
  color: var(--text-dark);
}

::-moz-selection {
  background: var(--pastel-lavender);
  color: var(--text-dark);
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--soft-gray);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--pastel-rose) 0%, var(--pastel-lavender) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-rose) 0%, var(--accent-lavender) 100%);
}