:root {
  --navy-dark: #050a15;
  --navy-mid: #0b132c;
  --navy-light: #142145;
  --teal-bright: #00d2ff;
  --teal-deep: #0077b6;
  --teal-glow: rgba(0, 210, 255, 0.4);
  --white: #ffffff;
  --gray-text: #b0bec5;
  --font-main: 'Inter', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --gradient-main: linear-gradient(135deg, var(--teal-bright) 0%, var(--teal-deep) 100%);
  --gradient-dark: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  --glass-bg: rgba(20, 33, 69, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background: var(--navy-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, .text-gradient {
  font-family: var(--font-accent);
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
}

/* Buttons */
.cta-button, .submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-main);
  color: var(--navy-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 20px rgba(0, 119, 182, 0.3);
  font-family: var(--font-accent);
}

.cta-button:hover, .submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 210, 255, 0.4);
  filter: brightness(1.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 0;
  background: radial-gradient(circle at top right, var(--navy-light) 0%, var(--navy-dark) 60%);
}

.glow-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--teal-glow) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eyebrow {
  font-size: 1.1rem;
  color: var(--teal-bright);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.main-headline {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.subheadline {
  font-size: 1.5rem;
  color: var(--gray-text);
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Glassmorphism Decorative Elements */
.hero-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  font-family: var(--font-accent);
  font-weight: 600;
}

.glass-card .icon {
  width: 28px;
  height: 28px;
  color: var(--teal-bright);
}

.card-1 {
  position: absolute;
  top: 25%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.card-2 {
  position: absolute;
  bottom: 30%;
  right: 12%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Partnership Band */
.partnership-band {
  text-align: center;
  padding: 2.5rem 0;
  z-index: 5;
  position: relative;
  background: transparent;
}

.partnership-eyebrow {
  color: var(--gray-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.partnership-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 210, 255, 0.2);
}

/* Logistics Banner */
.logistics-banner-wrapper {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.logistics-banner {
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  border-top: 2px solid var(--teal-bright);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}

.banner-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banner-label {
  color: var(--teal-bright);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.banner-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-accent);
}

.banner-value small {
  font-size: 0.9rem;
  color: var(--gray-text);
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
}

/* Program Breakdown */
.program-breakdown {
  padding: 8rem 0;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.breakdown-card {
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.breakdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.breakdown-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 210, 255, 0.3);
}

.breakdown-card:hover::before {
  opacity: 1;
}

.card-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--teal-bright);
}

.breakdown-card h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.breakdown-card p {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.8;
}

.session-list {
  list-style: none;
}

.session-list li {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bullet {
  width: 8px;
  height: 8px;
  background: var(--teal-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--teal-bright);
}

/* Deliverables Section */
.deliverables-section {
  background: var(--navy-mid);
  padding: 8rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--navy-dark);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.deliverable-item:hover {
  background: var(--navy-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.checkmark-circle {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(0, 210, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-bright);
  border: 1px solid rgba(0, 210, 255, 0.2);
}

.check-icon {
  width: 24px;
  height: 24px;
}

.deliverable-item p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Registration Section */
.registration-section {
  padding: 8rem 0;
}

.registration-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.form-headline {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.form-subtext {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.trust-indicators {
  background: var(--navy-mid);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-text);
  font-weight: 500;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  color: #4cd137;
}

.form-checkout-wrapper {
  background: var(--navy-mid);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
}

.form-checkout-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-main);
  z-index: -1;
  border-radius: 26px;
  opacity: 0.5;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--navy-dark);
  border: 1px solid var(--glass-border);
  color: var(--white);
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-main);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus {
  outline: none;
  border-color: var(--teal-bright);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
}

.payment-section {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}

.payment-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.payment-amount {
  font-size: 1.25rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.payment-amount strong {
  color: var(--teal-bright);
  font-size: 1.5rem;
}

.square-container {
  min-height: 90px;
  margin-bottom: 1.5rem;
}

.submit-button {
  width: 100%;
  margin-top: 1rem;
  padding: 1.25rem;
  font-size: 1.25rem;
}

.btn-icon {
  width: 24px;
  height: 24px;
}

footer {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--glass-border);
  color: var(--gray-text);
}

/* Responsive */
@media (max-width: 992px) {
  .split-layout, .registration-container {
    grid-template-columns: 1fr;
  }
  
  .logistics-banner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .main-headline {
    font-size: 3.5rem;
  }
  
  .card-1, .card-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .main-headline {
    font-size: 2.8rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .hero-section {
    padding: 8rem 0 4rem;
  }
  
  .form-checkout-wrapper {
    padding: 2rem;
  }
}
