*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-darkest: #1a0b2e;
  --bg-dark: #2d1b4e;
  --bg-mid: #3d2566;
  --p1: #7B1E7A;
  --p2: #B33F62;
  --p3: #F9564F;
  --p4: #F3C677;
  --orange-bright: #ff7847;
  --text-light: rgba(255, 255, 255, 0.95);
  --text-mid: rgba(255, 255, 255, 0.75);
  --text-dim: rgba(255, 255, 255, 0.55);
  --green: #4ade80;
  --card-bg: rgba(255, 255, 255, 0.04);
  --card-border: rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Tajawal', sans-serif;
  direction: rtl;
  background: var(--bg-darkest);
  color: var(--text-light);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(ellipse at top right, rgba(123, 30, 122, 0.4) 0%, transparent 40%),
    radial-gradient(ellipse at bottom left, rgba(249, 86, 79, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-dark) 50%, var(--bg-darkest) 100%);
  z-index: -1;
  pointer-events: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVBAR ============ */
.nav {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: white;
  /* padding: 5px 12px; */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav-cta {
  background: linear-gradient(135deg, var(--p3) 0%, var(--orange-bright) 100%);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(249, 86, 79, 0.3);
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(249, 86, 79, 0.45);
}

/* ============ HERO ============ */
.hero {
  text-align: center;
  padding: 80px 0 100px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 198, 119, 0.3);
  color: var(--p4);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}

.hero-badge .icon {
  font-size: 14px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: white;
  animation: slide-down 0.8s ease-out;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--p3) 50%, var(--p4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 .underline {
  position: relative;
  display: inline-block;
}

.hero h1 .underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--p3), var(--p4));
  border-radius: 2px;
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 44px;
  font-weight: 400;
  animation: fade-in 0.8s ease-out 0.3s both;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fade-in 0.8s ease-out 0.5s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--p3) 100%);
  color: white;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 42px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(249, 86, 79, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(249, 86, 79, 0.55);
}

.btn-secondary {
  background: transparent;
  color: white;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--p4);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  animation: fade-in 0.8s ease-out 0.7s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--orange-bright);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange-bright);
}

/* ============ STRATEGIES SECTION ============ */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-pretitle {
  font-size: 13px;
  color: var(--orange-bright);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 48px;
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  line-height: 1.2;
}

.section-title .accent {
  background: linear-gradient(135deg, var(--orange-bright), var(--p4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.strategy-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: right;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  backdrop-filter: blur(10px);
}

.strategy-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(249, 86, 79, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.strategy-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-bright), var(--p3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 10px 30px rgba(249, 86, 79, 0.3);
}

.strategy-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
}

.strategy-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ============ LIVE SESSION CARD ============ */
.session-section {
  padding: 60px 0 80px;
}

.session-wrap {
  background: linear-gradient(135deg, rgba(45, 27, 78, 0.6) 0%, rgba(61, 37, 102, 0.4) 100%);
  border: 1px solid rgba(243, 198, 119, 0.2);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.session-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 86, 79, 0.15), transparent 70%);
  pointer-events: none;
}

.session-pretitle {
  font-size: 13px;
  color: var(--orange-bright);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
  position: relative;
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
  position: relative;
}

.vip-card {
  background: linear-gradient(160deg, rgba(255, 120, 71, 0.08) 0%, rgba(123, 30, 122, 0.15) 100%);
  border: 1.5px solid rgba(249, 86, 79, 0.4);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(249, 86, 79, 0.15);
}

.vip-card::before {
  content: '';
  position: absolute;
  top: -1.5px;
  right: -1.5px;
  bottom: -1.5px;
  left: -1.5px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--orange-bright), transparent 50%, var(--p4));
  z-index: -1;
  opacity: 0.6;
}

.vip-top {
  text-align: left;
}

.vip-label {
  font-size: 11px;
  color: var(--orange-bright);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.vip-title-en {
  font-size: 34px;
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 22px;
  direction: ltr;
  text-align: left;
}

.vip-academy {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
}

.vip-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px dashed rgba(243, 198, 119, 0.3);
  margin-top: 32px;
}

