/* ═══════════════════════════════════════════════════════
   LANDING.CSS — redesign 2026-06-03
   Light hero/about sections + dark licenses/CTA/footer
   ═══════════════════════════════════════════════════════ */

:root {
  --primary: #6059E8;
  --primary-hover: #4F48D1;
  --primary-gradient: linear-gradient(135deg, #6059E8 0%, #9B7AF7 100%);
  --primary-bg: rgba(96, 89, 232, 0.08);
  --bg-white: #FFFFFF;
  --bg-light: #F6F7FB;
  --border-light: rgba(0, 0, 0, 0.07);
  --border-light2: rgba(0, 0, 0, 0.05);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.10);
  --text-1: #111827;
  --text-2: #4B5563;
  --text-3: #9CA3AF;
  --success: #10B981;
  --success-bg: rgba(16,185,129,0.1);
  --danger: #EF4444;
  --danger-bg: rgba(239,68,68,0.1);
  --dark-bg: #0C0C1E;
  --dark-bg2: #101026;
  --dark-card: #161632;
  --dark-border: rgba(255,255,255,0.08);
  --dark-text: #F0F0FF;
  --dark-muted: #8B9BB8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
html { background: var(--bg-white); color: var(--text-1); }
body { background: var(--bg-white); overflow-x: hidden; color: var(--text-1); -webkit-user-select: none; -moz-user-select: none; user-select: none; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
[hidden] { display: none !important; }

.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  background: var(--primary-gradient);
  box-shadow: 0 4px 12px rgba(96,89,232,0.3);
}
.brand-name { font-size: 1.1rem; font-weight: 700; color: var(--text-1); }

/* ══ HEADER ══ */
.landing_header {
  position: sticky; top: 0; z-index: 1000;
  background: #FFFFFF;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}
.landing_header_left { display: flex; align-items: center; gap: 22px; flex: 1 1 auto; min-width: 0; }
.landing_header_right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; flex-wrap: nowrap; }

.header_menu { display: flex; align-items: center; gap: 2px; }
.header_menu_item {
  color: var(--text-2); font-size: 15px; font-weight: 500;
  padding: 9px 14px; border-radius: 10px; text-decoration: none;
  border: none; background: none; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.header_menu_item:hover { color: var(--primary); background: var(--primary-bg); }
.header_menu_register { color: var(--text-2); }

.header_register_button {
  background: var(--primary); border-radius: 12px; border: none; color: #fff;
  font-weight: 600; padding: 0 22px; height: 44px; font-size: 15px; cursor: pointer;
  white-space: nowrap; box-shadow: 0 4px 14px rgba(96,89,232,0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden; isolation: isolate;
}
.header_register_button:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(96,89,232,0.35); }
.header_register_button:active { transform: scale(0.97); }

/* Language switcher */
.language_switcher { position: relative; flex-shrink: 0; padding: 0; }
.language_toggle {
  height: 40px; min-width: 72px; padding: 0 12px;
  border: 1px solid var(--border-light); border-radius: 10px;
  background: var(--bg-light); color: var(--text-1);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; font-size: 14px; font-weight: 600;
  transition: background 0.2s, border-color 0.2s;
}
.language_toggle:hover { border-color: var(--primary); background: var(--primary-bg); }
.language_current { color: var(--primary); font-weight: 700; font-size: 14px; letter-spacing: 0.04em; }
.language_arrow { color: var(--text-3); font-size: 11px; line-height: 1; transition: transform 0.22s; }
.language_toggle[aria-expanded="true"] .language_arrow { transform: rotate(180deg); }
.language_dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; left: auto;
  min-width: 120px; padding: 6px; border-radius: 14px;
  border: 1px solid var(--border-light); background: #FFFFFF;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12); z-index: 200;
}
.language_option {
  width: 100%; height: 40px; padding: 0 12px; border: none; border-radius: 10px;
  background: transparent; color: var(--text-1);
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-size: 14px; font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.language_option:hover { background: var(--bg-light); }
.language_option.active { background: var(--primary-bg); color: var(--primary); }
.language_check { opacity: 0; color: var(--primary); font-weight: 700; }
.language_option.active .language_check { opacity: 1; }

/* Profile (logged in) */
.profile-wrapper { position: relative; }
.landing-profile .profile-trigger {
  height: 44px; padding: 0 14px 0 8px; border-radius: 12px;
  border: 1px solid var(--border-light); background: var(--bg-light);
  color: var(--text-1); display: inline-flex; align-items: center;
  gap: 8px; cursor: pointer; min-width: unset;
  transition: background 0.2s, border-color 0.2s;
}
.landing-profile .profile-trigger:hover { border-color: var(--primary); background: var(--primary-bg); }
.landing-profile .profile-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--primary-gradient);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 800;
  text-transform: uppercase; flex-shrink: 0;
  letter-spacing: 0.02em;
}
.landing-profile .profile-email { display: none; }
.landing-profile .profile-chevron { font-size: 12px; opacity: 0.6; transition: transform 0.22s; }
.landing-profile .profile-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; width: 210px;
  padding: 8px; border-radius: 16px; border: 1px solid var(--border-light);
  background: #FFFFFF; box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s; z-index: 200;
}
.profile-wrapper.open .profile-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.dropdown-item {
  width: 100%; display: flex; align-items: center; min-height: 42px; padding: 10px 12px;
  border-radius: 10px; border: 0; background: transparent;
  color: var(--text-1); font-size: 14px; text-align: left; cursor: pointer;
  transition: background 0.15s;
}
.dropdown-item:hover { background: var(--bg-light); }
.dropdown-item.logout { color: var(--danger); }
.dropdown-item.logout:hover { background: var(--danger-bg); }
.dropdown-chevron { font-size: 14px; opacity: 0.5; transition: transform 0.22s; }
.dropdown-toggle.open .dropdown-chevron { transform: rotate(180deg); }
.language-submenu {
  max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-6px);
  pointer-events: none; transition: max-height 0.28s, opacity 0.22s, transform 0.22s;
}
.language-submenu.active {
  max-height: 160px; opacity: 1; transform: translateY(0);
  pointer-events: auto; overflow-y: auto; margin-top: 4px;
}

