 :root {
     --bg-0: #04120e;
     --bg-1: #0a231c;
     --bg-surface: rgba(255, 255, 255, 0.06);
     --bg-surface-2: rgba(10, 35, 28, 0.6);
     --border: rgba(255, 255, 255, 0.10);
     --border-accent: rgba(251, 191, 36, 0.28);
     --text-primary: #ffffff;
     --text-secondary: rgba(255, 255, 255, 0.7);
     --text-muted: rgba(255, 255, 255, 0.45);
     --accent: #fbbf24;
     --accent-strong: #f59e0b;
     --accent-strong-2: #d97706;
     --success: #34d399;
     --danger: #f43f5e;
     --radius-md: 14px;
     --radius-lg: 18px;
     --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.45);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     min-height: 100vh;
     background:
         radial-gradient(circle at 20% 0%, rgba(16, 185, 129, 0.25) 0%, transparent 40%),
         radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.16) 0%, transparent 45%),
         radial-gradient(circle at 50% 100%, rgba(5, 150, 105, 0.18) 0%, transparent 50%),
         linear-gradient(180deg, var(--bg-0), var(--bg-1) 60%, var(--bg-0));
     background-attachment: fixed;
     color: var(--text-primary);
     overflow-x: hidden;
     padding: 32px 16px 48px;
 }

 body::before {
     content: "";
     position: fixed;
     inset: 0;
     background: repeating-linear-gradient(135deg,
             rgba(251, 191, 36, 0.04) 0,
             rgba(251, 191, 36, 0.04) 1px,
             transparent 1px,
             transparent 12px);
     opacity: 0.6;
     pointer-events: none;
     z-index: 0;
 }

 .wrapper {
     position: relative;
     z-index: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 20px;
     text-align: center;
     max-width: 460px;
     width: 100%;
     margin: 0 auto;
 }

 /* ---------- Шапка ---------- */
 .logo {
     display: flex;
     justify-content: center;
     margin-bottom: 4px;
 }

 .logo img {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     border: 3px solid rgba(251, 191, 36, 0.25);
     box-shadow: 0 8px 28px rgba(251, 191, 36, 0.45);
     object-fit: cover;
 }

 .title {
     font-size: 28px;
     font-weight: 800;
     letter-spacing: -0.02em;
     background: linear-gradient(135deg, #ffffff, #fbbf24);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .subtitle {
     font-size: 12px;
     color: var(--accent);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     margin-top: -12px;
 }

 /* ---------- Предупреждение ---------- */
 .alert {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 14px 16px;
     background: linear-gradient(135deg, rgba(244, 63, 94, 0.9), rgba(190, 18, 60, 0.9));
     color: #fff;
     font-size: 12px;
     font-weight: 600;
     border-radius: var(--radius-md);
     box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
     text-align: center;
     line-height: 1.45;
 }

 /* ---------- Преимущества ---------- */
 .highlight {
     position: relative;
     width: 100%;
     background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(251, 191, 36, 0.12));
     border: 1px solid var(--border-accent);
     border-radius: var(--radius-lg);
     padding: 26px 20px 20px;
     box-shadow: var(--shadow-lg), 0 0 40px rgba(16, 185, 129, 0.15) inset;
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
 }

 .badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(135deg, #10b981, #f59e0b);
     color: #04120e;
     padding: 6px 18px;
     border-radius: 999px;
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 0.5px;
     box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5);
     white-space: nowrap;
 }

 .highlight ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 14px;
     font-size: 14px;
     line-height: 1.5;
     text-align: left;
 }

 .highlight li {
     display: flex;
     align-items: flex-start;
 }

 .highlight li::before {
     content: "✓";
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 20px;
     height: 20px;
     background: rgba(251, 191, 36, 0.2);
     color: var(--accent);
     border-radius: 50%;
     margin-right: 10px;
     font-size: 12px;
     font-weight: 800;
     flex-shrink: 0;
 }

 .highlight li span,
 .card span {
     color: var(--accent);
     font-weight: 700;
 }

 /* ---------- Плашки ---------- */
 .receive-options {
     display: flex;
     gap: 8px;
     flex-wrap: wrap;
     justify-content: center;
     width: 100%;
 }

 .option-pill {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 16px;
     background: rgba(251, 191, 36, 0.10);
     border: 1px solid var(--border-accent);
     border-radius: 999px;
     font-size: 13px;
     font-weight: 600;
     color: #fff;
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
 }

 .option-pill .icon {
     font-size: 16px;
 }

 .option-pill .text {
     color: var(--accent);
 }

 /* ---------- Кнопка ---------- */
 .btn {
     width: 100%;
     padding: 18px 24px;
     font-size: 16px;
     font-weight: 800;
     color: #04120e;
     background: linear-gradient(135deg, #fbbf24, #f59e0b 60%, #d97706);
     border: none;
     border-radius: var(--radius-md);
     cursor: pointer;
     text-decoration: none;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     box-shadow: 0 10px 28px rgba(251, 191, 36, 0.45);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
 }

 .btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 38px rgba(251, 191, 36, 0.65);
 }

 .btn:active {
     transform: scale(0.98);
 }

 .btn svg {
     width: 20px;
     height: 20px;
     fill: currentColor;
 }

 /* ---------- Курс ---------- */
 .card {
     width: 100%;
     background: var(--bg-surface);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 22px 24px;
     font-size: 15px;
     line-height: 1.6;
     box-shadow: var(--shadow-lg);
     text-align: left;
 }

 .rate-box {
     background: var(--bg-surface-2);
     border-radius: 12px;
     padding: 16px;
     margin-bottom: 16px;
     border: 1px solid var(--border-accent);
     text-align: center;
 }

 .rate-text {
     font-size: 13px;
     color: var(--text-secondary);
     margin-bottom: 8px;
 }

 .rate-value {
     font-size: 20px;
     font-weight: 800;
     color: #fff;
     display: flex;
     flex-direction: column;
     gap: 6px;
     align-items: center;
 }

 .rate-value span {
     color: var(--accent);
 }

 .divider {
     width: 100%;
     height: 1px;
     margin: 16px 0;
     background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.4), transparent);
 }

 /* ---------- Офисы ---------- */
 .location {
     width: 100%;
     background: var(--bg-surface);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     overflow: hidden;
     text-align: left;
     box-shadow: var(--shadow-lg);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
 }

 .location-image {
     width: 100%;
     height: 180px;
     overflow: hidden;
 }

 .location-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
 }

 .location-info {
     padding: 18px 20px;
 }

 .location-info h3 {
     font-size: 15px;
     font-weight: 700;
     margin-bottom: 6px;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .location-info h3 svg {
     width: 18px;
     height: 18px;
     color: var(--accent);
     flex-shrink: 0;
 }

 .location-info p {
     font-size: 13px;
     color: var(--text-secondary);
     margin-bottom: 10px;
 }

 .status {
     display: flex;
     align-items: center;
     gap: 8px;
     font-size: 12px;
     font-weight: 600;
     color: var(--success);
 }

 .status-dot {
     width: 8px;
     height: 8px;
     background: var(--success);
     border-radius: 50%;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {

     0%,
     100% {
         opacity: 1;
     }

     50% {
         opacity: 0.45;
     }
 }

 /* ---------- Контакты ---------- */
 .contacts {
     width: 100%;
     background: var(--bg-surface);
     border: 1px solid var(--border);
     border-radius: var(--radius-lg);
     padding: 22px 20px;
     box-shadow: var(--shadow-lg);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     text-align: left;
 }

 .contacts h2 {
     font-size: 16px;
     font-weight: 800;
     margin-bottom: 4px;
     letter-spacing: -0.01em;
     color: var(--accent);
 }

 .contacts .contacts-sub {
     font-size: 12px;
     color: var(--text-muted);
     margin-bottom: 16px;
 }

 .contact-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .contact-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px 14px;
     background: rgba(10, 35, 28, 0.55);
     border: 1px solid var(--border);
     border-radius: 12px;
     text-decoration: none;
     color: #fff;
     transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
 }

 a.contact-item:hover {
     border-color: var(--border-accent);
     background: rgba(251, 191, 36, 0.12);
     transform: translateY(-1px);
 }

 .contact-icon {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 34px;
     height: 34px;
     border-radius: 10px;
     background: rgba(251, 191, 36, 0.12);
     color: var(--accent);
     flex-shrink: 0;
 }

 .contact-icon svg {
     width: 18px;
     height: 18px;
 }

 .contact-body {
     display: flex;
     flex-direction: column;
     line-height: 1.35;
     min-width: 0;
 }

 .contact-label {
     font-size: 11px;
     color: var(--text-muted);
     text-transform: uppercase;
     letter-spacing: 0.08em;
     font-weight: 700;
 }

 .contact-value {
     font-size: 14px;
     font-weight: 600;
     color: #fff;
     word-break: break-word;
 }

 /* ---------- Футер ---------- */
 .footer {
     width: 100%;
     margin-top: 4px;
     font-size: 11px;
     color: var(--text-muted);
     line-height: 1.6;
     text-align: center;
 }

 .footer a {
     color: var(--accent);
     text-decoration: none;
 }

 .footer a:hover {
     text-decoration: underline;
 }

 /* ---------- Модальное окно (политика/соглашение) ---------- */
 .modal-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.78);
     backdrop-filter: blur(6px);
     -webkit-backdrop-filter: blur(6px);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 16px;
     z-index: 1000;
     visibility: hidden;
     opacity: 0;
     transition: opacity 0.25s ease, visibility 0.25s ease;
 }

 .modal-overlay.active {
     visibility: visible;
     opacity: 1;
 }

 .modal {
     background: linear-gradient(145deg, #0a231c, #04120e);
     border: 1px solid var(--border-accent);
     border-radius: var(--radius-lg);
     max-width: 720px;
     width: 100%;
     max-height: 90vh;
     display: flex;
     flex-direction: column;
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(251, 191, 36, 0.25);
     transform: scale(0.96);
     transition: transform 0.25s ease;
 }

 .modal-overlay.active .modal {
     transform: scale(1);
 }

 .modal-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 18px 24px;
     border-bottom: 1px solid var(--border);
     flex-shrink: 0;
 }

 .modal-header h2 {
     font-size: 18px;
     font-weight: 800;
     letter-spacing: -0.01em;
     color: var(--accent);
 }

 .modal-close {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid var(--border);
     border-radius: 10px;
     color: var(--text-secondary);
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     line-height: 1;
     cursor: pointer;
     transition: background 0.2s, color 0.2s, border-color 0.2s;
     flex-shrink: 0;
 }

 .modal-close:hover {
     background: rgba(244, 63, 94, 0.2);
     border-color: rgba(244, 63, 94, 0.4);
     color: #fff;
 }

 .modal-tabs {
     display: flex;
     gap: 4px;
     padding: 16px 24px 0;
     border-bottom: 1px solid var(--border);
     flex-shrink: 0;
 }

 .tab-btn {
     padding: 10px 18px;
     font-size: 13px;
     font-weight: 700;
     color: var(--text-muted);
     background: transparent;
     border: none;
     border-bottom: 2px solid transparent;
     cursor: pointer;
     transition: color 0.2s, border-color 0.2s;
     border-radius: 6px 6px 0 0;
     letter-spacing: 0.02em;
 }

 .tab-btn:hover {
     color: var(--text-secondary);
     background: rgba(255, 255, 255, 0.03);
 }

 .tab-btn.active {
     color: var(--accent);
     border-bottom-color: var(--accent);
 }

 .modal-body {
     padding: 24px;
     overflow-y: auto;
     font-size: 14px;
     line-height: 1.7;
     color: var(--text-secondary);
     text-align: left;
     flex: 1;
     scrollbar-width: thin;
     scrollbar-color: rgba(251, 191, 36, 0.35) transparent;
 }

 .modal-body::-webkit-scrollbar {
     width: 6px;
 }

 .modal-body::-webkit-scrollbar-track {
     background: transparent;
 }

 .modal-body::-webkit-scrollbar-thumb {
     background: rgba(251, 191, 36, 0.35);
     border-radius: 6px;
 }

 .modal-body h3 {
     font-size: 15px;
     font-weight: 800;
     color: var(--accent);
     margin: 22px 0 8px;
     letter-spacing: -0.01em;
 }

 .modal-body h3:first-child {
     margin-top: 0;
 }

 .modal-body p {
     margin-bottom: 12px;
 }

 .modal-body ul {
     margin: 8px 0 16px 20px;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .modal-body li {
     list-style: disc;
     color: var(--text-secondary);
 }

 .modal-body strong {
     color: #fff;
     font-weight: 700;
 }

 .modal-body .accent {
     color: var(--accent);
     font-weight: 600;
 }

 .modal-body .highlight-box {
     background: rgba(251, 191, 36, 0.08);
     border-left: 3px solid var(--accent);
     padding: 14px 18px;
     border-radius: 0 12px 12px 0;
     margin: 16px 0;
     color: var(--text-secondary);
     font-size: 13px;
 }

 .modal-body .highlight-box strong {
     color: var(--accent);
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
 }

 .modal-footer {
     padding: 14px 24px;
     border-top: 1px solid var(--border);
     display: flex;
     justify-content: flex-end;
     gap: 10px;
     flex-shrink: 0;
 }

 .modal-footer .btn-ghost {
     padding: 10px 22px;
     font-size: 13px;
     font-weight: 700;
     color: var(--text-secondary);
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid var(--border);
     border-radius: 10px;
     cursor: pointer;
     transition: background 0.2s, color 0.2s, border-color 0.2s;
     font-family: inherit;
 }

 .modal-footer .btn-ghost:hover {
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border-color: rgba(255, 255, 255, 0.2);
 }

 .footer-link-btn {
     background: none;
     border: none;
     color: var(--accent);
     font-size: 11px;
     font-family: inherit;
     cursor: pointer;
     text-decoration: none;
     padding: 0;
     transition: text-decoration 0.2s;
 }

 .footer-link-btn:hover {
     text-decoration: underline;
 }

 /* ---------- Cookie-баннер ---------- */
 .cookie-banner {
     position: fixed;
     left: 50%;
     bottom: 20px;
     transform: translateX(-50%) translateY(140%);
     width: calc(100% - 32px);
     max-width: 460px;
     background: linear-gradient(145deg, rgba(10, 35, 28, 0.98), rgba(4, 18, 14, 0.98));
     border: 1px solid var(--border-accent);
     border-radius: var(--radius-lg);
     padding: 18px 20px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(251, 191, 36, 0.2);
     backdrop-filter: blur(16px);
     -webkit-backdrop-filter: blur(16px);
     z-index: 1100;
     display: flex;
     flex-direction: column;
     gap: 14px;
     opacity: 0;
     visibility: hidden;
     transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
         opacity 0.4s ease,
         visibility 0.4s ease;
 }

 .cookie-banner.visible {
     transform: translateX(-50%) translateY(0);
     opacity: 1;
     visibility: visible;
 }

 .cookie-banner__text {
     font-size: 13px;
     line-height: 1.55;
     color: var(--text-secondary);
     text-align: left;
 }

 .cookie-banner__text strong {
     color: #fff;
     font-weight: 700;
 }

 .cookie-banner__text a {
     color: var(--accent);
     text-decoration: none;
     font-weight: 600;
 }

 .cookie-banner__text a:hover {
     text-decoration: underline;
 }

 .cookie-banner__actions {
     display: flex;
     gap: 10px;
     flex-wrap: wrap;
 }

 .cookie-btn {
     flex: 1;
     min-width: 120px;
     padding: 12px 18px;
     font-size: 13px;
     font-weight: 700;
     font-family: inherit;
     border-radius: 12px;
     cursor: pointer;
     transition: transform 0.15s ease, box-shadow 0.2s ease,
         background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
     border: 1px solid transparent;
     white-space: nowrap;
 }

 .cookie-btn:active {
     transform: scale(0.97);
 }

 .cookie-btn--accept {
     color: #04120e;
     background: linear-gradient(135deg, #fbbf24, #f59e0b);
     box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
 }

 .cookie-btn--accept:hover {
     box-shadow: 0 12px 28px rgba(251, 191, 36, 0.6);
     transform: translateY(-1px);
 }

 .cookie-btn--decline {
     color: var(--text-secondary);
     background: rgba(255, 255, 255, 0.05);
     border-color: var(--border);
 }

 .cookie-btn--decline:hover {
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border-color: rgba(255, 255, 255, 0.2);
 }

 @media (max-width: 480px) {
     body {
         padding: 24px 12px 40px;
     }

     .title {
         font-size: 24px;
     }

     .option-pill {
         padding: 8px 14px;
         font-size: 12px;
     }

     .option-pill .icon {
         font-size: 14px;
     }

     .card,
     .contacts,
     .highlight {
         padding: 18px 16px;
     }

     .highlight {
         padding-top: 24px;
     }

     .modal-header {
         padding: 14px 16px;
     }

     .modal-header h2 {
         font-size: 16px;
     }

     .modal-tabs {
         padding: 12px 16px 0;
     }

     .tab-btn {
         padding: 8px 12px;
         font-size: 12px;
     }

     .modal-body {
         padding: 18px 16px;
         font-size: 13px;
     }

     .modal-footer {
         padding: 12px 16px;
     }

     .cookie-banner {
         bottom: 12px;
         width: calc(100% - 24px);
         padding: 16px 16px;
     }

     .cookie-banner__actions {
         flex-direction: column;
     }

     .cookie-btn {
         width: 100%;
     }
 }