@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary-rose: #D4657C;
  --primary-rose-light: #E8899D;
  --primary-rose-dark: #B84863;
  --secondary-blush: #F5E6E8;
  --tertiary-gold: #C9A875;
  --tertiary-gold-light: #E0C599;
  --accent-mauve: #9B7B8F;
  --accent-lavender: #C8B5D0;
  --neutral-cream: #FAF7F5;
  --neutral-ivory: #FFF8F3;
  --neutral-sand: #E8DDD4;
  --neutral-charcoal: #4A4545;
  --neutral-soft-black: #2C2828;
  --success-sage: #A8C5A8;
  --error-berry: #C85A70;
  --gradient-rose: linear-gradient(135deg, #D4657C 0%, #E8899D 100%);
  --gradient-sunset: linear-gradient(135deg, #F5E6E8 0%, #E8DDD4 50%, #C9A875 100%);
  --gradient-lavender: linear-gradient(135deg, #C8B5D0 0%, #E8899D 100%);
  --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  --shadow-soft: 0 4px 20px rgba(212, 101, 124, 0.08);
  --shadow-medium: 0 8px 30px rgba(212, 101, 124, 0.12);
  --shadow-strong: 0 15px 45px rgba(212, 101, 124, 0.18);
  --shadow-glow: 0 0 25px rgba(212, 101, 124, 0.25);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-charcoal);
  background-color: var(--neutral-ivory);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-soft-black);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 245, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(212, 101, 124, 0.08);
}

header.scrolled {
  background: rgba(250, 247, 245, 0.98);
  box-shadow: var(--shadow-medium);
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-rose);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  font-size: 2rem;
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: var(--neutral-charcoal);
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-rose);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: var(--primary-rose);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-rose);
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition-smooth);
  display: none;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  color: var(--primary-rose-dark);
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 300px;
    background: var(--neutral-ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.5rem;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::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;
  z-index: -1;
}

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

.btn-primary {
  background: var(--gradient-rose);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: var(--primary-rose);
  border: 2px solid var(--primary-rose);
}

.btn-secondary:hover {
  background: var(--primary-rose);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-tertiary {
  background: var(--tertiary-gold);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-tertiary:hover {
  background: var(--tertiary-gold-light);
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--neutral-charcoal);
  border: 2px solid var(--neutral-sand);
}

.btn-outline:hover {
  background: var(--neutral-sand);
  border-color: var(--primary-rose);
  color: var(--primary-rose);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--neutral-soft-black) 0%, var(--neutral-charcoal) 100%);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

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

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

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

.cookie-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.cookie-text a {
  color: var(--primary-rose-light);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--primary-rose);
}

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

.cookie-buttons .btn {
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}

form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--neutral-soft-black);
  letter-spacing: 0.02em;
}

.form-label span.required {
  color: var(--primary-rose);
  margin-left: 0.25rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-charcoal);
  background: white;
  border: 2px solid var(--neutral-sand);
  border-radius: 12px;
  transition: var(--transition-smooth);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-rose);
  box-shadow: 0 0 0 4px rgba(212, 101, 124, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--accent-mauve);
  opacity: 0.7;
}

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

.form-checkbox-group,
.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-checkbox-label,
.form-radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  padding: 0.5rem;
  border-radius: 8px;
}

.form-checkbox-label:hover,
.form-radio-label:hover {
  background: var(--secondary-blush);
}

.form-checkbox,
.form-radio {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-rose);
}

.form-error {
  color: var(--error-berry);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-success {
  color: var(--success-sage);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-helper {
  font-size: 0.875rem;
  color: var(--accent-mauve);
  margin-top: 0.5rem;
  font-style: italic;
}

.form-input-icon {
  position: relative;
}

.form-input-icon i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-mauve);
  font-size: 1.25rem;
}

.form-input-icon .form-input {
  padding-left: 3rem;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid var(--neutral-sand);
}

.card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
  border-color: var(--primary-rose-light);
}

.card-image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-rose);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-soft);
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--neutral-soft-black);
}

.card-text {
  color: var(--neutral-charcoal);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-sand);
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.accordion {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1rem;
  border: 1px solid var(--neutral-sand);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-soft-black);
}

.accordion-header:hover {
  background: var(--secondary-blush);
}

.accordion-header.active {
  background: var(--secondary-blush);
  color: var(--primary-rose);
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--primary-rose);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 2rem;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 1.5rem 2rem;
}

.accordion-body {
  color: var(--neutral-charcoal);
  line-height: 1.7;
}

.loading-spinner {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 4px solid var(--secondary-blush);
  border-top-color: var(--primary-rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.loading-spinner-lg {
  width: 80px;
  height: 80px;
  border-width: 6px;
}

.loading-spinner-sm {
  width: 30px;
  height: 30px;
  border-width: 3px;
}

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

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 245, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.loading-text {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary-rose);
  text-align: center;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-sand);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-rose);
  border-radius: 10px;
  border: 2px solid var(--neutral-sand);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-rose-dark);
}

.section {
  padding: 5rem 0;
  position: relative;
}

.section-light {
  background: var(--neutral-ivory);
}

.section-dark {
  background: var(--neutral-cream);
}

.section-gradient {
  background: var(--gradient-sunset);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary-rose);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gradient-rose);
}

