:root {
  --primary-red: #d71920;
  --primary-red-hover: #b5151b;
  --dark-blue: #0f172a;
  --light-blue: #1e293b;
  --text-dark: #334155;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-blue);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 6%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 50;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease-in-out;
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--primary-red);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--dark-blue);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.hamburger {
  display: none;
}

.nav-links a {
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-red);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-red);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn {
  background: var(--primary-red);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(215, 25, 32, 0.3);
}

.btn:hover {
  background: var(--primary-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(215, 25, 32, 0.4);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  background-color: var(--dark-blue);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(215, 25, 32, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(56, 189, 248, 0.12) 0%, transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  background-position: center top, center bottom, center center, center center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 8% 80px 8%;
  color: white;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-content {
  max-width: 950px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tag {
  color: #ffb3b5;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  display: inline-block;
  background: rgba(255,255,255,0.05);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(215, 25, 32, 0.3);
  box-shadow: 0 4px 15px rgba(215, 25, 32, 0.1);
}

.hero h1 {
  font-size: 60px;
  line-height: 1.25;
  color: white;
  margin-bottom: 35px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  letter-spacing: -1px;
}

.hero h1 span {
  background: linear-gradient(to right, #ffb3b5, #d71920);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.date {
  font-size: 20px;
  color: #cbd5e1;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Generic Section Styles */
.section {
  padding: 65px 8%;
}

.bg-light {
  background: var(--bg-white);
}

h2 {
  text-align: center;
  font-size: 34px;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
  font-size: 16px;
}

/* About NIET */
.niet-about-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.niet-about-text {
  flex: 1.2;
}

.niet-about-text h2 {
  text-align: left;
  margin-bottom: 10px;
}

.niet-subtitle {
  color: var(--primary-red);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 500;
}

.niet-about-text p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  flex: 1;
}

.about-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--dark-blue);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.about-card:hover::before {
  background: var(--primary-red);
}

.about-card h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 10px;
}

.about-card p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}

/* About Conference */
.about-conference {
  background: var(--bg-light);
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text-part {
  flex: 1;
}

.about-text-part h2 {
  text-align: left;
  margin-bottom: 10px;
}

.about-subtitle {
  color: var(--primary-red);
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 500;
}

.about-text-part p {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
}

.highlight-item {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.03);
}

.highlight-item:hover {
  transform: translateX(-8px);
  box-shadow: var(--shadow-md);
}

.highlight-item h4 {
  margin: 0 0 5px 0;
  font-size: 32px;
  color: var(--primary-red);
}

.highlight-item p {
  margin: 0;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.topic-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 120px;
}

.topic-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.topic-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(215,25,32,0.03) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.topic-card:hover::after {
  opacity: 1;
}

.topic-card h3 {
  font-size: 20px;
  margin: 0;
}

.topic-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-right: 20px;
  color: var(--dark-blue);
  background: rgba(215,25,32,0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.topic-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topic-card p {
  color: var(--text-light);
  font-size: 15px;
  margin: 0;
}

/* Outcomes Unique Design */
#outcomes {
  background: var(--bg-white);
}

.outcomes-modern-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.outcome-row {
  display: flex;
  align-items: center;
  background: white;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.04);
  border-left: 4px solid transparent;
}

.outcome-row:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary-red);
}

.outcome-num {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 800;
  color: var(--primary-red);
  opacity: 0.15;
  margin-right: 40px;
  min-width: 80px;
  transition: all 0.3s ease;
}

.outcome-row:hover .outcome-num {
  opacity: 0.8;
  transform: scale(1.1);
}

.outcome-text h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--dark-blue);
}

.outcome-text p {
  color: var(--text-light);
  margin: 0;
  font-size: 16px;
}

/* Registration */
.registration-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
  color: white;
}

.registration-section h2 {
  color: white;
}

.registration-section .section-desc {
  color: #cbd5e1;
}

