@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --color-primary: #123524;
  --color-primary-hover: #0e281c;
  --color-accent: #f4b400;
  --color-accent-soft: #fff4cc;
  --color-bg: rgba(2, 96, 173, 0.92);
  --color-surface: #ffffff;
  --color-surface-dark: #101828;
  --color-text: #1b1f23;
  --color-text-muted: #000000;
  --color-text-light: #ffffff;
  --color-border: #e5e7eb;
  --color-success: #1f8f4e;
  --color-danger: #c62828;
  --color-overlay: rgba(0, 0, 0, 0.65);
  --shadow-sm: 0 4px 12px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 12px 30px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 20px 50px rgba(16, 24, 40, 0.16);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container-width: 1200px;
  --font-heading: "Manrope", Arial, sans-serif;
  --font-body: "Outfit", Arial, sans-serif;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  min-width: 320px;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 14px;
}

section {
  padding: 56px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(2, 96, 173, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2, 96, 173, 0.92);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--color-primary);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.hero {
  position: relative;
  padding: 72px 0 48px;
  background: url("../images/hero-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: #ffffff;
}

.subtitle {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

.hero .subtitle {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.warning {
  background: var(--color-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 760px;
  padding: 14px 18px;
  color: var(--color-text);
  border: 1px solid rgba(244, 180, 0, 0.35);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.ranking {
  padding-top: 24px;
}

.ranking h2 {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18, 53, 36, 0.18);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 6px 12px;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.card img {
  width: auto;
  height: 52px;
  object-fit: contain;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  min-height: 54px;
  display: flex;
  align-items: flex-end;
}

.card p {
  margin-bottom: 18px;
  color: var(--color-text);
  font-weight: 600;
  min-height: 78px;
}

.card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.card li {
  position: relative;
  padding-left: 28px;
  color: var(--color-text-muted);
}

.card li::before {
  content: "✔";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  background: var(--color-primary);
  color: var(--color-text-light);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-align: center;
  transition: background var(--transition),
        transform var(--transition);
}

.cta:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.rating {
  margin-top: 18px;
  color: #b7791f;
  font-weight: 700;
  font-size: 0.98rem;
}

.about p {
  max-width: 100%;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.faq {
  background: rgba(2, 96, 173, 0.92);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  min-height: 56px;
  padding: 18px 40px 18px 0;
  position: relative;
  text-align: left;
  font-weight: 700;
  color: var(--color-text);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: var(--color-text-muted);
  transition: max-height 0.3s ease,
        padding 0.3s ease;
  padding: 0 0 0 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 0 18px 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.fact {
  padding: 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  font-weight: 600;
}

.cta-block {
  background: linear-gradient(135deg, #035f8a 0%, #052b3d 55%, #02afff 100%);
  color: var(--color-text-light);
  text-align: center;
}

.cta-block h2 {
  color: var(--color-text-light);
  margin-bottom: 18px;
}

.cta-block .cta {
  background: var(--color-accent);
  color: #1a1a1a;
}

.cta-block .cta:hover {
  background: #e6aa00;
}

.responsible p {
  max-width: 960px;
  color: var(--color-text-muted);
}

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.92);
  padding: 48px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.footer h4 {
  color: #ffffff;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer a:hover {
  color: #ffffff;
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--color-overlay);
}

.modal.show {
  display: flex;
}

.modal-content {
  width: min(100%, 480px);
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.modal-content h2 {
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: var(--color-primary);
}

.modal-content button {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: 12px 18px;
  transition: background var(--transition), color var(--transition);
}

.modal-content button + button {
  margin-top: 12px;
}

#ageYes {
  background: var(--color-primary);
  color: #ffffff;
}

#ageYes:hover {
  background: var(--color-primary-hover);
}

#ageNo {
  background: #f3f4f6;
  color: var(--color-text);
}

#ageNo:hover {
  background: #e5e7eb;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  display: none;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  flex: 1 1 240px;
  margin: 0;
  color: var(--color-text-muted);
}

.cookie-banner button {
  min-width: 120px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

#acceptCookies {
  background: var(--color-primary);
  color: #ffffff;
}

#rejectCookies {
  background: #f3f4f6;
  color: var(--color-text);
}

.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 18px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  font-weight: 800;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

.ranking-highlight {
  animation: rankingPulse 1.2s ease;
}

@keyframes rankingPulse{







    0% {
        background-color: transparent;
    }
    30% {
        background-color: rgba(244, 180, 0, 0.12);
    }
    100% {
        background-color: transparent;
    }







}

.modal-content p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.modal-actions,
.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.cookie-modal-content {
  width: min(100%, 760px);
  text-align: left;
}

.cookie-intro {
  font-size: 0.98rem;
}

.cookie-categories {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fafafa;
}

.cookie-category h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.cookie-category p {
  margin: 0;
  font-size: 0.94rem;
}

.switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  transition: var(--transition);
}

.slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  background: #ffffff;
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.switch input:checked + .slider {
  background: var(--color-primary);
}

.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.switch input:disabled + .slider {
  background: #94a3b8;
  opacity: 0.9;
}

.button-secondary {
  background: #f3f4f6;
  color: var(--color-text);
}

.button-secondary:hover {
  background: #e5e7eb;
}

.footer-cookie-link {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: left;
  font-weight: 400;
  min-height: auto;
}

.footer-cookie-link:hover {
  color: #ffffff;
}

@keyframes rankingPulse{







    0% {
        background-color: transparent;
    }
    35% {
        background-color: rgba(244, 180, 0, 0.12);
    }
    100% {
        background-color: transparent;
    }







}

.inner-hero {
  padding-bottom: 40px;
}

.about-page {
  background: var(--color-bg);
}

.content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.content-narrow h2 {
  margin-top: 0;
  margin-bottom: 16px;
}

.content-narrow h2:not(:first-child) {
  margin-top: 40px;
}

.content-narrow p {
  color: var(--color-text-muted);
  margin-bottom: 18px;
}

.content-narrow a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.content-narrow strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-text);
}

