/* ============================================
   PRISM DEVICE - SOFT PASTEL DESIGN SYSTEM
   Modern Fashion-Tech with Dreamy Aesthetics
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* TYPOGRAPHY - SOFT PASTEL STYLE */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.3;
  color: #5D4E6D;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 600;
  color: #7B6B8A;
}

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

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

/* BUTTONS - SOFT PASTEL STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #E8B4B8 0%, #D4A5C9 100%);
  color: #FFFFFF;
  border-color: #E8B4B8;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4A5C9 0%, #C89BC0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 165, 201, 0.4);
}

.btn-secondary {
  background: #FFFFFF;
  color: #7B6B8A;
  border-color: #E8B4B8;
}

.btn-secondary:hover {
  background: #FFF5F7;
  border-color: #D4A5C9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 180, 184, 0.3);
}

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(232, 180, 184, 0.15);
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #5D4E6D;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8B4B8, #D4A5C9);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #E8B4B8, #D4A5C9);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 180, 184, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 180, 184, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(93, 78, 109, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #7B6B8A;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8B4B8;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #5D4E6D;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(232, 180, 184, 0.15);
  color: #7B6B8A;
  transform: translateX(5px);
}

/* HERO SECTION - SOFT PASTEL */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,245,247,0.9) 0%, rgba(240,230,255,0.9) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232,180,184,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,165,201,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  font-size: 56px;
  color: #5D4E6D;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(232, 180, 184, 0.2);
}

.hero-subheadline {
  font-size: 20px;
  color: #7B6B8A;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  text-align: center;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  border-bottom: 1px solid rgba(232, 180, 184, 0.2);
}

.page-hero h1 {
  font-size: 42px;
  color: #5D4E6D;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: #9B8BA8;
  margin-bottom: 24px;
}

.breadcrumb a:hover {
  color: #E8B4B8;
}

.intro-text {
  font-size: 18px;
  color: #7B6B8A;
  margin-top: 16px;
}

/* VALUE PROPOSITION */
.value-proposition {
  padding: 80px 20px;
  text-align: center;
  background: #FFFFFF;
}

.value-proposition h2 {
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  color: #7B6B8A;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  flex: 1;
  min-width: 200px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.25);
  border-color: #E8B4B8;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #E8B4B8;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #7B6B8A;
}

/* SERVICES SECTIONS */
.services-overview {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
}

.services-overview h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 280px;
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(232, 180, 184, 0.3);
  border-color: #E8B4B8;
}

.service-card h3 {
  font-size: 24px;
  color: #5D4E6D;
  margin-bottom: 12px;
}

.service-card p {
  color: #7B6B8A;
  line-height: 1.7;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E8B4B8;
  font-family: 'Playfair Display', serif;
  margin-top: 16px;
}

.section-cta {
  text-align: center;
  margin-top: 50px;
}

/* SERVICE DETAIL CARDS */
.services-detailed {
  padding: 60px 20px;
}

.service-detail-card {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.2);
  border-color: #E8B4B8;
}

.service-detail-card h2 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

.service-detail-card ul {
  margin: 24px 0;
  padding-left: 24px;
}

.service-detail-card li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #7B6B8A;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B4B8;
  font-weight: 700;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: #E8B4B8;
  font-family: 'Playfair Display', serif;
  margin: 20px 0;
}

.service-duration {
  color: #9B8BA8;
  font-size: 14px;
  margin-bottom: 24px;
}

/* PACKAGES */
.service-packages,
.pricing-packages {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.package-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.package-card.popular {
  border-color: #E8B4B8;
  transform: scale(1.05);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 180, 184, 0.3);
}

.package-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #E8B4B8, #D4A5C9);
  color: #FFFFFF;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.package-card h3 {
  font-size: 24px;
  color: #5D4E6D;
  margin-bottom: 20px;
}

.package-price {
  font-size: 38px;
  font-weight: 700;
  color: #E8B4B8;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.original-price {
  font-size: 20px;
  color: #C5B5D3;
  text-decoration: line-through;
  margin-right: 10px;
}

