/* Camp Landing Page - Standalone Styles */
/* No dependencies on base.css - fully independent */

:root {
  --pink-300: #f472b6;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --red-300: #fca5a5;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --cyan-300: #06b6d4;
  --cyan-400: #06b6d4;
  --cyan-600: #0891b2;
  --yellow-300: #fcd34d;
  --orange-100: #fed7aa;
  --yellow-200: #fef08a;
  --bg-gradient: linear-gradient(135deg, #fef3e2 0%, #fce4ec 50%, #e8f4f8 100%);
  --white: #ffffff;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  min-height: 100dvh;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-gradient);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  color: var(--gray-800);
}

.display-font {
  font-family: 'Fredoka', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Decorative bubble animations */
@keyframes morph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.bubble {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 8s ease-in-out infinite;
}

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

/* Soft shadow utility */
.soft-shadow {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Main container */
.page-container {
  min-height: 100%;
  width: 100%;
}

/* Decorative background shapes */
.decorative-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.shape-bubble {
  position: fixed;
  border-radius: 50%;
  opacity: 0.3;
}

.shape-bubble-1 {
  top: 80px;
  left: 40px;
  width: 128px;
  height: 128px;
  background: #fcd34d;
  animation: morph 8s ease-in-out infinite;
}

.shape-bubble-2 {
  bottom: 160px;
  right: 80px;
  width: 160px;
  height: 160px;
  background: #f472b6;
  opacity: 0.2;
  animation: morph 8s ease-in-out infinite;
  animation-delay: 2s;
}

.shape-bubble-3 {
  top: 33%;
  right: 40px;
  width: 96px;
  height: 96px;
  background: #06b6d4;
  opacity: 0.25;
  animation: morph 8s ease-in-out infinite;
  animation-delay: 4s;
}

/* Content wrapper - above decorative elements */
.content-wrapper {
  position: relative;
  z-index: 1;
}

header {
  position: relative;
  padding: 24px 16px;
  z-index: 10;
  display: none;
}

@media (min-width: 768px) {
  header {
    padding: 24px 16px;
  }
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
}

.logo-box {
  background: var(--white);
  border-radius: 24px;
  padding: 16px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(3deg);
  flex-shrink: 0;
  overflow: hidden;
}

.logo-badge__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.logo-text h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--gray-800);
  font-family: 'Fredoka', sans-serif;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
  color: var(--pink-500);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Hero section */
.hero-section {
  position: relative;
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 48px 16px;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
}

.card-white {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 48px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-white {
    padding: 48px;
  }
}

/* Decorative circles inside card */
.card-white::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  background: #fef08a;
  border-radius: 50%;
  opacity: 0.4;
  margin-right: -80px;
  margin-top: -80px;
}

.card-white::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 128px;
  height: 128px;
  background: #fca5a5;
  border-radius: 50%;
  opacity: 0.4;
  margin-left: -64px;
  margin-bottom: -64px;
}

.card-content {
  position: relative;
  z-index: 2;
}

/* SPEAK UP Badge in card */
.card-white-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  z-index: 10;
}

.badge-logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.badge-text {
  flex: 1;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-800);
  font-family: 'Fredoka', sans-serif;
}

.badge-text p {
  margin: 0;
}

@media (min-width: 768px) {
  .card-white-badge {
    padding: 20px 24px;
    max-width: 300px;
    gap: 14px;
  }

  .badge-logo {
    width: 56px;
    height: 56px;
  }

  .badge-text {
    font-size: 0.95rem;
  }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, rgba(244, 114, 182, 0.1), rgba(168, 85, 247, 0.1));
  padding: 12px 24px;
  border-radius: 9999px;
  margin-bottom: 24px;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--pink-600);
}

.badge span:first-child {
  font-size: 24px;
}