.cta-block-inner {
  margin-top: 48px;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}

.cta-block-inner p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.responsible-page .facts-grid {
  margin-top: 24px;
}

.responsible-page strong {
  color: var(--color-text);
}

.contact-page {
  background: var(--color-bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-content,
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-content {
  padding: 24px;
}

.contact-card {
  padding: 22px;
}

.contact-card + .contact-card {
  margin-top: 20px;
}

.contact-content h2,
.contact-card h3 {
  margin-bottom: 14px;
}

.contact-content p,
.contact-card p {
  color: var(--color-text-muted);
}

.contact-card a,
.form-note a,
.checkbox-label a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--color-text);
}

.optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(18, 53, 36, 0.45);
  box-shadow: 0 0 0 4px rgba(18, 53, 36, 0.08);
  outline: none;
}

.checkbox-group {
  margin-top: 6px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--color-text-muted);
}

.checkbox-label input {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.form-error {
  display: block;
  min-height: 20px;
  margin-top: 6px;
  font-size: 0.9rem;
  color: var(--color-danger);
}

.form-actions {
  margin-top: 10px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.form-status {
  margin-top: 16px;
  font-weight: 600;
  color: var(--color-success);
}

.input-invalid,
.textarea-invalid {
  border-color: var(--color-danger) !important;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08) !important;
}

.legal-page p + p {
  margin-top: 14px;
}

.about {
  position: relative;
  overflow: hidden;
  background: rgba(2, 96, 173, 0.92);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-content {
  max-width: 680px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  background: rgba(18, 53, 36, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(18, 53, 36, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about h2 {
  margin-bottom: 18px;
  color: var(--color-primary);
}

.about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 18px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.about-point {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.about-point strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 0.98rem;
}

.about-point span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
}

.about-image-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
  background: #dfe6e2;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 53, 36, 0.08) 0%,
    rgba(18, 53, 36, 0.22) 100%
  );
}

.about-floating-card {
  position: absolute;
  left: -18px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.about-floating-number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-floating-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 16px;
  background: rgba(18, 53, 36, 0.08);
  color: var(--color-primary);
  border: 1px solid rgba(18, 53, 36, 0.12);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.responsible {
  position: relative;
  background: rgba(2, 96, 173, 0.92);
}

.responsible-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.responsible-content h2 {
  color: var(--color-primary);
  margin-bottom: 18px;
}

.responsible-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 18px;
}

.responsible-content p {
  max-width: 760px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.responsible-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  color: var(--color-primary);
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.responsible-links a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(18, 53, 36, 0.2);
}

.responsible-side {
  display: grid;
  gap: 18px;
}

.responsible-alert {
  padding: 24px;
  background: linear-gradient(135deg, #123524 0%, #1c4a33 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.responsible-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  padding: 6px 12px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 800;
}

.responsible-alert h3 {
  margin-bottom: 10px;
  color: #ffffff;
}

.responsible-alert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.responsible-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.responsible-card {
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.responsible-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-primary);
  font-size: 1rem;
}

.responsible-card span {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-regulators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 10px;
  margin-bottom: 18px;
}

.footer-regulators a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 12px;
  transition: transform var(--transition), opacity var(--transition);
}

.footer-regulators img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-regulators a:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.footer-regulators a:hover {
  transform: translateY(-3px);
}

.card .cta {
  margin-top: auto;
  align-self: flex-start;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1102;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1098;
}

.nav-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 768px) {
  section {
    padding: 72px 0;
  }
  
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .modal-content {
    padding: 36px;
  }
}