.savings {
  color: #7B6B8A;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.best-for {
  color: #9B8BA8;
  font-size: 14px;
  font-style: italic;
  margin-top: auto;
  margin-bottom: 24px;
}

/* TECHNOLOGY SECTIONS */
.technology-preview,
.technology-overview {
  padding: 80px 20px;
  background: #FFFFFF;
}

.technology-preview h2,
.technology-overview h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 24px;
}

.technology-preview > .container > p,
.technology-overview > .container > p {
  text-align: center;
  font-size: 18px;
  color: #7B6B8A;
  max-width: 700px;
  margin: 0 auto 40px;
}

.feature-list {
  max-width: 600px;
  margin: 40px auto;
  padding-left: 0;
}

.feature-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: #7B6B8A;
  font-size: 18px;
}

.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: #E8B4B8;
  font-size: 20px;
}

.link-arrow {
  display: inline-block;
  color: #E8B4B8;
  font-weight: 600;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.link-arrow::after {
  content: ' →';
  transition: transform 0.3s ease;
  display: inline-block;
}

.link-arrow:hover {
  color: #D4A5C9;
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  justify-content: center;
}

.tech-feature {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.tech-feature:hover {
  transform: translateY(-5px);
  border-color: #E8B4B8;
  box-shadow: 0 10px 25px rgba(232, 180, 184, 0.2);
}

.tech-feature h3 {
  font-size: 20px;
  color: #5D4E6D;
}

.technology-features {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.feature-detailed {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.feature-detailed h3 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

.feature-detailed ul {
  margin-top: 20px;
  padding-left: 24px;
}

.feature-detailed li {
  list-style: none;
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: #7B6B8A;
}

.feature-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B4B8;
  font-weight: 700;
}

.technology-process {
  padding: 80px 20px;
  background: #FFFFFF;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: #E8B4B8;
}

.process-step h3 {
  color: #5D4E6D;
  margin-bottom: 12px;
}

.processing-time {
  text-align: center;
  font-size: 18px;
  color: #E8B4B8;
  font-weight: 600;
  margin-top: 40px;
}

.data-security {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  text-align: center;
}

.security-features {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.security-features li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #7B6B8A;
  font-size: 16px;
}

.security-features li::before {
  content: '🔒';
  position: absolute;
  left: 0;
}

.certification {
  font-weight: 600;
  color: #E8B4B8;
  margin-top: 32px;
  font-size: 18px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F7 100%);
}

.testimonials h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.3);
  box-shadow: 0 5px 20px rgba(232, 180, 184, 0.15);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.25);
  border-color: #E8B4B8;
}

.testimonial-card > p:first-child {
  font-size: 18px;
  line-height: 1.7;
  color: #4A4A4A;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #7B6B8A;
  font-size: 16px;
  margin-bottom: 0;
}

.testimonials .rating {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #E8B4B8;
  font-family: 'Playfair Display', serif;
}

/* BRAND STORY & CONTENT */
.brand-story,
.mission-vision,
.team-intro,
.location-info {
  padding: 60px 20px;
}

.brand-story {
  background: #FFFFFF;
}

