/* ===========================
   CSS VARIABLES & GLOBAL STYLES
   =========================== */

:root {
  --color-background: #f0f7ff;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #6b6b6b;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-success: #fcd34d;
  --color-warning: #fbbf24;
  --color-info: #3b82f6;
  --color-error: #ef4444;
  --border-color: #e0e0e0;
  --border-color-light: #f0f0f0;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
  --rounded: 8px;
  --rounded-lg: 12px;
  --rounded-full: 9999px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
}

* {
  box-sizing: border-box;
}

/* ===========================
   NORMALIZE CSS
   =========================== */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: Montserrat Variable, sans-serif;
  line-height: 1.6;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

a {
  color: var(--color-info);
  text-decoration: none;
  background-color: transparent;
  transition: text-decoration 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  cursor: pointer;
  border: none;
}

input,
select,
textarea,
optgroup {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

/* ===========================
   GOOGLE FONTS
   =========================== */

@font-face {
  font-family: Montserrat Variable;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/files/montserrat-latin-wght-normal.l_AIctKy.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Montserrat Variable;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/files/montserrat-latin-ext-wght-normal.BsZE-iaG.woff2) format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Montserrat Variable;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/files/montserrat-cyrillic-wght-normal.EAA9jha_.woff2) format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: Montserrat Variable;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/files/montserrat-vietnamese-wght-normal.k7S-YeeD.woff2) format("woff2-variations");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1,
    U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329,
    U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Montserrat Variable;
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url(/files/montserrat-cyrillic-ext-wght-normal.CO5hGrJv.woff2) format("woff2-variations");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F,
    U+FE2E-FE2F;
}

/* ===========================
   LAYOUT
   =========================== */

.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-md);
}

@media screen and (min-width: 768px) {
  .container {
    padding: 0 2.5rem;
  }
}

/* ===========================
   TOP BAR / ALERT
   =========================== */

.top-bar {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-sm) 0;
  text-align: center;
}

.top-bar__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-md);
}

.top-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.top-bar__text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .top-bar__text {
    font-size: 0.8125rem;
  }
}

/* ===========================
   HEADER
   =========================== */

.header {
  padding-top: var(--spacing-md);
  background-color: var(--color-surface);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
  border-bottom: 3px solid #fcd34d;
  position: relative;
}

.header__nav::before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #fcd34d, rgba(252, 211, 77, 0));
  z-index: -1;
}

.header__logo {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.header__logo p{
    font-size: 25px;
    font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 160px;
    max-height: 80px;
  }
}

.header__menu {
  display: none;
  list-style: none;
  padding: 64px 32px 0;
  margin: 0;
  background-color: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--rounded);
  position: fixed;
  inset: 0;
  z-index: 99;
}

@media screen and (min-width: 768px) {
  .header__menu {
    padding: 0;
    display: flex;
    gap: var(--spacing-lg);
    background-color: transparent;
    border: none;
    position: relative;
    z-index: 100;
    inset: auto;
  }
}

.header__menu--visible {
  display: block;
}

.header__menu-link {
  font-size: 1.125rem;
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .header__menu-link {
    font-size: 0.875rem;
    margin-top: 0;
    color: var(--color-text-secondary);
  }
}

.header__menu-btn {
  display: inline-block;
  color: var(--color-text);
  z-index: 100;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 0;
  transition: transform 0.2s ease;
}

@media screen and (min-width: 768px) {
  .header__menu-btn {
    display: none;
  }
}

.header__content {
  display: flex;
  flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  margin-bottom: var(--spacing-2xl);
  padding-bottom: 60px;
}

@media screen and (min-width: 1024px) {
  .header__content {
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-xl);
  }
}

.header__section {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero__title {
  font-size: 1.625rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}

@media screen and (min-width: 860px) {
  .hero__title {
    font-size: 2.25rem;
  }
}

.hero__subtitle {
  margin-top: 0;
  margin-bottom: var(--spacing-lg);
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
  }
}

.hero__badges {
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  color: var(--color-text-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--rounded);
  font-size: 0.8125rem;
  font-weight: 500;
  background-color: var(--color-surface);
}

