:root {
  --gradient-primary: linear-gradient(135deg, #f5e6d3 0%, #fef5eb 50%, #e8dfd6 100%);
  --gradient-dynamic: linear-gradient(120deg, #d4c5e8 0%, #b8d4e8 100%);
  --gradient-button: linear-gradient(135deg, #ff6b35 0%, #ff8c61 50%, #ffa07a 100%);
  --gradient-card: linear-gradient(135deg, #fff9f4 0%, #ffe8d6 100%);
  --gradient-footer: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);

  --color-orange: #ff6b35;
  --color-coral: #ff8c61;
  --color-golden: #ffb347;
  --color-graphite: #2d2d2d;
  --color-text: #4a4a4a;
  --color-light: #ffffff;

  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 48px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--gradient-primary);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-graphite);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

a:hover {
  color: var(--color-coral);
}

.btn-gradient {
  background: var(--gradient-button);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  box-shadow: var(--shadow-soft);
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  color: white;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-graphite);
  letter-spacing: -0.5px;
}

.navbar-brand:hover {
  color: var(--color-orange);
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-button);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--gradient-primary);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(212, 197, 232, 0.15) 100%);
  z-index: 1;
}

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

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--color-text);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.bubble-container {
  position: relative;
  padding: 4rem 0;
}

.bubble {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2rem auto;
  width: 300px;
  height: 300px;
}

.bubble:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-hover);
}

.bubble h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-orange);
}

.bubble p {
  font-size: 1rem;
  margin: 0;
}

.card-gradient {
  background: var(--gradient-card);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: none;
  margin-bottom: 2rem;
}

.card-gradient:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-gradient h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--color-graphite) 0%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-dynamic);
  top: 10%;
  left: -10%;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-button);
  bottom: 20%;
  right: -5%;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--gradient-dynamic);
  top: 50%;
  right: 10%;
}

.quote-block {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(212, 197, 232, 0.05) 100%);
  border-left: 5px solid var(--color-orange);
  padding: 2rem 2.5rem;
  margin: 3rem 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

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

.quote-block p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  text-align: right;
  font-weight: 600;
  color: var(--color-orange);
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-orange);
  font-size: 1rem;
}

.faq-bubble-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 0;
}

.faq-bubble {
  background: white;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.faq-bubble:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
  background: var(--gradient-card);
}

.faq-bubble h4 {
  font-size: 1.2rem;
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.faq-bubble p {
  font-size: 0.95rem;
  margin: 0;
}

.footer {
  background: var(--gradient-footer);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  display: block;
  margin-bottom: 0.5rem;
}

.footer a:hover {
  color: white;
  transform: translateX(5px);
}

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

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.form-check {
  display: flex;
  align-items: start;
  margin-bottom: 1.5rem;
}

.form-check input {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(45, 45, 45, 0.98);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

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

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

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

.btn-cookie {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-cookie.accept {
  background: var(--gradient-button);
  color: white;
}

.btn-cookie.settings {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-cookie:hover {
  transform: scale(1.05);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.policy-content {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  max-width: 900px;
  margin: 2rem auto;
  box-shadow: var(--shadow-soft);
}

.policy-content h1 {
  margin-bottom: 2rem;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-orange);
}

.policy-content p,
.policy-content ul {
  margin-bottom: 1.5rem;
}

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

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

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

  h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .bubble {
    width: 250px;
    height: 250px;
    padding: 2rem;
  }

  .faq-bubble {
    width: 220px;
    height: 220px;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .card-gradient {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 2rem;
  }

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

  .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

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

  .bubble {
    width: 200px;
    height: 200px;
    padding: 1.5rem;
  }

  .faq-bubble {
    width: 180px;
    height: 180px;
    padding: 1.5rem;
  }
}
