/* ============================================================
   Natriqa — Dark Premium Theme
   Oil & Gas AI Trading Signals Landing Page
   ============================================================ */

/* ---- 1. RESET -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
p { margin: 0; }

/* ---- 2. CSS VARIABLES ------------------------------------ */
:root {
  --accent-color: #E63946;
  --accent-color-hover: #FF4D5A;
  --accent-glow: rgba(230, 57, 70, 0.15);
  --accent-gradient: linear-gradient(135deg, #E63946, #FF4D5A);
  --contrast-color: #FFFFFF;
  --page-background: #0A0A0F;
  --text-color: #E2E8F0;
  --text-muted: #64748B;
  --header-background: rgba(10, 10, 15, 0.92);
  --footer-background: #06060A;
  --footer-text-color: #475569;
  --modal-background: #11121A;
  --card-bg: #11121A;
  --card-border: rgba(230, 57, 70, 0.08);
  --section-alt-bg: #0E0F18;
  --navy: #1A2342;
  --navy-light: #243054;
  --green: #10B981;
  --cyan: #06B6D4;
  --glass-bg: rgba(17, 18, 26, 0.88);
  --glass-border: rgba(230, 57, 70, 0.08);
  --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --main-font: 'Inter', sans-serif;
  --heading-font: 'Space Grotesk', sans-serif;
  --default-text: 16px;
  --text-size-h1: 52px;
  --text-size-h2: 38px;
  --text-size-h3: 24px;
  --text-size-h4: 20px;
}

/* ---- 3. BASE --------------------------------------------- */
html, body { color: var(--text-color); font-family: var(--main-font); font-size: var(--default-text); background-color: var(--page-background); }
.page-site { display: flex; flex-direction: column; min-height: 100vh; overflow: hidden; background-color: var(--page-background); }
.gradient-blobs {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.gradient-blob--red {
  width: 700px; height: 700px;
  top: 10%; left: 20%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 65%);
  animation: blobFloat1 25s ease-in-out infinite;
}
.gradient-blob--blue {
  width: 600px; height: 600px;
  top: 50%; right: 10%;
  background: radial-gradient(circle, rgba(26, 35, 66, 0.45) 0%, transparent 65%);
  animation: blobFloat2 30s ease-in-out infinite;
}
.gradient-blob--red2 {
  width: 500px; height: 500px;
  bottom: 20%; left: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 65%);
  animation: blobFloat3 22s ease-in-out infinite;
}
@keyframes blobFloat1 {
  0% { transform: translate(0, 0); }
  25% { transform: translate(200px, 150px); }
  50% { transform: translate(-100px, 300px); }
  75% { transform: translate(150px, -100px); }
  100% { transform: translate(0, 0); }
}
@keyframes blobFloat2 {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-200px, -200px); }
  50% { transform: translate(100px, -150px); }
  75% { transform: translate(-150px, 100px); }
  100% { transform: translate(0, 0); }
}
@keyframes blobFloat3 {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-150px, 200px); }
  50% { transform: translate(200px, -100px); }
  75% { transform: translate(-100px, -200px); }
  100% { transform: translate(0, 0); }
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; width: 100%; }
section { position: relative; z-index: 0; scroll-margin-top: 50px; overflow: hidden; }
main section:not(.hero)::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 35, 66, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  top: -150px; right: -100px;
}
main section:not(.hero)::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  bottom: -100px; left: -80px;
}
main section:nth-child(odd):not(.hero)::before { left: -100px; right: auto; }
main section:nth-child(odd):not(.hero)::after { right: -80px; left: auto; }
section p { word-break: break-word; }
.section { padding: 100px 0; }
.section-alt { background-color: var(--section-alt-bg); }

