* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  overflow-x: auto;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-y: visible;
  overflow-x: visible;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Navigation Bar */
.main-navbar {
  background: #000000;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(37, 117, 252, 0.3);
}

/* Scrolling Navigation Bar */
.main-nav {
  background: #000;
  padding: 15px 0;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  overflow: hidden;
}

.nav-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: scroll-left 30s linear infinite;
  white-space: nowrap;
}

.nav-menu:hover {
  animation-play-state: paused;
}

.nav-menu li {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-menu li:hover {
  color: #46e0fe;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.navbar-logo {
  flex-shrink: 0;
}

.navbar-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  max-height: 50px;
  width: auto;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
  flex: 1;
  justify-content: center;
}

.navbar-menu li {
  position: relative;
}

.navbar-menu li a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.navbar-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  transition: width 0.3s ease;
}

.navbar-menu li a:hover {
  color: #46e0fe;
}

.navbar-menu li a:hover::after {
  width: 100%;
}

.navbar-cta {
  flex-shrink: 0;
}

.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(37, 117, 252, 0.4);
  white-space: nowrap;
}

.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 117, 252, 0.6);
}

.call-btn i {
  font-size: 1.1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: #46e0fe;
}

/* Header */
.header {
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.header .subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Main Content Layout */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

/* Left Side - Content */
.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2575fc;
  font-family: 'Poppins', sans-serif;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #555;
  line-height: 1.8;
}

.intro-text .highlight {
  color: #2575fc;
  font-weight: 700;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #444;
  line-height: 1.8;
}

.what-youll-learn {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
}

.what-youll-learn h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2575fc;
  font-family: 'Poppins', sans-serif;
}

.learn-list {
  list-style: none;
}

.learn-list li {
  padding: 15px 0;
  font-size: 1.1rem;
  color: #333;
  position: relative;
  padding-left: 35px;
  border-bottom: 1px solid #e0e0e0;
}

.learn-list li:last-child {
  border-bottom: none;
}

.learn-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 2rem;
  color: #2575fc;
  font-weight: bold;
}

.closing-text {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  line-height: 1.8;
}

/* Right Side - Sign-Up Form */
.form-section {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  position: sticky;
  top: 40px;
  height: fit-content;
}

.form-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2575fc;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #2575fc;
  box-shadow: 0 0 0 3px rgba(31, 83, 216, 0.1);
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(31, 83, 216, 0.3);
}

/* HubSpot Form Styling */
#hubspotForm .hs-form {
  font-family: 'Inter', sans-serif !important;
}

#hubspotForm .hs-form-field {
  margin-bottom: 25px !important;
}

#hubspotForm .hs-form-field label {
  display: block !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  color: #333 !important;
  font-family: 'Inter', sans-serif !important;
}

#hubspotForm .hs-input {
  width: 100% !important;
  padding: 15px !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  font-family: 'Inter', sans-serif !important;
  box-sizing: border-box !important;
}

#hubspotForm .hs-input:focus {
  outline: none !important;
  border-color: #2575fc !important;
  box-shadow: 0 0 0 3px rgba(37, 117, 252, 0.1) !important;
}

#hubspotForm .hs-button {
  width: 100% !important;
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%) !important;
  color: white !important;
  padding: 18px !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-family: 'Inter', sans-serif !important;
}

#hubspotForm .hs-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(37, 117, 252, 0.3) !important;
}

#hubspotForm .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin-top: 5px !important;
}

#hubspotForm .hs-error-msg {
  color: #ff4444 !important;
  font-size: 0.9rem !important;
  margin-top: 5px !important;
}

#hubspotForm select.hs-input {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
}

/* Event Details - Split Screen */
.event-details {
  background: #f8f9fa;
  padding: 80px 0;
}