/* ══ HERO ══ */
.hero_container {
  position: relative; z-index: 1; min-height: 90vh;
  overflow: hidden; isolation: isolate; padding-bottom: 120px; background: #FFFFFF;
}
.hero_container::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(96,89,232,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(155,122,247,0.04) 0%, transparent 50%);
}

.floating_cards { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float_card {
  position: absolute; width: 190px; min-height: 108px;
  padding: 18px 18px 14px; border-radius: 20px; background: #FFFFFF;
  border: 1px solid var(--border-light); box-shadow: var(--shadow-card);
  transform-origin: center; will-change: transform;
}
.card_label { display: block; font-size: 13px; color: var(--text-3); margin-bottom: 8px; }
.float_card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.float_card p { font-size: 13px; font-weight: 600; color: var(--success); }
.float_card .negative { color: var(--danger); }
.float_card .violet { color: #9B7AF7; }

.card_1 { top: 12%; left: 58%; transform: rotate(6deg); animation: floatOne 9s ease-in-out infinite; }
.card_2 { top: 44%; left: 36%; transform: rotate(2deg); animation: floatTwo 11s ease-in-out infinite; }
.card_3 { top: 50%; left: 26%; transform: rotate(-4deg); animation: floatThree 10s ease-in-out infinite; }

@keyframes floatOne {
  0%, 100% { transform: translate3d(0,0,0) rotate(6deg); }
  25% { transform: translate3d(12px,-16px,0) rotate(8deg); }
  50% { transform: translate3d(-8px,-28px,0) rotate(4deg); }
  75% { transform: translate3d(10px,-10px,0) rotate(7deg); }
}
@keyframes floatTwo {
  0%, 100% { transform: translate3d(0,0,0) rotate(2deg); }
  25% { transform: translate3d(-10px,14px,0) rotate(0deg); }
  50% { transform: translate3d(8px,-18px,0) rotate(3deg); }
  75% { transform: translate3d(-6px,8px,0) rotate(1deg); }
}
@keyframes floatThree {
  0%, 100% { transform: translate3d(0,0,0) rotate(-4deg); }
  25% { transform: translate3d(12px,-8px,0) rotate(-2deg); }
  50% { transform: translate3d(-10px,14px,0) rotate(-5deg); }
  75% { transform: translate3d(5px,-10px,0) rotate(-3deg); }
}

.hero_content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 72px 28px 80px; display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.content_item_trusted {
  display: inline-flex; justify-content: center; align-items: center;
  gap: 10px; padding: 10px 18px; border-radius: 999px; margin-bottom: 36px;
  background: var(--bg-light); border: 1px solid var(--border-light); width: fit-content;
}
.trust_dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; box-shadow: 0 0 10px rgba(16,185,129,0.5); }
.trust_text { color: var(--text-2); font-size: 14px; font-weight: 500; }

.hero_title { display: flex; flex-direction: column; align-items: center; line-height: 0.92; letter-spacing: -0.05em; }
.hero_title_line { display: block; }
.hero_title_white { font-size: 88px; font-weight: 800; color: var(--text-1); }
.hero_title_gradient {
  font-size: 88px; font-weight: 800;
  background: linear-gradient(90deg, #6059E8 0%, #9B7AF7 60%, #C4A8FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent;
}
.hero_subtitle { max-width: 720px; margin: 40px auto 0; color: var(--text-2); font-size: 18px; font-weight: 400; line-height: 1.6; }

.hero_cta {
  margin: 44px auto 0; display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 58px; padding: 0 28px; width: fit-content; border: none; border-radius: 18px;
  background: var(--primary); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer;
  box-shadow: 0 8px 28px rgba(96,89,232,0.28);
  transition: background 0.2s, transform 0.22s, box-shadow 0.22s;
  position: relative; overflow: hidden; isolation: isolate;
}
.hero_cta:hover { background: var(--primary-hover); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(96,89,232,0.36); }
.hero_cta:active { transform: translateY(-1px) scale(0.97); }

/* ══ FEATURES ══ */
.features_section { position: relative; z-index: 2; padding: 0 28px; margin-top: 56px; }
.features_grid { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature_card {
  min-height: 150px; border-radius: 20px; padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  background: var(--bg-light); border: 1px solid var(--border-light2);
  transition: transform 0.24s, box-shadow 0.24s;
}
.feature_card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature_icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.feature_icon svg { width: 22px; height: 22px; }
.feature_icon_blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
.feature_icon_purple { background: rgba(96,89,232,0.1); color: var(--primary); }
.feature_icon_green { background: rgba(16,185,129,0.1); color: var(--success); }
.feature_title { margin: 0; color: var(--text-1); font-size: 15px; font-weight: 500; text-align: center; line-height: 1.3; }

/* ══ ABOUT ══ */
.about_section { position: relative; z-index: 2; padding: 120px 28px 120px; background: var(--bg-white); }
.about_container { max-width: 1280px; margin: 0 auto; }
.about_title { text-align: center; color: var(--text-1); font-size: 64px; font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
.about_spanblue { color: var(--primary); }
.about_description { max-width: 900px; margin: 28px auto 0; text-align: center; color: var(--text-2); font-size: 20px; font-weight: 400; line-height: 1.55; }

.about_stats { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about_card {
  min-height: 280px; border-radius: 24px; padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
  background: var(--bg-light); border: 1px solid var(--border-light2);
  transition: transform 0.24s, box-shadow 0.24s;
}
.about_card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.about_icon { width: 68px; height: 68px; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.about_icon svg { width: 32px; height: 32px; }
.about_icon_blue { background: rgba(59,130,246,0.1); color: #3B82F6; }
.about_icon_purple { background: rgba(96,89,232,0.1); color: var(--primary); }
.about_icon_green { background: rgba(16,185,129,0.1); color: var(--success); }
.about_value { font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; }
.about_value_blue { color: #3B82F6; }
.about_value_purple { color: var(--primary); }
.about_value_green { color: var(--success); }
.about_label { color: var(--text-2); font-size: 18px; font-weight: 400; line-height: 1.4; }

/* ══ LICENSES — LIGHT ══ */
.licenses_section { padding: 100px 28px 100px; background: var(--bg-white); border-top: 1px solid var(--border-light); }
.licenses_container { max-width: 960px; margin: 0 auto; }
.licenses_badge { display: inline-block; color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.licenses_title { text-align: left; color: var(--text-1); font-size: 42px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 16px; }
.licenses_description { text-align: left; color: var(--text-2); font-size: 16px; line-height: 1.65; max-width: 640px; margin: 0 0 44px; }
.licenses_grid { display: flex; flex-direction: column; gap: 12px; }
.license_card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-radius: 18px;
  background: var(--bg-white); border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: border-color 0.22s, transform 0.18s, box-shadow 0.18s;
}
.license_card:hover { border-color: rgba(96,89,232,0.25); transform: translateX(4px); box-shadow: var(--shadow-hover); }
.license_card_icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--primary-bg); color: var(--primary);
}
.license_card_icon svg { width: 24px; height: 24px; }
.license_card_body { flex: 1; min-width: 0; }
.license_card_title { color: var(--text-1); font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.license_card_text { color: var(--text-2); font-size: 14px; line-height: 1.5; margin: 0; }
.license_card_arrow { color: var(--text-3); font-size: 20px; flex-shrink: 0; }
.licenses_see_all {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-radius: 14px;
  border: 1px solid var(--border-light); background: var(--bg-light);
  color: var(--primary); font-size: 15px; font-weight: 600;
  cursor: pointer; margin-top: 4px;
  transition: background 0.2s, border-color 0.2s;
}
.licenses_see_all:hover { background: var(--primary-bg); border-color: rgba(96,89,232,0.2); }

/* ══ SECONDARY CTA BUTTON ══ */
.hero_cta_secondary {
  margin-top: 14px; display: inline-flex; align-items: center; gap: 8px;
  height: 52px; padding: 0 28px; border-radius: 18px;
  background: transparent; color: var(--text-2);
  border: 1px solid var(--border-light);
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.hero_cta_secondary:hover { background: var(--bg-light); border-color: var(--primary); color: var(--primary); }

/* ══ HERO PHONE MOCKUP — white 3D flip ══ */
.hero_phone_mockup {
  position: relative; z-index: 2; margin-top: 60px;
  display: flex; justify-content: center; align-items: center;
  padding: 0 28px;
}
.hero_phone_scene {
  perspective: 1400px;
  position: relative;
}
.hero_phone_scene::after {
  content: ""; position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 32px;
  background: radial-gradient(ellipse, rgba(96,89,232,0.25) 0%, transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.hero_phone_tilt {
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-5deg);
}
.hero_phone_flip {
  position: relative;
  width: 300px; height: 580px;
  transform-style: preserve-3d;
  animation: phonePanelFlip 8s cubic-bezier(0.4,0,0.2,1) infinite;
}
@keyframes phonePanelFlip {
  0%, 38%  { transform: rotateY(0deg); }
  48%, 88% { transform: rotateY(-180deg); }
  98%, 100%{ transform: rotateY(-360deg); }
}
.hero_phone_side {
  position: absolute; inset: 0;
  border-radius: 44px;
  background: #FFFFFF;
  border: 7px solid #DDE0EC;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.95),
    0 4px 10px rgba(0,0,0,0.07),
    0 14px 36px rgba(0,0,0,0.13),
    0 32px 80px rgba(0,0,0,0.10),
    0 60px 120px rgba(96,89,232,0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 0 0 12px;
}
.hero_phone_back { transform: rotateY(180deg); }

/* Phone notch + status */
.hero_phone_notch {
  width: 88px; height: 24px; border-radius: 0 0 18px 18px;
  background: #DDE0EC; margin: 0 auto 2px; flex-shrink: 0;
}
.hero_phone_status_bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 4px; flex-shrink: 0; color: #374151;
}
.hero_phone_time { font-size: 11px; font-weight: 700; color: #111827; }
.hero_phone_status_icons { display: flex; align-items: center; gap: 4px; color: #374151; }

/* App header inside phone */
.hero_phone_app_header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 14px 8px; flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.hero_phone_brand { display: flex; align-items: center; gap: 6px; }
.hero_phone_brand_mark {
  width: 24px; height: 24px; border-radius: 7px;
  background: linear-gradient(135deg, #6059E8, #9B7AF7);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.hero_phone_brand_name { font-size: 12px; font-weight: 700; color: #111827; }
.hero_phone_header_right { display: flex; align-items: center; gap: 8px; }
.hero_phone_bell { color: #9CA3AF; display: flex; align-items: center; }
.hero_phone_avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, #6059E8, #9B7AF7);
  display: grid; place-items: center;
  font-size: 9px; font-weight: 800; color: #fff; letter-spacing: 0.02em;
}

/* Portfolio section */
.hero_phone_portfolio { padding: 10px 14px 4px; flex-shrink: 0; }
.hero_phone_greeting { font-size: 11px; color: #6B7280; font-weight: 500; margin-bottom: 3px; }
.hero_phone_port_label { font-size: 10px; color: #9CA3AF; font-weight: 500; margin-bottom: 2px; }
.hero_phone_balance_row { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.hero_phone_port_value { font-size: 24px; font-weight: 800; color: #111827; letter-spacing: -0.04em; line-height: 1; }
.hero_phone_eye { color: #9CA3AF; display: flex; align-items: center; }
.hero_phone_chip {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 999px;
}
.hero_phone_chip.up { background: rgba(16,185,129,0.1); color: #10B981; }
.hero_phone_chip.down { background: rgba(239,68,68,0.1); color: #EF4444; }
.hero_phone_chip_dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

/* Main chart */
.hero_phone_chart_wrap { padding: 4px 8px 0; flex-shrink: 0; height: 72px; }
.hero_phone_chart_wrap svg { width: 100%; height: 100%; }

/* Range row */
.hero_phone_range_row {
  display: flex; gap: 16px; padding: 4px 14px 4px;
  justify-content: center; flex-shrink: 0;
}
.hero_phone_range { font-size: 10px; font-weight: 600; color: #9CA3AF; cursor: default; padding: 2px 0; }
.hero_phone_range.active { color: #6059E8; border-bottom: 1.5px solid #6059E8; }

/* Action row */
.hero_phone_action_row { display: flex; gap: 10px; padding: 8px 14px 4px; flex-shrink: 0; }
.hero_phone_action_btn {
  flex: 1; height: 36px; border-radius: 10px; border: none;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 10px; font-weight: 700; cursor: default;
}
.hero_phone_action_btn.green { background: rgba(16,185,129,0.12); color: #10B981; }
.hero_phone_action_btn.blue  { background: rgba(59,130,246,0.10); color: #3B82F6; }
.hero_phone_action_btn.purple{ background: rgba(96,89,232,0.10); color: #6059E8; }

/* Section title */
.hero_phone_section_title { font-size: 11px; font-weight: 700; color: #111827; padding: 4px 14px 2px; flex-shrink: 0; }

/* Asset list */
.hero_phone_asset_list { flex: 1; overflow: hidden; padding: 0 10px; }
.hero_phone_asset_row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hero_phone_asset_row:last-child { border: none; }
.hero_phone_asset_left { display: flex; align-items: center; gap: 8px; }
.hero_phone_asset_icon {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.hero_phone_asset_icon.lg { width: 32px; height: 32px; font-size: 14px; }
.hero_phone_asset_icon.btc { background: rgba(247,147,26,0.15); color: #F7931A; }
.hero_phone_asset_icon.eth { background: rgba(98,126,234,0.15); color: #627EEA; }
.hero_phone_asset_icon.gold { background: rgba(245,158,11,0.15); color: #D97706; font-size: 9px; }
.hero_phone_asset_name { font-size: 11px; font-weight: 600; color: #111827; line-height: 1.2; }
.hero_phone_asset_price { font-size: 10px; color: #9CA3AF; line-height: 1.2; }
.hero_phone_asset_right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.hero_phone_asset_change { font-size: 11px; font-weight: 600; }
.hero_phone_asset_change.up { color: #10B981; }
.hero_phone_asset_change.down { color: #EF4444; }
.hero_phone_sparkline { width: 48px; height: 22px; flex-shrink: 0; }
.hero_phone_sparkline svg { width: 100%; height: 100%; }

/* Trade side */
.hero_phone_trade_header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 14px 8px; flex-shrink: 0;
  border-bottom: 1px solid rgba(0,0,0,0.06); gap: 8px;
}
.hero_phone_back_btn { color: #6B7280; font-size: 20px; background: none; border: none; cursor: default; flex-shrink: 0; line-height: 1; }
.hero_phone_trade_title { display: flex; align-items: center; gap: 7px; flex: 1; min-width: 0; }
.hero_phone_trade_name { font-size: 12px; font-weight: 700; color: #111827; line-height: 1.2; }
.hero_phone_trade_sub { font-size: 10px; color: #9CA3AF; line-height: 1.2; }
.hero_phone_trade_price_col { text-align: right; flex-shrink: 0; }
.hero_phone_trade_price { font-size: 14px; font-weight: 800; color: #111827; line-height: 1.2; }

/* Trade chart */
.hero_phone_trade_chart { flex: 1; padding: 4px 8px 0; display: flex; flex-direction: column; min-height: 0; }
.hero_phone_trade_chart svg { flex: 1; width: 100%; }

/* Trade stats */
.hero_phone_trade_stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 4px;
  padding: 4px 14px; flex-shrink: 0;
}
.hero_phone_trade_stat { text-align: center; }
.hero_phone_stat_label { font-size: 9px; color: #9CA3AF; font-weight: 500; }
.hero_phone_stat_val { font-size: 10px; font-weight: 700; color: #374151; }

/* Amount row */
.hero_phone_amount_row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 12px; margin: 4px 10px; border-radius: 10px;
  background: #F4F5F8; flex-shrink: 0;
}
.hero_phone_amount_label { font-size: 10px; color: #9CA3AF; font-weight: 500; }
.hero_phone_amount_input { display: flex; align-items: baseline; gap: 3px; font-size: 14px; font-weight: 700; color: #111827; }
.hero_phone_amount_unit { font-size: 10px; color: #9CA3AF; font-weight: 600; }

/* Trade buttons */
.hero_phone_trade_buttons { display: flex; gap: 8px; padding: 6px 14px 0; flex-shrink: 0; }
.hero_phone_trade_btn {
  flex: 1; height: 34px; border-radius: 9px; border: none;
  font-size: 12px; font-weight: 700; cursor: default;
}
.hero_phone_trade_btn.buy { background: rgba(16,185,129,0.15); color: #059669; }
.hero_phone_trade_btn.sell { background: rgba(239,68,68,0.12); color: #DC2626; }

/* ══ HERO PHONE MOCKUP — responsive ══ */
@media (max-width: 768px) {
  .hero_phone_flip { width: 262px; height: 508px; }
  .hero_phone_port_value { font-size: 20px; }
}
@media (max-width: 480px) {
  .hero_phone_flip { width: 240px; height: 470px; }
}

/* ══ HERO STATS ROW ══ */
.hero_stats_row {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center; gap: 0;
  padding: 0 28px; margin-top: 48px;
}
.hero_stat_item {
  flex: 1; max-width: 240px; text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border-light);
}
.hero_stat_item:last-child { border-right: none; }
.hero_stat_value { font-size: 28px; font-weight: 800; color: var(--text-1); letter-spacing: -0.03em; display: block; margin-bottom: 4px; }
.hero_stat_label { font-size: 14px; color: var(--text-2); font-weight: 500; }

/* ══ CTA — DARK ══ */
.cta_section {
  position: relative; overflow: hidden; padding: 120px 28px 120px; background: var(--dark-bg2);
}
.cta_section::before {
  content: ""; position: absolute; inset: -30%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(96,89,232,0.12) 0%, transparent 55%),
    radial-gradient(circle at 80% 50%, rgba(155,122,247,0.08) 0%, transparent 50%);
  filter: blur(60px);
}
.cta_container { max-width: 1000px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta_badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 20px;
  border-radius: 999px; margin-bottom: 32px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--dark-border);
}
.cta_badge_icon { color: #A29BFE; font-size: 16px; }
.cta_badge_text { color: rgba(255,255,255,0.72); font-size: 15px; font-weight: 500; }
.cta_title { color: var(--dark-text); font-size: 74px; font-weight: 800; line-height: 1.03; letter-spacing: -0.04em; }
.cta_description { max-width: 780px; margin: 24px auto 0; color: var(--dark-muted); font-size: 20px; line-height: 1.5; }
.cta_button {
  margin-top: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-width: 220px; height: 68px; padding: 0 28px; border: none; border-radius: 20px; color: #fff;
  font-size: 18px; font-weight: 700; cursor: pointer;
  background: linear-gradient(90deg, #6059E8 0%, #9B7AF7 60%, #C4A8FF 100%);
  box-shadow: 0 14px 36px rgba(96,89,232,0.3);
  transition: transform 0.22s, box-shadow 0.22s, filter 0.18s;
  position: relative; overflow: hidden; isolation: isolate;
}
.cta_button:hover { transform: translateY(-4px) scale(1.015); box-shadow: 0 20px 48px rgba(96,89,232,0.4); filter: brightness(1.06); }
.cta_button:active { transform: translateY(-1px) scale(0.975); }
.cta_note { margin-top: 24px; color: rgba(255,255,255,0.38); font-size: 15px; }

/* ══ FOOTER — DARK ══ */
.footer_section { background: var(--dark-bg); padding: 56px 28px 32px; border-top: 1px solid var(--dark-border); }
.footer_container { max-width: 1280px; margin: 0 auto; }
.footer_top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; align-items: start; }
.footer_logo_row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer_logo { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; font-weight: 700; background: var(--primary-gradient); }
.footer_brand_name { color: var(--dark-text); font-size: 18px; font-weight: 700; }
.footer_brand_text { max-width: 270px; color: var(--dark-muted); font-size: 15px; line-height: 1.6; }
.footer_title { margin: 4px 0 18px; color: var(--dark-text); font-size: 16px; font-weight: 600; }
.footer_links_block { display: flex; flex-direction: column; }
.footer_link { width: fit-content; color: var(--dark-muted); font-size: 15px; line-height: 2; text-decoration: none; transition: color 0.2s; }
.footer_link:hover { color: var(--dark-text); }
.footer_socials { display: flex; gap: 10px; margin-top: 16px; }
.footer_social { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--dark-muted); text-decoration: none; border: 1px solid var(--dark-border); background: rgba(255,255,255,0.03); transition: color 0.2s, border-color 0.2s, background 0.2s; }
.footer_social:hover { color: var(--dark-text); border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); }
.footer_social svg { width: 20px; height: 20px; }
.footer_bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--dark-border); display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.footer_copy { color: rgba(255,255,255,0.35); font-size: 14px; }
.footer_bottom_links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer_bottom_link { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 14px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer_bottom_link:hover { color: rgba(255,255,255,0.7); }
.footer_licenses_stub { color: rgba(255,255,255,0.4); font-size: 13px; letter-spacing: 0.04em; }
.footer_section .brand-name { color: var(--dark-text) !important; }
.footer_licenses_link { margin-top: 10px; }

/* ── Footer column layout (new structure) ── */
.footer_brand_col { display: flex; flex-direction: column; }
.footer_brand { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }
.footer_brand_desc { max-width: 260px; color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.6; margin: 0; }
.footer_links_col { display: flex; flex-direction: column; }
.footer_col_title { color: rgba(255,255,255,0.55); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 14px; }
.footer_social_link { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); transition: color 0.2s, border-color 0.2s, background 0.2s; }
.footer_social_link:hover { color: #fff; border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.09); }
.footer_social_link svg { width: 18px; height: 18px; }

/* ── Simple mobile footer (shown below 768px instead of full grid) ── */
.footer_mobile_simple {
  display: none;
  flex-direction: column; align-items: center; gap: 18px;
  padding: 32px 24px 24px; text-align: center;
}
.footer_mobile_simple .footer_brand { margin-bottom: 0; }
.footer_mobile_simple .footer_socials { margin-top: 0; justify-content: center; }
.footer_mobile_simple .footer_copy { color: rgba(255,255,255,0.35); font-size: 13px; }
.footer_mobile_simple .footer_bottom_links { justify-content: center; flex-direction: column; gap: 8px; }
.footer_mobile_simple .footer_bottom_link { color: rgba(255,255,255,0.45); font-size: 14px; }

/* ── CTA promo row (60 sec banner) ── */
.cta_promo_row {
  background: var(--dark-bg); padding: 0 28px 32px;
}
.cta_promo_card {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border-radius: 18px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--dark-border);
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
}
.cta_promo_card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.cta_promo_left { display: flex; align-items: center; gap: 14px; }
.cta_promo_icon { font-size: 22px; }
.cta_promo_text { color: var(--dark-muted); font-size: 15px; font-weight: 600; }
.cta_promo_arrow { color: var(--dark-muted); font-size: 20px; }

/* ══ MODALS ══ */
html { scroll-behavior: smooth; }
.modal_overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  background: rgba(17,24,39,0); backdrop-filter: blur(0px); -webkit-backdrop-filter: blur(0px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s, backdrop-filter 0.4s, background 0.4s;
}
.modal_overlay.active {
  opacity: 1; visibility: visible; pointer-events: auto;
  background: rgba(17,24,39,0.38); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.register_modal {
  position: relative; width: 100%; max-width: 460px; max-height: min(90vh, 820px); overflow: hidden;
  border-radius: 24px; border: 1px solid rgba(0,0,0,0.07);
  background: #FFFFFF;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 20px rgba(0,0,0,0.06);
  opacity: 0; transform: translateY(36px) scale(0.92);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.modal_overlay.active .register_modal { opacity: 1; transform: translateY(0) scale(1); }
.register_modal_content { max-height: min(90vh, 820px); padding: 20px 22px 18px; overflow-y: auto; }
.modal_close {
  position: absolute; top: 8px; right: 8px; width: 40px; height: 40px;
  border: none; border-radius: 10px; background: transparent;
  color: #9CA3AF; font-size: 22px; line-height: 1;
  cursor: pointer; display: grid; place-items: center;
  transition: background 0.2s, color 0.2s, transform 0.24s;
}
.modal_close:hover { background: #F4F5F8; color: #6059E8; transform: rotate(90deg); }
.register_modal_title { color: #111827; font-size: 24px; font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 14px; }
.register_form { display: flex; flex-direction: column; gap: 10px; }
.register_steps { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; }
.register_step_item { display: flex; align-items: center; gap: 7px; flex: 1; padding: 7px 10px; border-radius: 12px; border: 1px solid #E5E7EB; background: #F9FAFB; transition: border-color 0.24s, background 0.24s; }
.register_step_item.active { border-color: rgba(96,89,232,0.4); background: rgba(96,89,232,0.06); }
.register_step_item.done { border-color: rgba(16,185,129,0.3); background: rgba(16,185,129,0.05); }
.register_step_number { width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #6B7280; background: #E5E7EB; flex-shrink: 0; }
.register_step_item.active .register_step_number { background: var(--primary); color: #fff; }
.register_step_item.done .register_step_number { background: var(--success); color: #fff; }
.register_step_text { display: flex; flex-direction: column; min-width: 0; }
.register_step_label { color: #374151; font-size: 12px; font-weight: 700; line-height: 1.2; }
.register_step_hint { color: #9CA3AF; font-size: 10px; line-height: 1.2; }
.register_step_divider { width: 10px; height: 1px; background: #E5E7EB; flex-shrink: 0; }
.register_step_panel { display: flex; flex-direction: column; gap: 10px; }
.register_step_panel[hidden] { display: none; }
.register_step_actions { display: flex; gap: 10px; margin-top: 6px; }
.register_step_actions_single > * { width: 100%; }
.register_step_actions .submit_register_button,
.register_step_actions .modal_secondary_button { flex: 1 1 auto; }

.form_group { display: flex; flex-direction: column; gap: 5px; }
.form_group label { color: #4B5563; font-size: 13px; font-weight: 500; }
.form_group input, .form_group select {
  width: 100%; height: 44px; padding: 0 14px; border-radius: 12px;
  border: 1px solid #E5E7EB; background: #F9FAFB;
  color: #111827; font-size: 15px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form_group select { appearance: none; -webkit-appearance: none; }
.form_group input::placeholder { color: #9CA3AF; }
.password-eye-wrap { position: relative; }
.password-eye-wrap input { padding-right: 44px; }
.password-eye-btn {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: #9CA3AF; padding: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.password-eye-btn:hover { color: #6059E8; }
.eye-open, .eye-closed { display: block; width: 18px; height: 18px; }
.eye-open { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E") center/contain no-repeat; }
.eye-closed { display: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'/%3E%3Cline x1='1' y1='1' x2='23' y2='23'/%3E%3C/svg%3E") center/contain no-repeat; }
.password-eye-btn.is-visible .eye-open { display: none; }
.password-eye-btn.is-visible .eye-closed { display: block; }
.form_group input:focus, .form_group select:focus { border-color: rgba(96,89,232,0.5); box-shadow: 0 0 0 4px rgba(96,89,232,0.08); background: #fff; }

.field_hint, .field_error, .checkbox_error, .form_global_error, .form_footer_text { font-size: 12px; line-height: 1.4; }
.field_hint { color: #9CA3AF; margin-top: -2px; }
.field_error, .checkbox_error, .form_global_error { color: #EF4444; }
.field_error, .checkbox_error { min-height: 16px; margin-top: -2px; }
.form_global_error.success { color: #10B981; }
.form_footer_text { color: #6B7280; text-align: center; margin-top: 2px; }
.auth-switch-link { border: none; background: none; color: #6059E8; font-weight: 700; cursor: pointer; padding: 0 0 0 4px; }

.checkbox_row { display: flex; align-items: flex-start; gap: 10px; color: #4B5563; font-size: 14px; line-height: 1.45; cursor: pointer; }
.checkbox_row.has-error { color: #EF4444; }
.checkbox_row input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--primary); }

.submit_register_button, .modal_login_button, .modal_secondary_button { height: 52px; min-height: 52px; border: none; border-radius: 13px; font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; display: inline-flex; align-items: center; justify-content: center; }
.submit_register_button, .modal_login_button { background: var(--primary); color: #fff; box-shadow: 0 8px 24px rgba(96,89,232,0.22); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; isolation: isolate; }
.submit_register_button:hover, .modal_login_button:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(96,89,232,0.32); }
.submit_register_button:active, .modal_login_button:active { transform: scale(0.97); }
.submit_register_button:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.submit_register_button.is-loading { opacity: 0.78; pointer-events: none; }
.modal_secondary_button { background: #F4F5F8; color: #374151; border: 1px solid rgba(0,0,0,0.08); transition: background 0.2s, border-color 0.2s; }
.modal_secondary_button:hover { background: rgba(96,89,232,0.07); border-color: rgba(96,89,232,0.2); color: #6059E8; }

.register_success { text-align: center; padding-top: 8px; }
.register_success_title { color: #111827; font-size: 24px; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.register_success_text { color: #6B7280; font-size: 15px; line-height: 1.55; margin-bottom: 22px; }
.register_success_actions { display: flex; gap: 10px; }
body.modal-open { overflow: hidden; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1280px) {
  .about_title, .cta_title { font-size: 52px; }
  .licenses_title { font-size: 48px; }
  .hero_title_white, .hero_title_gradient { font-size: 72px; }
  .footer_top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 1024px) {
  .about_stats, .licenses_grid { grid-template-columns: 1fr; }
  .hero_title_white, .hero_title_gradient { font-size: 60px; }
  .about_title, .cta_title { font-size: 46px; }
  .header_menu_item { font-size: 13px; padding: 7px 9px; }
}
/* ══ MOBILE HAMBURGER — removed, kept empty for safety ══ */
.landing_hamburger { display: none !important; }

@media (max-width: 768px) {
  .landing_header { padding: 10px 14px; gap: 4px; }
  .landing_header_left { gap: 8px; }
  .header_menu { display: flex; gap: 0; }
  .header_menu_item { font-size: 12px; padding: 6px 7px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 9px; font-size: 1rem; }
  .brand-name { font-size: 0.95rem; }
  .header_register_button { display: none !important; }
  .hero_container { min-height: auto; padding-bottom: 60px; }
  .float_card { width: 148px; min-height: 88px; padding: 14px 14px 12px; border-radius: 16px; }
  .card_label { font-size: 11px; margin-bottom: 6px; }
  .float_card h3 { font-size: 18px; margin-bottom: 4px; }
  .float_card p { font-size: 12px; }
  .card_1 { top: 5%; right: -14px; left: auto; transform: rotate(8deg); animation: floatOneMobile 7s ease-in-out infinite; }
  .card_2 { top: 16%; left: -14px; transform: rotate(-6deg); animation: floatTwoMobile 8s ease-in-out infinite; }
  .card_3 { top: 27%; right: -10px; left: auto; transform: rotate(5deg); animation: floatThreeMobile 9s ease-in-out infinite; }
  .hero_content { padding: 90px 16px 40px; }
  .content_item_trusted { padding: 8px 14px; margin-bottom: 22px; }
  .trust_text { font-size: 12px; }
  .hero_title_white, .hero_title_gradient { font-size: 40px; }
  .hero_subtitle { margin-top: 20px; font-size: 15px; max-width: 100%; }
  .hero_cta { margin: 28px auto 0; width: fit-content; max-width: 80%; height: 52px; font-size: 15px; border-radius: 14px; }
  .features_section { padding: 0 16px; margin-top: 24px; }
  .features_grid { max-width: 100%; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .feature_card { min-height: 110px; border-radius: 16px; padding: 14px 10px; gap: 10px; }
  .feature_icon { width: 42px; height: 42px; border-radius: 12px; }
  .feature_icon svg { width: 18px; height: 18px; }
  .feature_title { font-size: 12px; }
  .about_section { padding: 80px 16px; }
  .about_title, .licenses_title { font-size: 34px; line-height: 1.1; }
  .about_description, .licenses_description { margin-top: 16px; font-size: 15px; }
  .about_stats { margin-top: 32px; grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about_card { min-height: 170px; padding: 18px 12px; border-radius: 18px; align-items: center; justify-content: center; text-align: center; }
  .about_icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .about_icon svg { width: 22px; height: 22px; }
  .about_value { font-size: 28px; margin-bottom: 6px; }
  .about_label { font-size: 13px; }
  .licenses_section { padding: 80px 16px; }
  .licenses_grid { grid-template-columns: 1fr; gap: 12px; }
  .license_card { padding: 20px 18px; border-radius: 18px; }
  .license_card_title { font-size: 18px; }
  .license_card_text { font-size: 14px; }
  .cta_section { padding: 80px 16px; }
  .cta_badge { padding: 8px 14px; margin-bottom: 22px; }
  .cta_badge_text { font-size: 12px; }
  .cta_title { font-size: 36px; line-height: 1.1; }
  .cta_description { margin-top: 16px; font-size: 15px; max-width: 100%; }
  .cta_button { margin-top: 28px; width: auto; min-width: 200px; max-width: 280px; height: 56px; font-size: 16px; border-radius: 16px; padding: 0 24px; justify-content: center; }
  .cta_note { margin-top: 16px; font-size: 13px; }
  .footer_section { padding: 40px 16px 24px; }
  .footer_top { display: none !important; }
  .footer_mobile_simple { display: flex !important; }
  .footer_bottom { display: none !important; }
  .cta_promo_row { padding: 0 16px 20px; }
  .cta_promo_card { padding: 14px 16px; border-radius: 14px; }
  .cta_promo_text { font-size: 13px; }

  /* Licenses mobile */
  .licenses_section { padding: 60px 16px; }
  .licenses_title { font-size: 28px; }
  .licenses_description { font-size: 14px; margin-bottom: 28px; }
  .license_card { padding: 16px 16px; }
  .license_card_icon { width: 42px; height: 42px; border-radius: 12px; }
  .license_card_title { font-size: 16px; }
  .license_card_text { font-size: 13px; }

  /* Hero stats */
  .hero_stats_row { flex-wrap: wrap; gap: 16px 0; margin-top: 32px; }
  .hero_stat_item { flex: 0 0 33.33%; border-right: none; border-bottom: none; padding: 0 8px; }
  .hero_stat_value { font-size: 22px; }
  .hero_stat_label { font-size: 12px; }

  /* Phone mockup */
  .hero_phone_mockup { margin-top: 36px; }

  /* Secondary CTA button */
  .hero_cta_secondary { width: 100%; max-width: 100%; height: 48px; font-size: 14px; border-radius: 14px; margin-top: 12px; }
  .register_modal { max-width: 100%; max-height: calc(100vh - 20px); }
  .register_modal_content { max-height: calc(100vh - 20px); padding: 20px 16px 18px; }
  .register_modal_title { font-size: 26px; }
  .register_step_actions, .register_success_actions { flex-direction: column; }
  .language_toggle { height: 36px; min-width: 62px; padding: 0 10px; font-size: 13px; }
  .language_dropdown { right: 0; left: auto; min-width: 120px; }
}
@media (max-width: 480px) {
  .hero_title_white, .hero_title_gradient { font-size: 34px; }
  .float_card { width: 128px; min-height: 80px; padding: 12px; }
  .float_card h3 { font-size: 16px; }
  .hero_content { padding-top: 72px; }
  .about_title, .licenses_title, .cta_title { font-size: 30px; }
  .about_stats { gap: 8px; }
  .about_card { min-height: 150px; padding: 14px 8px; border-radius: 14px; }
  .about_value { font-size: 24px; }
  .about_label { font-size: 11px; }
}
@media (max-height: 760px) {
  .modal_overlay { align-items: flex-start; overflow-y: auto; }
  .register_modal { margin: 10px 0; max-height: none; }
  .register_modal_content { max-height: none; }
}
@keyframes floatOneMobile {
  0%, 100% { transform: translate3d(0,0,0) rotate(8deg); }
  25%  { transform: translate3d(10px,-22px,0) rotate(11deg); }
  50%  { transform: translate3d(-7px,-30px,0) rotate(5deg); }
  75%  { transform: translate3d(8px,-14px,0) rotate(10deg); }
}
@keyframes floatTwoMobile {
  0%, 100% { transform: translate3d(0,0,0) rotate(-6deg); }
  25%  { transform: translate3d(-9px,16px,0) rotate(-3deg); }
  50%  { transform: translate3d(7px,-20px,0) rotate(-8deg); }
  75%  { transform: translate3d(-5px,10px,0) rotate(-4deg); }
}
@keyframes floatThreeMobile {
  0%, 100% { transform: translate3d(0,0,0) rotate(5deg); }
  25%  { transform: translate3d(9px,-16px,0) rotate(8deg); }
  50%  { transform: translate3d(-6px,14px,0) rotate(3deg); }
  75%  { transform: translate3d(4px,-9px,0) rotate(7deg); }
}

/* Shine effect */
.hero_cta::after, .cta_button::after, .submit_register_button::after,
.modal_login_button::after, .header_register_button::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 25%, rgba(255,255,255,0.22) 50%, transparent 75%, transparent 100%);
  transform: translateX(-150%); pointer-events: none; z-index: 1; transition: transform 0s;
}
.hero_cta:hover::after, .cta_button:hover::after, .submit_register_button:hover::after,
.modal_login_button:hover::after, .header_register_button:hover::after {
  transform: translateX(150%); transition: transform 0.6s ease;
}