.vip-info-block {
  text-align: right;
}

.vip-info-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.vip-info-value {
  font-size: 14px;
  color: white;
  font-weight: 800;
}

.session-info h3 {
  font-size: 42px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.session-info h3 .highlight {
  background: linear-gradient(135deg, var(--orange-bright), var(--p4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.session-info p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.session-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--p1), var(--p3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-label {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 2px;
}

.feature-value {
  font-size: 14px;
  color: white;
  font-weight: 800;
}

.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--p3) 100%);
  color: white;
  font-size: 15px;
  font-weight: 800;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(249, 86, 79, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
}

.btn-register:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(249, 86, 79, 0.55);
}

/* ============ STATS BAR ============ */
.stats-section {
  padding: 30px 0 60px;
}

.stats-bar {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  backdrop-filter: blur(10px);
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-value {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-bright), var(--p4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
  line-height: 1.5;
}

/* ============ REVIEWS ============ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: right;
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(10px);
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(243, 198, 119, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.review-quote {
  position: absolute;
  top: 24px;
  left: 28px;
  font-size: 48px;
  color: rgba(249, 86, 79, 0.3);
  line-height: 1;
  font-family: serif;
  font-weight: 900;
}

.review-stars {
  color: var(--orange-bright);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.review-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  min-height: 90px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-bright), var(--p3));
  color: white;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(249, 86, 79, 0.3);
}

.review-name {
  font-size: 14px;
  font-weight: 800;
  color: white;
  margin-bottom: 3px;
}

.review-grade {
  font-size: 12px;
  color: var(--orange-bright);
  font-weight: 600;
}

/* ============ FORM SECTION ============ */
.form-section {
  padding: 40px 0 80px;
}

.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(45, 27, 78, 0.8) 0%, rgba(26, 11, 46, 0.6) 100%);
  border: 1.5px solid rgba(249, 86, 79, 0.3);
  border-radius: 32px;
  padding: 12px 8px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-bright), var(--p4), var(--p3));
}

.form-head {
  text-align: center;
  margin-bottom: 36px;
}

.form-pretitle {
  font-size: 13px;
  color: var(--orange-bright);
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.form-title {
  font-size: 36px;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.form-title .accent {
  background: linear-gradient(135deg, var(--orange-bright), var(--p4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fg.full {
  grid-column: span 2;
}

.fg label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
}

.input-wrap {
  position: relative;
}

.input-wrap .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange-bright);
  font-size: 16px;
  pointer-events: none;
}

.fg input, .fg select {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  font-size: 15px;
  color: white;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
}

.fg select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%23F9564F' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 20px center;
  padding-left: 50px;
}

.fg input:focus, .fg select:focus {
  border-color: var(--orange-bright);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(249, 86, 79, 0.1);
}

.fg input::placeholder { color: rgba(255, 255, 255, 0.3); }

.phone-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: all 0.3s;
  direction: ltr;
}

.phone-input-wrap:focus-within {
  border-color: var(--orange-bright);
  background: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 0 4px rgba(249, 86, 79, 0.1);
}

.phone-prefix {
  padding: 16px 0 16px 14px;
  color: var(--orange-bright);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  user-select: none;
  direction: ltr;
}

.phone-input-wrap input {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 16px 20px 16px 10px;
  direction: ltr;
  text-align: left;
}

.field-hint {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

.fg select option {
  background: var(--bg-dark);
  color: white;
}

.btn-submit {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--orange-bright) 0%, var(--p3) 100%);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: inherit;
  box-shadow: 0 14px 40px rgba(249, 86, 79, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(249, 86, 79, 0.55);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.form-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
}

.success-msg {
  display: none;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15), rgba(74, 222, 128, 0.05));
  border: 1.5px solid var(--green);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  color: var(--green);
  font-size: 16px;
  font-weight: 800;
  margin-top: 18px;
}

.error-msg {
  display: none;
  background: linear-gradient(135deg, rgba(249, 86, 79, 0.15), rgba(249, 86, 79, 0.05));
  border: 1.5px solid var(--p3);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  color: var(--p3);
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
}