.section-title {
  margin-bottom: 1.5rem;
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.1rem;
  color: var(--neutral-charcoal);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-sunset);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(212, 101, 124, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(5deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(-5deg);
  }
}

.hero-content {
  text-align: center;
  z-index: 1;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

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

.hero-title {
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--neutral-charcoal);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.feature-box {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: white;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.feature-box:hover {
  border-color: var(--primary-rose-light);
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-rose);
  border-radius: 50%;
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-medium);
  transition: var(--transition-bounce);
}

.feature-box:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--neutral-soft-black);
}

.feature-text {
  color: var(--neutral-charcoal);
  line-height: 1.7;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid var(--neutral-sand);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 4rem;
  color: var(--primary-rose-light);
  opacity: 0.3;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--neutral-charcoal);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-rose-light);
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--neutral-soft-black);
}

.testimonial-info p {
  color: var(--accent-mauve);
  font-size: 0.9rem;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonial-rating i {
  color: var(--tertiary-gold);
  font-size: 1rem;
}

.cta-section {
  background: var(--gradient-rose);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  border-radius: 30px;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.cta-title {
  color: white;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-secondary {
  background: white;
  color: var(--primary-rose);
  border: none;
}

.cta-section .btn-secondary:hover {
  background: var(--neutral-ivory);
  transform: translateY(-3px);
}

.pricing-card {
  background: white;
  border-radius: 25px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--neutral-sand);
  transition: var(--transition-smooth);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
  border-color: var(--primary-rose);
}

.pricing-card.featured {
  border-color: var(--primary-rose);
  box-shadow: var(--shadow-medium);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-rose);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--shadow-medium);
}

.pricing-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--neutral-soft-black);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-rose);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-price span {
  font-size: 1.25rem;
  color: var(--neutral-charcoal);
  font-weight: 400;
}

.pricing-period {
  color: var(--accent-mauve);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--neutral-charcoal);
}

.pricing-features li i {
  color: var(--primary-rose);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}

.pricing-features li.disabled {
  opacity: 0.4;
}

.pricing-features li.disabled i {
  color: var(--neutral-charcoal);
}

footer {
  background: linear-gradient(135deg, var(--neutral-soft-black) 0%, var(--neutral-charcoal) 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--primary-rose-light);
  padding-left: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.footer-social a:hover {
  background: var(--gradient-rose);
  border-color: white;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--primary-rose-light);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--gradient-rose);
  color: white;
}

.badge-secondary {
  background: var(--secondary-blush);
  color: var(--primary-rose);
}

.badge-success {
  background: var(--success-sage);
  color: white;
}

.badge-gold {
  background: var(--tertiary-gold);
  color: white;
}

.divider {
  height: 2px;
  background: var(--gradient-rose);
  margin: 3rem 0;
  border-radius: 2px;
}

.divider-light {
  background: var(--neutral-sand);
}

.text-gradient {
  background: var(--gradient-rose);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-shimmer);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  to {
    left: 100%;
  }
}

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

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

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

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

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

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

.scale-in {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 40, 40, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.modal {
  background: white;
  border-radius: 25px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
  animation: scaleIn 0.3s ease-out;
}

.modal-header {
  padding: 2rem 2.5rem;
  border-bottom: 2px solid var(--neutral-sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.75rem;
  color: var(--neutral-soft-black);
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--neutral-charcoal);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--secondary-blush);
  color: var(--primary-rose);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.5rem;
}

.modal-footer {
  padding: 2rem 2.5rem;
  border-top: 2px solid var(--neutral-sand);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  background: var(--neutral-soft-black);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-medium);
}

.tooltip-text::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--neutral-soft-black);
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.alert {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid;
  animation: slideInLeft 0.4s ease-out;
}

.alert i {
  font-size: 1.5rem;
  margin-top: 0.15rem;
}

.alert-success {
  background: rgba(168, 197, 168, 0.15);
  border-color: var(--success-sage);
  color: var(--neutral-soft-black);
}

.alert-success i {
  color: var(--success-sage);
}

.alert-error {
  background: rgba(200, 90, 112, 0.15);
  border-color: var(--error-berry);
  color: var(--neutral-soft-black);
}

.alert-error i {
  color: var(--error-berry);
}

.alert-info {
  background: rgba(212, 101, 124, 0.15);
  border-color: var(--primary-rose);
  color: var(--neutral-soft-black);
}

.alert-info i {
  color: var(--primary-rose);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--neutral-sand);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-rose);
  border-radius: 50px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-shimmer);
  animation: shimmer 2s infinite;
}

@media (max-width: 1024px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 70vh;
  }

  .cta-section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .header-content {
    padding: 1rem 0;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modal {
    margin: 1rem;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-subtitle::before,
  .section-subtitle::after {
    width: 20px;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .pricing-price {
    font-size: 2.5rem;
  }
}

.image-hover-zoom {
  overflow: hidden;
  border-radius: 15px;
}

.image-hover-zoom img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-hover-zoom:hover img {
  transform: scale(1.1);
}

.glass-effect {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.text-shadow-soft {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.glow-effect {
  box-shadow: 0 0 20px rgba(212, 101, 124, 0.3);
  transition: var(--transition-smooth);
}

.glow-effect:hover {
  box-shadow: 0 0 35px rgba(212, 101, 124, 0.5);
}

.floating-animation {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}