.sec-background, .page-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; object-fit: cover; pointer-events: none; }
picture.sec-background { display: block; }
picture.sec-background img { width: 100%; height: 100%; object-fit: cover; }
.page-background { position: fixed; z-index: 0; }
.text-section { padding: 130px 0; }
.text-section table { margin: 0 auto; width: 100%; max-width: 1100px; }
.full-height { min-height: calc(100vh - 120px); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.fade { opacity: 0.5; }
.text-accent { color: var(--accent-color); }
.text-gradient { color: var(--accent-color); }
.text-navy { color: var(--navy-light); }
.rating { display: flex; align-items: center; gap: 5px; color: var(--accent-color); font-size: 20px; font-weight: 700; }
.rating svg { width: 25px; height: 24px; margin-bottom: 3px; }

/* ---- 4. TYPOGRAPHY --------------------------------------- */
h1 { font-family: var(--heading-font); font-size: var(--text-size-h1); font-weight: 700; line-height: 1.15; margin: 0 0 24px; color: var(--text-color); }
h2 { font-family: var(--heading-font); font-size: var(--text-size-h2); font-weight: 700; line-height: 1.2; margin: 0 0 20px; color: var(--text-color); }
h3 { font-family: var(--heading-font); font-size: var(--text-size-h3); font-weight: 600; line-height: 1.25; margin: 0 0 16px; color: var(--text-color); }
h4 { font-family: var(--heading-font); font-size: var(--text-size-h4); font-weight: 600; line-height: 1.3; margin: 0 0 16px; color: var(--text-color); }
section p, p { font-size: var(--default-text); line-height: 1.7; margin-bottom: 16px; color: rgba(255, 255, 255, 0.55); }
section p:last-child { margin-bottom: 0; }
section ul:not(.iti__country-list) li { position: relative; padding-left: 20px; margin-bottom: 10px; }
section ul:not(.iti__country-list) li:last-child { margin-bottom: 0; }
section ul:not(.iti__country-list) li::before { position: absolute; content: ''; width: 6px; height: 6px; border-radius: 50%; background-color: var(--accent-color); left: 6px; top: 9px; }

/* ---- 5. BUTTONS ------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border: none; border-radius: 10px;
  font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center;
  cursor: pointer; transition: all 0.3s ease; position: relative; overflow: hidden;
  user-select: none; width: fit-content; font-family: var(--main-font);
  letter-spacing: 0.3px;
}
.btn.btn--center { margin-top: 40px; margin-left: auto !important; margin-right: auto !important; display: flex; }
.btn-base {
  background: linear-gradient(135deg, #E63946 0%, #FF4D5A 50%, #E63946 100%);
  background-size: 200% 200%;
  color: #FFFFFF; font-weight: 700;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.3);
}
.btn-base:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(230, 57, 70, 0.4), 0 0 40px rgba(230, 57, 70, 0.15);
  background-position: right center;
}
.btn-outline {
  background: transparent; color: var(--accent-color);
  border: 1.5px solid rgba(230, 57, 70, 0.4);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(230, 57, 70, 0.1); color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

/* Floating CTA */
.btn-show-form { position: fixed; width: 50px; height: 50px; display: flex; justify-content: center; align-items: center; border-radius: 50%; background: var(--accent-color); right: 30px; bottom: 30px; z-index: 100; }
.btn-show-form p { width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; overflow: hidden; margin: 0; }
.btn-show-form::before, .btn-show-form::after { position: absolute; content: ''; width: 100%; height: 100%; background: var(--accent-color); opacity: 0.5; border-radius: 50%; z-index: -1; animation: btn-pulse 1.6s infinite; }
.btn-show-form::after { animation-delay: 0.3s; opacity: 0.2; animation-name: btn-pulse2; }
.btn-show-form svg { width: 25px; height: 25px; fill: #FFFFFF; }
@keyframes btn-pulse { 0% { transform: scale(1); opacity: 0.5; } 70%, 100% { transform: scale(1.7); opacity: 0; } }
@keyframes btn-pulse2 { 0% { transform: scale(1); opacity: 0.2; } 70%, 100% { transform: scale(2.3); opacity: 0; } }

/* ---- 6. HEADER ------------------------------------------- */
.header {
  position: fixed; background-color: var(--header-background);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  width: 100%; padding: 8px 0;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  z-index: 1000; top: 0; border-bottom: 1px solid rgba(26, 35, 66, 0.3);
}
.header.header--scroll { box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4); }
.header.header--static { position: static; }
.header.header--hide { transform: translateY(-100%); }
.header.header--transparent { background-color: transparent; border-bottom-color: transparent; }
.header.header--transparent.header--scroll { background-color: var(--header-background); border-bottom-color: rgba(26, 35, 66, 0.3); }
.header__top-text { position: absolute; font-size: 8px; top: 3px; left: 50%; transform: translateX(-50%); opacity: 0.3; width: 100%; text-align: center; z-index: 3; color: var(--text-muted); }
.header__top-text a { color: var(--text-muted) !important; }
.header__wrapper { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.logo { max-width: 225px; height: 60px; display: flex; justify-content: flex-start; align-items: center; gap: 10px; }
.logo__icon { width: 40px; height: 40px; flex-shrink: 0; filter: drop-shadow(0 2px 8px rgba(230, 57, 70, 0.3)); }
.logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.logo span { font-family: var(--heading-font); font-size: 26px; font-weight: 700; color: var(--text-color); letter-spacing: -0.5px; }
.logo span em { font-style: normal; color: var(--accent-color); }
.wrap-nav { display: flex; gap: 20px; }
ul.nav { display: flex; gap: 24px; }
ul.nav a { font-size: 15px; font-weight: 500; position: relative; color: var(--text-muted); transition: color 0.3s; }
ul.nav a:hover, ul.nav a.active { color: var(--text-color); }
ul.nav a::before { position: absolute; content: ''; width: 100%; height: 2px; bottom: -4px; left: 0; background: var(--accent-color); transform: scaleX(0); transition: transform 0.3s; transform-origin: right; }
ul.nav a:hover::before, ul.nav a.active::before { transform: scaleX(1); transform-origin: left; }
.header__right { display: flex; align-items: center; gap: 20px; }
.header__btn .desktop-hidden { display: none; }

.resources-nav { position: relative; }
.resources-nav.active svg { transform: rotateX(180deg); }
.resources-nav__title { cursor: pointer; }
.resources-nav__title svg { width: 14px; height: 8px; transition: transform 0.1s; }
.resources-nav__list { position: absolute; display: none; background-color: var(--modal-background); padding: 10px 15px; top: 110%; width: calc(100% + 20px); left: -10px; border-radius: 8px; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); border: 1px solid var(--glass-border); }
.resources-nav__list li { margin-bottom: 5px; }
.resources-nav__list li:last-child { margin-bottom: 0; }
.resources-nav__list a:hover { text-shadow: .5px 0 0 currentColor; }

.header-top-menu, .header-bottom-menu { width: 100%; }
.header-menu--top, .header-menu--bottom { width: 100%; }
.header-menu--top .header-menu__list, .header-menu--bottom .header-menu__list { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; }
.header-menu__item { margin: 0; }
.header-menu__link { display: block; color: var(--text-color); transition: color 0.3s; font-weight: 500; }
.header-menu__link:hover, .header-menu__link.active-link { color: var(--accent-color); }
.header-menu--top { padding: 10px 0; }
.header-menu--top .header-menu__link { font-size: 14px; }
.header-menu--bottom { padding: 15px 0; }
.header-menu--bottom .header-menu__link { font-size: 16px; }
.header__timer { padding: 15px 15px 5px; text-align: center; width: 100%; background: var(--accent-color); color: #fff; position: relative; z-index: 2; display: none; }
.with-timer .header { padding: 0 0 8px; }
.with-timer .header__timer { display: block; }
.with-timer .header__wrapper { padding-top: 8px; }

/* Burger */
.burger { height: 16px; width: 30px; justify-content: center; align-items: center; z-index: 350; cursor: pointer; transition: all 0.3s; display: none; position: relative; margin-right: 12px; }
.burger::before { position: absolute; content: ''; border-radius: 6px; border: 1px solid rgba(230, 57, 70, 0.12); background: rgba(230, 57, 70, 0.06); width: 44px; height: 40px; top: -10px; }
.burger span { position: absolute; background: var(--text-color); height: 3px; width: 30px; display: block; transition: all 0.3s; border-radius: 5px; }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }
.burger.active span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { bottom: 7px; transform: rotate(-45deg); }
.menu-bottom-mob { display: none; }
body { padding-top: 76px; }
.with-timer body { padding-top: 120px; }

/* ---- 7. FOOTER ------------------------------------------- */
.footer { margin-top: auto; background-color: var(--footer-background); color: var(--footer-text-color); padding: 60px 0 50px; z-index: 22; }
.footer .logo span { color: #fff !important; }
.footer .logo span em { color: var(--accent-color) !important; }
.footer .logo img { filter: brightness(0) invert(1); }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 60px; margin-bottom: 40px; flex-wrap: wrap; }
.footer__left { max-width: 440px; }
.footer__menus { display: flex; gap: 55px; flex-wrap: wrap; }
.footer__col { max-width: 250px; }
.footer__col--title { font-size: 16px; font-weight: 600; margin-bottom: 15px; color: #E5E7EB; }
.footer-nav a { color: var(--footer-text-color); opacity: 0.8; transition: opacity 0.2s, color 0.2s; font-size: 14px; }
.footer-nav a:hover { opacity: 1; color: var(--accent-color); }
.footer-nav li { margin-bottom: 10px; }
.footer-nav li:last-child { margin-bottom: 0; }
.footer__small-text { margin-top: 16px; line-height: 1.6; font-size: 13px; opacity: 0.7; }
.footer__text { opacity: 0.7; font-size: 13px; line-height: 1.6; border-top: 1px solid rgba(255, 255, 255, 0.06); padding-top: 25px; margin-top: 10px; }
.footer__text a { color: var(--footer-text-color); text-decoration: underline; }
.footer__text p { margin-bottom: 12px; color: var(--footer-text-color); }
.footer__text p:last-child { margin-bottom: 0; }
.footer__text strong { color: var(--accent-color); }
.footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer__bottom-links a { color: var(--footer-text-color); font-size: 13px; opacity: 0.7; transition: opacity 0.2s; }
.footer__bottom-links a:hover { opacity: 1; }

/* ---- 8. FORM --------------------------------------------- */
.form-block { width: 100%; position: relative; max-width: 100%; }
.preloader { display: none; background: var(--modal-background); position: absolute; transform: scale(1.04); top: 0; bottom: 0; left: 0; right: 0; z-index: 9995; opacity: 0.8; border-radius: 8px; justify-content: center; align-items: center; }
.loader { width: 48px; height: 48px; border-radius: 50%; display: inline-block; position: relative; border: 3px solid; border-color: var(--accent-color) var(--accent-color) transparent; animation: rotation 1s linear infinite; }
.loader::after { content: ''; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; border: 3px solid; border-color: transparent var(--accent-color) var(--accent-color); width: 24px; height: 24px; border-radius: 50%; animation: rotationBack 0.5s linear infinite; }
@keyframes rotation { to { transform: rotate(360deg); } }
@keyframes rotationBack { to { transform: rotate(-360deg); } }

.form__title { text-align: left; margin-bottom: 20px; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.form__row:last-child { margin-bottom: 0; }
.form__row--2col { grid-template-columns: 1fr 1fr; }
.form__input-wrapper { width: 100%; position: relative; }
.form__row .form__input-wrapper svg { position: absolute; width: 24px; height: 24px; top: 50%; transform: translateY(-50%); left: 12px; pointer-events: none; color: var(--text-muted); opacity: 0.5; }
.form__input {
  transition: all 0.3s ease;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-color); font-size: 15px !important;
  line-height: 52px; height: 52px; padding: 0 18px; box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  outline: none; font-family: inherit;
  display: flex; align-items: center;
}
.form__input:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.form__input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px var(--accent-glow), 0 0 20px rgba(230, 57, 70, 0.06);
  background: rgba(255, 255, 255, 0.06);
}
.form__row--icons .form__input { padding: 0 18px 0 46px; }
.form__input::placeholder { color: rgba(255, 255, 255, 0.3) !important; opacity: 1 !important; }
.form__input.error { border: 1px solid #FF2633; background: rgba(255, 38, 51, 0.06); }
.form__input.valid { border: 1px solid rgba(255, 255, 255, 0.08); background: rgba(255, 255, 255, 0.04); }
label.error { position: absolute; z-index: 2; top: calc(100% + 2px); left: 8px; width: 100%; max-width: 500px; background: #FF2633; border-radius: 8px; font-weight: 900; font-size: 14px; line-height: 18px; color: #FFF; padding: 7px 12px; }
label.error::before { content: ""; position: absolute; z-index: -1; width: 15px; height: 15px; background: #FF2633; border-radius: 2px; top: -6px; left: 10px; transform: rotate(45deg); }
.form__submit { width: 100%; }
.form__btn { width: 100% !important; margin-top: 16px; height: 52px; font-size: 15px; font-weight: 700; border-radius: 12px; letter-spacing: 0.8px; text-transform: uppercase; }
.checkbox { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; font-size: 11px; line-height: 1.4; color: rgba(255, 255, 255, 0.5); }
.checkbox p { font-size: 11px !important; line-height: 1.4 !important; margin-bottom: 0; color: rgba(255, 255, 255, 0.5); text-align: left; }
.checkbox a { color: var(--accent-color); }
.checkbox input[type="checkbox"] { appearance: none; width: 18px; min-width: 18px; height: 18px; border-radius: 4px; border: 1.5px solid rgba(230, 57, 70, 0.3); position: relative; cursor: pointer; margin: 0 !important; flex-shrink: 0; background: transparent; }
.checkbox input[type="checkbox"]::before { content: ""; position: absolute; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' fill='none'%3E%3Cpath stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m13 1-8.25 9L1 5.91'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-size: auto; background-position: center; width: 100% !important; height: 100% !important; opacity: 0; }
.checkbox input[type="checkbox"]:checked { background: var(--accent-color); border-color: var(--accent-color); }
.checkbox input[type="checkbox"]:checked::before { opacity: 1; }
.iti { width: 100%; }
.iti__flag-container { top: 0; bottom: 0; left: 0 !important; border-radius: 12px 0 0 12px; overflow: visible; z-index: 10; }
.iti__dropdown-content {
  background: #11121A !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6) !important;
  max-height: 220px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  margin-top: 4px !important;
  scrollbar-width: thin !important;
  scrollbar-color: rgba(255,255,255,0.15) transparent !important;
  -webkit-overflow-scrolling: touch !important;
}
.iti__dropdown-content::-webkit-scrollbar { width: 5px !important; }
.iti__dropdown-content::-webkit-scrollbar-track { background: transparent !important; margin: 8px 0 !important; }
.iti__dropdown-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15) !important; border-radius: 10px !important; }
.iti__dropdown-content::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25) !important; }
.iti__dropdown-content::-webkit-scrollbar-button { display: none !important; height: 0 !important; }
.iti .iti__country-list,
.iti__country-list {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 4px !important;
  margin: 0 !important;
}
.iti__search-input {
  background: rgba(255,255,255,0.04) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  color: var(--text-color) !important;
  padding: 10px 12px !important;
  outline: none !important;
  font-size: 14px !important;
}
.iti__search-input::placeholder { color: rgba(255,255,255,0.3) !important; }
.iti__country-list .iti__country {
  padding: 9px 12px;
  color: #E2E8F0;
  font-size: 14px;
}
.iti__country-list .iti__country:hover,
.iti__country-list .iti__country.iti__highlight {
  background: rgba(255,255,255,0.06);
}
.iti__country-list .iti__country.iti__active {
  background: rgba(230, 57, 70, 0.15);
}
.iti__country-list .iti__divider { border-color: rgba(255,255,255,0.06); }
.iti__country-list .iti__dial-code { color: rgba(255,255,255,0.35); }
.iti__selected-flag { border-radius: 12px 0 0 12px; padding: 0 8px 0 14px; }
.iti__selected-flag:hover { background: rgba(255,255,255,0.06); }
.iti__arrow { border-top-color: rgba(255,255,255,0.4); }
.iti__arrow--up { border-bottom-color: rgba(255,255,255,0.4); }
.iti--container { z-index: 10000 !important; }