@media (min-width: 1024px) {
  .header-inner {
    min-height: 78px;
  }
  
  .hero {
    padding: 96px 0 60px;
  }
  
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  
  .card {
    height: 100%;
  }
  
  .facts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1440px) {
  .hero h1 {
    max-width: 980px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
  }
  
  .logo {
    flex: 0 1 auto;
  }
  
  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex: 0 0 auto;
  }
  
  .nav {
    justify-content: flex-start;
  }
  
  .warning {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
  
  .card {
    padding: 22px 18px;
  }
  
  .cookie-banner {
    bottom: 78px;
  }
  
  .mobile-sticky-cta {
    display: flex;
  }
}

@media (min-width: 768px) {
  .modal-actions,
                  .cookie-actions {
    flex-direction: row;
  }
  
  .modal-actions button,
                  .cookie-actions button {
    width: auto;
    min-width: 180px;
  }
}

@media (max-width: 767px) {
  .cookie-category {
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .contact-content {
    padding: 32px;
  }
  
  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .about-image-card,
            .about-image-card img {
    min-height: 300px;
  }
  
  .about-floating-card {
    position: static;
    max-width: 100%;
    margin-top: 16px;
  }
  
  .about-lead {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .responsible-wrapper {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 42px;
  }
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 20px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }
  
  .nav a {
    font-size: 18px;
  }
  
  .nav.open {
    right: 0;
  }
}

@media (max-width: 767px) {
  .header {
    z-index: 1100;
  }
  
  .header-inner {
    min-height: 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
  }
  
  .burger {
    display: flex;
    margin-left: auto;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    max-width: calc(100vw - 40px);
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 88px 20px 24px;
    gap: 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    transition: right 0.3s ease;
    z-index: 1101;
    overflow-y: auto;
  }
  
  .nav.open {
    right: 0;
  }
  
  .nav a {
    font-size: 18px;
    font-weight: 700;
  }
  
  .warning {
    font-size: 0.9rem;
    padding: 12px 14px;
  }
  
  .card {
    padding: 22px 18px;
  }
  
  .cookie-banner {
    bottom: 78px;
  }
  
  .mobile-sticky-cta {
    display: flex;
  }
}

.cookie-modal {
  padding: 12px;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  width: min(100%, 680px);
  max-height: min(88dvh, 760px);
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 22px;
  border-radius: 20px;
  overflow: hidden;
}

.cookie-modal-content h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  line-height: 1.2;
  flex-shrink: 0;
}

.cookie-modal-body {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
  flex: 1 1 auto;
  max-height: 50vh;
}

.cookie-intro {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-categories {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
}

.cookie-category-text {
  min-width: 0;
  flex: 1 1 auto;
}

.cookie-category h3 {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.cookie-category p {
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  margin-top: 14px;
  padding-top: 14px;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.cookie-actions button {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  min-height: 46px;
  padding: 12px 14px;
  font-size: 0.95rem;
}

body.modal-open .mobile-sticky-cta {
  display: none !important;
}

@media (max-width: 767px) {
  .cookie-modal {
    padding: 12px;
    align-items: center; 
    justify-content: center;
  }

  .cookie-modal-content {
    width: 100%;
    max-height: 80vh;
    padding: 16px;
    border-radius: 18px 18px -2 0;
  }

  .cookie-modal-content h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .cookie-intro {
    font-size: 0.88rem;
    margin-bottom: 12px;
  }

  .cookie-categories {
    gap: 10px;
  }

  .cookie-category {
    padding: 12px;
    gap: 10px;
  }

  .cookie-category h3 {
    font-size: 0.95rem;
  }

  .cookie-category p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .switch {
    width: 50px;
    height: 28px;
  }

  .slider::before {
    width: 20px;
    height: 20px;
  }

  .switch input:checked + .slider::before {
    transform: translateX(22px);
  }

  .cookie-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
  }

  .cookie-actions button {
    width: 100%;
    min-height: 44px;
    font-size: 0.92rem;
  }
}