:root {
  --green-dark: #0B2E1A;
  --green-mid: #16A34A;
  --green-accent: #22C55E;
  --green-light: #ECFDF5;
  --green-muted: #BBF7D0;
  --text: #0F172A;
  --muted: #64748B;
  --border: #CBD5E1;
  --white: #FFFFFF;
  --bg: #F8FAFC;
  --shadow: 0 1px 8px rgba(11, 46, 26, 0.1);
  --shadow-lg: 0 8px 30px rgba(22, 163, 74, 0.12);
  --radius: 8px;
  --container: 1100px;
  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --sidebar-width: 260px;
}

/* ── KTLink: header + content/sidebar layout ── */
.kt-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.kt-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.kt-header__tagline {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.kt-header__promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
}

.kt-header__promo:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.page-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  align-items: start;
  gap: 28px;
  max-width: calc(var(--container) + var(--sidebar-width) + 28px);
  margin: 0 auto;
  width: 100%;
  padding: 20px 20px 40px;
}

.page-body > .site-main {
  min-width: 0;
}

.site-sidebar {
  position: sticky;
  top: 88px;
  width: var(--sidebar-width);
  align-self: start;
  z-index: 50;
}

.site-sidebar__card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.site-sidebar__card::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-accent));
}

.site-sidebar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
}

.site-sidebar__title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-close {
  display: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
}

.sidebar-nav {
  padding: 10px 12px;
}

.sidebar-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav__link,
.sidebar-nav__toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius);
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sidebar-nav__link i,
.sidebar-nav__toggle i:first-child {
  width: 18px;
  text-align: center;
  color: var(--green-mid);
  font-size: 0.85rem;
}

.sidebar-nav__link:hover,
.sidebar-nav__toggle:hover {
  background: var(--green-light);
  color: var(--green-mid);
}

.sidebar-nav__item.is-active > .sidebar-nav__link,
.sidebar-nav__item.is-active > .sidebar-nav__toggle {
  background: var(--green-light);
  color: var(--green-mid);
}

.sidebar-nav__chevron {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--muted);
  transition: transform 0.2s;
}

.has-submenu.is-open .sidebar-nav__chevron {
  transform: rotate(180deg);
}

.sidebar-nav__sub {
  list-style: none;
  display: none;
  padding: 2px 0 6px 8px;
}

.has-submenu.is-open .sidebar-nav__sub {
  display: block;
}

.sidebar-nav__sublink {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.sidebar-nav__sublink:hover {
  background: var(--bg);
  color: var(--text);
}

.sidebar-nav__sublink.is-active {
  background: var(--green-light);
  color: var(--green-mid);
}

.sidebar-nav__brand-icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg);
  border: 1px solid var(--border);
}

.site-sidebar__foot {
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.site-sidebar__updated {
  margin-top: 8px;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

.sidebar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

.sidebar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 46, 26, 0.5);
  z-index: 110;
}

.sidebar-backdrop:not([hidden]) {
  display: block;
}

.site-header,
.header-top,
.header-main {
  display: none !important;
}

.hero-placeholder {
  text-align: center;
  padding: 48px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.hero-placeholder h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 12px 0 16px;
  line-height: 1.2;
}

.content-slot {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  min-height: 80px;
}

.content-slot__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.content-slot__body {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--green-mid);
  color: var(--green-mid) !important;
  margin-top: 12px;
}

.btn-outline:hover {
  background: var(--green-light);
}

.contact-email-fallback {
  margin-top: 16px;
  font-size: 0.92rem;
}

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

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero h1,
.review-block__title,
.promo-banner__title,
.footer-col__title,
.footer-trust__title,
.pros-cons__heading,
.faq-item summary {
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero__badge,
.promo-banner__badge,
.promo-banner__subtitle,
.promo-banner__cta,
.btn,
.nav-link,
.header-top,
.casino-card__cta {
  font-family: var(--font-sans);
}

a { color: var(--green-mid); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--green-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--green-mid);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow);
}

.header-top {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}

.header-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 12px;
}

.header-top__tagline { font-weight: 500; }

.header-top__promo {
  color: var(--white) !important;
  font-weight: 700;
  white-space: nowrap;
}
.header-top__promo:hover { color: rgba(255, 255, 255, 0.85) !important; }

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
  position: relative;
}