.mission-vision {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.brand-story h2,
.mission-vision h2,
.team-intro h2,
.location-info h2 {
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 32px;
  text-align: center;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  color: #7B6B8A;
  line-height: 1.8;
  margin-bottom: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.content-block {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.content-block h3 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

.values {
  margin-top: 60px;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.values h3 {
  color: #5D4E6D;
  margin-bottom: 24px;
  text-align: center;
}

.values ul {
  max-width: 700px;
  margin: 0 auto;
}

.values li {
  padding: 16px 0;
  color: #7B6B8A;
  font-size: 16px;
  line-height: 1.7;
}

.team-intro {
  background: #FFFFFF;
}

.team-intro > .container > p {
  text-align: center;
  font-size: 18px;
  color: #7B6B8A;
  margin-bottom: 40px;
}

.team-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.team-category {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.team-category:hover {
  transform: translateY(-5px);
  border-color: #E8B4B8;
}

.team-category h3 {
  color: #5D4E6D;
  margin-bottom: 12px;
}

.location-info {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  text-align: center;
}

.location-details {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.location-details .address {
  font-size: 20px;
  font-weight: 600;
  color: #5D4E6D;
  margin-bottom: 24px;
}

.location-details p {
  color: #7B6B8A;
  margin-bottom: 16px;
}

.location-details .note {
  font-size: 14px;
  color: #9B8BA8;
  font-style: italic;
  margin-top: 24px;
}

.directions {
  margin-top: 32px;
  text-align: left;
}

.directions h3 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

/* PRICING PAGES */
.pricing-individual,
.pricing-subscriptions {
  padding: 80px 20px;
}

.pricing-individual {
  background: #FFFFFF;
}

.pricing-subscriptions {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.pricing-individual h2,
.pricing-subscriptions h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 60px;
}

.pricing-grid,
.subscription-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.pricing-card,
.subscription-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular,
.subscription-card.popular {
  border-color: #E8B4B8;
  transform: scale(1.02);
}

.pricing-card:hover,
.subscription-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 180, 184, 0.3);
}

.pricing-card h3,
.subscription-card h3 {
  font-size: 24px;
  color: #5D4E6D;
  margin-bottom: 20px;
}

.price {
  font-size: 42px;
  font-weight: 700;
  color: #E8B4B8;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.unit {
  font-size: 16px;
  color: #9B8BA8;
  font-weight: 400;
}

.pricing-card ul,
.subscription-card ul {
  margin: 24px 0;
  flex-grow: 1;
}

.pricing-card li,
.subscription-card li {
  list-style: none;
  padding: 10px 0 10px 28px;
  position: relative;
  color: #7B6B8A;
}

.pricing-card li::before,
.subscription-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8B4B8;
  font-weight: 700;
}

.billing,
.trial {
  font-size: 14px;
  color: #9B8BA8;
  margin-bottom: 20px;
}

.guarantee {
  padding: 80px 20px;
  background: #FFFFFF;
  text-align: center;
}

.guarantee h2 {
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 24px;
}

.guarantee > .container > p {
  font-size: 18px;
  color: #7B6B8A;
  max-width: 700px;
  margin: 0 auto 32px;
}

.guarantee-period {
  font-size: 24px;
  font-weight: 700;
  color: #E8B4B8;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.trust-badge {
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 12px;
  border: 2px solid rgba(232, 180, 184, 0.3);
  font-weight: 600;
  color: #7B6B8A;
  font-size: 14px;
}

/* CONTACT PAGE */
.contact-options {
  padding: 60px 20px;
  background: #FFFFFF;
}

.contact-options h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 60px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-method {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: #E8B4B8;
}

.contact-method h3 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.contact-form-section h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  font-size: 18px;
  color: #7B6B8A;
  margin-bottom: 40px;
}

.form-notice {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.form-notice strong {
  color: #5D4E6D;
}

.form-notice ul {
  margin-top: 16px;
  padding-left: 24px;
}

.form-notice li {
  color: #7B6B8A;
  margin-bottom: 8px;
}

.location-details {
  padding: 60px 20px;
  background: #FFFFFF;
}

.opening-hours {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
  text-align: center;
}

.hours-list {
  max-width: 500px;
  margin: 40px auto;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.hours-list p {
  color: #7B6B8A;
  margin-bottom: 12px;
  font-size: 16px;
}

.team-contact {
  padding: 80px 20px;
  background: #FFFFFF;
}

.team-contact h2 {
  text-align: center;
  font-size: 38px;
  color: #5D4E6D;
  margin-bottom: 24px;
}

.team-contact > .container > p {
  text-align: center;
  font-size: 18px;
  color: #7B6B8A;
  margin-bottom: 60px;
}

.contact-team {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.team-contact-item {
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  transition: all 0.3s ease;
}

.team-contact-item:hover {
  transform: translateY(-5px);
  border-color: #E8B4B8;
}

.team-contact-item h3 {
  color: #5D4E6D;
  margin-bottom: 12px;
}

.team-contact-item p {
  color: #E8B4B8;
  font-weight: 600;
}

/* LEGAL PAGES */
.page-hero.legal {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.last-updated {
  font-size: 14px;
  color: #9B8BA8;
  margin-bottom: 16px;
}

.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255,245,247,0.3) 0%, rgba(240,230,255,0.3) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.legal-section h2 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section li {
  color: #7B6B8A;
  line-height: 1.8;
}

.legal-section a {
  color: #E8B4B8;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #D4A5C9;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #E8B4B8, #D4A5C9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

.thank-you-hero h1 {
  font-size: 48px;
  color: #5D4E6D;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 22px;
  color: #7B6B8A;
  margin-bottom: 24px;
}

.next-steps,
.while-you-wait,
.alternative-contact,
.social-proof {
  padding: 60px 20px;
}

.next-steps {
  background: #FFFFFF;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: #E8B4B8;
}

.step h3 {
  color: #5D4E6D;
  margin-bottom: 12px;
}

.while-you-wait {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.suggestion-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  padding: 40px 32px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 2px solid rgba(232, 180, 184, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(232, 180, 184, 0.25);
}

.suggestion-card h3 {
  color: #5D4E6D;
  margin-bottom: 16px;
}

.alternative-contact {
  background: #FFFFFF;
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255,245,247,0.6) 0%, rgba(240,230,255,0.6) 100%);
  border-radius: 16px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

.social-proof {
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6FF 100%);
}

/* CTA SECTIONS */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #E8B4B8 0%, #D4A5C9 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 42px;
  color: #FFFFFF;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #E8B4B8;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-3px);
}

.cta-section .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.promotion {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-top: 24px;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #5D4E6D 0%, #4A3D5A 100%);
  color: rgba(255,255,255,0.9);
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 180, 184, 0.2);
}

.footer-brand {
  flex: 1 1 300px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer-links {
  flex: 2 1 600px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  flex: 1 1 180px;
}

.footer-column h4 {
  color: #E8B4B8;
  font-size: 16px;
  margin-bottom: 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
}

.footer-column a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #E8B4B8;
  transform: translateX(3px);
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF5F7 100%);
  padding: 24px 20px;
  box-shadow: 0 -5px 30px rgba(93, 78, 109, 0.15);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid rgba(232, 180, 184, 0.3);
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1 1 400px;
  color: #7B6B8A;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner-text strong {
  color: #5D4E6D;
}

.cookie-banner-text a {
  color: #E8B4B8;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #E8B4B8, #D4A5C9);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(232, 180, 184, 0.4);
}

.cookie-btn-reject {
  background: #FFFFFF;
  color: #7B6B8A;
  border-color: rgba(232, 180, 184, 0.5);
}

.cookie-btn-reject:hover {
  border-color: #E8B4B8;
  color: #5D4E6D;
}

.cookie-btn-settings {
  background: transparent;
  color: #7B6B8A;
  border-color: transparent;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #E8B4B8;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(93, 78, 109, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(93, 78, 109, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #7B6B8A;
  font-size: 28px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #E8B4B8;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #5D4E6D;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,245,247,0.5) 0%, rgba(240,230,255,0.5) 100%);
  border-radius: 12px;
  border: 2px solid rgba(232, 180, 184, 0.2);
}

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

.cookie-category h3 {
  color: #5D4E6D;
  margin-bottom: 0;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #C5B5D3;
  border-radius: 50px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #E8B4B8, #D4A5C9);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #7B6B8A;
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subheadline { font-size: 18px; }
  
  .page-hero h1 { font-size: 32px; }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .stats-grid,
  .services-grid,
  .testimonials-grid,
  .packages-grid,
  .pricing-grid,
  .subscription-grid {
    flex-direction: column;
  }
  
  .stat-card,
  .service-card,
  .testimonial-card,
  .package-card,
  .pricing-card,
  .subscription-card {
    flex: 1 1 100%;
  }
  
  .package-card.popular {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 30px 20px;
  }
  
  .section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .hero h1 { font-size: 28px; }
  .hero-subheadline { font-size: 16px; }
  
  .stat-number { font-size: 32px; }
  .price { font-size: 32px; }
  .package-price { font-size: 32px; }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

.hero-content,
.stat-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #E8B4B8;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #E8B4B8;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
}