/* Hide badge on mobile but keep space */
@media (max-width: 767px) {
  .badge {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}

/* Hero title */
.hero-title {
  font-size: 2.25rem;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 24px;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
}

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

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .highlight {
  color: var(--pink-500);
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 42rem;
}

.hero-age-info {
  font-size: 1rem;
  color: var(--pink-600);
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

/* Grant info grid */
.grant-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .grant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grant-card {
  border-radius: 24px;
  padding: 24px;
  border: 4px solid;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 16px;
}

.grant-card-amount {
  background: linear-gradient(to bottom right, rgba(244, 114, 182, 0.05), rgba(244, 114, 182, 0.1));
  border-color: #f472b6;
}

.grant-card-spots {
  background: linear-gradient(to bottom right, rgba(252, 165, 165, 0.05), rgba(252, 165, 165, 0.1));
  border-color: #fca5a5;
}

.grant-card-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.grant-card-content h3 {
  margin: 0 0 8px 0;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pink-600);
}

.grant-card-spots h3 {
  color: var(--red-600);
}

.grant-card-value {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Fredoka', sans-serif;
  color: var(--pink-600);
  margin: 0 0 4px 0;
}

@media (min-width: 768px) {
  .grant-card-value {
    font-size: 2.25rem;
  }
}

.grant-card-spots .grant-card-value {
  color: var(--red-600);
}

.grant-card-note {
  font-size: 0.875rem;
  color: var(--pink-500);
  margin: 0;
}

.grant-card-spots .grant-card-note {
  color: var(--red-500);
}

/* CTA Button */
.cta-button {
  width: 100%;
  padding: 24px 48px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(to right, var(--pink-500), var(--purple-600));
  color: var(--white);
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, var(--pink-600), var(--purple-700));
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button.success {
  background: linear-gradient(to right, #10b981, #059669);
  pointer-events: none;
}

@media (min-width: 768px) {
  .cta-button {
    width: auto;
    font-size: 1.25rem;
    padding: 24px 48px;
  }
}

/* Fixed CTA button for scroll (appears after scrolling past hero) */
.cta-button-fixed {
  display: none;
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 50;
  width: auto;
  padding: 20px 40px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(to right, var(--pink-500), var(--purple-600));
  color: var(--white);
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-button-fixed.visible {
  opacity: 1;
  visibility: visible;
}

.cta-button-fixed:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, var(--pink-600), var(--purple-700));
}

.cta-button-fixed:active {
  transform: scale(0.98);
}

@media (min-width: 768px) {
  .cta-button-fixed {
    display: flex;
    font-size: 1.25rem;
    padding: 24px 48px;
  }
}

@media (max-width: 767px) {
  .cta-button-fixed {
    display: flex;
    font-size: 1rem;
    padding: 16px 32px;
  }
}

.button-emoji {
  font-size: 1.25rem;
}

.button-text {
  display: inline;
  white-space: nowrap;
}

.button-arrow {
  display: inline;
}

/* Trust line */
.trust-line {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin-top: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-line {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .trust-line {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Program info section */
.program-section {
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .program-section {
    padding: 48px 16px;
  }
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
  margin: 0 0 12px 0;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
}

/* Features grid */
.features-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-left: 8px solid;
  transition: transform 0.3s ease;
}

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

.feature-card-1 {
  border-left-color: var(--cyan-400);
}

.feature-card-2 {
  border-left-color: var(--purple-600);
}

.feature-card-3 {
  border-left-color: var(--pink-500);
}

.feature-card-4 {
  border-left-color: var(--yellow-300);
}

.feature-card-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-emoji {
  font-size: 2rem;
  animation: gentle-float 6s ease-in-out infinite;
  flex-shrink: 0;
}

.feature-card-2 .feature-emoji {
  animation-delay: 1s;
}

.feature-card-3 .feature-emoji {
  animation-delay: 2s;
}

.feature-card-4 .feature-emoji {
  animation-delay: 3s;
}

.feature-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
}

.feature-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Course duration box */
.duration-box {
  background: linear-gradient(to right, rgba(168, 85, 247, 0.1), rgba(244, 114, 182, 0.1));
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.duration-box p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin: 0;
}

.duration-box strong {
  color: var(--purple-700);
  font-family: 'Fredoka', sans-serif;
}

/* Pricing section */
.pricing-section {
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 48px 16px;
  }
}

.pricing-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 4px solid;
  position: relative;
  transition: border-color 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--cyan-400);
}