.site-logo-link { display: flex; flex-shrink: 0; text-decoration: none; }

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  flex-shrink: 0;
  position: relative;
}

.site-logo__img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}

.site-logo--header .site-logo__img {
  height: 64px;
  max-width: 320px;
}

.site-logo--footer .site-logo__img {
  height: 54px;
  max-width: 280px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.header-top__actions { display: flex; align-items: center; gap: 12px; }

.header-top__promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-top__icon {
  border-radius: 4px;
  opacity: 0.9;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-text__name { font-size: 1.2rem; letter-spacing: -0.3px; font-weight: 600; }
.logo-text small { font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-item > .nav-link:hover,
.nav-item.is-active > .nav-link,
.nav-dropdown a.is-active {
  color: var(--green-mid);
}

.nav-dropdown-toggle svg { transition: transform 0.2s; }
.nav-item.is-open .nav-dropdown-toggle svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 6px 0;
  z-index: 50;
}

.nav-item.is-open .nav-dropdown { display: block; }

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown__icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--green-light);
}
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown a:hover { background: var(--green-light); color: var(--green-mid); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.btn-cta {
  background: linear-gradient(135deg, var(--green-accent), var(--green-mid));
  color: var(--white) !important;
}

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-header { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── HERO ── */
.hero {
  color: var(--white);
  padding: 56px 0 48px;
}

.hero--home {
  background: transparent;
  padding: 0;
}

.hero--review {
  background: linear-gradient(135deg, var(--green-dark), #15803D);
}

.hero--contact {
  background: linear-gradient(135deg, var(--green-dark), #14532D);
  padding: 40px 0 36px;
  text-align: center;
}

.hero__contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero--contact .hero__subtitle {
  margin-bottom: 0;
}

.hero--guide {
  background: transparent;
  padding: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__grid--review {
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  text-align: left;
}

.hero__content { text-align: center; }

.hero__grid--review .hero__logo-wrap {
  flex-shrink: 0;
}

.hero__grid--review .hero__content {
  text-align: left;
  min-width: 0;
}

.hero__grid--review .hero h1 {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  margin-bottom: 6px;
  line-height: 1.15;
}

.hero__grid--review .hero__badge {
  margin-bottom: 8px;
}

.hero__grid--review .hero__subtitle {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 18px;
}

.hero__grid--review .hero__rating,
.page-section--review-hero .hero__rating {
  align-items: flex-start;
}

.hero__grid--review .hero__rating .star-rating,
.page-section--review-hero .hero__rating .star-rating {
  justify-content: flex-start;
}

.hero__grid--review .hero__rating-meta {
  text-align: left;
}

.hero__media .img-banner { margin: 0; }

.hero__banner .img-banner__img {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.img-banner--photo .img-banner__img {
  border: none;
  background: transparent;
  object-fit: cover;
  max-height: 420px;
}

.hero__banner.img-banner--photo .img-banner__img {
  max-height: 360px;
}

.section-banner.img-banner--photo .img-banner__img {
  max-height: 320px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero__banner .img-banner__caption {
  color: rgba(255, 255, 255, 0.65);
}

.hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__casino-logo {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  background: var(--white);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero__logo-wrap .img-ph-label { color: rgba(255, 255, 255, 0.55); }

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero--review .hero__subtitle,
.hero--guide .hero__subtitle { margin-bottom: 20px; }

.hero__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.hero__rating .star-rating {
  margin-bottom: 0;
}

.hero__rating-meta {
  font-size: 0.78rem;
  opacity: 0.85;
}

.hero__byline {
  font-size: 0.82rem;
  opacity: 0.8;
  margin-bottom: 16px;
}

.hero--review .hero__rating .star-rating__icon--empty {
  color: rgba(255, 255, 255, 0.35);
}

/* ── PAGE LAYOUT ── */
.site-main > .container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.page-layout {
  padding: 0 0 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 28px 32px;
}

.page-section--highlight {
  border-color: var(--green-accent);
  border-width: 2px;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 120px);
  box-shadow: var(--shadow-lg);
}

.page-section--hero {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.page-section--hero .promo-banner {
  border-radius: 12px;
  box-shadow: none;
  margin: 0;
}

.page-section--review-hero {
  background: linear-gradient(135deg, var(--green-dark), #15803D);
  color: var(--white);
  border-color: var(--green-dark);
  padding: 28px 28px 32px;
}

.page-section--review-hero .hero__grid--review {
  margin: 0;
}

.page-section--review-hero .hero__subtitle,
.page-section--review-hero .hero__byline,
.page-section--review-hero .hero__rating-meta {
  color: rgba(255, 255, 255, 0.9);
}

.page-section--review-hero .hero__byline {
  color: rgba(255, 255, 255, 0.75);
}

.page-section--contact-hero {
  background: linear-gradient(135deg, var(--green-dark), #14532D);
  color: var(--white);
  border-color: var(--green-dark);
  text-align: center;
  padding: 32px 28px;
}

.page-section--contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  margin: 12px 0 10px;
  line-height: 1.2;
}

.page-section--contact-hero .hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.page-section .section-banner {
  margin-top: 24px;
  margin-left: -28px;
  margin-right: -28px;
  margin-bottom: -32px;
  width: calc(100% + 56px);
  border-radius: 0 0 10px 10px;
  box-shadow: none;
}

.page-section--highlight .section-banner {
  margin-bottom: -32px;
}

.section-title {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green-muted);
}

.page-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--green-dark);
  text-align: center;
  margin: 0 0 8px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.page-layout--home > .page-h1 {
  margin-bottom: 4px;
}

.promo-banner__title {
  display: block;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.section-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.page-section--editorial {
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 100%);
  border: 1px solid var(--green-muted);
  border-radius: 12px;
  padding: 28px 24px;
}

.editorial-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.editorial-meta a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-cta {
  margin-top: 20px;
  text-align: center;
}

/* ── CONTENT PROSE ── */
.content-prose {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

.content-prose p + p { margin-top: 14px; }

.content-prose a {
  color: var(--green-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-prose a:hover { color: var(--green-dark); }

.content-prose strong,
.content-prose b,
.content-list strong,
.content-steps strong,
.faq-item__body strong {
  font-weight: inherit;
}

.casino-card__offer-label {
  color: var(--green-dark);
}

.content-list,
.content-steps {
  margin: 14px 0 0;
  padding-left: 1.35rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

.content-list li + li,
.content-steps li + li { margin-top: 8px; }

.content-steps { counter-reset: none; }
.content-steps li { padding-left: 4px; }

.content-cta-line {
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Pros & cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 4px;
}

.pros-cons__heading {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.pros-cons__col--pros .pros-cons__heading { color: #059669; }
.pros-cons__col--cons .pros-cons__heading { color: #DC2626; }

.pros-cons__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.pros-cons__col li {
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid var(--green-muted);
}

.pros-cons__col li:last-child { border-bottom: none; }

.pros-cons__col--pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
}

.pros-cons__col--cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #DC2626;
  font-weight: 700;
}

.pros-cons-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.88rem;
}

.pros-cons-table th {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--border);
}

.pros-cons-table th:first-child { color: #059669; }
.pros-cons-table th:last-child { color: #DC2626; }

.pros-cons-table td {
  padding: 9px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}

.pros-cons-table tr:nth-child(even) td { background: var(--bg); }

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
}

.faq-item summary {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--green-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--green-mid);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item[open] summary {
  background: var(--green-light);
  border-bottom: 1px solid var(--border);
}

.faq-item__body {
  padding: 14px 18px 16px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text);
}

.faq-item__body p { margin: 0; }

/* Template body classes */
body.template-home .page-layout--home .page-section--highlight .section-title::after {
  content: ' ★';
  color: var(--green-accent);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 52px 0 28px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-logo { color: var(--white); }
.footer-logo .logo-text small { color: rgba(255, 255, 255, 0.5); }

.footer-col__title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col__text {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-col__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  font-weight: 500;
}
.footer-col__links a:hover { color: var(--green-accent); }

.footer-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-trust__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.footer-trust__badges,
.footer-trust__browsers {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
}

.trust-badge,
.browser-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-badge__icon,
.browser-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: rgba(147, 197, 253, 0.9);
  transition: color 0.2s, opacity 0.2s;
}

.trust-badge:hover .trust-badge__icon,
.browser-badge:hover .browser-badge__icon {
  color: #BFDBFE;
  opacity: 1;
}

.trust-badge__img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.trust-badge__label,
.browser-badge__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trust-badge:hover .trust-badge__label,
.browser-badge:hover .browser-badge__label {
  color: rgba(255, 255, 255, 0.85);
}

.browser-badge__icon { font-size: 1.1rem; }

.browser-badge--chrome .browser-badge__icon { color: #60A5FA; }
.browser-badge--firefox .browser-badge__icon { color: #FB923C; }
.browser-badge--safari .browser-badge__icon { color: #38BDF8; }
.browser-badge--edge .browser-badge__icon { color: #818CF8; }

.footer-logo-link .logo-text__name { color: var(--white); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 90;
}
.scroll-top:hover { transform: translateY(-2px); }
.scroll-top[hidden] { display: none; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .page-body {
    display: block;
    max-width: 100%;
    padding: 16px 16px 32px;
    gap: 0;
  }

  .site-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(300px, 88vw);
    height: 100vh;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 120;
    align-self: auto;
  }

  .site-sidebar__card {
    height: 100%;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--border);
    box-shadow: -8px 0 30px rgba(11, 46, 26, 0.12);
  }

  body.sidebar-open .site-sidebar {
    transform: translateX(0);
  }

  .sidebar-toggle { display: flex; margin-left: auto; }
  .sidebar-close { display: block; }

  .sidebar-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .sidebar-toggle.is-open span:nth-child(2) { opacity: 0; }
  .sidebar-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .kt-header__tagline { display: none; }

  .page-layout {
    gap: 20px;
    padding-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .kt-header .container {
    padding: 0 12px;
  }

  .kt-header__inner {
    gap: 10px;
    min-height: 58px;
  }

  .site-logo--header .site-logo__img {
    height: 44px;
    max-width: 150px;
  }

  .kt-header__promo {
    padding: 7px 10px;
    font-size: 0.72rem;
    gap: 5px;
  }

  .header-top__tagline { display: none; }

  .header-main__inner { min-height: 76px; }

  .nav-toggle { display: flex; }

  .header-nav-wrap {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .header-nav-wrap.is-open { display: flex; }

  .nav-list { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; justify-content: space-between; }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--green-light);
    margin-top: 4px;
  }

  .btn-header { width: 100%; margin-top: 8px; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-trust { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }

  .hero__grid--review {
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
  }

  .hero__grid--review .hero__content { text-align: left; }

  .hero__grid--review .hero__casino-logo {
    width: 88px;
    height: 88px;
    border-radius: 12px;
  }

  .hero__grid--review .hero h1 {
    font-size: 1.25rem;
    margin-bottom: 4px;
  }

  .hero__grid--review .hero__badge {
    margin-bottom: 6px;
    font-size: 0.68rem;
    padding: 3px 10px;
  }

  .hero__grid--review .hero__subtitle {
    font-size: 0.88rem;
    margin-bottom: 14px;
  }

  .hero__grid--review .btn {
    font-size: 0.82rem;
    padding: 10px 16px;
  }
  .review-media-row { grid-template-columns: 1fr !important; }
  .page-section { padding: 20px 16px 24px; }
  .page-section--hero { border-radius: 10px; }
  .page-section--hero .promo-banner { border-radius: 10px; }

  .page-section .section-banner {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: -24px;
    width: calc(100% + 32px);
    border-radius: 0 0 8px 8px;
  }

  .page-section--highlight .section-banner {
    margin-bottom: -24px;
  }

  .pros-cons { grid-template-columns: 1fr; }

  .pros-cons-table {
    display: block;
    overflow-x: auto;
    font-size: 0.82rem;
    -webkit-overflow-scrolling: touch;
  }

  .pros-cons-table th,
  .pros-cons-table td { padding: 8px 10px; }

  .page-section--review-hero,
  .page-section--contact-hero {
    padding: 20px 16px 24px;
    border-radius: 10px;
  }

  .page-section--review-hero .hero__grid--review {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
  }

  .page-section--review-hero .hero__content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-section--review-hero .hero__casino-logo {
    width: 96px;
    height: 96px;
    margin: 0;
  }

  .page-section--review-hero .hero__logo-wrap {
    align-items: flex-start;
  }

  .page-section--review-hero .hero__rating {
    align-items: flex-start;
    width: 100%;
  }

  .page-section--review-hero .hero__rating .star-rating {
    justify-content: flex-start;
  }

  .page-section--review-hero h1 {
    font-size: 1.35rem;
  }

  .review-block {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .review-block__logo {
    width: 72px;
    height: 72px;
  }

  .review-block__title {
    font-size: 1rem;
  }

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

  .section-cta .btn {
    width: 100%;
  }

  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
  }

  body.sidebar-open {
    overflow: hidden;
  }
}

/* ── IMAGE PLACEHOLDERS ── */
.img-ph-label {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}

.img-ph-label--logo {
  position: absolute;
  bottom: -16px;
  left: 0;
  white-space: nowrap;
  font-size: 0.6rem;
}

.site-logo--header { padding-bottom: 0; }

.img-banner {
  margin: 16px 0 0;
  text-align: center;
}

.img-banner__link { display: block; }

.img-banner__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 2px dashed var(--border);
  background: var(--green-light);
  display: block;
}

.section-banner { margin-top: 20px; }
.section-banner--sm .img-banner__img { max-height: 200px; object-fit: cover; }

.img-banner__caption {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}

/* ── PROMO BANNER (photo + text overlay) ── */
.promo-banner {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promo-banner__link {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  aspect-ratio: 16 / 9;
}

.promo-banner__link:hover .promo-banner__cta {
  background: var(--green-accent);
  transform: translateY(-1px);
}

.promo-banner__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.promo-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(11, 46, 26, 0.86) 0%,
    rgba(11, 46, 26, 0.74) 14%,
    rgba(11, 46, 26, 0.58) 26%,
    rgba(11, 46, 26, 0.42) 36%,
    rgba(11, 46, 26, 0.28) 46%,
    rgba(11, 46, 26, 0.16) 56%,
    rgba(11, 46, 26, 0.07) 66%,
    rgba(11, 46, 26, 0.02) 74%,
    transparent 82%
  );
  pointer-events: none;
}

.promo-banner--hero .promo-banner__overlay {
  background: linear-gradient(
    100deg,
    rgba(11, 46, 26, 0.82) 0%,
    rgba(12, 58, 32, 0.68) 12%,
    rgba(14, 72, 40, 0.52) 24%,
    rgba(18, 96, 52, 0.36) 34%,
    rgba(22, 130, 68, 0.22) 44%,
    rgba(28, 160, 82, 0.12) 54%,
    rgba(34, 197, 94, 0.05) 64%,
    rgba(74, 222, 128, 0.02) 72%,
    transparent 80%
  );
}

.promo-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 28px 36px;
  max-width: 58%;
  z-index: 1;
}

.promo-banner__badge {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B, #FBBF24);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.promo-banner__title {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 8px;
}

.promo-banner__subtitle {
  display: block;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 18px;
}

.promo-banner__cta {
  display: inline-block;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(22, 163, 74, 0.45);
  transition: background 0.2s, transform 0.2s;
}

.promo-banner--hero .promo-banner__link,
.promo-banner--section .promo-banner__link {
  aspect-ratio: 16 / 9;
}

.promo-banner--hero .promo-banner__title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.promo-banner--section .promo-banner__content {
  max-width: 55%;
  padding: 24px 32px;
}

.promo-banner--wide .promo-banner__bg {
  min-height: 260px;
}

@media (max-width: 768px) {
  .promo-banner__content {
    max-width: 100%;
    padding: 16px;
    justify-content: flex-end;
    background: none;
    inset: auto 0 0 0;
    top: auto;
    min-height: 48%;
  }

  .promo-banner__overlay {
    background: linear-gradient(
      0deg,
      rgba(11, 46, 26, 0.82) 0%,
      rgba(11, 46, 26, 0.55) 28%,
      rgba(11, 46, 26, 0.22) 50%,
      transparent 68%
    );
  }

  .promo-banner--hero .promo-banner__overlay,
  .page-section--hero .promo-banner__overlay {
    background: linear-gradient(
      0deg,
      rgba(11, 46, 26, 0.78) 0%,
      rgba(14, 72, 40, 0.5) 25%,
      rgba(22, 130, 68, 0.18) 48%,
      transparent 65%
    );
  }

  .promo-banner--section .promo-banner__content {
    max-width: 100%;
    padding: 14px 16px;
    min-height: 52%;
  }

  .promo-banner__title {
    font-size: 1.2rem;
  }

  .promo-banner--hero .promo-banner__title {
    font-size: 1.35rem;
  }

  .promo-banner__subtitle {
    font-size: 0.78rem;
    margin-bottom: 10px;
    line-height: 1.35;
  }

  .promo-banner__cta {
    font-size: 0.78rem;
    padding: 9px 14px;
  }

  .promo-banner__badge {
    font-size: 0.65rem;
    padding: 4px 10px;
    margin-bottom: 8px;
  }

  .site-footer .container {
    padding: 0 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .kt-header__promo {
    font-size: 0;
    padding: 8px 10px;
    gap: 0;
  }

  .kt-header__promo i {
    font-size: 0.95rem;
  }

  .page-body {
    padding: 12px 12px 28px;
  }

  .page-section {
    padding: 16px 14px 20px;
  }

  .page-section .section-banner {
    margin-left: -14px;
    margin-right: -14px;
    width: calc(100% + 28px);
    margin-bottom: -20px;
  }
}

/* ── CASINO CARDS ── */
.casino-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

/* 10 cards = 5×2 grid on desktop */

.casino-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  background: linear-gradient(180deg, var(--green-light) 0%, var(--white) 50%);
  border: 2px solid var(--green-muted);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-accent);
}

.casino-card__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.casino-card__logo {
  text-align: center;
  margin-bottom: 12px;
}

.casino-card__logo img {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px dashed var(--border);
  background: var(--white);
}

.casino-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  margin: 0 0 6px;
  color: var(--text);
  line-height: 1.3;
}

.star-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}

.star-rating__icon {
  font-size: 0.82rem;
  line-height: 1;
}

.star-rating__icon--full,
.star-rating__icon--half {
  color: #f5b301;
}

.star-rating__icon--empty {
  color: #d4dce8;
}

.star-rating__score {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.casino-card__rating-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--muted);
  margin: 0 0 4px;
}

.review-editorial-note {
  margin-top: 20px;
  padding: 16px 18px;
  background: var(--green-light);
  border: 1px solid var(--green-muted);
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.65;
}

.review-editorial-note__title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--green-dark);
}

.review-editorial-note__list {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.review-editorial-note__list li + li {
  margin-top: 6px;
}

.review-editorial-note__disclosure {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.casino-card__features {
  list-style: none;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.casino-card__features li {
  padding-left: 14px;
  position: relative;
}

.casino-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-mid);
  font-weight: 700;
  font-size: 0.75rem;
}

.casino-card__offer {
  font-size: 0.82rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.casino-card__cta {
  margin-top: auto;
  font-size: 0.85rem !important;
  padding: 11px 14px !important;
  min-height: 42px;
}

/* ── REVIEW BLOCKS (home) ── */
.review-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.review-block:last-child { border-bottom: none; padding-bottom: 0; }

.review-block__logo {
  border-radius: 12px;
  border: 2px dashed var(--border);
  object-fit: cover;
}

.review-block__title {
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.review-media-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.review-screenshot .img-banner__img {
  min-height: 200px;
  object-fit: cover;
}

.review-offer {
  margin-bottom: 12px;
  padding: 12px 16px;
  background: var(--green-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

@media (max-width: 1100px) {
  .casino-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .casino-grid { grid-template-columns: 1fr; }
  .review-block { grid-template-columns: 1fr; }
  .review-block__logo { width: 80px; height: 80px; }
}

/* ── CONTACT PAGE ── */
.contact-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-panel__info .section-title {
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-method__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green-light);
  color: var(--green-mid);
  font-size: 1rem;
}

.contact-method__title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.contact-method__body p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.contact-method__body p + p {
  margin-top: 4px;
}

.contact-method__note {
  color: var(--muted);
  font-size: 0.82rem !important;
}

.contact-form__heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--green-dark);
  margin-bottom: 18px;
}

.contact-form__row {
  margin-bottom: 16px;
}

.contact-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.contact-form__input {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.12);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-form__submit {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-panel__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}