/* ============ CONFIRMATION MODAL ============ */
.confirm-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 5, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.confirm-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.confirm-modal {
  background: linear-gradient(180deg, rgba(45, 27, 78, 0.98), rgba(26, 11, 46, 0.99));
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

.confirm-header {
  text-align: center;
  padding: 28px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(123, 30, 122, 0.15), transparent);
}
.confirm-icon {
  font-size: 36px;
  margin-bottom: 10px;
}
.confirm-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 4px;
}
.confirm-subtitle {
  font-size: 14px;
  color: var(--text-dim);
}

.confirm-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: border-color 0.2s;
}
.confirm-field:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.confirm-label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}
.confirm-value {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 700;
}
.confirm-phone {
  font-family: 'Segoe UI', monospace;
  letter-spacing: 0.5px;
}

.confirm-footer {
  padding: 18px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), #22c55e);
  color: #052e16;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}
.confirm-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
}
.confirm-btn-submit:active {
  transform: scale(0.98);
}

.confirm-btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.confirm-btn-back:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 500px) {
  .confirm-modal { border-radius: 20px; }
  .confirm-header { padding: 22px 18px 14px; }
  .confirm-body { padding: 16px 18px; gap: 10px; }
  .confirm-field { padding: 12px 14px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .confirm-footer { padding: 14px 18px 20px; }
}

/* ============ REGISTRATION CLOSED ============ */
.reg-closed {
  text-align: center;
  padding: 40px 20px;
}

.reg-closed-icon {
  font-size: 64px;
  margin-bottom: 20px;
  animation: pulse-lock 2s ease-in-out infinite;
}

@keyframes pulse-lock {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.reg-closed-title {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--p3), var(--orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.reg-closed-title-sm {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.reg-closed-desc {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.reg-closed-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reg-closed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(249, 86, 79, 0.15), rgba(255, 120, 71, 0.1));
  border: 1.5px solid rgba(249, 86, 79, 0.4);
  color: var(--orange-bright);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.reg-closed-btn:hover {
  background: linear-gradient(135deg, rgba(249, 86, 79, 0.25), rgba(255, 120, 71, 0.2));
  border-color: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 86, 79, 0.2);
}

.reg-closed-lives {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reg-closed-lives-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.reg-closed-live-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 60, 60, 0.05));
  border: 1.5px solid rgba(255, 0, 0, 0.3);
  color: #ff4444;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.reg-closed-live-link:hover {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(255, 60, 60, 0.1));
  border-color: #ff4444;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.15);
}

/* ============ FINAL CTA ============ */
.final-section {
  padding: 80px 0 60px;
  text-align: center;
}

.final-title {
  font-size: 56px;
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-title .highlight {
  background: linear-gradient(135deg, var(--orange-bright), var(--p4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.final-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-bright), var(--p4));
  border-radius: 2px;
}

.final-desc {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.social-btn:hover {
  background: linear-gradient(135deg, var(--orange-bright), var(--p3));
  border-color: transparent;
  transform: translateY(-3px);
}

.footer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 600;
}

.footer-logo {
  height: 36px;
  background: white;
  /*padding: 4px 10px;*/
  border-radius: 8px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .strategies-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .session-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .hero h1 { font-size: 52px; }
  .section-title { font-size: 36px; }
  .final-title { font-size: 40px; }
  .session-info h3 { font-size: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .nav-cta { padding: 10px 20px; font-size: 13px; }
  .nav-logo { height: 40px; /*padding: 4px 10px;*/ }
  .hero { padding: 50px 0 70px; }
  .hero h1 { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .section { padding: 60px 0; }
  .section-title { font-size: 28px; }
  .strategies-grid { grid-template-columns: 1fr; }
  .session-wrap { padding: 30px 24px; }
  .session-info h3 { font-size: 26px; }
  .session-features { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 28px 20px; }
  .stat-item::after { display: none !important; }
  .stat-value { font-size: 36px; }
  .form-wrap { padding: 36px 24px; }
  .form-title { font-size: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: span 1; }
  .final-title { font-size: 32px; }
  .vip-title-en { font-size: 26px; }
}