/* ---- 9. MODAL -------------------------------------------- */
.modal-wrap { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: none; justify-content: center; align-items: center; padding: 20px; }
.modal-wrap.active { display: flex; }
.modal-wrap__overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fadeIn 0.25s ease; }
.modal-wrap__holder { position: relative; z-index: 2; width: 100%; max-width: 720px; animation: slideUp 0.3s ease; }
.modal {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  position: relative;
}
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255, 255, 255, 0.05); transition: background 0.2s; z-index: 5; }
.modal__close:hover { background: rgba(255, 255, 255, 0.1); }
.modal__close svg { width: 16px; height: 16px; color: var(--text-muted); }
.modal__body { padding: 60px 48px 40px; }
.modal__title { font-family: var(--heading-font); font-size: 32px; font-weight: 700; margin-bottom: 8px; color: var(--text-color); text-align: center; }
.modal__title p { font-family: var(--heading-font); font-size: 32px; font-weight: 700; margin-bottom: 0; color: var(--text-color); }
.modal__subtitle { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ---- 10. PARTICLES --------------------------------------- */
.particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ---- 11. HERO -------------------------------------------- */
.hero {
  position: relative;
  padding: 130px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 15, 0.93) 0%, rgba(10, 10, 15, 0.78) 50%, rgba(10, 10, 15, 0.88) 100%);
  z-index: 0;
}
.hero .container { z-index: 2; }
.hero__urgency-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.hero__urgency-bar svg { color: var(--accent-color); flex-shrink: 0; }
.hero__urgency-bar strong { color: var(--accent-color); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero__content h1 {
  font-size: var(--text-size-h1);
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  max-width: 560px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}
.hero__disclaimer {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero__metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__metric-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: -0.5px;
}
.hero__metric-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__metric-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
}
.hero__form-side { position: relative; }
.hero__form-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  position: relative;
}
.hero__form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}
.hero__form-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(230, 57, 70, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero__form-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 24px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__form-card .form-block { position: relative; z-index: 1; }

/* ---- 12. EDITORIAL --------------------------------------- */
.editorial__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.editorial__image {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
}
.editorial__text h2 {
  margin-bottom: 28px;
}
.editorial__text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.phone-duo {
  position: relative;
  width: 440px;
  height: 650px;
  margin: 0 auto;
  transform-origin: top center;
}
.phone-duo::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.phone-duo .phone-mockup--back {
  position: absolute;
  top: 15px;
  left: 160px;
  transform: rotate(5deg) translateX(80px);
  opacity: 0;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s, opacity 0.6s ease 0.2s;
}
.phone-duo .phone-mockup--front {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 2;
  width: 295px;
  height: 630px;
  transform: translateX(-80px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
}
.animated .phone-duo .phone-mockup--front {
  transform: translateX(0);
  opacity: 1;
}
.animated .phone-duo .phone-mockup--back {
  transform: rotate(5deg) translateX(0);
  opacity: 0.75;
}

/* Holdings (back phone) */
.phone-ui__holdings { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.phone-ui__holding-info { display: flex; justify-content: space-between; margin-bottom: 4px; }
.phone-ui__holding-name { font-size: 10px; font-weight: 600; color: #fff; }
.phone-ui__holding-alloc { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); }
.phone-ui__holding-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; }
.phone-ui__holding-fill { height: 100%; border-radius: 2px; }

/* Activity (back phone) */
.phone-ui__activity { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.phone-ui__activity-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 10px; background: rgba(255,255,255,0.03);
  border-radius: 8px; border: 1px solid rgba(255,255,255,0.04);
}
.phone-ui__activity-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* Phone Mockup */
.phone-mockup {
  width: 280px;
  height: 600px;
  background: #0A0A0F;
  border-radius: 40px;
  padding: 10px;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
/* iPhone status bar + dynamic island */
.phone-mockup__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 6px;
  position: relative;
}
.phone-mockup__time {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  width: 60px;
  letter-spacing: -0.3px;
}
.phone-mockup__island {
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  flex-shrink: 0;
}
.phone-mockup__indicators {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  width: 60px;
  justify-content: flex-end;
}
/* Side buttons removed — clean design */
.phone-mockup__screen {
  background: #0A0A0F;
  border-radius: 28px;
  overflow: hidden;
  padding: 12px 12px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Home indicator */
.phone-mockup__home {
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 6px auto 8px;
  flex-shrink: 0;
}
.phone-ui {
  font-family: var(--main-font);
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.phone-ui__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 4px 12px;
}
.phone-ui__logo {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.phone-ui__logo em { font-style: normal; color: var(--accent-color); }
.phone-ui__balance {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
}

/* Chart */
.phone-ui__chart {
  background: rgba(255,255,255,0.03);
  background-image: url('../assets/images/phone.webp');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 10px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  max-height: 160px;
  flex-shrink: 0;
}
.phone-ui__chart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
  z-index: 0;
}
.phone-ui__chart > * { position: relative; z-index: 1; }
.phone-ui__chart-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.phone-ui__chart-tab {
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 4px;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-weight: 500;
}
.phone-ui__chart-tab--active {
  background: var(--accent-color);
  color: #fff;
}
.phone-ui__chart-price { margin-bottom: 6px; }
.phone-ui__chart-price-value { font-size: 18px; font-weight: 700; color: #fff; display: block; }
.phone-ui__chart-price-change { font-size: 10px; font-weight: 600; color: var(--green); }
.phone-ui__chart-wrap {
  display: flex;
  gap: 4px;
  align-items: stretch;
}
.phone-ui__chart-svg {
  flex: 1;
  height: 60px;
  display: block;
}
.phone-ui__chart-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 7px;
  color: rgba(255,255,255,0.3);
  padding: 2px 0;
  text-align: right;
  min-width: 28px;
}
.phone-ui__chart-bottom {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}
.phone-ui__chart-change { font-size: 13px; font-weight: 700; color: var(--green); }
.phone-ui__chart-period { font-size: 10px; color: rgba(255,255,255,0.35); }

/* Phone UI animations — trigger when editorial section is visible */
.animated .phone-ui__chart {
  animation: phoneFadeSlide 0.6s ease both;
  animation-delay: 0.3s;
}
.animated .phone-ui__signal:nth-child(1) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.6s; }
.animated .phone-ui__signal:nth-child(2) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.75s; }
.animated .phone-ui__signal:nth-child(3) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.9s; }
.animated .phone-ui__signal:nth-child(4) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 1.05s; }
.animated .phone-ui__risk { animation: phoneFadeSlide 0.4s ease both; animation-delay: 1.2s; }
.animated .phone-ui__chart-wrap { animation: phoneFadeSlide 0.5s ease both; animation-delay: 0.4s; }