@media screen and (min-width: 768px) {
  .badge {
    font-size: 0.875rem;
    padding: 0.625rem 1.125rem;
  }
}

.badge__icon {
  font-size: 1rem;
  display: block;
  color: var(--color-text-secondary);
}

/* ===========================
   PROMO BOX
   =========================== */

.promo-box {
  background: linear-gradient(135deg, #dbeafe 0%, #f0f9ff 100%);
  border: 2px solid #3b82f6;
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg);
  margin-top: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.1);
}

.promo-box__title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .promo-box__title {
    font-size: 1.25rem;
  }
}

.promo-box__text {
  margin: 0 0 var(--spacing-lg);
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .promo-box__text {
    font-size: 0.9375rem;
  }
}

.promo-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* ===========================
   CARD COMPONENT
   =========================== */

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--rounded-lg);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 2px solid #3b82f6;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.18);
  border-color: #2563eb;
}

.card__header {
  padding: var(--spacing-lg) var(--spacing-lg) 1rem;
  border-bottom: 3px solid #fcd34d;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--spacing-lg);
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.04), transparent);

  background: linear-gradient(to right, rgba(37, 99, 235, 0.02), rgba(252, 211, 77, 0.02));
}

.card__title-wrapper {
  flex: 1;
}

.card__title {
  margin: 0 0 0.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
}

@media screen and (min-width: 768px) {
  .card__title {
    font-size: 1.25rem;
  }
}

.card__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .card__subtitle {
    font-size: 0.875rem;
  }
}

.card__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 100%);
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(252, 211, 77, 0.4);
  min-width: 60px;
  min-height: 60px;
}

.card__score {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

@media screen and (min-width: 768px) {
  .card__score {
    font-size: 1.25rem;
  }
}

.card__star {
  font-size: 1rem;
  color: #d97706;
}

.card__body {
  padding: var(--spacing-lg);
}

.card__logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  min-height: 100px;
  background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-md);
  border: 2px dashed #bfdbfe;
}

.card__logo {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media screen and (min-width: 768px) {
  .card__logo {
    max-width: 160px;
    max-height: 80px;
  }
}

.card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  padding: 0.5rem;
  border-radius: var(--rounded);
  background: linear-gradient(to right, rgba(59, 130, 246, 0.04), rgba(252, 211, 77, 0.02));
}

@media screen and (min-width: 768px) {
  .card__feature {
    font-size: 0.875rem;
  }
}

.card__feature-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: #2563eb;
  font-weight: bold;
}

.card__footer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: var(--rounded);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  display: block;
  width: 100%;
  background-color: transparent;
  color: var(--color-text-secondary);
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--rounded);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .btn-secondary {
    font-size: 0.9375rem;
  }
}

.btn-secondary:hover {
  background-color: var(--border-color-light);
}

.btn-flex-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media screen and (min-width: 480px) {
  .btn-flex-row {
    flex-direction: row;
  }
}

.btn-flex-row .btn {
  flex: 1;
}

/* ===========================
   GRID LAYOUTS
   =========================== */

.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: var(--spacing-2xl);
}

@media screen and (min-width: 768px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  .grid-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.grid-faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media screen and (min-width: 768px) {
  .grid-faq {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: var(--spacing-2xl) 0;
}

.section.section--operators {
  margin-top: var(--spacing-2xl);
}

.section__header {
  margin-bottom: var(--spacing-2xl);
}

.section__title {
  font-size: 1.625rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #fcd34d, #fbbf24);
  border-radius: 2px;
}

@media screen and (min-width: 768px) {
  .section__title {
    font-size: 1.875rem;
  }
}

.section__subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
}

@media screen and (min-width: 768px) {
  .section__subtitle {
    font-size: 0.9375rem;
  }
}

.section__title--faq {
  font-size: 1.625rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section__title--faq::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #fcd34d, #fbbf24);
  border-radius: 2px;
}

@media screen and (min-width: 768px) {
  .section__title--faq {
    font-size: 1.875rem;
  }
}

/* ===========================
   FAQ ITEM
   =========================== */

.faq-item {
  background-color: var(--color-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--rounded-lg);
  padding: var(--spacing-lg);
}

.faq-item__question {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .faq-item__question {
    font-size: 1.0625rem;
  }
}

.faq-item__answer {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .faq-item__answer {
    font-size: 0.9375rem;
  }
}

/* ===========================
   FOOTER
   =========================== */

.footer {
  padding: 2.5rem 1.5rem 1.5rem;
  background-color: var(--color-surface);
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 3rem 2.5rem 2rem;
  }
}

