@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root {
  --blue: #1a56db;
  --blue2: #1648c0;
  --blue-dark: #0d2b6e;
  --blue-bg: #0a1e4a;
  --yellow: #f5c518;
  --yellow2: #e0b010;
  --white: #ffffff;
  --light: #f0f4ff;
  --text: #1a1a2e;
  --text2: #5a6a8a;
  --border: #dde4f0;
  --card: #ffffff;
  --dark-card: #0e2252;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--light); color: var(--text); font-family: 'Roboto', sans-serif; }

/* HEADER */
.header {
  background: var(--blue-dark);
  border-bottom: 3px solid var(--yellow);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo {
  text-decoration: none;
  display: flex; align-items: flex-end; gap: 4px;
}
.header-logo img { height: 28px; }
.logo-sub {
  font-size: 9px; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 2px;
}
.header-nav { display: flex; gap: 2px; }
.header-nav a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.3px;
  transition: all 0.2s;
}
.header-nav a:hover, .header-nav a.active {
  color: var(--yellow); background: rgba(255,255,255,0.08);
}
.header-btns { display: flex; gap: 8px; align-items: center; }
.btn-header-reg {
  background: var(--yellow); color: var(--text);
  padding: 9px 22px; border-radius: 4px;
  font-weight: 700; font-size: 13px;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 0.5px; transition: background 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.btn-header-reg img { width: 14px; }
.btn-header-reg:hover { background: var(--yellow2); }
.btn-header-login {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; padding: 8px 18px;
  border-radius: 4px; font-weight: 500;
  font-size: 13px; text-decoration: none;
  text-transform: uppercase; transition: all 0.2s;
}
.btn-header-login:hover { background: rgba(255,255,255,0.2); }

/* HERO BANNER */
.hero {
  background: linear-gradient(135deg, #0d2b6e 0%, #1a56db 60%, #1e7adb 100%);
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 50%; height: 100%;
  background: url('images/mask-right.webp') right center/cover no-repeat;
  opacity: 0.2;
}
.hero::after {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 30%; height: 100%;
  background: url('images/mask-left.webp') left center/cover no-repeat;
  opacity: 0.15;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px; text-align: center;
  position: relative; z-index: 1;
}
.hero-label {
  font-size: 18px; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 12px; font-family: 'Oswald', sans-serif;
}
.hero-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 96px; font-weight: 700;
  color: #fff; line-height: 0.95;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero-amount .currency { color: var(--yellow); }
.hero-sub {
  font-family: 'Oswald', sans-serif;
  font-size: 24px; color: rgba(255,255,255,0.9);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 36px;
}
.btn-hero {
  display: inline-block;
  background: var(--yellow); color: var(--text);
  padding: 18px 64px; border-radius: 40px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 18px;
  text-decoration: none; text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 24px rgba(245,197,24,0.5);
  transition: all 0.2s;
}
.btn-hero:hover { background: var(--yellow2); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,197,24,0.6); }

/* QUICK CARDS */
.quick-cards {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.quick-cards-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 20px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.quick-card {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  display: flex; align-items: center; gap: 16px;
  transition: background 0.2s;
}
.quick-card:last-child { border-right: none; }
.quick-card:hover { background: var(--light); }
.quick-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  background: var(--blue); display: flex;
  align-items: center; justify-content: center;
}
.quick-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.quick-card-title {
  font-weight: 700; font-size: 15px;
  margin-bottom: 3px; color: var(--blue);
}
.quick-card-sub { font-size: 12px; color: var(--text2); }

/* MAIN CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 48px 0; }

/* SECTION HEADER */
.sh { margin-bottom: 28px; }
.sh-title {
  font-family: 'Oswald', sans-serif;
  font-size: 26px; font-weight: 600;
  color: var(--text); border-left: 4px solid var(--blue);
  padding-left: 14px; text-transform: uppercase;
}
.sh-sub { color: var(--text2); font-size: 14px; margin-top: 8px; line-height: 1.6; padding-left: 18px; }

/* CARDS 2 COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.info-card {
  background: var(--card); border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.info-card-header {
  background: var(--blue); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.info-card-header img { width: 36px; height: 36px; object-fit: contain; }
.info-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 600;
  color: #fff; text-transform: uppercase;
}
.info-card-body { padding: 20px; }
.info-card-body p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 12px; }
.info-card-body p:last-child { margin-bottom: 0; }
.btn-card {
  display: inline-block;
  background: var(--yellow); color: var(--text);
  padding: 10px 24px; border-radius: 4px;
  font-weight: 700; font-size: 13px;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s; margin-top: 4px;
}
.btn-card:hover { background: var(--yellow2); }

/* TABLE */
.data-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: 8px;
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.data-table thead tr { background: var(--blue); }
.data-table th {
  padding: 13px 18px; font-size: 12px;
  font-weight: 700; text-align: left;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.data-table td {
  padding: 13px 18px; font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #f8faff; }
.data-table td:first-child { color: var(--text2); font-weight: 600; width: 240px; }
.data-table td:last-child { color: var(--text); }
.badge-blue {
  display: inline-block; background: rgba(26,86,219,0.1);
  color: var(--blue); border: 1px solid rgba(26,86,219,0.2);
  padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
}
.badge-yellow {
  display: inline-block; background: rgba(245,197,24,0.15);
  color: #9a7800; border: 1px solid rgba(245,197,24,0.3);
  padding: 3px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
}

/* FEATURE CARDS */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(26,86,219,0.12); }
.feature-card-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: var(--light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.feature-card-icon img { width: 36px; height: 36px; object-fit: contain; }
.feature-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  margin-bottom: 8px; text-transform: uppercase;
}
.feature-card-text { font-size: 13px; color: var(--text2); line-height: 1.6; }
.feature-card-val {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--blue); margin: 4px 0;
}

/* CHECK LIST */
.check-list { list-style: none; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text2);
}
.check-list li:last-child { border-bottom: none; }
.check-list li img { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* APP SECTION */
.app-section {
  background: var(--blue-dark);
  border-radius: 12px; padding: 40px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 40px;
  margin: 20px 0;
}
.app-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px; font-weight: 700;
  color: #fff; text-transform: uppercase;
  margin-bottom: 8px;
}
.app-title span { color: var(--yellow); }
.app-sub { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 24px; line-height: 1.6; }
.btn-app {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--yellow); color: var(--text);
  padding: 12px 28px; border-radius: 6px;
  font-weight: 700; font-size: 14px;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-app img { width: 18px; }
.btn-app:hover { background: var(--yellow2); }
.app-screens { display: flex; gap: -20px; }
.app-screens img { height: 200px; object-fit: contain; margin-left: -20px; }
.app-screens img:first-child { margin-left: 0; }

/* FAQ */
.faq-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 16px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; color: var(--text); transition: background 0.2s;
}
.faq-q:hover { background: var(--light); }
.faq-q .ico {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--blue); color: #fff;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-size: 16px; transition: transform 0.2s;
}
.faq-q.open .ico { transform: rotate(45deg); background: var(--yellow); color: var(--text); }
.faq-a {
  padding: 0 20px; max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--text2); line-height: 1.7;
  transition: max-height 0.3s, padding 0.3s;
  background: #fafcff;
}
.faq-a.open { max-height: 200px; padding: 0 20px 16px; }