.phone-ui__chart,
.phone-ui__signal,
.phone-ui__risk,
.phone-ui__chart-wrap { opacity: 0; }

@keyframes phoneFadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Back phone holdings animation */
.animated .phone-ui__holding:nth-child(1) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.4s; }
.animated .phone-ui__holding:nth-child(2) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.55s; }
.animated .phone-ui__holding:nth-child(3) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.7s; }
.animated .phone-ui__holding:nth-child(4) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 0.85s; }
.animated .phone-ui__activity-item:nth-child(1) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 1s; }
.animated .phone-ui__activity-item:nth-child(2) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 1.15s; }
.animated .phone-ui__activity-item:nth-child(3) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 1.3s; }
.animated .phone-ui__activity-item:nth-child(4) { animation: phoneFadeSlide 0.4s ease both; animation-delay: 1.45s; }

.phone-ui__holding,
.phone-ui__activity-item { opacity: 0; }

/* Section titles */
.phone-ui__section-title {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding: 0 2px;
}

/* Signals */
.phone-ui__signals {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.phone-ui__signal {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
  max-height: 48px;
  flex-shrink: 0;
  overflow: hidden;
}
img.phone-ui__signal-logo {
  width: 28px !important;
  min-width: 28px !important;
  max-width: 28px !important;
  height: 28px !important;
  max-height: 28px !important;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.phone-ui__signal-info { flex: 1; }
.phone-ui__signal-title { display: block; font-size: 11px; font-weight: 600; color: #fff; }
.phone-ui__signal-time { display: block; font-size: 9px; color: rgba(255,255,255,0.3); }
.phone-ui__signal-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.phone-ui__signal-badge--buy { background: rgba(16,185,129,0.15); color: var(--green); }
.phone-ui__signal-badge--sell { background: rgba(230,57,70,0.15); color: var(--accent-color); }
.phone-ui__signal-badge--hold { background: rgba(251,191,36,0.15); color: #FBBF24; }

/* Risk */
.phone-ui__risk {
  margin-bottom: 14px;
  padding: 0 2px;
}
.phone-ui__risk-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  position: relative;
  margin-bottom: 6px;
}
.phone-ui__risk-fill {
  height: 100%;
  width: 55%;
  background: linear-gradient(90deg, var(--green), #FBBF24, var(--accent-color));
  border-radius: 3px;
}
.phone-ui__risk-thumb {
  position: absolute;
  top: -3px;
  left: 53%;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}
.phone-ui__risk-labels {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: rgba(255,255,255,0.25);
}

/* Tab bar */
.phone-ui__tab-bar {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
  flex-shrink: 0;
}
.phone-ui__tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 8px;
  color: rgba(255,255,255,0.3);
}
.phone-ui__tab--active { color: var(--accent-color); }
.phone-ui__tab svg { width: 14px; height: 14px; }

/* ---- 13. TWO MODES --------------------------------------- */
.two-modes__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}
.two-modes__header h3 {
  font-size: var(--text-size-h2);
  font-weight: 700;
  margin-bottom: 16px;
}
.two-modes__subtitle {
  font-size: 17px;
  line-height: 1.7;
}
.two-modes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.two-modes__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--accent-color);
  border-radius: 4px 16px 16px 4px;
  padding: 36px 32px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.two-modes__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.two-modes__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.two-modes__icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}