.reg-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reg-info {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.reg-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pricing-card {
  background: var(--bg-white);
  color: var(--text-dark);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border: 2px solid var(--primary-red);
  transform: scale(1.05);
}

.pricing-card.popular.visible {
  transform: scale(1.05);
}

.pricing-card.popular:hover,
.pricing-card.popular.visible:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular-tag {
  background: var(--primary-red);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h4 {
  margin: 0;
  font-size: 22px;
}

.pricing-card .price {
  font-size: 48px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-red);
  margin: 15px 0 5px 0;
}

.pricing-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 20px;
}

.pricing-features li {
  padding: 10px 0;
  color: var(--text-dark);
  font-size: 15px;
  display: flex;
  align-items: center;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary-red);
  font-weight: bold;
  margin-right: 12px;
  background: rgba(215,25,32,0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.reg-action {
  text-align: center;
  margin-top: 50px;
}

.btn-large {
  font-size: 18px;
  padding: 16px 45px;
}

/* Payment Details */
.payment-card {
  background: var(--bg-white);
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 6px;
  background: linear-gradient(to right, var(--dark-blue), var(--primary-red));
}

.bank-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
}

.payment-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-item span {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.detail-item strong {
  font-size: 18px;
  color: var(--dark-blue);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

/* Guidelines */
.guidelines-container-full {
  max-width: 1000px;
  margin: 0 auto;
}

.guidelines-list-full {
  margin-top: 40px;
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 0 40px;
}

.guide-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.guide-row:last-child {
  border-bottom: none;
}

.guide-row strong {
  color: var(--dark-blue);
  font-size: 18px;
  width: 250px;
  flex-shrink: 0;
}

.guide-row span {
  color: var(--text-dark);
  font-size: 16px;
  flex: 1;
}

/* Committee */
.committee-container {
  max-width: 1200px;
  margin: 0 auto;
}

.key-members {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.member-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}

.member-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.member-role {
  color: var(--primary-red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  background: rgba(215,25,32,0.1);
  padding: 6px 16px;
  border-radius: 50px;
}

.member-img-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light-blue);
  border: 3px solid rgba(0,0,0,0.03);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  font-size: 12px;
  color: var(--text-light);
}

.member-name {
  color: var(--dark-blue);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.member-affiliation {
  color: var(--text-light);
  font-size: 14px;
}

.split-tier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.committee-tier {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}

.tier-title {
  text-align: center;
  font-size: 28px;
  color: var(--dark-blue);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 10px;
}

.tier-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-red);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  justify-content: center;
  flex-grow: 1;
}

.committee-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.group-card {
  background: var(--bg-white);
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

.group-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: rgba(215,25,32,0.1);
}

.group-card h3 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}

.group-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.group-card li {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 8px;
  padding-left: 15px;
  position: relative;
}

.group-card li::before {
  content: '•';
  color: var(--primary-red);
  position: absolute;
  left: 0;
  top: 0;
}

/* Contact */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.contact-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 16px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: rgba(215,25,32,0.03);
  border-bottom-left-radius: 100%;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-card h4 {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--primary-red);
}

.contact-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.contact-card a {
  color: var(--dark-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-card a:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
  color: white;
  text-align: center;
  padding: 90px 20px;
  position: relative;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 42px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #cbd5e1;
}

.cta-section .btn {
  font-size: 18px;
  padding: 16px 45px;
  box-shadow: 0 10px 25px rgba(215,25,32,0.4);
}

/* Footer */
.modern-footer {
  background: #060b13;
  color: #94a3b8;
  padding: 80px 8% 30px 8%;
  font-size: 15px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: white;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 0;
}

.footer-brand h3 span {
  color: var(--primary-red);
}

.footer-brand p {
  line-height: 1.7;
}

.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 20px;
  margin-bottom: 25px;
  margin-top: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a, .footer-contact a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover, .footer-contact a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 15px;
  margin-top: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
  margin: 0;
}