.split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.split-left {
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-left::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

.split-left h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 30px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.split-left .subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.split-right {
  background: white;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.split-detail {
  padding: 20px 0;
  border-bottom: 2px solid #f0f2f5;
}

.split-detail:last-child {
  border-bottom: none;
}

.split-detail-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.split-detail i {
  font-size: 1.8rem;
  color: #2575fc;
}

.split-detail h3 {
  font-size: 1.1rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.split-detail p {
  font-size: 1.4rem;
  color: #2575fc;
  font-weight: 700;
  padding-left: 45px;
  line-height: 1.4;
}

/* Featured Speakers - Magazine/Editorial Layout */
.speakers-section {
  padding: 80px 0;
  background: #1a1a1a;
  color: white;
}

.speakers-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.speakers-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 80px;
}

.magazine-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.magazine-left {
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.magazine-left::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.magazine-right {
  background: white;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mag-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  margin-bottom: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.mag-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magazine-left .mag-avatar {
  color: #2575fc;
}

.magazine-right .mag-avatar {
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
}

.mag-number {
  font-size: 8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}

.magazine-right .mag-number {
  color: rgba(31, 83, 216, 0.1);
}

.magazine-left h3,
.magazine-right h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.magazine-left h3 {
  color: white;
}

.magazine-right h3 {
  color: #2575fc;
}

.mag-role {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.magazine-left .mag-role {
  color: rgba(255,255,255,0.9);
}

.magazine-right .mag-role {
  color: #46e0fe;
}

.magazine-left p {
  color: rgba(255,255,255,0.95);
  font-size: 1.1rem;
  line-height: 1.8;
}

.magazine-right p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.reviews-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: #2575fc;
  font-family: 'Poppins', sans-serif;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.review-stars {
  color: #ffc107;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.review-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: #2575fc;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #2575fc;
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footer p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ==================== BILLING PAGE STYLES ==================== */

/* Billing Header - Override landing page header */
body:not(.landing-page) .header {
  padding: 35px 0;
  text-align: left;
}

body:not(.landing-page) .header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

body:not(.landing-page) .header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.header-logo {
  display: flex;
}

.header-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}

.header-content {
  display: flex;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 0 100px 0;
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 50px;
  font-weight: 400;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  background: white;
  border: 3px solid #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  margin-top: 30px;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pricing-card.selected {
  border-color: #2575fc;
  box-shadow: 0 20px 60px rgba(37, 117, 252, 0.3);
}

.pricing-card.vip {
  border-color: #2575fc;
  border-width: 3px;
  overflow: visible;
}

.badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  padding: 10px 35px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
  z-index: 100;
  border: 4px solid white;
}

.pricing-header {
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 17px 17px 0 0;
}

.pricing-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 10px;
}

.amount {
  font-size: 4.5rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
}

.pricing-body {
  padding: 40px;
}

.features-list {
  list-style: none;
  margin-bottom: 40px;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

.features-list i {
  color: #2575fc;
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.select-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
  padding: 18px;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.select-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 117, 252, 0.4);
}

.terms-link {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
  line-height: 1.5;
}

.terms-link a {
  color: #2575fc;
  text-decoration: none;
  font-weight: 600;
}

.terms-link a:hover {
  text-decoration: underline;
}

/* Payment Section */
.payment-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.form-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2575fc;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.selected-plan {
  text-align: center;
  font-size: 1.2rem;
  color: #2575fc;
  font-weight: 600;
  margin-bottom: 40px;
  padding: 20px;
  background: #f0f8ff;
  border-radius: 10px;
  border-left: 5px solid #2575fc;
}

.selected-plan i {
  margin-right: 10px;
  color: #2575fc;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 40px 0 30px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #2575fc;
}

.form-section-title:first-of-type {
  margin-top: 0;
}

.form-section-title i {
  font-size: 1.5rem;
  color: #2575fc;
}

.form-section-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2575fc;
  font-family: 'Poppins', sans-serif;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.required {
  color: #ff4444;
}

/* Order Summary */
.order-summary {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0 30px 0;
}

.order-summary h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2575fc;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 1.1rem;
  color: #555;
  border-bottom: 1px solid #e0e0e0;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row.total {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2575fc;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 3px solid #2575fc;
}

/* Terms Checkbox */
.terms-checkbox {
  margin: 30px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.terms-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  cursor: pointer;
  flex-shrink: 0;
}

.terms-checkbox label {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  cursor: pointer;
}

.terms-checkbox a {
  color: #2575fc;
  text-decoration: none;
  font-weight: 600;
}

.terms-checkbox a:hover {
  text-decoration: underline;
}

.security-badges {
  text-align: center;
  margin-top: 20px;
  color: #999;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.security-badges i {
  color: #2575fc;
}

/* Terms Section */
.terms-section {
  padding: 60px 0 80px 0;
  background: #f8f9fa;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.terms-intro {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f2f5;
}

.terms-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2575fc;
  margin-top: 40px;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
}

.terms-content h3:first-of-type {
  margin-top: 30px;
}

.terms-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.back-link {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f2f5;
  text-align: center;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 117, 252, 0.4);
}

