.review-item {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.review-item-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.review-item-row>div {
  flex: 1 1 18%;
  min-width: 180px;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  border-radius: 10px;
}

.review-item-row>div:hover {
  background: rgba(108, 92, 231, 0.05);
  transform: scale(1.02);
}

.review-col-logo img {
  max-width: 100%;
  height: auto;
  margin: 0 auto 0.75rem;
  display: block;
}

.review-col-rating ul {
  text-align: center;
  padding: 0;
  margin: 0;
}

.review-col-rating li {
  display: inline-block;
  font-size: 2 rem;
  color: #fdcb6e;
  transition: transform 0.2s;
}

.review-col-rating li:hover {
  transform: scale(1.15);
}

.review-col-rating .btn-read-more {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: #6c5ce7;
  display: inline-block;
}

.review-col-bonus h5 {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  color: #2d3436;
  text-align: center;
  margin: 0.5rem 0;
}

.review-col-features ul {
  list-style: none;
  padding-left: 0;
  font-size: 0.95rem;
  color: #2d3436;
  margin: 0.5rem 0;
}

.review-col-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.review-col-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fde429;
  font-weight: bold;
  font-size: 1rem;
}

.review-col-btn {
  text-align: center;
  margin-top: 1rem;
}

.review-btn {
  display: inline-block;
  background: linear-gradient(135deg, #756df4, #f46d6d);
  color: #fff !important;
  font-weight: bold;
  padding: 0.65rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.4s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.review-btn:hover {
  background: linear-gradient(135deg, #756df4, #f46d6d);
  transform: scale(1.05);
}

.review-col-btn p {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  color: #888;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .review-item-row>div {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .review-item-row>div {
    flex: 1 1 100%;
  }

  .review-item {
    padding: 1.5rem;
  }
}

.why-choose-section {
  background-color: #f9f9ff;
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.why-choose-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-choose-section .section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.why-choose-section .section-header .highlight {
  color: #766df4;
}

.why-choose-section .section-header p {
  font-size: 17px;
  color: #333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  font-size: 36px;
  color: #766df4;
  margin-bottom: 20px;
}

.feature-box h4 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-box p {
  font-size: 15px;
  color: #444;
}

.info-highlight-section {
  background-color: #ffffff;
  padding: 80px 0;
  color: #052241;
  font-family: 'Segoe UI', sans-serif;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 32px;
  color: #766df4;
  min-width: 40px;
  margin-top: 4px;
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 15px;
  color: #333;
  margin: 0;
}

.highlight-box {
  background-color: #f4f4ff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.highlight-box h2 {
  font-size: 28px;
  color: #052241;
  margin-bottom: 20px;
}

.highlight-box p {
  font-size: 16px;
  color: #444;
  margin-bottom: 30px;
}

.btn-explore {
  display: inline-block;
  background-color: #766df4;
  color: #fff;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-explore:hover {
  background-color: #594fd8;
}

.sobre-nos-grid {
  background: #f9f9ff;
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #766df4;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
}

.grid-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.grid-item {
  background: #fff;
  border: 1px solid #e0e0f0;
  border-radius: 12px;
  padding: 30px 25px;
  width: 100%;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.grid-item i {
  font-size: 38px;
  color: #766df4;
  margin-bottom: 20px;
}

.grid-item h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.grid-item p {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
}

.sobre-nos-destaque {
  padding: 80px 0;
  background-color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.col-left {
  flex: 1 1 55%;
}

.col-right {
  flex: 1 1 40%;
}

.sobre-nos-destaque h2 {
  font-size: 32px;
  font-weight: 800;
  color: #766df4;
  margin-bottom: 20px;
}

.sobre-nos-destaque p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.sobre-nos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sobre-nos-lista li {
  font-size: 16px;
  margin-bottom: 18px;
  padding-left: 32px;
  position: relative;
  color: #2d5075;
  font-weight: 600;
}

.sobre-nos-lista li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #766df4;
  font-size: 20px;
}

.responsible-gaming-section {
  background: #f9f9ff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.responsible-gaming-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.responsible-gaming-section .header {
  text-align: center;
  margin-bottom: 50px;
}

.responsible-gaming-section h2 {
  font-size: 36px;
  color: #766df4;
  font-weight: 800;
  margin-bottom: 16px;
}

.responsible-gaming-section .header p {
  font-size: 17px;
  color: #2d5075;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.responsible-gaming-section .content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.responsible-gaming-section .box {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  flex: 1 1 calc(50% - 30px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.responsible-gaming-section .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.responsible-gaming-section .box i {
  font-size: 32px;
  color: #766df4;
  margin-bottom: 16px;
  display: block;
}

.responsible-gaming-section .box h3 {
  font-size: 20px;
  color: #052241;
  margin-bottom: 12px;
}

.responsible-gaming-section .box p {
  font-size: 15px;
  color: #2d5075;
  line-height: 1.6;
}

.responsible-gaming-section .footer-note {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  color: #444;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.responsible-gaming-section .footer-note a {
  color: #766df4;
  font-weight: 600;
  text-decoration: none;
}

.responsible-steps {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #052241;
}

.responsible-steps .container {
  max-width: 1100px;
  margin: 0 auto;
}

.responsible-steps .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.responsible-steps h2 {
  font-size: 34px;
  color: #766df4;
  font-weight: 800;
}

.responsible-steps .section-header p {
  font-size: 17px;
  color: #2d5075;
  max-width: 750px;
  margin: 12px auto 0 auto;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.step {
  background-color: #f9f9ff;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease-in-out;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.step-number {
  background-color: #766df4;
  color: white;
  font-size: 20px;
  font-weight: bold;
  width: 48px;
  height: 48px;
  line-height: 48px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.step h3 {
  font-size: 18px;
  color: #052241;
  margin-bottom: 12px;
  font-weight: 700;
}

.step p {
  font-size: 15px;
  color: #2d5075;
  line-height: 1.6;
}

.terms-section {
  background: #ffffff;
  padding: 80px 20px;
  color: #052241;
  font-family: 'Segoe UI', sans-serif;
}

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: #766df4;
}

.section-title p {
  font-size: 16px;
  color: #2d5075;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.accordion-button {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #052241;
  width: 100%;
  text-align: left;
  padding: 14px 0;
  cursor: pointer;
  transition: 0.3s ease;
}

.accordion-button:hover {
  color: #766df4;
}

.accordion-body {
  padding: 0 0 14px 0;
  color: #2d5075;
  font-size: 15px;
  line-height: 1.6;
  display: none;
}

.accordion-collapse.show .accordion-body {
  display: block;
}

.privacy-policy-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
}

.privacy-policy-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  color: #766df4;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.privacy-block {
  margin-bottom: 30px;
}

.privacy-block h3 {
  color: #052241;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.privacy-block h3::before {
  content: "🔒";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.privacy-block p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 50px;
}

.cookies-policy-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
}

.cookies-policy-section .container {
  max-width: 960px;
  margin: 0 auto;
}

.section-title {
  color: #766df4;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.cookie-block {
  margin-bottom: 30px;
}

.cookie-block h3 {
  color: #052241;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.cookie-block h3::before {
  content: "🍪";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.cookie-block p,
.cookie-block ul {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.cookie-block ul {
  list-style: none;
  padding-left: 0;
}

.cookie-block ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.cookie-block ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #766df4;
  font-weight: bold;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 50px;
}

.terms-section {
  background-color: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
}

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

.section-title {
  color: #766df4;
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.terms-block {
  margin-bottom: 30px;
}

.terms-block h3 {
  color: #052241;
  font-size: 20px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 24px;
}

.terms-block h3::before {
  content: "📄";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.terms-block p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.last-updated {
  text-align: center;
  font-size: 14px;
  color: #888;
  margin-top: 50px;
}

/* Paleta */
:root {
  --jda-bg: #f6f4ee;
  /* background */
  --jda-accent: #cb914f;
  /* botões / detalhes */
  --jda-head: #756df4;
  /* заголовки */
  --jda-text: #2b2b2b;
  /* основной текст */
  --jda-muted: #6b6b6b;
  /* вторичный текст */
}

.jda-about {
  background: var(--jda-bg);
  padding: 72px 20px;
}

.jda-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jda-content {
  display: grid;
  gap: 24px;
}

.jda-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--jda-accent);
  font-weight: 700;
}

.jda-title {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  color: var(--jda-head);
  font-weight: 800;
}

.jda-desc {
  margin: 0;
  max-width: 880px;
  color: var(--jda-text);
  font-size: 18px;
  line-height: 1.6;
}

/* Плюсы */
.jda-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.jda-benefit {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 18px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.jda-benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.jda-benefit h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--jda-head);
  display: flex;
  align-items: center;
  gap: 8px;
}

.jda-benefit h3::before {
  content: "✓";
  font-weight: 900;
  line-height: 1;
  border: 2px solid var(--jda-accent);
  color: var(--jda-accent);
  border-radius: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: 0 0 26px;
}

.jda-benefit p {
  margin: 0;
  color: var(--jda-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* CTA */
.jda-cta {
  display: grid;
  gap: 10px;
  align-items: center;
  grid-template-columns: auto 1fr;
}

.jda-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--jda-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: filter .2s ease, transform .05s ease-in-out;
  border: 0;
}

.jda-button:hover {
  filter: brightness(0.95);
}

.jda-button:active {
  transform: translateY(1px);
}

.jda-note {
  margin: 0;
  color: var(--jda-muted);
  font-size: 14px;
}

/* Адаптив */
@media (max-width: 1024px) {
  .jda-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .jda-benefits {
    grid-template-columns: 1fr;
  }

  .jda-cta {
    grid-template-columns: 1fr;
  }

  .jda-button {
    width: 100%;
    text-align: center;
  }
}

.jda-faq {
  background: #f6f4ee;
  padding: 80px 20px;
}

.jda-faq .jda-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #cb914f;
  font-weight: 700;
  margin-bottom: 6px;
}

.jda-faq .jda-title {
  font-size: clamp(28px, 3vw, 38px);
  color: #756df4;
  margin-bottom: 32px;
}

.jda-faq-list {
  display: grid;
  gap: 14px;
}

.jda-faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.jda-faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
  cursor: pointer;
  position: relative;
}

.jda-faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #cb914f;
  transition: transform .2s ease;
}