.pricing-card-1 {
  border-color: var(--cyan-400);
}

.pricing-card-1.popular-badge::before {
  content: '⭐ ПОПУЛЯРНИЙ';
  position: absolute;
  top: -16px;
  right: 32px;
  left: auto;
  background: var(--cyan-400);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
}

.pricing-card-2 {
  border-color: var(--purple-600);
  background: linear-gradient(to bottom right, rgba(168, 85, 247, 0.02), rgba(244, 114, 182, 0.02));
}

.pricing-card-2.best-badge::before {
  content: '🌟 НАЙВИГІДНІШИЙ';
  position: absolute;
  top: -16px;
  right: 32px;
  left: auto;
  background: linear-gradient(to right, var(--purple-500), var(--pink-500));
  color: var(--white);
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
}

.pricing-card-2:hover {
  border-color: var(--purple-700);
}

.pricing-card.with-badge {
  margin-top: 24px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
  margin: 0 0 8px 0;
}

.pricing-subtitle {
  color: var(--gray-600);
  margin: 0 0 24px 0;
}

.pricing-details {
  background: linear-gradient(to bottom right, rgba(244, 114, 182, 0.05), rgba(168, 85, 247, 0.05));
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  color: var(--gray-800);
  border: 1px solid rgba(244, 114, 182, 0.2);
}