/* Thank You Page */
.thank-you-section {
  padding: 80px 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.thank-you-card {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.thank-you-icon i {
  font-size: 5rem;
  color: #28a745;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2575fc;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}

.thank-you-content {
  text-align: left;
}

.main-message {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 25px;
  background: #f0f8ff;
  border-left: 5px solid #2575fc;
  border-radius: 10px;
}

.calendar-reminder {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #fff8e1;
  border-left: 5px solid #ffc107;
  border-radius: 10px;
  margin-bottom: 30px;
}

.calendar-reminder i {
  font-size: 2rem;
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 3px;
}

.calendar-reminder p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

.closing-message {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 30px;
  font-weight: 500;
}

.contact-box {
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-box p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 10px;
}

.contact-box a {
  font-size: 1.2rem;
  color: #2575fc;
  text-decoration: none;
  font-weight: 700;
}

.contact-box a:hover {
  text-decoration: underline;
}

.action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #2575fc 0%, #46e0fe 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 117, 252, 0.4);
}

.btn-secondary {
  background: white;
  color: #2575fc;
  border: 2px solid #2575fc;
}

.btn-secondary:hover {
  background: #2575fc;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 117, 252, 0.3);
}

.terms-footer {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.terms-footer h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2575fc;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.terms-footer p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-footer a {
  color: #2575fc;
  text-decoration: none;
  font-weight: 600;
}

.terms-footer a:hover {
  text-decoration: underline;
}

.terms-note {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-section {
    position: static;
  }

  .split-container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-left {
    padding: 50px 40px;
  }

  .split-left h2 {
    font-size: 2.5rem;
  }

  .split-right {
    padding: 50px 40px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  /* Billing Page Responsive */
  body:not(.landing-page) .header-logo img {
    max-width: 160px;
  }

  body:not(.landing-page) .header h1 {
    font-size: 2.2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

  .form-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .main-navbar {
    padding: 12px 0;
  }

  .navbar-content {
    flex-wrap: wrap;
    gap: 15px;
  }

  .navbar-logo img {
    max-height: 40px;
  }

  .navbar-menu {
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
    display: none;
  }

  .navbar-menu.active {
    display: flex;
  }

  .navbar-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-menu li:last-child {
    border-bottom: none;
  }

  .navbar-menu li a {
    display: block;
    padding: 15px 0;
  }

  .navbar-cta {
    margin-left: auto;
  }

  .call-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    padding: 12px 0;
  }

  .nav-menu {
    gap: 30px;
    font-size: 0.9rem;
  }

  .header h1 {
    font-size: 2.5rem;
  }

  .header .subtitle {
    font-size: 1.2rem;
  }

  .content-section h2,
  .speakers-section h2,
  .reviews-section h2 {
    font-size: 2rem;
  }

  .split-left {
    padding: 40px 30px;
  }

  .split-left h2 {
    font-size: 2rem;
  }

  .split-left .subtitle {
    font-size: 1rem;
  }

  .split-right {
    padding: 40px 30px;
  }

  .split-detail i {
    font-size: 1.5rem;
  }

  .split-detail h3 {
    font-size: 0.9rem;
  }

  .split-detail p {
    font-size: 1.2rem;
    padding-left: 40px;
  }

  .speakers-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
  }

  .magazine-layout {
    grid-template-columns: 1fr;
  }

  .magazine-left,
  .magazine-right {
    padding: 50px 30px;
  }

  .mag-avatar {
    width: 140px;
    height: 140px;
    font-size: 3.5rem;
  }

  .mag-number {
    font-size: 5rem;
  }

  .magazine-left h3,
  .magazine-right h3 {
    font-size: 2rem;
  }

  .magazine-left p,
  .magazine-right p {
    font-size: 1rem;
  }

  /* Billing Page Responsive */
  body:not(.landing-page) .header .container {
    flex-direction: column;
    gap: 20px;
  }

  body:not(.landing-page) .header-logo img {
    max-width: 130px;
  }

  body:not(.landing-page) .header h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
  }

  .pricing-header h2 {
    font-size: 1.6rem;
  }

  .amount {
    font-size: 3.5rem;
  }

  .pricing-body {
    padding: 30px 20px;
  }

  .form-container {
    padding: 30px 20px;
  }

  .form-container h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-section-title h3 {
    font-size: 1.2rem;
  }

  .terms-content {
    padding: 30px 20px;
  }

  .terms-intro {
    font-size: 0.95rem;
  }

  .terms-content h3 {
    font-size: 1.2rem;
    margin-top: 30px;
  }

  .terms-content p {
    font-size: 0.95rem;
  }

  .back-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .submit-btn {
    font-size: 1.1rem;
    padding: 18px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 40px;
  }

  /* Thank You Page Responsive */
  .thank-you-card {
    padding: 40px 25px;
  }

  .thank-you-icon i {
    font-size: 4rem;
  }

  .thank-you-card h2 {
    font-size: 2rem;
  }

  .main-message {
    font-size: 1.05rem;
    padding: 20px;
  }

  .calendar-reminder {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .calendar-reminder i {
    font-size: 1.8rem;
  }

  .calendar-reminder p {
    font-size: 1rem;
  }

  .closing-message {
    font-size: 1.05rem;
  }

  .contact-box {
    padding: 20px;
  }

  .contact-box p {
    font-size: 0.95rem;
  }

  .contact-box a {
    font-size: 1.05rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 25px;
    font-size: 1rem;
  }

  .terms-footer {
    padding: 25px 20px;
  }

  .terms-footer h3 {
    font-size: 1.1rem;
  }

  .terms-footer p {
    font-size: 0.85rem;
  }
}