.jda-faq-item.active .jda-faq-question::after {
  content: "–";
  transform: rotate(180deg);
}

.jda-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.55;
}

.jda-faq-item.active .jda-faq-answer {
  max-height: 300px;
  padding: 12px 20px 20px;
}

.jda-about {
  background: #f6f4ee;
  padding: 80px 20px;
}

.jda-about .jda-container {
  max-width: 960px;
  margin: 0 auto;
}

.jda-about .jda-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #cb914f;
  font-weight: 700;
  margin-bottom: 8px;
}

.jda-about .jda-title {
  font-size: clamp(30px, 3vw, 42px);
  color: #756df4;
  line-height: 1.2;
  margin: 0 0 28px;
}

.jda-about .jda-intro {
  font-size: 18px;
  line-height: 1.65;
  color: #2b2b2b;
  margin-bottom: 20px;
}

.jda-values {
  list-style: none;
  padding: 0;
  margin: 40px 0 40px;
  display: grid;
  gap: 12px;
}

.jda-values li {
  font-size: 17px;
  color: #2b2b2b;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jda-values li::before {
  content: "✔";
  color: #cb914f;
  font-weight: bold;
}

.jda-about .jda-button {
  display: inline-block;
  padding: 14px 28px;
  background: #cb914f;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: filter .2s ease, transform .05s ease-in-out;
}

