:root {
  --primary-color: hsl(273, 64%, 43%);
  --secondary-color: hsl(273, 64%, 28%);
  --accent-color: hsl(273, 64%, 68%);
  --soft-color: hsl(273, 64%, 98%);
  --text-color: #333;
  --muted-color: #666;
  --shadow: 0 16px 40px rgba(76, 29, 149, 0.12);
}

* { box-sizing: border-box; }

body {
  font-family: Quicksand, sans-serif;
  color: #333;
  background: #ffffff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 0;
}

a { color: var(--primary-color); text-decoration: none; }
a:hover { color: var(--secondary-color); }
img { max-width: 100%; display: block; }

.navbar {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(76, 29, 149, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.navbar-brand span { font-size: 1.35rem; }
.navbar-brand img { border-radius: 14px; }
.navbar-nav .nav-link {
  font-weight: 600;
  color: #333;
  padding: 0.5rem 0.7rem;
}
.navbar-nav .nav-link:hover { color: var(--primary-color); }
.navbar-toggler { border-color: var(--primary-color); }

.hero-section {
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, hsl(273, 64%, 98%) 0%, #ffffff 62%, hsl(273, 42%, 95%) 100%);
}

.hero-section h1 {
  font-size: 3.2rem;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-section h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 1.35rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-section p {
  color: #444;
  margin-bottom: 1.5rem;
}

.hero-advantages {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.hero-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  color: #333;
  font-weight: 600;
}

.hero-advantages i {
  color: #fff;
  background: var(--primary-color);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  margin-top: 0.1rem;
}

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

.btn-hero-primary,
.btn-hero-secondary,
.offer-cta-btn,
.service-btn,
.btn-submit,
.newsletter-submit,
.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  min-height: 48px;
  transition: 0.25s ease;
}

.btn-hero-primary,
.offer-cta-btn,
.btn-submit,
.newsletter-submit,
.btn-view-all {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  padding: 0.85rem 1.5rem;
  box-shadow: 0 12px 24px rgba(147, 51, 234, 0.22);
}

.btn-hero-secondary,
.service-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 1.2rem;
  background: #ffffff;
}

.btn-hero-primary:hover,
.offer-cta-btn:hover,
.btn-submit:hover,
.newsletter-submit:hover,
.btn-view-all:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(147, 51, 234, 0.28);
}

.btn-hero-secondary:hover,
.service-btn:hover {
  color: #ffffff;
  background: var(--primary-color);
  transform: translateY(-3px);
}

.hero-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #ffffff;
}

.hero-image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