.two-modes__card h4 {
  font-size: 22px;
  margin-bottom: 0;
}
.two-modes__card p {
  font-size: 15px;
  line-height: 1.8;
}

/* ---- 14. FAQ (Phase 2 — structure ready) ----------------- */
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(255, 255, 255, 0.1); }
.faq-item.active { border-color: rgba(230, 57, 70, 0.2); background: rgba(255, 255, 255, 0.04); }
.faq-item__question {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s;
}
.faq-item__question:hover { color: var(--accent-color); }
.faq-item__question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent-color); transition: transform 0.3s; }
.faq-item.active .faq-item__question svg { transform: rotate(180deg); }
.faq-item__answer {
  display: none;
  padding: 0 24px 24px;
}
.faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ---- 15. CALCULATOR -------------------------------------- */
.calculator__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.calculator__header p { font-size: 17px; }
.calculator__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.calculator__info { display: flex; flex-direction: column; gap: 24px; justify-content: center; }
.calculator__info-text p { font-size: 16px; line-height: 1.8; margin-bottom: 12px; }
.calculator__disclaimer { font-size: 12px !important; opacity: 0.4; line-height: 1.6; margin-top: 12px; text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Mode switcher */
.calculator__mode-switch { margin-top: 8px; }
.calculator__mode-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.calculator__mode-toggle { display: flex; gap: 8px; }
.calculator__mode-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px; border-radius: 12px; font-size: 15px; font-weight: 600;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s;
  font-family: var(--main-font);
}
.calculator__mode-btn:hover { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); }
.calculator__mode-btn--active {
  background: rgba(230,57,70,0.1); border-color: var(--accent-color);
  color: var(--accent-color);
}
.calculator__mode-desc { margin-top: 14px; font-size: 14px !important; color: rgba(255,255,255,0.4); line-height: 1.5; min-height: 42px; }
.calculator__widget {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 30px;
  backdrop-filter: blur(12px);
}
.calculator__label { font-size: 14px; font-weight: 600; color: var(--text-color); margin-bottom: 12px; }
.calculator__amount { font-size: 36px; font-weight: 700; color: var(--accent-color); margin-bottom: 16px; font-family: var(--heading-font); }
.calculator__slider { width: 100%; height: 6px; -webkit-appearance: none; appearance: none; background: rgba(255,255,255,0.08); border-radius: 3px; outline: none; margin-bottom: 8px; }
.calculator__slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-color); cursor: pointer; box-shadow: 0 0 10px rgba(230,57,70,0.3); }
.calculator__slider::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-color); cursor: pointer; border: none; }
.calculator__range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 24px; }
.calculator__periods { display: flex; gap: 8px; margin-bottom: 24px; }
.calculator__period {
  flex: 1; text-align: center;
  padding: 8px 10px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: var(--main-font);
}
.calculator__period:hover { border-color: rgba(255,255,255,0.15); color: var(--text-color); }
.calculator__period.active { background: var(--accent-color); border-color: var(--accent-color); color: #fff; }
.calculator__result { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; margin-bottom: 20px; }
.calculator__result-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: var(--text-muted); }
.calculator__result-value { font-size: 24px; font-weight: 700; color: var(--accent-color); font-family: var(--heading-font); }
.calculator__result-row--profit span:last-child { color: var(--green); font-weight: 600; }