.pricing-card-2 .pricing-details {
  background: var(--white);
  color: var(--gray-800);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pricing-row:last-child {
  margin-bottom: 0;
}

.pricing-label {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.pricing-card-2 .pricing-row:first-child .pricing-label {
  color: var(--gray-500);
}

.pricing-old-price {
  color: var(--gray-500);
  text-decoration: line-through;
  font-size: 1.125rem;
  font-weight: 700;
}

.pricing-new-price {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Fredoka', sans-serif;
  color: var(--cyan-600);
}

.pricing-card-2 .pricing-new-price {
  color: var(--purple-600);
}

.pricing-savings {
  background: rgba(255, 0, 0, 0.05);
  border: 2px solid rgba(255, 0, 0, 0.2);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.pricing-savings p {
  margin: 0;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--red-600);
  font-size: 1.125rem;
}

.pricing-card-2 .pricing-savings {
  background: rgba(168, 85, 247, 0.05);
  border-color: rgba(168, 85, 247, 0.2);
}

.pricing-card-2 .pricing-savings p {
  color: var(--purple-700);
}

/* Payment info */
.payment-info {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.payment-info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-info-emoji {
  font-size: 1.5rem;
}

.payment-info p {
  margin: 0;
  font-size: 1.125rem;
  color: var(--gray-700);
}

.payment-info strong {
  color: var(--pink-600);
  font-family: 'Fredoka', sans-serif;
}

@media (max-width: 640px) {
  .payment-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* Final CTA section */
.final-cta-section {
  padding: 48px 16px;
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 48px 16px;
  }
}

.final-cta-container {
  max-width: 768px;
  margin: 0 auto;
}

.final-cta-card {
  background: linear-gradient(to right, var(--pink-400), var(--purple-600), var(--pink-400));
  border-radius: 48px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  color: var(--white);
}

.final-cta-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  margin: 0 0 16px 0;
}

@media (min-width: 768px) {
  .final-cta-card h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 640px) {
  .final-cta-card h2 {
    white-space: nowrap;
    font-size: 1.25rem;
  }
}

.final-cta-card .spots-highlight {
  font-size: 1.5rem;
  font-weight: 900;
  font-family: 'Fredoka', sans-serif;
  color: #fcd34d;
}

@media (min-width: 768px) {
  .final-cta-card .spots-highlight {
    font-size: 1.5rem;
  }
}

.final-cta-description {
  margin-bottom: 24px;
  opacity: 0.95;
}

.final-cta-button {
  background: var(--white);
  color: var(--pink-600);
  width: 100%;
  padding: 20px 48px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.final-cta-button:hover {
  transform: scale(1.05);
  background: #fef08a;
}

.final-cta-button:active {
  transform: scale(0.98);
}

.final-cta-button.success {
  background: #10b981;
  color: var(--white);
  pointer-events: none;
}

@media (min-width: 768px) {
  .final-cta-button {
    width: 100%;
  }
}

.final-cta-footer {
  font-size: 0.875rem;
  margin-top: 24px;
  opacity: 0.9;
}

/* Trust section */
.trust-section {
  padding: 32px 16px 48px 16px;
}

@media (min-width: 768px) {
  .trust-section {
    padding: 32px 16px 48px 16px;
  }
}

.trust-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-card {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.trust-emoji {
  font-size: 2rem;
  margin-bottom: 12px;
}

.trust-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
  margin: 0 0 8px 0;
}

.trust-card p {
  margin: 0;
  color: var(--gray-600);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Footer */
footer {
  padding: 24px 16px 48px 16px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .cta-button {
    font-size: 1rem;
    padding: 16px 24px;
  }

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

  .pricing-card {
    padding: 20px;
  }

  .final-cta-card {
    padding: 24px;
  }
}

/* Hidden elements for modal integration */
.modal-trigger {
  display: none;
}

/* Utility classes */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-3 {
  gap: 12px;
}

.items-center {
  align-items: center;
}

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

/* ======================================================================
   Camp Modal Styles
   ====================================================================== */

.camp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  padding: 16px;
}

.camp-modal--active {
  opacity: 1;
  visibility: visible;
}

.camp-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: -1;
}

.camp-modal__content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.3s ease-in-out;
}

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

.camp-modal__header {
  padding: 5px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.camp-modal__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
}

.camp-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--gray-500);
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.camp-modal__close:hover {
  color: var(--gray-800);
}

.camp-modal__close:focus-visible {
  outline: 2px solid var(--pink-500);
  outline-offset: 2px;
}

.camp-modal__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Sections */
.camp-modal__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.camp-modal__section-title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--gray-800);
}

/* Phone Section */
.camp-modal__phone-section {
  background: linear-gradient(to right, rgba(244, 114, 182, 0.05), rgba(168, 85, 247, 0.05));
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(244, 114, 182, 0.2);
}

.camp-modal__phone-label {
  margin: 0 0 12px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink-600);
}

.camp-modal__phone-block {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid var(--pink-300);
}

.camp-modal__phone-text {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  color: var(--pink-600);
  letter-spacing: 0.5px;
}

.camp-modal__copy-btn {
  background: linear-gradient(to right, var(--pink-500), var(--purple-600));
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
  min-height: 44px;
}

.camp-modal__copy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(244, 114, 182, 0.3);
}

.camp-modal__copy-btn:active {
  transform: scale(0.98);
}

.camp-modal__copy-btn.copied {
  background: linear-gradient(to right, #10b981, #059669);
}

.camp-modal__copy-text {
  display: inline;
}

/* Social Links */
.camp-modal__social-title {
  margin: 0 0 12px 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
}

.camp-modal__social-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.camp-modal__social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  text-decoration: none;
  color: var(--gray-800);
  transition: all 0.3s ease;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Fredoka', sans-serif;
}

.camp-modal__social-btn:focus-visible {
  outline: 2px solid var(--pink-500);
  outline-offset: 2px;
}

.camp-modal__social-btn--telegram {
  border-color: #0088cc;
  color: #0088cc;
}