/* MIRROR SECTION */
.mirror-block {
  background: var(--blue); border-radius: 8px;
  padding: 28px; color: #fff; margin: 20px 0;
}
.mirror-title {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 600;
  text-transform: uppercase; margin-bottom: 12px;
}
.mirror-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.mirror-step {
  background: rgba(255,255,255,0.1);
  border-radius: 8px; padding: 16px;
}
.mirror-step-num {
  font-family: 'Oswald', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--yellow); line-height: 1;
  margin-bottom: 8px;
}
.mirror-step-text { font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; }

/* CTA */
.cta-section {
  background: var(--blue-dark);
  padding: 56px 0; text-align: center;
}
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 40px; font-weight: 700;
  color: #fff; text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-title span { color: var(--yellow); }
.cta-sub { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 15px; }

/* REGISTER PAGE */
.reg-page {
  min-height: calc(100vh - 56px);
  background: linear-gradient(135deg, #0a1e4a 0%, #1a56db 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px; position: relative; overflow: hidden;
}
.reg-page::before {
  content: '';
  position: absolute; right: -5%; top: -10%;
  width: 600px; height: 600px;
  background: url('images/mask-right.webp') center/contain no-repeat;
  opacity: 0.1;
}
.reg-card {
  background: var(--white); border-radius: 12px;
  padding: 40px; max-width: 480px; width: 100%;
  text-align: center; position: relative; z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.reg-logo { margin-bottom: 20px; }
.reg-logo img { height: 36px; }
.reg-bonus-block {
  background: linear-gradient(135deg, #0d2b6e, #1a56db);
  border-radius: 10px; padding: 24px; margin-bottom: 24px;
}
.reg-bonus-label {
  font-size: 13px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.reg-bonus-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 56px; font-weight: 700;
  color: var(--yellow); line-height: 1;
}
.reg-bonus-sub { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.btn-reg-main {
  display: block; width: 100%;
  background: var(--yellow); color: var(--text);
  padding: 16px; border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700; font-size: 18px;
  text-decoration: none; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  transition: all 0.2s;
}
.btn-reg-main:hover { background: var(--yellow2); transform: translateY(-1px); }
.btn-login-main {
  display: block; width: 100%;
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text2); padding: 14px;
  border-radius: 6px; font-weight: 600;
  font-size: 14px; text-decoration: none;
  text-transform: uppercase; transition: all 0.2s;
}
.btn-login-main:hover { border-color: var(--blue); color: var(--blue); }
.reg-note { font-size: 11px; color: #aaa; margin-top: 16px; line-height: 1.6; }

/* FOOTER */
.footer { background: #060d1f; border-top: 3px solid var(--blue); padding: 28px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.footer-logo img { height: 24px; opacity: 0.7; }
.footer-text { font-size: 11px; color: #2a3a5a; max-width: 600px; line-height: 1.7; }

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hero-amount { font-size: 56px; }
  .quick-cards-inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .mirror-steps { grid-template-columns: 1fr; }
  .app-section { grid-template-columns: 1fr; }
  .app-screens { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .data-table td:first-child { width: 140px; }
}