/* Growth visualization */
.calculator__growth { margin: 24px 0; }
.calculator__growth-bar { display: flex; align-items: center; gap: 16px; }
.calculator__growth-start, .calculator__growth-end { text-align: center; flex-shrink: 0; min-width: 70px; }
.calculator__growth-label { display: block; font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.calculator__growth-val { font-size: 16px; font-weight: 700; color: var(--text-color); font-family: var(--heading-font); }
.calculator__growth-val--accent { color: var(--accent-color); font-size: 20px; }
.calculator__growth-track { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; position: relative; overflow: hidden; }
.calculator__growth-fill { height: 100%; background: linear-gradient(90deg, var(--accent-color), var(--green)); border-radius: 4px; width: 24%; transition: width 0.5s ease; }

/* ---- 16. INDUSTRY ---------------------------------------- */
.industry__header { text-align: center; max-width: 800px; margin: 0 auto 48px; position: relative; }
.industry__header h2, .industry__header p { position: relative; z-index: 2; }
.industry__header p { font-size: 16px; line-height: 1.8; }
.industry__logos-bg { position: absolute; top: 0; left: -200px; right: -200px; bottom: 0; z-index: 1; pointer-events: none; overflow: visible; }
.industry__logo-float { position: absolute; width: 90px; height: auto; opacity: 0.22; filter: grayscale(1) brightness(1); transition: opacity 0.4s; }
.industry__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.industry__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}
.industry__card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.industry__card-img { width: 100%; height: 180px; object-fit: cover; }
.industry__card-body { padding: 24px; }
.industry__card-count { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent-color); background: rgba(230,57,70,0.1); padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.industry__card h4 { font-size: 18px; margin-bottom: 8px; }
.industry__card p { font-size: 14px; line-height: 1.7; }

/* ---- 17. FEATURES ---------------------------------------- */
.features > .container > h2 { text-align: center; margin-bottom: 48px; }
.features__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.features__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent-color);
  border-radius: 4px 16px 16px 4px;
  padding: 28px 28px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.features__card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.features__card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.features__icon {
  width: 44px; min-width: 44px; height: 44px; border-radius: 12px;
  background: rgba(230,57,70,0.08); border: 1px solid rgba(230,57,70,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-color);
}
.features__card h4 { font-size: 18px; margin-bottom: 0; }
.features__card p { font-size: 15px; line-height: 1.7; }
.features__cta-text { text-align: center; max-width: 700px; margin: 0 auto 20px; font-size: 17px !important; color: var(--text-color) !important; line-height: 1.7; }

/* ---- 18. WHY NOW ----------------------------------------- */
.why-now__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.why-now__text p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; }

/* Chart card */
.why-now__chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.why-now__chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.why-now__chart-title { font-family: var(--heading-font); font-size: 16px; font-weight: 700; color: #fff; }
.why-now__chart-badge {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(230,57,70,0.15); color: var(--accent-color);
  padding: 4px 10px; border-radius: 20px;
}
.why-now__chart-price { margin-bottom: 16px; }
.why-now__chart-current { font-family: var(--heading-font); font-size: 32px; font-weight: 800; color: #fff; margin-right: 12px; }
.why-now__chart-change { font-size: 14px; font-weight: 600; }
.why-now__chart-change--up { color: #22c55e; }

/* SVG chart */
.why-now__chart-canvas { position: relative; width: 100%; margin-bottom: 8px; }
.why-now__svg { width: 100%; height: auto; display: block; overflow: visible; }
.why-now__grid-line { stroke: rgba(255,255,255,0.06); stroke-width: 1; stroke-dasharray: 4 4; }
.why-now__y-label { fill: rgba(255,255,255,0.3); font-size: 11px; text-anchor: end; font-family: var(--main-font); }
.why-now__price-line {
  stroke: var(--accent-color); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.why-now__marker { fill: var(--accent-color); stroke: #0A0A0F; stroke-width: 2; }
.why-now__marker--low { fill: #ef4444; }

/* Clip-rect animation */
.why-now__clip-rect { width: 0; transition: none; }
.why-now__chart.animated .why-now__clip-rect,
.animated .why-now__chart .why-now__clip-rect {
  animation: chartReveal 2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes chartReveal { from { width: 0; } to { width: 560px; } }

/* SVG event labels */
.why-now__event-label {
  fill: rgba(255,255,255,0.55); font-size: 10px; font-weight: 600;
  font-family: var(--main-font); letter-spacing: 0.3px;
}

/* X-axis */
.why-now__chart-xaxis { display: flex; justify-content: space-between; padding: 0 4px; margin-bottom: 16px; }
.why-now__chart-xaxis span { font-size: 11px; color: rgba(255,255,255,0.3); }

/* Footer stats */
.why-now__chart-footer { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; }
.why-now__stat { text-align: center; }
.why-now__stat-value { display: block; font-family: var(--heading-font); font-size: 18px; font-weight: 700; color: var(--accent-color); }
.why-now__stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* Responsive */
@media (max-width: 1024px) {
  .why-now__layout { grid-template-columns: 1fr; gap: 32px; }
  .why-now__chart { position: static; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .why-now__chart { padding: 16px; }
  .why-now__chart-current { font-size: 26px; }
  .why-now__stat-value { font-size: 15px; }
  .why-now__annotation-label { font-size: 9px; }
}

/* ---- 19. WHO FOR ----------------------------------------- */
.who-for__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.who-for__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.who-for__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--accent-color);
  border-radius: 4px 16px 16px 4px;
  padding: 32px 28px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  position: relative;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.who-for__card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.who-for__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.who-for__card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.2);
  border-radius: 12px; color: var(--accent-color);
}
.who-for__card h4 { font-size: 20px; margin-bottom: 0; }
.who-for__card p { font-size: 15px; line-height: 1.7; }

/* ---- 20. HOW TO START ------------------------------------ */
.how-start__header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.how-start__steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.how-start__step {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--accent-color);
  border-radius: 4px 4px 16px 16px;
  padding: 36px 24px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}
.how-start__step:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.how-start__step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-color); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; font-family: var(--heading-font);
  margin: 0 auto 20px;
}
.how-start__step h4 { font-size: 18px; margin-bottom: 12px; }
.how-start__step p { font-size: 14px; line-height: 1.7; }

/* ---- 21. STATS ------------------------------------------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.stats__item {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 16px;
  transition: all 0.3s;
}
.stats__item:hover { border-color: rgba(255,255,255,0.12); }
.stats__value { display: block; font-size: 28px; font-weight: 700; color: var(--accent-color); font-family: var(--heading-font); margin-bottom: 8px; }
.stats__label { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* ---- 22. TESTIMONIALS ------------------------------------ */
.testimonials__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.testimonials__card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.testimonials__stars { color: #FBBF24; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonials__card p { font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 20px; min-height: 120px; }
.testimonials__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
}
.avatar::after { content: attr(data-initials); }
.testimonials__author span { font-size: 14px; font-weight: 600; color: var(--text-color); }
.testimonials__cta-text { margin-top: 40px; margin-bottom: 20px !important; }
.swiper-pagination { margin-top: 24px; position: relative; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.2); opacity: 1; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--accent-color); width: 24px; border-radius: 4px; }