.camp-modal__social-btn--telegram:hover {
  background: rgba(0, 136, 204, 0.1);
  border-color: #0088cc;
  transform: translateY(-4px);
}

.camp-modal__social-btn--instagram {
  border-color: #e4405f;
  color: #e4405f;
}

.camp-modal__social-btn--instagram:hover {
  background: rgba(228, 64, 95, 0.1);
  border-color: #e4405f;
  transform: translateY(-4px);
}

.camp-modal__social-btn--facebook {
  border-color: #1877f2;
  color: #1877f2;
}

.camp-modal__social-btn--facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  border-color: #1877f2;
  transform: translateY(-4px);
}

/* Form Section */
.camp-modal__section--form {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.camp-modal__form-wrapper {
  width: 100%;
}

.camp-modal__form-wrapper .consultation-form__form {
  width: 100%;
}

/* Hide duplicate social media section in modal */
.camp-modal__form-wrapper .consultation-form__messenger-buttons {
  display: none;
}

.camp-modal__form-wrapper .consultation-form__phone-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.camp-modal__form-wrapper .form-group {
  margin-bottom: 12px;
}

.camp-modal__form-wrapper .form-group__input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.camp-modal__form-wrapper .form-group__input:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.1);
  outline: none;
}

.camp-modal__form-wrapper .form-group__input::placeholder {
  color: var(--gray-400);
}

.camp-modal__form-wrapper .button {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Fredoka', sans-serif;
  background: linear-gradient(to right, var(--pink-500), var(--purple-600));
  color: var(--white);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  margin-top: 8px;
}

.camp-modal__form-wrapper .button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(244, 114, 182, 0.3);
}

.camp-modal__form-wrapper .button:active {
  transform: scale(0.98);
}

.camp-modal__form-wrapper .button.success {
  background: linear-gradient(to right, #10b981, #059669);
}

/* Mobile Styles */
@media (max-width: 640px) {
  .camp-modal {
    padding: 12px;
  }

  .camp-modal__content {
    border-radius: 24px;
    max-height: 85vh;
  }

  .camp-modal__header {
    padding: 20px;
    gap: 12px;
  }

  .camp-modal__title {
    font-size: 1.25rem;
  }

  .camp-modal__body {
    padding: 20px;
    gap: 24px;
  }

  .camp-modal__section-title {
    font-size: 1rem;
  }

  .camp-modal__phone-section {
    padding: 12px;
  }

  .camp-modal__phone-block {
    padding: 8px 8px;
    gap: 4px;
    flex-wrap: nowrap;
  }

  .camp-modal__phone-text {
    font-size: 0.8rem;
    white-space: nowrap;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    color: var(--pink-600) !important;
    text-decoration: none !important;
  }

  .camp-modal__copy-btn {
    padding: 6px 10px;
    font-size: 0.65rem;
    gap: 2px;
    flex-shrink: 0;
  }

  .camp-modal__copy-btn svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .camp-modal__copy-text {
    display: inline;
    font-weight: 600;
    white-space: nowrap;
  }

  .camp-modal__social-buttons {
    grid-template-columns: repeat(3, 1fr);
  }

  .camp-modal__social-btn {
    padding: 12px;
    font-size: 0.75rem;
  }

  .camp-modal__social-btn svg {
    width: 24px;
    height: 24px;
  }

  .camp-modal__form-wrapper .form-group__input {
    padding: 12px 14px;
    font-size: 16px;
  }

  .camp-modal__form-wrapper .button {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* Scrollbar for modal content */
.camp-modal__content::-webkit-scrollbar {
  width: 8px;
}

.camp-modal__content::-webkit-scrollbar-track {
  background: transparent;
}

.camp-modal__content::-webkit-scrollbar-thumb {
  background: rgba(244, 114, 182, 0.3);
  border-radius: 4px;
}

.camp-modal__content::-webkit-scrollbar-thumb:hover {
  background: rgba(244, 114, 182, 0.5);
}