.jda-about .jda-button:hover {
  filter: brightness(0.95);
}

.jda-about .jda-button:active {
  transform: translateY(1px);
}

.jda-values-section {
  background: #f6f4ee;
  padding: 90px 20px;
}

.jda-values-section .jda-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cb914f;
  font-weight: 700;
  margin-bottom: 6px;
}

.jda-values-section .jda-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #756df4;
  margin-bottom: 48px;
}

.jda-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jda-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.jda-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.jda-card h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #756df4;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.jda-card h3::before {
  content: "★";
  color: #cb914f;
  font-size: 18px;
}

.jda-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  color: #2b2b2b;
}

/* адаптив */
@media (max-width: 992px) {
  .jda-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .jda-values-grid {
    grid-template-columns: 1fr;
  }
}

.jda-responsible {
  background: #f6f4ee;
  padding: 100px 20px;
}

.jda-responsible .jda-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cb914f;
  font-weight: 700;
  margin-bottom: 6px;
}

.jda-responsible .jda-title {
  font-size: clamp(30px, 3.5vw, 44px);
  color: #756df4;
  margin-bottom: 20px;
}

.jda-intro {
  font-size: 18px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 48px;
  max-width: 900px;
}

/* Grid com princípios */
.jda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.jda-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.jda-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.jda-card h3 {
  font-size: 20px;
  color: #756df4;
  margin: 0 0 12px;
}