/* ---- 23. FAQ SECTION ------------------------------------- */
.faq-section > .container > h2 { margin-bottom: 40px; }
.faq-list { max-width: 800px; margin: 0 auto; }

/* ---- 24. ANIMATIONS & UTILITIES -------------------------- */
.form-validation-messages { display: none; }

[data-animate] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-animate="fade-in"] { transform: none; }
[data-animate="scale-in"] { transform: scale(0.92); }
[data-animate].animated { opacity: 1; transform: translateY(0) scale(1); }

/* Staggered card animations */
.stats__item[data-animate].animated:nth-child(1) { transition-delay: 0s; }
.stats__item[data-animate].animated:nth-child(2) { transition-delay: 0.1s; }
.stats__item[data-animate].animated:nth-child(3) { transition-delay: 0.15s; }
.stats__item[data-animate].animated:nth-child(4) { transition-delay: 0.2s; }
.stats__item[data-animate].animated:nth-child(5) { transition-delay: 0.3s; }
.stats__item[data-animate].animated:nth-child(6) { transition-delay: 0.35s; }
.stats__item[data-animate].animated:nth-child(7) { transition-delay: 0.4s; }
.stats__item[data-animate].animated:nth-child(8) { transition-delay: 0.45s; }

.industry__card[data-animate].animated:nth-child(1) { transition-delay: 0s; }
.industry__card[data-animate].animated:nth-child(2) { transition-delay: 0.1s; }
.industry__card[data-animate].animated:nth-child(3) { transition-delay: 0.15s; }
.industry__card[data-animate].animated:nth-child(4) { transition-delay: 0.2s; }
.industry__card[data-animate].animated:nth-child(5) { transition-delay: 0.25s; }
.industry__card[data-animate].animated:nth-child(6) { transition-delay: 0.3s; }

.features__card[data-animate].animated:nth-child(1) { transition-delay: 0s; }
.features__card[data-animate].animated:nth-child(2) { transition-delay: 0.1s; }
.features__card[data-animate].animated:nth-child(3) { transition-delay: 0.15s; }
.features__card[data-animate].animated:nth-child(4) { transition-delay: 0.2s; }

.who-for__card[data-animate].animated:nth-child(1) { transition-delay: 0s; }
.who-for__card[data-animate].animated:nth-child(2) { transition-delay: 0.1s; }
.who-for__card[data-animate].animated:nth-child(3) { transition-delay: 0.15s; }
.who-for__card[data-animate].animated:nth-child(4) { transition-delay: 0.2s; }