.footer__content {
  margin-bottom: 0;
}

.footer__text {
  line-height: 1.6;
  font-size: 0.8125rem;
  color: var(--color-text-secondary);
}

.footer__text:first-child {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 0.875rem;
  }
}

.footer__logos {
  display: flex;
  margin: 2rem 0 1.5rem;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .footer__logos {
    gap: 1.5rem;
    margin: 2.5rem 0 2rem;
  }
}

.footer__logo {
  height: 2rem;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  filter: invert(1);
  transition: opacity 0.2s ease;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    height: 2.25rem;
  }
}

.footer__logo:hover {
  opacity: 1;
}

.footer__nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0;
}

@media screen and (min-width: 768px) {
  .footer__nav {
    gap: 1.5rem;
  }
}

.footer__nav-link {
  font-weight: 500;
  color: var(--color-text-secondary);
  font-size: 0.8125rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
}

@media screen and (min-width: 768px) {
  .footer__nav-link {
    font-size: 0.875rem;
  }
}

.footer__nav-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.footer__copyright {
  margin: var(--spacing-lg) 0 0;
  font-size: 0.75rem;
  text-align: center;
  color: var(--color-text-muted);
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 0.8125rem;
  }
}

/* ===========================
   COOKIE BANNER
   =========================== */

.cookie-banner {
  position: fixed;
  max-width: 420px;
  width: calc(100% - 2.5rem);
  min-height: 136px;
  height: auto;
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  color: var(--color-text);
  display: none;
  flex-direction: column;
  justify-content: center;
  z-index: 100;
  border-radius: var(--rounded-lg);
  border: 2px solid var(--color-warning);
  background: var(--color-surface);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-lg);
  font-weight: 500;
  gap: 1rem;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner--visible {
  display: flex;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.cookie-banner__buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cookie-btn {
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--rounded);
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.cookie-btn--accept {
  background: var(--color-warning);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: #ff7540;
}

.cookie-btn--decline {
  background: var(--border-color);
  color: var(--color-text-secondary);
}

.cookie-btn--decline:hover {
  background: var(--border-color-light);
}

/* ===========================
   MODALS
   =========================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.modal-overlay--visible {
  display: flex;
}

.modal-overlay.dark {
  background: var(--color-background);
}

.modal {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  z-index: auto;
  display: flex;
  max-width: 560px;
  width: calc(100% - 2rem);
  min-height: 148px;
  height: auto;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  border-radius: var(--rounded-lg);
  border: 2px solid #2563eb;
  background: #ffffff;
  padding: 2.5rem 2rem;
  color: var(--color-text);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.modal__text {
  margin: 0;
  font-weight: 500;
  text-align: center;
  color: #1a1a1a;
  line-height: 1.8;
  font-size: 1.05rem;
}

.modal__buttons {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.modal-btn {
  border: none;
  padding: 1.1rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-btn--accept {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-btn--accept:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

.modal-btn--decline {
  background: #e5e7eb;
  color: #4a4a4a;
  border: 1px solid #d1d5db;
}

.modal-btn--decline:hover {
  background: #d1d5db;
  border-color: #9ca3af;
  transform: translateY(-2px);
}

.modal--access-denied {
  gap: 1rem;
  outline: 1px solid var(--border-color);
}

.modal--access-denied h2 {
  margin: 1rem 0 0;
}

.modal--access-denied p {
  margin: 0 auto 0.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  max-width: 320px;
  text-align: center;
}

.modal--access-denied img {
  display: block;
}

/* ===========================
   UTILITY CLASSES
   =========================== */

.hide {
  display: none;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-inline {
  display: inline-flex;
}

.overflow-hidden {
  overflow: hidden;
}

.link-subtle {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.link-subtle:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