section { scroll-margin-top: 100px; }
.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}
.section-header h2,
.services-section h2,
.blog-preview h2,
.testimonials-section h2,
.contact-section h2,
.section-title {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.section-header p,
.section-subtitle,
.services-intro {
  color: var(--muted-color);
  font-size: 1.08rem;
}

.offer-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.offer-badge {
  display: inline-block;
  color: var(--primary-color);
  background: hsl(273, 64%, 68%, 0.14);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.offer-heading { font-size: 2.4rem; }
.offer-description {
  max-width: 850px;
  margin: 0 auto 2.5rem;
  color: #555;
}

.offer-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 2.5rem;
  border-top: 5px solid var(--primary-color);
}

.deadline-block { text-align: center; margin-bottom: 1.5rem; }
.deadline-label { color: #666; margin-bottom: 0.3rem; }
.deadline-date {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  color: var(--secondary-color);
}
.calendar-icon { color: var(--primary-color); }

.discount-highlight {
  text-align: center;
  padding: 1.4rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #ffffff;
  border-radius: 16px;
  margin: 1.5rem 0;
}
.discount-percentage {
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  margin: 0;
}
.discount-text { margin: 0; color: #ffffff; font-weight: 700; }

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.benefit-icon {
  color: var(--primary-color);
  font-size: 1.35rem;
  flex: 0 0 24px;
}
.benefit-text { margin: 0; color: #444; }
.offer-note { color: #777; font-size: 0.94rem; margin-top: 1rem; }

#newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: #ffffff;
}
.newsletter-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-heading {
  color: #ffffff;
  font-size: 2.35rem;
}
.newsletter-description { color: #f8f9fa; margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  gap: 0.8rem;
}
.newsletter-input-wrapper { flex: 1; }
.newsletter-input {
  width: 100%;
  height: 54px;
  border-radius: 999px;
  border: 0;
  padding: 0 1.3rem;
  outline: none;
}
.newsletter-submit { border: 2px solid #ffffff; min-width: 160px; }
.newsletter-benefits {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.newsletter-benefit { display: inline-flex; gap: 0.5rem; align-items: center; }
.newsletter-benefit-icon {
  background: #ffffff;
  color: var(--primary-color);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
}

.services-section {
  padding: 5rem 0;
  background: #ffffff;
}
.services-section h2,
.services-intro { text-align: center; }
.services-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
}
.service-card {
  height: 100%;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(76, 29, 149, 0.1);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid #f0e8fb;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(76, 29, 149, 0.16);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(273, 64%, 68%, 0.15);
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
}
.service-title { font-size: 1.25rem; }
.service-description { color: #555; font-size: 0.98rem; }
.service-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  margin-top: 1rem;
}
.service-price {
  font-size: 1.45rem;
  color: var(--primary-color);
  font-weight: 700;
}
.service-price-label { color: #777; font-size: 0.88rem; }
.service-btn { white-space: nowrap; min-height: 42px; }

#advantages,
#portfolio,
#statistics,
.blog-preview,
#faq,
.credentials-section,
.testimonials-section,
.contact-section,
.about-section,
#disclaimer,
.blog-page,
.article-header {
  padding: 5rem 0;
}

#advantages,
#statistics,
.blog-preview,
.contact-section,
.blog-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.advantages-grid,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.advantage-card,
.stat-card,
.credential-card,
.testimonial-card,
.contact-card,
.contact-form-wrapper,
.blog-card,
.blog-list-card,
.disclaimer-box,
.policy-content,
.cookie-type-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 34px rgba(76, 29, 149, 0.1);
}
.advantage-card,
.stat-card,
.credential-card,
.testimonial-card {
  padding: 2rem;
  transition: 0.25s ease;
}
.advantage-card:hover,
.stat-card:hover,
.credential-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.portfolio-card:hover {
  transform: translateY(-5px);
}
.advantage-icon,
.stat-icon,
.credential-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.advantage-card p,
.testimonial-card p,
.stat-context { color: #666; }

.testimonials-section {
  background: #ffffff;
}
.testimonials-section h2,
.testimonials-section .section-subtitle { text-align: center; }
.stars { color: #ffc107; letter-spacing: 0; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-author {
  display: flex;
  flex-direction: column;
  color: var(--secondary-color);
}
.testimonial-author span { color: #777; }

.about-section { background: #ffffff; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 1rem;
  align-items: end;
}
.about-img-main,
.about-img-secondary {
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
}
.about-img-main { height: 470px; width: 100%; }
.about-img-secondary { height: 300px; width: 100%; }
.about-facts {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.about-facts li {
  padding: 0.7rem 0 0.7rem 2rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}
.about-facts li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

#portfolio { background: linear-gradient(135deg, hsl(273, 64%, 98%) 0%, #ffffff 100%); }
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: #ffffff;
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-weight: 700;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}
.portfolio-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  height: 100%;
  transition: 0.25s ease;
}
.portfolio-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.portfolio-card-content { padding: 1.5rem; }
.portfolio-card-content h3 { font-size: 1.2rem; }
.portfolio-card-content p { color: #666; margin: 0; }
.modal-content { border: 0; border-radius: 18px; overflow: hidden; }
.modal-header { border-bottom: 1px solid #eee; }
.modal-image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}
.modal-body h4 { color: var(--primary-color); }

.stats-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.stat-card { text-align: center; }
.stat-icon { margin-left: auto; margin-right: auto; }
.stat-number {
  display: block;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
}
.stat-label {
  font-weight: 700;
  color: #222;
}

.contact-section h2,
.contact-section .section-subtitle {
  text-align: center;
}
.contact-section .section-subtitle {
  max-width: 820px;
  margin: 0 auto 3rem;
}
.contact-visual {
  max-width: 980px;
  margin: 0 auto 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 8px solid #ffffff;
}
.contact-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.contact-card,
.contact-form-wrapper {
  padding: 2rem;
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}
.contact-info-content h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.contact-info-content p { margin: 0; color: #555; }
.form-control {
  min-height: 52px;
  border-radius: 12px;
  border: 2px solid #e6e0ef;
}
textarea.form-control { min-height: 150px; }
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem hsl(273, 64%, 43%, 0.14);
}
.btn-submit {
  border: 0;
  width: 100%;
}
.map-wrapper {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.credentials-section { background: #ffffff; }
.credentials-section .section-title { text-align: center; margin-bottom: 2.5rem; }
.credential-card { text-align: center; height: 100%; }
.credential-icon { margin-left: auto; margin-right: auto; }
.credential-title { font-weight: 700; margin: 0; color: var(--secondary-color); }

.blog-card,
.blog-list-card {
  overflow: hidden;
  height: 100%;
  transition: 0.25s ease;
}
.blog-card-image,
.blog-list-card .card-img-top {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.blog-card-content,
.blog-list-card .card-body {
  padding: 1.6rem;
}
.blog-card-meta,
.blog-meta,
.article-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #777;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.blog-card-meta i,
.article-meta i { color: var(--primary-color); }
.blog-card h3,
.blog-list-card h2 { font-size: 1.35rem; }
.blog-card-excerpt,
.blog-list-card p { color: #666; }
.blog-card-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.blog-view-all { text-align: center; margin-top: 2rem; }
.blog-page h1 { text-align: center; margin-bottom: 3rem; }

.article-header {
  background: linear-gradient(135deg, hsl(273, 64%, 98%) 0%, #ffffff 100%);
  border-bottom: 1px solid #eee;
}
.article-header h1 {
  max-width: 920px;
  font-size: 2.7rem;
}
.blog-article {
  max-width: 900px;
  padding-bottom: 5rem;
  font-size: 1.08rem;
}
.article-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin: 2rem 0;
}
.blog-article h2 {
  margin-top: 2rem;
  color: var(--secondary-color);
}
.blog-article h3 { color: var(--primary-color); }
.blog-article blockquote {
  border-left: 5px solid var(--primary-color);
  padding: 1rem 1.2rem;
  background: hsl(273, 64%, 98%);
  color: #555;
  font-style: italic;
  border-radius: 0 12px 12px 0;
}

#faq { background: #ffffff; }
.faq-container {
  max-width: 960px;
  margin: 0 auto;
}
.accordion-item {
  border: 0;
  margin-bottom: 1rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.08);
}
.accordion-button {
  font-weight: 700;
  color: #222;
  padding: 1.2rem 1.4rem;
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.accordion-button:focus { box-shadow: none; }
.accordion-body { color: #555; }

#disclaimer {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.disclaimer-box {
  padding: 2rem;
  border-left: 5px solid var(--primary-color);
}
.disclaimer-box p { margin: 0; color: #555; }

.policy-content {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 3rem;
}
.policy-content h1 { border-bottom: 4px solid var(--primary-color); padding-bottom: 1rem; }
.policy-content h2 {
  margin-top: 2rem;
  color: var(--primary-color);
}
.cookie-type-card {
  padding: 1.5rem;
  margin: 1rem 0;
  border-left: 4px solid var(--accent-color);
}

footer {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff;
  padding: 4rem 0 1.5rem;
}
footer h5,
footer .footer-brand span { color: #ffffff; }
footer p,
footer li { color: #f4eefb; }
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  margin-bottom: 0.65rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
footer a { color: #ffffff; }
footer a:hover { color: var(--accent-color); }
.footer-brand {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.footer-brand img { border-radius: 12px; }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 2rem;
  padding-top: 1.5rem;
}
.footer-bottom p { margin: 0; }

#cookieNotice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
  padding: 1.5rem 0;
  border-top: 4px solid var(--primary-color);
}
#cookieNotice h5 { color: var(--secondary-color); }
#cookieNotice p { color: #555; margin-bottom: 0.8rem; }
#cookieNotice .cookie-category {
  background: #f8f9fa;
  border-left: 3px solid var(--accent-color);
  padding: 0.55rem 0.8rem;
  margin-bottom: 0.45rem;
  border-radius: 8px;
}
#cookieNotice .cookie-category strong {
  display: block;
  color: var(--secondary-color);
}
#cookieNotice .cookie-category span {
  color: #666;
  font-size: 0.9rem;
}
#cookieNotice .btn-accept-all,
#cookieNotice .btn-reject,
#cookieNotice .btn-manage {
  display: block;
  width: 100%;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.65rem 1rem;
}
#cookieNotice .btn-accept-all {
  background: #28a745;
  color: #ffffff;
}
#cookieNotice .btn-reject {
  background: #6c757d;
  color: #ffffff;
}
#cookieNotice .btn-manage {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .hero-section { padding: 4rem 0; }
  .hero-section h1 { font-size: 2.55rem; }
  .hero-image-wrapper { margin-bottom: 2rem; }
  .hero-image-wrapper img { height: 420px; }
  .advantages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-images { margin-bottom: 2rem; }
}

@media (max-width: 768px) {
  .section-header h2,
  .services-section h2,
  .blog-preview h2,
  .testimonials-section h2,
  .contact-section h2,
  .section-title,
  .offer-heading,
  .newsletter-heading {
    font-size: 2rem;
  }
  .hero-section h1 { font-size: 2.2rem; }
  .hero-section h2 { font-size: 1.1rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-submit { width: 100%; }
  .service-footer { flex-direction: column; align-items: flex-start; }
  .service-btn { width: 100%; }
  .advantages-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr; }
  .about-img-main,
  .about-img-secondary,
  .contact-visual img,
  .article-image { height: 300px; }
  .modal-image { height: 250px; }
  #cookieNotice .btn-accept-all,
  #cookieNotice .btn-reject,
  #cookieNotice .btn-manage { margin-bottom: 0.6rem; }
}

@media (max-width: 576px) {
  .hero-section { padding: 3rem 0; }
  .hero-cta-buttons { flex-direction: column; }
  .btn-hero-primary,
  .btn-hero-secondary { width: 100%; }
  .offer-card,
  .contact-card,
  .contact-form-wrapper,
  .policy-content { padding: 1.4rem; }
  .discount-percentage { font-size: 3rem; }
  .blog-card-image,
  .blog-list-card .card-img-top { height: 210px; }
  .article-header h1 { font-size: 2rem; }
  .portfolio-card img { height: 200px; }
}