.how-start__step[data-animate].animated:nth-child(1) { transition-delay: 0s; }
.how-start__step[data-animate].animated:nth-child(2) { transition-delay: 0.15s; }
.how-start__step[data-animate].animated:nth-child(3) { transition-delay: 0.3s; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.d-none { display: none !important; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.table-scroll-wrapper { overflow-x: auto; width: 100%; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 10px 15px; border: 1px solid var(--glass-border); text-align: left; color: var(--text-color); }
th { background: var(--accent-color); color: #fff; font-weight: 600; }
tr:nth-child(even) td { background: rgba(26, 35, 66, 0.15); }

/* ---- 16. RESPONSIVE -------------------------------------- */
@media(max-width:1200px) {
  body { padding-top: 70px; }
  .full-height { min-height: unset; }
  .container { max-width: 720px; }
  h2, .sec-title, .editorial__text h2, .two-modes__header { text-align: center; }
  section:not(section:first-of-type) { padding-top: 60px !important; padding-bottom: 60px !important; }
  h1 { font-size: calc(var(--text-size-h1) * 0.72); }
  h2 { font-size: calc(var(--text-size-h2) * 0.78); }
  h3 { font-size: calc(var(--text-size-h3) * 0.88); }
  h4 { font-size: calc(var(--text-size-h4) * 0.88); }
  br { display: none !important; }
  .burger { display: flex; margin-left: auto; margin-right: 0; }
  .btn-show-form { display: none; }
  .header__btn { font-size: 0 !important; padding: 7px; width: 40px; height: 40px; border: none; gap: 0; display: flex; align-items: center; justify-content: center; }
  .header__btn .desktop-hidden { display: block; width: 24px; min-width: 24px; height: 24px; fill: #fff; }
  .header .wrap-nav { position: fixed; left: 0; top: 0; bottom: 0; background: var(--page-background); height: 100vh; padding-top: 76px; width: 100%; transition: transform 0.3s, opacity 0.3s; transform: translateY(-10px); opacity: 0; pointer-events: none; flex-direction: column; gap: 0; z-index: 99; }
  .header .wrap-nav.active { transform: translateY(0); opacity: 1; pointer-events: all; }
  .header .nav { padding: 20px 15px; max-width: 720px; flex-direction: column; align-items: center; margin: 0 auto; width: 100%; gap: 10px; border-top: 1px solid rgba(26, 35, 66, 0.3); }
  .header .nav a { display: block; min-width: 200px; text-align: center; padding: 10px 20px; font-weight: 600; border-radius: 8px; color: var(--text-color); }
  .header .nav a::before { display: none; }
  .header .nav a.active { background: var(--accent-glow); color: var(--accent-color); }
  .menu-bottom-mob { display: flex; justify-content: space-between; gap: 10px; order: 3; padding: 15px 15px 70px; margin: auto auto 0 auto; font-size: 12px; font-weight: 600; max-width: 340px; width: 100%; opacity: 0.5; }
  .menu-bottom-mob a { color: var(--text-color); }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__content { text-align: center; }
  .hero__content h1 { font-size: calc(var(--text-size-h1) * 0.72); }
  .hero > .container { text-align: center; }
  .hero__urgency-bar { margin-left: auto; margin-right: auto; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__metrics { justify-content: center; }
  .editorial__grid { grid-template-columns: 1fr; gap: 32px; }
  .editorial__image { display: flex; justify-content: center; width: 100%; }
  .editorial__image img { height: 320px; }
  .phone-duo { left: 50%; transform: scale(0.85) translateX(-58%) translateX(-60px); transform-origin: top left; margin-bottom: -80px; }
  .animated .phone-ui__chart { animation-delay: 0.8s; }
  .animated .phone-ui__signal:nth-child(1) { animation-delay: 1.1s; }
  .animated .phone-ui__signal:nth-child(2) { animation-delay: 1.25s; }
  .animated .phone-ui__signal:nth-child(3) { animation-delay: 1.4s; }
  .animated .phone-ui__signal:nth-child(4) { animation-delay: 1.55s; }
  .animated .phone-ui__risk { animation-delay: 1.7s; }
  .animated .phone-ui__chart-wrap { animation-delay: 0.9s; }
  .two-modes__grid { grid-template-columns: 1fr; }
  .industry__grid { grid-template-columns: 1fr 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .who-for__grid { grid-template-columns: 1fr 1fr; }
  .how-start__steps { grid-template-columns: 1fr; gap: 20px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { flex-direction: column; gap: 30px; }
  .footer__left { max-width: 100%; }
  .modal { min-width: unset; width: 100%; }
  .modal-wrap__holder { max-width: calc(100vw - 40px); }
  .modal__body { padding: 60px 24px 40px; }
  .modal .form__input { font-size: 17px !important; height: 56px; line-height: 56px; }
  .modal .form__btn { font-size: 17px; height: 56px; }
  .modal .modal__subtitle { font-size: 16px; }
}

@media(max-width:768px) {
  .table-scroll-wrapper { overflow-x: auto; width: calc(100vw - 30px); }
  h1 { font-size: calc(var(--text-size-h1) * 0.55); margin-bottom: 18px; }
  h2 { font-size: calc(var(--text-size-h2) * 0.62); }
  h3 { font-size: calc(var(--text-size-h3) * 0.78); }
  section p { font-size: 15px !important; }

  .hero { padding: 80px 0 40px; }
  .hero__form-card { padding: 24px 20px; }
  .hero__metrics { gap: 12px; display: flex; flex-wrap: nowrap; justify-content: space-between; }
  .hero__metric-divider { display: none; }
  .hero__metric-value { font-size: 16px; }
  .hero__metric-label { font-size: 10px; }
  .hero__metric-value { font-size: 18px; }
  .hero__metric-label { font-size: 12px; }
  .hero__metric-divider { height: 28px; }
  .hero__urgency-bar { font-size: 13px; padding: 8px 16px; text-align: center; line-height: 1.4; }
  .form__row--2col { grid-template-columns: 1fr; }

  .editorial__grid { grid-template-columns: 1fr; }
  .editorial__image img { height: 260px; }
  .editorial__image { max-width: 100%; overflow: hidden; }
  .phone-duo { left: 50%; transform: scale(0.75) translateX(-65%) translateX(-110px) !important; transform-origin: top left; margin-bottom: -150px; }
  .two-modes__header h3 { font-size: calc(var(--text-size-h2) * 0.62); }
  .two-modes__grid { grid-template-columns: 1fr; }
  .two-modes__card { padding: 28px 24px; }
  .calculator__grid { grid-template-columns: 1fr; }
  .calculator__grid { grid-template-columns: 1fr; }
  .calculator__amount { font-size: 28px; }
  .calculator__widget { padding: 24px 20px; }
  .industry__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
  .who-for__grid { grid-template-columns: 1fr; }
  .how-start__steps { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats__value { font-size: 22px; }
  .stats__item { padding: 20px 12px; }

  .page-content { padding: 50px 15px; }
  .page-hero { padding: 60px 0 40px; }
  .footer__menus { flex-direction: column; gap: 25px; }
  .modal__title, .modal__title p { font-size: 28px !important; }
  .modal__body { padding: 50px 15px 25px; }
  .modal .form__input { font-size: 16px !important; height: 54px; line-height: 54px; }
  .modal .form__btn { font-size: 16px; height: 54px; }
}

@media(max-width:420px) {
  .phone-duo { left: 45%; transform: scale(0.58) translateX(-55%) !important; margin-bottom: -240px; }
}

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
  z-index: 100;
}
.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s, border-color 0.2s;
}
.lang-switcher__current:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}
.lang-switcher__flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-switcher__code {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.5px;
}
.lang-switcher__arrow {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.lang-switcher.open .lang-switcher__arrow {
  transform: rotate(180deg);
}
.lang-switcher__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--card-bg, #11121A);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.lang-switcher.open .lang-switcher__dropdown {
  display: block;
}
.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: none;
  transition: background 0.15s;
}
.lang-switcher__option:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Mobile lang switcher inside burger menu */
.lang-switcher--mob {
  display: none !important;
}
.lang-switcher--mob .lang-switcher__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  margin-top: 6px;
}

@media (max-width: 1200px) {
  .header__right > .lang-switcher {
    display: none;
  }
  .wrap-nav .lang-switcher--mob {
    display: flex !important;
    justify-content: center;
    margin: 20px auto;
    border-top: none;
    padding-top: 0;
  }
}