.jda-card p {
  font-size: 16px;
  color: #2b2b2b;
  margin: 0;
  line-height: 1.55;
}

/* Warning box */
.jda-warning {
  background: #fff;
  border: 2px solid #cb914f;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 50px;
}

.jda-warning h3 {
  margin: 0 0 16px;
  font-size: 22px;
  color: #756df4;
}

.jda-warning ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.jda-warning li {
  font-size: 16px;
  color: #2b2b2b;
  padding-left: 20px;
  position: relative;
}

.jda-warning li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #cb914f;
}

/* Tools */
.jda-tools {
  margin-bottom: 50px;
}

.jda-tools h3 {
  font-size: 22px;
  color: #756df4;
  margin-bottom: 12px;
}

.jda-tools ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 20px;
  display: grid;
  gap: 8px;
}

.jda-tools li {
  font-size: 16px;
  color: #2b2b2b;
  padding-left: 22px;
  position: relative;
}

.jda-tools li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #cb914f;
  font-weight: bold;
}

.jda-tools .jda-help {
  font-size: 15px;
  color: #555;
}

.jda-tools a {
  color: #cb914f;
  font-weight: 600;
  text-decoration: none;
}

.jda-tools a:hover {
  text-decoration: underline;
}

/* CTA */
.jda-cta {
  background: #cb914f;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
}

/* Адаптив */
@media (max-width: 900px) {
  .jda-grid {
    grid-template-columns: 1fr;
  }
}

.terms-section {
  background: #f6f4ee;
  padding: 80px 20px;
}

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

.terms-section h2 {
  color: #756df4;
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
}

.terms-section .intro {
  font-size: 18px;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.6;
}

.terms-block {
  margin-bottom: 40px;
  padding: 20px;
  border-left: 4px solid #cb914f;
  background: #ffffff;
  border-radius: 8px;
}

.terms-block h3 {
  color: #756df4;
  margin-bottom: 10px;
}

.terms-block p {
  color: #444;
  line-height: 1.6;
}

.terms-section .closing {
  margin-top: 50px;
  font-weight: bold;
  text-align: center;
  color: #cb914f;
}

.cookies-section {
  background: #f6f4ee;
  padding: 80px 20px;
}

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

.cookies-section .section-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cb914f;
  font-weight: 700;
  margin-bottom: 6px;
}

.cookies-section .section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #756df4;
  margin-bottom: 28px;
}

.cookies-section .intro {
  font-size: 17px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 40px;
}

.cookies-block {
  background: #fff;
  border-left: 4px solid #cb914f;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.cookies-block h3 {
  color: #756df4;
  margin-bottom: 10px;
  font-size: 20px;
}

.cookies-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.cookies-section .closing {
  margin-top: 30px;
  font-weight: 600;
  color: #cb914f;
}

.privacy-section {
  background: #f6f4ee;
  padding: 80px 20px;
}

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

.privacy-section .section-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #cb914f;
  font-weight: 700;
  margin-bottom: 6px;
}

.privacy-section .section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  color: #756df4;
  margin-bottom: 28px;
}

.privacy-section .intro {
  font-size: 17px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 40px;
}

.privacy-block {
  background: #fff;
  border-left: 4px solid #cb914f;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.privacy-block h3 {
  color: #756df4;
  margin-bottom: 10px;
  font-size: 20px;
}

.privacy-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.privacy-section .closing {
  margin-top: 30px;
  font-weight: 600;
  color: #cb914f;
}

.hero-section {
  background-color: #f6f4ee;
  padding: 100px 20px;
  text-align: center;
}

.hero-title {
  font-size: 42px;
  color: #756df4;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-subtitle {
  font-size: 24px;
  color: #cb914f;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.hero-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  color: #333;
}

.icon-item span {
  margin-top: 8px;
  font-size: 16px;
  color: #756df4;
  font-weight: 600;
  text-align: center;
}