/* Premium Scroll Animations */
.animate-on-scroll,
.animate-slide-left,
.animate-slide-right,
.animate-scale-up {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll,
.animate-slide-left,
.animate-slide-right {
  transform: translateY(30px);
}

.animate-scale-up {
  transform: translateY(20px) scale(0.97);
}

.animate-on-scroll.visible,
.animate-slide-left.visible,
.animate-slide-right.visible,
.animate-scale-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-red);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 25px rgba(215, 25, 32, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-cta:hover {
  background: var(--primary-red-hover);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(215, 25, 32, 0.5);
}

/* Responsive */
@media(max-width: 992px) {
  h1 { font-size: 42px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .pricing-card.popular { transform: none; border-width: 1px; }
  .pricing-card.popular:hover { transform: translateY(-10px); }
  .about-content, .niet-about-wrapper { flex-direction: column; }
}

@media(max-width: 768px) {
  .hero { padding: 120px 5% 60px 5%; min-height: 50vh; }
  .hero h1 { font-size: 28px; }
  .hero h1 br { display: none; }
  .date { font-size: 16px; margin-bottom: 25px; }
  .section { padding: 40px 5%; }
  
  h2 { font-size: 26px; margin-bottom: 15px; }
  .section-desc { font-size: 15px; margin-bottom: 30px; }
  
  .about-card h3, .topic-card h3, .outcome-item h3, .group-card h3 { font-size: 18px; }
  .about-card p, .topic-card p, .outcome-item p, .group-card p { font-size: 14px; }
  
  .tag { font-size: 11px; padding: 8px 12px; border-radius: 8px; letter-spacing: 1px; }

  .pricing-grid, .outcomes-grid, .topics-grid, .committee-groups, .contact-grid, .outcomes-modern-list, .split-tier { 
    grid-template-columns: 1fr; 
  }
  
  .about-grid { grid-template-columns: 1fr; }
  .about-text-part h2, .about-subtitle, .niet-about-text h2, .niet-subtitle { text-align: center; }
  .about-subtitle, .niet-subtitle { font-size: 18px; }
  .about-text-part p, .niet-about-text p { font-size: 15px; }
  
  .about-highlights { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .highlight-item { flex: 1; min-width: 150px; text-align: center; }
  .highlight-item h4 { font-size: 26px; }
  .highlight-item p { font-size: 12px; }
  
  .payment-card { padding: 30px 20px; }
  .payment-details-grid { grid-template-columns: 1fr; }
  .detail-item strong { word-break: break-all; }
  
  .outcome-row { flex-direction: column; align-items: flex-start; padding: 25px; gap: 10px; }
  .outcome-num { margin-right: 0; font-size: 48px; min-width: auto; line-height: 1; margin-bottom: 5px; }
  
  .guide-row { flex-direction: column; align-items: flex-start; gap: 15px; }
  .guide-row strong { width: 100%; font-size: 16px; }
  .guide-row span { font-size: 14px; }
  
  .key-members { flex-direction: column; align-items: center; }
  .member-card { width: 100%; min-width: unset; }
  .member-name { font-size: 20px; }
  
  .pricing-card h4 { font-size: 20px; }
  .pricing-card .price { font-size: 40px; }
  .pricing-features li { font-size: 14px; }
  
  .contact-card h4 { font-size: 16px; }
  .contact-card p { font-size: 14px; }
  
  .navbar { justify-content: space-between; padding: 12px 5%; gap: 10px; }
  .logo { font-size: 20px; line-height: 1; }
  .logo img { height: 40px; }
  .logo span { font-size: 11px; white-space: nowrap; display: inline-block; }
  .hamburger { display: block; font-size: 26px; cursor: pointer; color: var(--dark-blue); }
  .navbar .btn { display: none; }
  
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--bg-white); padding: 25px 5%; box-shadow: var(--shadow-md); border-top: 1px solid rgba(0,0,0,0.05); }
  .nav-links.active { display: flex; }
  
  .cta-section h2 { font-size: 28px; }
  .cta-section p { font-size: 16px; }
  
  .floating-cta { bottom: 20px; right: 20px; padding: 12px 25px; font-size: 14px; }
  
  .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .footer-brand h3 { font-size: 24px; }
  .footer-links h4, .footer-contact h4 { font-size: 18px; }
}
