:root {
  --color-primary: #0098DB;
  --color-primary-dark: #00447C;
  --color-primary-light: #2CB5E8;
  --color-secondary: #003366;
  --color-accent: #f59e0b;
  --color-accent-light: #fbbf24;
  --color-danger: #ef4444;
  --color-danger-light: #fca5a5;
  --color-dark: #0f172a;
  --color-text: #475569;
  --color-text-light: #64748b;
  --color-white: #ffffff;
  --color-light: #E6F4FB;
  --color-light-2: #f8fafc;
  --color-border: #e2e8f0;
  --font-display: Plus Jakarta Sans, sans-serif;
  --font-body: Plus Jakarta Sans, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 40px rgba(0, 152, 219, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #475569;
  line-height: 1.7;
  background: #0f172a;
  overflow-x: hidden;
  padding-bottom: 70px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 152, 219, 0.1);
  color: #0098DB;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 152, 219, 0.2);
}
.tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #0098DB;
  border-radius: 50%;
  -webkit-animation: tagPulse 2s ease-in-out infinite;
  animation: tagPulse 2s ease-in-out infinite;
}

@-webkit-keyframes tagPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
@keyframes tagPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}
.title-lg {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 20px;
  line-height: 1.15;
}
.title-lg span {
  color: #0098DB;
}

.desc {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .desc {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-cta {
  background: linear-gradient(135deg, #f59e0b 0%, #e68a00 100%);
  color: #0f172a;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.25);
  font-size: 1.05rem;
  padding: 18px 36px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-cta-shake {
  -webkit-animation: ctaShake 5s ease-in-out infinite;
  animation: ctaShake 5s ease-in-out infinite;
}
.btn-cta-shake:hover {
  -webkit-animation: none;
  animation: none;
  transform: translateY(-3px) scale(1.02);
}

@-webkit-keyframes ctaShake {
  0%, 90%, 100% {
    transform: translateX(0);
  }
  92% {
    transform: translateX(-6px);
  }
  94% {
    transform: translateX(6px);
  }
  96% {
    transform: translateX(-4px);
  }
  98% {
    transform: translateX(4px);
  }
}
@keyframes ctaShake {
  0%, 90%, 100% {
    transform: translateX(0);
  }
  92% {
    transform: translateX(-6px);
  }
  94% {
    transform: translateX(6px);
  }
  96% {
    transform: translateX(-4px);
  }
  98% {
    transform: translateX(4px);
  }
}
.btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-accent {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  box-shadow: 0 0px 4px rgba(245, 158, 11, 0.2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header-nav a:hover {
  color: #ffffff;
}
.header-nav-cta {
  display: none;
}
.header-cta-desktop {
  display: inline-flex;
}
.header-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.header-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header-burger span + span {
  margin-top: 6px;
}
.header-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.header-burger.active span:nth-child(2) {
  opacity: 0;
}
.header-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}
.logo-image {
  height: 60px;
  width: auto;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  -webkit-animation: urgencyPulse 1.5s ease-in-out infinite;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}

@-webkit-keyframes urgencyPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}
@keyframes urgencyPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
}
.btn-header {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 110px 0 40px;
}
.hero > .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  -webkit-animation: fadeInUp 0.8s ease-out;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 8px 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.hero-badge-live {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  -webkit-animation: urgencyPulse 1.5s ease-in-out infinite;
  animation: urgencyPulse 1.5s ease-in-out infinite;
}
.hero-badge-tag {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
}
.hero-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero-title-highlight {
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  line-height: 1.6;
  max-width: 500px;
}
.hero-countdown {
  margin-bottom: 30px;
}
.hero-countdown-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 12px;
  font-weight: 600;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}
.hero-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  -webkit-animation: urgencyFade 3s ease-in-out infinite;
  animation: urgencyFade 3s ease-in-out infinite;
}
.hero-urgency-badge svg {
  color: #ef4444;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  -webkit-animation: fadeInUp 1s ease-out 0.3s both;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.hero-image-main {
  width: 100%;
  display: block;
  border-radius: 30px;
}
.hero-image-glow {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0098DB, #f59e0b, #0098DB);
  z-index: -1;
  -webkit-filter: blur(20px);
  filter: blur(20px);
  opacity: 0.4;
  -webkit-animation: glowRotate 4s linear infinite;
  animation: glowRotate 4s linear infinite;
}
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-animation: float 3s ease-in-out infinite;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card-location {
  bottom: 30px;
  left: -20px;
}
.hero-float-card-location strong {
  display: block;
  color: #0f172a;
  font-size: 1rem;
}
.hero-float-card-location span {
  font-size: 0.8rem;
  color: #64748b;
}
.hero-float-card-date {
  top: 30px;
  right: -10px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  background: linear-gradient(135deg, #0098DB, #00447C);
  color: white;
  text-align: center;
  flex-direction: column;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.hero-float-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-float-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}
.hero-float-date-day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.hero-float-date-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes urgencyFade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes urgencyFade {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@-webkit-keyframes glowRotate {
  0% {
    -webkit-filter: blur(20px) hue-rotate(0deg);
    filter: blur(20px) hue-rotate(0deg);
  }
  100% {
    -webkit-filter: blur(20px) hue-rotate(360deg);
    filter: blur(20px) hue-rotate(360deg);
  }
}
@keyframes glowRotate {
  0% {
    -webkit-filter: blur(20px) hue-rotate(0deg);
    filter: blur(20px) hue-rotate(0deg);
  }
  100% {
    -webkit-filter: blur(20px) hue-rotate(360deg);
    filter: blur(20px) hue-rotate(360deg);
  }
}
@-webkit-keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 152, 219, 0.4);
  border-radius: 50%;
  -webkit-animation: particleFloat 15s linear infinite;
  animation: particleFloat 15s linear infinite;
}
.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-duration: 12s;
  animation-duration: 12s;
}
.particle:nth-child(2) {
  left: 30%;
  top: 60%;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-duration: 18s;
  animation-duration: 18s;
  width: 6px;
  height: 6px;
}
.particle:nth-child(3) {
  left: 60%;
  top: 30%;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-duration: 14s;
  animation-duration: 14s;
}
.particle:nth-child(4) {
  left: 80%;
  top: 70%;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  width: 3px;
  height: 3px;
}
.particle:nth-child(5) {
  left: 50%;
  top: 10%;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(6) {
  left: 90%;
  top: 50%;
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-duration: 13s;
  animation-duration: 13s;
}

@-webkit-keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}
.countdown-grid {
  display: flex;
  gap: 8px;
  align-items: center;
}
.countdown-block {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  min-width: 58px;
}
.countdown-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: block;
}
.countdown-txt {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  display: block;
}
.countdown-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  font-weight: 700;
}

.trust-bar {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-bottom: 40px;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 30px 50px;
}
.trust-item {
  text-align: center;
}
.trust-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}
.trust-plus {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
}
.trust-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.social-marquee {
  background: #f59e0b;
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 30px;
  white-space: nowrap;
  -webkit-animation: marqueeScroll 30s linear infinite;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  background: #0f172a;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.3;
  vertical-align: middle;
}

@-webkit-keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about {
  background: #ffffff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-image {
  position: relative;
}
.about-image-main {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #E6F4FB, rgba(0, 152, 219, 0.1));
  border-radius: 30px;
  z-index: -1;
}
.about-image-dots {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(#0098DB 2px, transparent 2px);
  background-size: 12px 12px;
}
.about-quote {
  background: linear-gradient(135deg, #E6F4FB, rgba(0, 152, 219, 0.05));
  padding: 25px 30px;
  border-radius: 20px;
  border-left: 4px solid #0098DB;
  margin: 25px 0;
  font-style: italic;
  color: #0f172a;
  font-size: 1.05rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-feature-check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-check svg {
  width: 16px;
  height: 16px;
  color: white;
}
.about-feature span {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}

.problems {
  background: #f8fafc;
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.problem-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #ef4444;
}
.problem-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(239, 68, 68, 0.1);
}
.problem-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 10px;
}
.problem-card p {
  color: #64748b;
  font-size: 0.9rem;
}

.problem-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.problem-icon svg {
  width: 28px;
  height: 28px;
  color: #ef4444;
  transition: all 0.3s ease;
}
.problem-card:hover .problem-icon {
  background: linear-gradient(135deg, #ef4444, #dc2626);
}
.problem-card:hover .problem-icon svg {
  color: white;
}

.solution .title-lg,
.results .title-lg,
.program .title-lg,
.testimonials .title-lg,
.theater .title-lg,
.faq-section .title-lg {
  color: #ffffff;
}
.solution .desc,
.results .desc,
.program .desc,
.testimonials .desc,
.theater .desc,
.faq-section .desc {
  color: rgba(255, 255, 255, 0.7);
}
.solution .tag,
.results .tag,
.program .tag,
.testimonials .tag,
.theater .tag,
.faq-section .tag {
  color: #ffffff;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.solution-step {
  position: relative;
}
.solution-step-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #0098DB;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -10px;
  position: relative;
  z-index: 0;
}
.solution-step-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
}
.solution-step-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}
.solution-step-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.results {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.result-card {
  text-align: center;
  padding: 30px 20px;
}

.result-number {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 8px;
}

.result-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.program-day {
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.program-day-header {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}
.program-day-header h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}
.program-day-1 {
  background: linear-gradient(135deg, #0098DB, #00447C);
}
.program-day-2 {
  background: linear-gradient(135deg, #003366, #00447C);
}
.program-day-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 4px;
}
.program-day-icon svg {
  width: 32px;
  height: 32px;
  opacity: 0.6;
}
.program-day-body {
  padding: 8px 0;
}

.program-slot {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 30px;
  border-bottom: 1px solid #e2e8f0;
  transition: background 0.2s ease;
}
.program-slot:last-child {
  border-bottom: none;
}
.program-slot:hover {
  background: rgba(0, 152, 219, 0.02);
}
.program-slot-highlight {
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid #f59e0b;
}
.program-slot-highlight-primary {
  background: rgba(0, 152, 219, 0.04);
  border-left: 3px solid #0098DB;
}
.program-slot h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.program-slot p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

.program-time {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: #64748b;
  white-space: nowrap;
  min-width: 48px;
  padding-top: 2px;
}
.program-time-accent {
  color: #0098DB;
}

.bonus {
  background: #ffffff;
}
.bonus .title-lg {
  color: #0f172a;
}
.bonus .desc {
  color: #64748b;
}
.bonus .tag {
  color: #0f172a;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.bonus-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.bonus-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  color: #0f172a;
  margin-bottom: 6px;
}
.bonus-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

.bonus-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bonus-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}
.bonus-icon-accent {
  background: linear-gradient(135deg, #f59e0b, #f59e0b) !important;
}
.bonus-icon-accent svg {
  color: #0f172a;
}

.bonus-value {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f59e0b;
}

/* Relatori Section */
.relatori {
  background: rgba(255, 255, 255, 0.02);
}

.relatori .title-lg {
  color: #ffffff;
}

.relatori .desc {
  color: rgba(255, 255, 255, 0.7);
}

.relatori-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.relatore-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.relatore-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.4);
}

.relatore-card:hover .relatore-img {
  border-color: #f59e0b;
}

.relatore-img {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease;
}

.relatore-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relatore-nome {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.relatore-ruolo {
  color: #f59e0b;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.relatore-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.relatore-card:hover .relatore-btn {
  border-color: #f59e0b;
  color: #f59e0b;
}

/* Relatore Modal */
.relatore-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.relatore-modal.active {
  opacity: 1;
  visibility: visible;
}

.relatore-modal-content {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
}

.relatore-modal.active .relatore-modal-content {
  transform: scale(1) translateY(0);
}

.relatore-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.relatore-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.relatore-modal-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.relatore-modal-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f59e0b;
}

.relatore-modal-nome {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.relatore-modal-ruolo {
  color: #f59e0b;
  font-size: 1rem;
}

.relatore-modal-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .relatori-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .relatore-img {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 600px) {
  .relatori-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .relatore-card {
    padding: 20px 16px;
  }

  .relatore-img {
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
  }

  .relatore-nome {
    font-size: 1rem;
  }

  .relatore-ruolo {
    font-size: 0.85rem;
  }

  .relatore-modal-content {
    padding: 24px;
  }

  .relatore-modal-header {
    flex-direction: column;
    text-align: center;
  }
}

.testimonials {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 15px;
}
.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-urgency-bar {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0 18px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
  max-width: 440px;
}
.hero-urgency-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.hero-urgency-bar-row span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.hero-urgency-bar-event {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(0, 152, 219, 0.1);
  margin: 0 -18px;
  padding: 10px 18px;
  border-radius: 20px 20px 0 0;
}
.hero-urgency-bar-event-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero-urgency-bar-event-item svg {
  color: #f59e0b;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.hero-urgency-bar-event-item strong {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
}
.hero-urgency-bar-event-item span {
  font-weight: 600;
}
.hero-urgency-bar-divider {
  height: 0px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}
.hero-urgency-bar-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
  font-weight: 600;
  text-align: center;
}
.hero-urgency-bar .countdown-grid {
  justify-content: center;
}

.hero-spots-count {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #ef4444;
}

.hero-progress {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 8px;
}
.hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.hero-viewers {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.hero-viewers svg {
  color: #f59e0b;
  flex-shrink: 0;
}

.hero-video-card {
  padding: 12px;
  border-radius: 30px;
  width: 100%;
}

.hero-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #0f172a;
}
.hero-video-wrap iframe, .hero-video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-cover.hidden {
  display: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(245, 158, 11, 0.95);
  border: none;
  border-radius: 50%;
  color: #0f172a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
}

.video-play-btn svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5);
}

.hero-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 152, 219, 0.9);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 152, 219, 0.4);
}
.hero-video-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #0098DB;
}
.hero-video-play.playing {
  opacity: 0;
  pointer-events: none;
}

.hero-video-info {
  padding: 12px 4px 4px;
  text-align: center;
}
.hero-video-info strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.hero-video-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 0 20px;
  opacity: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: #0098DB;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  position: relative;
}

.cta-final-timer {
  display: inline-block;
  padding: 20px 30px;
  position: relative;
  text-align: center;
}
.cta-final-timer p {
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 8px;
}
.cta-final-timer strong {
  font-size: 1.2rem;
  color: #f59e0b;
}

.cta-final-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
  position: relative;
}
.cta-final-secure svg {
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #2CB5E8;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(0, 152, 219, 0.05);
  border: 1px solid rgba(0, 152, 219, 0.15);
  padding: 24px 28px;
  border-radius: 20px;
}
.pricing-guarantee-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-guarantee-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.pricing-guarantee h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: #0f172a;
  margin-bottom: 6px;
}
.pricing-guarantee p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

.solution-arrow {
  text-align: center;
  margin: 40px 0;
  color: #0098DB;
  -webkit-animation: bounceDown 2s ease-in-out infinite;
  animation: bounceDown 2s ease-in-out infinite;
}

@-webkit-keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
.solution-cta {
  background: linear-gradient(135deg, #0098DB 0%, #003366 100%);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.solution-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.solution-cta h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
}
.solution-cta h3 span {
  color: #f59e0b;
}
.solution-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 25px;
  position: relative;
}
.solution-cta .btn {
  position: relative;
}

.benefits {
  background: #ffffff;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: linear-gradient(135deg, #E6F4FB, rgba(0, 152, 219, 0.03));
  border-radius: 20px;
  padding: 35px 28px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 152, 219, 0.08);
  display: flex;
  flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 0 40px rgba(0, 152, 219, 0.3);
  border-color: rgba(0, 152, 219, 0.2);
}
.benefit-card h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 10px;
}
.benefit-card p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.benefit-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #0098DB;
  opacity: 0.08;
  line-height: 1;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.benefit-stat {
  margin-top: auto;
}
.benefit-stat-bar {
  height: 6px;
  background: rgba(0, 152, 219, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.benefit-stat-fill {
  height: 100%;
  background: linear-gradient(90deg, #0098DB, #f59e0b);
  border-radius: 3px;
  width: 0;
  transition: width 1.5s ease-out;
}
.benefit-stat span {
  font-size: 0.8rem;
  color: #0098DB;
  font-weight: 600;
}

.theater .title-lg {
  color: #ffffff;
}
.theater .desc {
  color: rgba(255, 255, 255, 0.7);
}
.theater .tag {
  color: #ffffff;
}

.theater-wrap {
  width: 442px;
  max-width: 100%;
  margin: 0 auto;
}

.theater-stage {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 12px 0;
  border-radius: 8px 8px 0 0;
  margin: 0 50px 24px;
}

.theater-zone-label {
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 0 6px;
  margin-top: 12px;
}
.theater-zone-label--platinum {
  color: #0098DB;
}
.theater-zone-label--gold {
  color: #f59e0b;
}
.theater-zone-label--silver {
  color: rgba(255, 255, 255, 0.5);
}

.theater-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 6px;
}
.theater-row::after {
  content: "";
  width: 50px;
  flex-shrink: 0;
}

.theater-row-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  width: 50px;
  text-align: right;
  padding-right: 12px;
  flex-shrink: 0;
}

.theater-block {
  display: flex;
  gap: 6px;
}

.theater-corridor {
  width: 30px;
  flex-shrink: 0;
}

.seat {
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.seat--platinum {
  background: rgba(0, 152, 219, 0.2);
  border-color: rgba(0, 152, 219, 0.4);
  color: #2CB5E8;
}
.seat--platinum:hover:not([data-status=occupied]) {
  background: rgba(0, 152, 219, 0.35);
  transform: scale(1.1);
}
.seat--gold {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: #fbbf24;
}
.seat--gold:hover:not([data-status=occupied]) {
  background: rgba(245, 158, 11, 0.3);
  transform: scale(1.1);
}
.seat--silver {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}
.seat--silver:hover:not([data-status=occupied]) {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}
.seat[data-status=occupied] {
  cursor: not-allowed;
  opacity: 0.4;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 4px, transparent 4px, transparent 8px);
  color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.1);
}
.seat[data-status=selected] {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.seat[data-status=selected].seat--platinum {
  background: #0098DB;
  border-color: #2CB5E8;
  color: #ffffff;
}
.seat[data-status=selected].seat--gold {
  background: #f59e0b;
  border-color: #fbbf24;
  color: #0f172a;
}
.seat[data-status=selected].seat--silver {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.theater-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.theater-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.theater-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  display: block;
}
.theater-legend-dot--available {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.theater-legend-dot--selected {
  background: #f59e0b;
  border: 2px solid #fbbf24;
}
.theater-legend-dot--occupied {
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 3px, transparent 3px, transparent 6px);
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.theater-legend-dot--platinum {
  background: rgba(0, 152, 219, 0.3);
  border: 2px solid #0098DB;
}
.theater-legend-dot--gold {
  background: rgba(245, 158, 11, 0.25);
  border: 2px solid #f59e0b;
}
.theater-legend-dot--silver {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.theater-legend-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.theater-summary {
  max-width: 600px;
  margin: 30px auto 0;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.theater-summary h4 {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.theater-summary-seats {
  flex: 1;
}
.theater-summary-total {
  text-align: center;
}
.theater-summary-total span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}
.theater-summary-total strong {
  font-size: 1.6rem;
  color: #f59e0b;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.theater-summary .btn {
  white-space: nowrap;
}

.theater-selected-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 2px 4px 2px 0;
}
.theater-selected-tag--platinum {
  background: rgba(0, 152, 219, 0.2);
  color: #2CB5E8;
}
.theater-selected-tag--gold {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}
.theater-selected-tag--silver {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.pricing {
  background: #f8fafc;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 35px 30px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.pricing-card-featured {
  transform: scale(1.06);
  z-index: 2;
  border: 2px solid #d4a017;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1), 0 0 40px rgba(212, 160, 23, 0.15);
}
.pricing-card-featured:hover {
  transform: scale(1.06) translateY(-8px);
}
.pricing-card:not(.pricing-card-featured) .pricing-name {
  color: #0f172a;
}
.pricing-card:not(.pricing-card-featured) .pricing-amount {
  color: #0098DB;
}
.pricing-card:not(.pricing-card-featured) .pricing-features svg {
  color: #0098DB;
}
.pricing-card:not(.pricing-card-featured) .pricing-button {
  background: linear-gradient(135deg, #0098DB, #00447C);
  color: white;
}
.pricing-card:not(.pricing-card-featured) .pricing-button:hover {
  box-shadow: 0 8px 25px rgba(0, 152, 219, 0.4);
  transform: translateY(-2px);
}
.pricing-card--silver {
  background: #ffffff;
  border-top: 3px solid #b0b0b0;
}
.pricing-card--silver .pricing-header-card {
  background: linear-gradient(160deg, #f0f0f0 0%, #d8d8d8 100%);
  margin: -35px -30px 20px;
  padding: 30px 30px 20px;
  border-radius: 30px 30px 0 0;
}
.pricing-card--silver .pricing-name {
  color: #444;
}
.pricing-card--silver .pricing-amount {
  color: #555;
}
.pricing-card--silver .pricing-currency {
  color: #777;
}
.pricing-card--silver .pricing-desc {
  color: #666;
  opacity: 1;
}
.pricing-card--silver .pricing-features svg {
  color: #888;
}
.pricing-card--silver .pricing-features li {
  color: #444;
}
.pricing-card--silver .pricing-button {
  background: linear-gradient(135deg, #777, #555);
  color: white;
}
.pricing-card--silver .pricing-button:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.pricing-card--gold {
  background: #ffffff;
  border-top: 3px solid #d4a017;
}
.pricing-card--gold .pricing-header-card {
  background: linear-gradient(160deg, #fff8e1 0%, #ffe082 50%, #f5cb42 100%);
  margin: -35px -30px 20px;
  padding: 30px 30px 20px;
  border-radius: 30px 30px 0 0;
}
.pricing-card--gold .pricing-features li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  color: #3a3a3a;
}
.pricing-card--gold .pricing-features svg {
  color: #b8860b;
}
.pricing-card--gold .pricing-name {
  color: #5c3d00;
}
.pricing-card--gold .pricing-desc {
  color: #7a5a1a;
  opacity: 1;
}
.pricing-card--gold .pricing-amount {
  color: #5c3d00;
}
.pricing-card--gold .pricing-currency {
  color: #7a5a1a;
}
.pricing-card--gold .pricing-button {
  background: linear-gradient(135deg, #c9960c, #9a7200);
  color: white;
}
.pricing-card--gold .pricing-button:hover {
  box-shadow: 0 8px 25px rgba(180, 130, 0, 0.35);
  transform: translateY(-2px);
}
.pricing-card--platinum {
  background: #ffffff;
  border-top: 3px solid #0098DB;
}
.pricing-card--platinum .pricing-header-card {
  background: linear-gradient(160deg, #e6f3fb 0%, #b8d9f0 50%, #8ec5e6 100%);
  margin: -35px -30px 20px;
  padding: 30px 30px 20px;
  border-radius: 30px 30px 0 0;
}
.pricing-card--platinum .pricing-name {
  color: #0a3d6b;
}
.pricing-card--platinum .pricing-amount {
  color: #0a3d6b;
}
.pricing-card--platinum .pricing-currency {
  color: #1a6da8;
}
.pricing-card--platinum .pricing-desc {
  color: #2a6a9a;
  opacity: 1;
}
.pricing-card--platinum .pricing-features svg {
  color: #0098DB;
}
.pricing-card--platinum .pricing-features li {
  color: #333;
}
.pricing-card--platinum .pricing-button {
  background: linear-gradient(135deg, #0098DB, #00447C);
  color: white;
}
.pricing-card--platinum .pricing-button:hover {
  box-shadow: 0 8px 25px rgba(0, 152, 219, 0.4);
  transform: translateY(-2px);
}

.pricing-badge-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #c9960c, #9a7200);
  color: white;
  padding: 6px 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 0 8px 8px;
  z-index: 3;
}

.pricing-header-card {
  text-align: center;
  margin-bottom: 20px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-emoji {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.pricing-tier {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}

.pricing-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.pricing-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
}

.pricing-currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.pricing-desc {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 15px;
  text-align: center;
  max-width: 240px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-seats {
  margin-bottom: 20px;
}
.pricing-seats-bar {
  height: 6px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}
.pricing-seats-fill {
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 3px;
}
.pricing-seats span {
  font-size: 0.8rem;
  color: #ef4444;
  font-weight: 700;
}

.pricing-button {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@-webkit-keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 2px 15px rgba(245, 158, 11, 0.35);
  }
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 2px 15px rgba(245, 158, 11, 0.35);
  }
}
.speaker {
  background: #ffffff;
}
.speaker-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.speaker-image {
  position: relative;
}
.speaker-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.speaker-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  border-radius: 30px;
  z-index: -1;
}
.speaker-badge {
  position: absolute;
  top: 20px;
  right: -15px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #0f172a;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: rotate(5deg);
  font-size: 0.95rem;
}
.speaker-title {
  font-size: 1.05rem;
  color: #0098DB;
  font-weight: 600;
  margin-bottom: 20px;
}
.speaker-content .desc {
  margin-bottom: 15px;
  max-width: none;
}
.speaker-credentials {
  list-style: none;
  margin-top: 25px;
}
.speaker-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid #e2e8f0;
}
.speaker-credentials li:last-child {
  border-bottom: none;
}
.speaker-credentials svg {
  width: 22px;
  height: 22px;
  color: #0098DB;
  flex-shrink: 0;
  margin-top: 2px;
}
.speaker-credentials span {
  color: #475569;
  font-size: 0.95rem;
}

.form-section {
  background: linear-gradient(135deg, #E6F4FB, #ffffff);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.form-info .title-lg {
  margin-bottom: 15px;
}
.form-info .desc {
  margin-bottom: 25px;
}
.form-features {
  list-style: none;
}
.form-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}
.form-features li svg {
  width: 22px;
  height: 22px;
  color: #0098DB;
  flex-shrink: 0;
}
.form-features li span {
  color: #475569;
  font-weight: 500;
}
.form-container {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 152, 219, 0.1);
}
.form-progress {
  margin-bottom: 30px;
}
.form-progress-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 15px;
}
.form-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #0098DB, #f59e0b);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.form-progress-steps {
  display: flex;
  justify-content: space-between;
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  -webkit-animation: fadeInUp 0.3s ease;
  animation: fadeInUp 0.3s ease;
}
.form-step h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: 25px;
  text-align: center;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
  background: #f8fafc;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #0098DB;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 152, 219, 0.1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.form-nav .btn {
  flex: 1;
  justify-content: center;
}
.form-nav .btn-ghost {
  color: #64748b;
  border-color: #e2e8f0;
}
.form-next-btn {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}
.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}
.form-guarantee svg {
  color: #0098DB;
  flex-shrink: 0;
}
.form-guarantee span {
  font-size: 0.8rem;
  color: #64748b;
}

.form-step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
.form-step-indicator.active {
  background: #0098DB;
  color: white;
}
.form-step-indicator.completed {
  background: #f59e0b;
  color: #0f172a;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 15px;
}
.checkbox-group input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #0098DB;
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox-group label {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}
.checkbox-group a {
  color: #0098DB;
  text-decoration: none;
}

.cta-final {
  background: linear-gradient(135deg, #0098DB 0%, #003366 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-final .container {
  position: relative;
  z-index: 1;
}
.cta-final h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 15px;
  position: relative;
}
.cta-final h2 span {
  color: #f59e0b;
}
.cta-final p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  position: relative;
}
.cta-final .btn {
  position: relative;
}

footer {
  background: #0f172a;
  color: white;
  padding: 40px 0;
}
footer p {
  opacity: 0.6;
  font-size: 0.9rem;
}
footer a {
  color: #2CB5E8;
  text-decoration: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo-image {
  height: 40px;
  width: auto;
  opacity: 0.9;
}

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 51, 102, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.bottom-bar.visible {
  transform: translateY(0);
}
.bottom-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
}
.bottom-bar-urgency {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.bottom-bar-urgency strong {
  color: #f59e0b;
  font-weight: 700;
}
.bottom-bar-countdown {
  color: white;
}
.bottom-bar-timer {
  display: flex;
  align-items: center;
  gap: 2px;
}
.bottom-bar-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.bottom-bar-info {
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bottom-bar-title {
  font-weight: 700;
  font-size: 0.85rem;
}
.bottom-bar-sep {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
}
.bottom-bar-timer-wrap {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  text-align: center;
}
.bottom-bar-timer-label {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-bottom: 2px;
}

.bb-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}

.bb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 2px;
}

.social-toast {
  position: fixed;
  bottom: 90px;
  left: 20px;
  background: white;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 998;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 320px;
}
.social-toast.visible {
  transform: translateX(0);
}
.social-toast-avatar {
  width: 40px;
  height: 40px;
  background: #E6F4FB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-toast-avatar svg {
  width: 20px;
  height: 20px;
  color: #0098DB;
}
.social-toast-text strong {
  display: block;
  color: #0f172a;
  font-size: 0.9rem;
}
.social-toast-text span {
  font-size: 0.8rem;
  color: #64748b;
}
.social-toast-time {
  font-size: 0.7rem;
  color: #64748b;
  white-space: nowrap;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.popup-overlay.visible {
  opacity: 1;
  visibility: visible;
}
.popup-overlay.visible .popup-content {
  transform: scale(1) translateY(0);
}
.popup-content {
  background: white;
  border-radius: 30px;
  padding: 50px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.popup-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  color: #0f172a;
  margin-bottom: 12px;
}
.popup-content p {
  color: #64748b;
  margin-bottom: 25px;
  font-size: 0.95rem;
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.popup-close:hover {
  color: #0f172a;
}
.popup-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popup-form input {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.3s ease;
}
.popup-form input:focus {
  outline: none;
  border-color: #0098DB;
  box-shadow: 0 0 0 4px rgba(0, 152, 219, 0.1);
}
.popup-submit {
  justify-content: center;
}
.popup-privacy {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 10px;
}

.anim-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.anim-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.sg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px;
}
.sg-header {
  text-align: center;
  padding: 60px 0 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}
.sg-header h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}
.sg-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
}
.sg-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 72px;
}
.sg-duo-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-block;
}
.sg-section--light .sg-duo-label {
  color: #64748b;
  background: rgba(0, 0, 0, 0.05);
}
.sg-section--dark .sg-duo-label {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.sg-section {
  margin-bottom: 72px;
}
.sg-section--light {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
}
.sg-section--dark {
  background: #0f172a;
  border-radius: 20px;
  padding: 40px 32px;
  color: rgba(255, 255, 255, 0.85);
}
.sg-section--dark .sg-section-title {
  color: #2CB5E8;
}
.sg-section--dark .sg-section-heading {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.sg-section--dark .sg-subtitle,
.sg-section--dark .sg-subtitle-spaced,
.sg-section--dark .sg-subtitle-lg {
  color: #ffffff;
}
.sg-section--dark .sg-note {
  color: rgba(255, 255, 255, 0.5);
}
.sg-section--dark .sg-type-row {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.sg-section--dark .sg-type-row-label {
  color: rgba(255, 255, 255, 0.4);
}
.sg-section--dark .sg-type-meta {
  color: rgba(255, 255, 255, 0.35);
}
.sg-section--dark .sg-type-section {
  color: #ffffff;
}
.sg-section--dark .sg-type-title-lg {
  color: #ffffff;
}
.sg-section--dark .sg-type-card {
  color: #ffffff;
}
.sg-section--dark .sg-type-body {
  color: rgba(255, 255, 255, 0.7);
}
.sg-section--dark .sg-type-desc {
  color: rgba(255, 255, 255, 0.6);
}
.sg-section--dark .sg-type-label {
  color: #2CB5E8;
}
.sg-section--dark .sg-showcase {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
.sg-section--dark .sg-shadow-box {
  background: rgba(255, 255, 255, 0.06);
}
.sg-section--dark .sg-shadow-name {
  color: #ffffff;
}
.sg-section--dark .sg-shadow-val {
  color: rgba(255, 255, 255, 0.4);
}
.sg-section--dark .sg-radius-box {
  background: rgba(0, 152, 219, 0.2);
  border-color: #2CB5E8;
}
.sg-section--dark .sg-radius-name {
  color: #ffffff;
}
.sg-section--dark .sg-radius-val {
  color: rgba(255, 255, 255, 0.4);
}
.sg-section--dark .sg-spacing-label {
  color: rgba(255, 255, 255, 0.7);
}
.sg-section--dark .sg-spacing-value {
  color: rgba(255, 255, 255, 0.4);
}
.sg-section--dark .sg-spacing-block {
  background: rgba(0, 152, 219, 0.25);
  border-color: #2CB5E8;
}
.sg-section--dark .sg-icon-item {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}
.sg-section--dark .sg-icon-item span {
  color: rgba(255, 255, 255, 0.6);
}
.sg-section--dark .sg-anim-item {
  background: rgba(255, 255, 255, 0.06);
}
.sg-section--dark .sg-anim-item strong {
  color: #ffffff;
}
.sg-section--dark .sg-anim-item p {
  color: rgba(255, 255, 255, 0.6);
}
.sg-section--dark .sg-code {
  background: #000;
}
.sg-section--dark .sg-color-info {
  background: rgba(255, 255, 255, 0.04);
}
.sg-section--dark .sg-color-name {
  color: #ffffff;
}
.sg-section--dark .sg-color-value {
  color: rgba(255, 255, 255, 0.5);
}
.sg-section--dark .sg-color-var {
  color: rgba(255, 255, 255, 0.35);
}
.sg-section--dark .sg-color {
  background: rgba(255, 255, 255, 0.04);
}
.sg-section--dark .sg-problem-demo,
.sg-section--dark .sg-bonus-demo,
.sg-section--dark .sg-testimonial-demo {
  background: rgba(255, 255, 255, 0.06);
}
.sg-section--dark .sg-problem-demo h4,
.sg-section--dark .sg-bonus-demo h4,
.sg-section--dark .sg-testimonial-demo h4 {
  color: #ffffff;
}
.sg-section--dark .sg-problem-demo p,
.sg-section--dark .sg-bonus-demo p,
.sg-section--dark .sg-testimonial-demo p {
  color: rgba(255, 255, 255, 0.6);
}
.sg-section--dark .sg-testimonial-demo-name {
  color: #ffffff;
}
.sg-section--dark .sg-testimonial-demo-role {
  color: rgba(255, 255, 255, 0.5);
}
.sg-section--dark .sg-testimonial-demo-stars {
  color: #f59e0b;
}
.sg-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0098DB;
  margin-bottom: 12px;
}
.sg-section-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}
.sg-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}
.sg-subtitle-spaced {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 24px 0 16px;
}
.sg-subtitle-lg {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 32px 0 16px;
}
.sg-note {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}
.sg-colors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}
.sg-colors--spaced {
  margin-bottom: 32px;
}
.sg-color {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.sg-color-swatch {
  height: 100px;
}
.sg-color-swatch--primary {
  background: #0098DB;
}
.sg-color-swatch--primary-dark {
  background: #00447C;
}
.sg-color-swatch--primary-light {
  background: #2CB5E8;
}
.sg-color-swatch--secondary {
  background: #003366;
}
.sg-color-swatch--accent {
  background: #f59e0b;
}
.sg-color-swatch--accent-light {
  background: #fbbf24;
}
.sg-color-swatch--danger {
  background: #ef4444;
}
.sg-color-swatch--success {
  background: #22c55e;
}
.sg-color-swatch--dark {
  background: #0f172a;
}
.sg-color-swatch--text {
  background: #475569;
}
.sg-color-swatch--text-light {
  background: #64748b;
}
.sg-color-swatch--border {
  background: #e2e8f0;
}
.sg-color-swatch--light {
  background: #E6F4FB;
}
.sg-color-swatch--light-2 {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.sg-color-swatch--white {
  background: #ffffff;
  border: 1px solid #e2e8f0;
}
.sg-color-info {
  padding: 14px 16px;
}
.sg-color-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
}
.sg-color-value {
  font-size: 0.8rem;
  color: #64748b;
  font-family: "Courier New", monospace;
  margin-top: 2px;
}
.sg-color-var {
  font-size: 0.75rem;
  color: #94a3b8;
  font-family: "Courier New", monospace;
}
.sg-contrast-panel {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, #0a1628 0%, #0f2847 40%, #0a1628 100%);
  padding: 40px 32px;
  display: grid;
  gap: 28px;
}
.sg-contrast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.sg-contrast-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}
.sg-contrast-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.sg-contrast-hex {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.sg-divider-dark {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.sg-type-hero {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}
.sg-type-hero-highlight {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, #0098DB, #2CB5E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sg-type-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.sg-type-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px 16px;
}
.sg-type-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  display: inline-block;
}
.sg-type-hero-badge-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.sg-type-hero-urgency {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}
.sg-type-section {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.05;
}
.sg-type-title-lg {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
}
.sg-type-title-lg span {
  color: #0098DB;
}
.sg-type-card {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}
.sg-type-body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}
.sg-type-desc {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.8;
}
.sg-type-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0098DB;
}
.sg-type-row {
  padding: 24px 0;
  border-bottom: 1px solid #f1f5f9;
}
.sg-type-row-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.sg-type-meta {
  font-size: 0.8rem;
  color: #94a3b8;
  font-family: "Courier New", monospace;
  margin-top: 6px;
}
.sg-showcase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 20px;
}
.sg-showcase-dark {
  background: #0f172a;
}
.sg-showcase-col {
  flex-direction: column;
  align-items: flex-start;
}
.sg-code {
  display: block;
  background: #0f172a;
  color: #e2e8f0;
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  padding: 16px 20px;
  border-radius: 8px;
  overflow-x: auto;
  margin-top: 12px;
  line-height: 1.6;
}
.sg-shadows {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.sg-shadow-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
}
.sg-shadow-box--sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.sg-shadow-box--md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.sg-shadow-box--lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.sg-shadow-box--xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.sg-shadow-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.sg-shadow-val {
  font-size: 0.72rem;
  color: #94a3b8;
  font-family: "Courier New", monospace;
}
.sg-radii {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: end;
}
.sg-radius-item {
  text-align: center;
}
.sg-radius-box {
  width: 80px;
  height: 80px;
  background: rgba(0, 152, 219, 0.15);
  border: 2px solid #0098DB;
  margin-bottom: 8px;
}
.sg-radius-box--sm {
  border-radius: 8px;
}
.sg-radius-box--md {
  border-radius: 12px;
}
.sg-radius-box--lg {
  border-radius: 20px;
}
.sg-radius-box--xl {
  border-radius: 30px;
}
.sg-radius-box--pill {
  border-radius: 50px;
}
.sg-radius-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: #0f172a;
}
.sg-radius-val {
  font-size: 0.75rem;
  color: #64748b;
  font-family: "Courier New", monospace;
}
.sg-spacing-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}
.sg-spacing-block {
  background: rgba(0, 152, 219, 0.2);
  border: 1px dashed #0098DB;
  border-radius: 4px;
  flex-shrink: 0;
}
.sg-spacing-block--8 {
  width: 8px;
  height: 8px;
}
.sg-spacing-block--16 {
  width: 16px;
  height: 16px;
}
.sg-spacing-block--20 {
  width: 20px;
  height: 20px;
}
.sg-spacing-block--24 {
  width: 24px;
  height: 24px;
}
.sg-spacing-block--32 {
  width: 32px;
  height: 32px;
}
.sg-spacing-block--60 {
  width: 60px;
  height: 24px;
}
.sg-spacing-block--100 {
  width: 100px;
  height: 24px;
}
.sg-spacing-label {
  font-size: 0.85rem;
  color: #0f172a;
  font-weight: 600;
  min-width: 120px;
}
.sg-spacing-value {
  font-size: 0.8rem;
  font-family: "Courier New", monospace;
  color: #64748b;
}
.sg-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 16px;
}
.sg-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  text-align: center;
}
.sg-icon-item svg {
  width: 28px;
  height: 28px;
  stroke: #0098DB;
}
.sg-icon-item span {
  font-size: 0.7rem;
  color: #64748b;
}
.sg-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.sg-problem-demo {
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.sg-problem-demo-icon {
  width: 52px;
  height: 52px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sg-problem-demo h4 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.sg-problem-demo p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
.sg-bonus-demo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.sg-bonus-demo-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 152, 219, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sg-bonus-demo h4 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.sg-bonus-demo p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 8px;
}
.sg-bonus-demo-tier {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0098DB;
}
.sg-testimonial-demo {
  padding: 28px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.sg-testimonial-demo-stars {
  display: flex;
  gap: 2px;
  color: #f59e0b;
  margin-bottom: 16px;
}
.sg-testimonial-demo-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.sg-testimonial-demo-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sg-testimonial-demo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E6F4FB;
}
.sg-testimonial-demo-name {
  font-size: 0.9rem;
  color: #0f172a;
  font-weight: 700;
}
.sg-testimonial-demo-role {
  font-size: 0.8rem;
  color: #64748b;
}
.sg-anim-item {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.sg-anim-item strong {
  color: #0f172a;
}
.sg-anim-item p {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
}
.sg-anim-grid {
  display: grid;
  gap: 16px;
}
.sg-cta-demo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  background: linear-gradient(135deg, #f59e0b 0%, #e68a00 100%);
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.sg-ghost-demo {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none;
}
.sg-glass-demo {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  max-width: 320px;
}
.sg-glass-demo h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}
.sg-glass-demo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}
.sg-text-right {
  text-align: right;
}
.sg-header-demo {
  border-radius: 12px;
  overflow: hidden;
}
.sg-header-demo .header {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: auto;
}
.sg-header-demo .header-inner {
  padding: 0 24px;
}
.sg-header-demo .logo-image {
  height: 48px;
  width: auto;
}
.sg-header-demo--transparent {
  background: linear-gradient(160deg, #0a1628 0%, #0f2847 40%, #0a1628 100%);
  padding: 12px 0;
}
.sg-header-demo--scrolled .header {
  background: rgba(15, 23, 42, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 8px 0;
}
.sg-header-demo--mobile {
  max-width: 420px;
}
.sg-header-demo--mobile .header-cta-desktop {
  display: none !important;
}
.sg-header-demo--mobile .header-burger {
  display: block !important;
}
.sg-header-demo--mobile .header-nav {
  display: none;
}
.sg-header-demo--mobile-open {
  max-width: 420px;
  position: relative;
}
.sg-header-demo--mobile-open .header-cta-desktop {
  display: none !important;
}
.sg-header-demo--mobile-open .header-burger {
  display: block !important;
}
.sg-header-demo--mobile-open .header-burger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.sg-header-demo--mobile-open .header-burger span:nth-child(2) {
  opacity: 0;
}
.sg-header-demo--mobile-open .header-burger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
.sg-header-demo--mobile-open .header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 320px;
  background: rgba(15, 23, 42, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  justify-content: center;
  z-index: 999;
  border-radius: 12px;
}
.sg-header-demo--mobile-open .header-nav a {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.8);
}
.sg-header-demo--mobile-open .header-nav a:hover {
  color: #ffffff;
}
.sg-header-demo--mobile-open .header-nav-cta {
  display: inline-flex !important;
  margin-top: 24px;
  font-size: 1rem !important;
}
.sg-header-demo--light {
  background: #f8fafc;
  padding: 12px 0;
}
.sg-header-demo--light .header-nav a {
  color: #0f172a;
}
.sg-header-demo--light .header-nav a:hover {
  color: #0098DB;
}

@media (max-width: 1024px) {
  .hero > .container,
  .about-grid,
  .speaker-grid,
  .form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    min-height: auto;
    padding: 120px 0 50px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-content .hero-badge {
    justify-content: center;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 520px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-urgency-badge {
    justify-content: center;
  }
  .hero-urgency-bar {
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }
  .hero-float-card-location {
    left: 10px;
    bottom: 20px;
  }
  .hero-float-card-date {
    right: 10px;
    top: 20px;
  }
  .speaker-image {
    max-width: 350px;
    margin: 0 auto;
  }
  .about-image {
    max-width: 450px;
    margin: 0 auto;
  }
  .problems-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card:last-child {
    grid-column: 1/-1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }
  .pricing-card-featured {
    transform: scale(1);
  }
  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
  .trust-bar-inner {
    gap: 20px;
    padding: 25px 30px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-number {
    font-size: 2rem;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    min-width: 100px;
  }
  .solution-cta {
    padding: 40px 30px;
  }
  .solution-cta h3 {
    font-size: 1.8rem;
  }
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .program-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .logo-image {
    height: 44px;
  }
  .header-urgency {
    display: none;
  }
  .header-cta-desktop {
    display: none !important;
  }
  .header-burger {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }
  .header-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .header-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.8);
  }
  .header-nav a:hover {
    color: #ffffff;
  }
  .header-nav-cta {
    display: inline-flex !important;
    margin-top: 24px;
    font-size: 1rem !important;
  }
  .problems-grid, .benefits-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .countdown-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
  .hero-float-card {
    display: none;
  }
  .hero-video-play {
    width: 52px;
    height: 52px;
  }
  .hero-video-play svg {
    width: 22px;
    height: 22px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-image-accent, .about-image-dots {
    display: none;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-container {
    padding: 28px 20px;
  }
  .form-grid {
    gap: 30px;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .bottom-bar-urgency {
    display: none;
  }
  .bottom-bar-info {
    display: none;
  }
  .bottom-bar-timer-wrap {
    display: none;
  }
  .bottom-bar-inner {
    justify-content: center;
    gap: 12px;
  }
  .social-toast {
    bottom: 80px;
    max-width: 280px;
    font-size: 0.85rem;
  }
  .title-lg {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .section-header {
    margin-bottom: 40px;
  }
  .speaker-badge {
    display: none;
  }
  .speaker-image-accent {
    display: none;
  }
  .cta-final {
    padding: 60px 0;
  }
  .cta-final h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .cta-final p {
    font-size: 1rem;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .program-slot {
    padding: 14px 20px;
    gap: 14px;
  }
  .program-day-header {
    padding: 20px;
  }
  .bonus-card {
    flex-direction: column;
    gap: 14px;
  }
  .bonus-icon {
    width: 44px;
    height: 44px;
  }
  .bonus-icon svg {
    width: 20px;
    height: 20px;
  }
  .hero-urgency-bar {
    max-width: 100%;
  }
  .faq-question span {
    font-size: 0.95rem;
  }
  .pricing-guarantee {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 40px 0;
  }
  .logo-image {
    height: 32px;
    max-width: calc(100vw - 80px);
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: left;
    object-position: left;
  }
  .hero {
    padding: 90px 0 24px;
  }
  .hero-title {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }
  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }
  .hero-buttons .btn {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 14px 20px;
  }
  .hero-video-card {
    padding: 6px;
  }
  .hero-video-play {
    width: 40px;
    height: 40px;
  }
  .hero-video-play svg {
    width: 16px;
    height: 16px;
  }
  .hero-video-info {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
  .hero-video-info strong {
    font-size: 0.85rem;
  }
  .hero-urgency-bar {
    padding: 0 12px 10px;
  }
  .hero-urgency-bar-event {
    padding: 8px 12px;
    gap: 12px;
    margin: 0 -12px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-urgency-bar-event-item {
    font-size: 0.8rem;
  }
  .hero-urgency-bar-event-item svg {
    width: 14px;
    height: 14px;
  }
  .hero-urgency-bar-event-item strong {
    font-size: 0.85rem;
  }
  .hero-urgency-bar-divider {
    margin: 6px 0;
  }
  .hero-urgency-bar-label {
    font-size: 0.6rem;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
  }
  .hero-urgency-bar-row span {
    font-size: 0.75rem;
  }
  .hero-spots-count {
    font-size: 0.95rem;
  }
  .hero-viewers {
    font-size: 0.7rem;
  }
  .countdown-grid {
    gap: 6px;
  }
  .countdown-block {
    min-width: 0;
    padding: 8px 10px;
    flex: 1;
  }
  .countdown-num {
    font-size: 1.2rem;
  }
  .countdown-txt {
    font-size: 0.55rem;
  }
  .countdown-sep {
    font-size: 0.9rem;
  }
  .trust-bar-inner {
    padding: 14px 12px;
    gap: 10px;
  }
  .trust-item {
    min-width: 0;
  }
  .trust-number {
    font-size: 1.4rem;
  }
  .trust-label {
    font-size: 0.65rem;
  }
  .problem-card {
    padding: 20px 16px;
  }
  .benefit-card {
    padding: 20px 16px;
  }
  .problem-card h3, .benefit-card h3 {
    font-size: 1.05rem;
  }
  .solution-step-num {
    font-size: 2rem;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .result-number {
    font-size: 1.8rem;
  }
  .program-slot {
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
  }
  .program-time {
    min-width: auto;
    font-size: 0.8rem;
  }
  .program-day-header {
    padding: 16px;
  }
  .program-day-header h3 {
    font-size: 1rem;
  }
  .bonus-card {
    padding: 16px 14px;
  }
  .bonus-icon {
    width: 40px;
    height: 40px;
  }
  .bonus-icon svg {
    width: 18px;
    height: 18px;
  }
  .bonus-value {
    font-size: 0.8rem;
    padding: 3px 8px;
  }
  .testimonial-card {
    padding: 16px;
  }
  .testimonial-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }
  .testimonial-author img {
    width: 36px;
    height: 36px;
  }
  .testimonial-stars {
    font-size: 0.85rem;
  }
  .pricing-card {
    padding: 22px 16px;
  }
  .pricing-amount {
    font-size: 2.8rem;
  }
  .pricing-card-name {
    font-size: 1rem;
  }
  .pricing-features li {
    font-size: 0.85rem;
  }
  .pricing-guarantee {
    gap: 10px;
    padding: 16px 12px;
  }
  .faq-question {
    padding: 14px 0;
  }
  .faq-question span {
    font-size: 0.85rem;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .faq-answer p {
    font-size: 0.82rem;
  }
  .cta-final {
    padding: 40px 0;
  }
  .cta-final h2 {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .cta-final p {
    font-size: 0.9rem;
  }
  .cta-final-timer {
    padding: 14px 16px;
  }
  .bottom-bar-countdown {
    display: none;
  }
  .bottom-bar-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    padding: 10px 16px;
  }
  .bottom-bar-inner {
    padding: 8px 12px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-links a {
    font-size: 0.85rem;
  }
  .social-toast {
    display: none;
  }
  .popup-content {
    padding: 24px 16px;
  }
  .popup-content h3 {
    font-size: 1.2rem;
  }
  .title-lg {
    font-size: clamp(1.4rem, 6vw, 2rem);
  }
  .section-header p {
    font-size: 0.9rem;
  }
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.3;
}
.hero-video-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.25) 0%, rgba(30, 41, 59, 0.25) 100%);
}

.hero-floating-elements {
  display: none;
}

@media (min-width: 1200px) {
  .hero-floating-elements {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
  }
  .floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    -webkit-animation: floatBadge 8s ease-in-out infinite;
    animation: floatBadge 8s ease-in-out infinite;
  }
  .floating-badge svg {
    color: rgba(245, 158, 11, 0.5);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
  }
  .floating-badge-1 {
    top: 12%;
    left: 4%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
  }
  .floating-badge-2 {
    top: 18%;
    right: 3%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
  }
  .floating-badge-3 {
    bottom: 35%;
    left: 3%;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }
  .floating-badge-4 {
    top: 45%;
    right: 2%;
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
  }
  .floating-badge-5 {
    bottom: 18%;
    left: 5%;
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
  }
  .floating-badge-6 {
    bottom: 12%;
    right: 4%;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
  }
  @-webkit-keyframes floatBadge {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  @keyframes floatBadge {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
}
@media (min-width: 1600px) {
  .floating-badge-1 {
    left: 6%;
  }
  .floating-badge-2 {
    right: 5%;
  }
  .floating-badge-3 {
    left: 5%;
  }
  .floating-badge-4 {
    right: 4%;
  }
  .floating-badge-5 {
    left: 7%;
  }
  .floating-badge-6 {
    right: 6%;
  }
}
.problems2 {
  background: #f8fafc;
}

.problems2-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.problems2-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.problems2-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problems2-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.problems2-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 12px;
}
.problems2-item-icon svg {
  width: 24px;
  height: 24px;
  color: #d97706;
}

.problems2-item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.problems2-item-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.problems2-center {
  order: -1;
  width: 100%;
  max-width: 320px;
}

.problems2-image-wrap {
  position: relative;
}
.problems2-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .problems2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
  .problems2-center {
    grid-column: 1/-1;
    order: -1;
    max-width: 400px;
    justify-self: center;
  }
  .problems2-col {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .problems2-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
  }
  .problems2-center {
    grid-column: 2;
    order: 0;
    max-width: 380px;
  }
  .problems2-col-left {
    grid-column: 1;
  }
  .problems2-col-right {
    grid-column: 3;
  }
  .problems2-col-left .problems2-item {
    flex-direction: row-reverse;
    text-align: right;
  }
  .problems2-item {
    padding: 1.5rem;
  }
  .problems2-item-content h4 {
    font-size: 1.15rem;
  }
  .problems2-item-content p {
    font-size: 0.95rem;
  }
}
@media (min-width: 1280px) {
  .problems2-layout {
    gap: 4rem;
  }
  .problems2-center {
    max-width: 420px;
  }
  .problems2-item {
    padding: 1.75rem;
  }
  .problems2-item-icon {
    width: 56px;
    height: 56px;
  }
  .problems2-item-icon svg {
    width: 28px;
    height: 28px;
  }
  .problems2-item-content h4 {
    font-size: 1.25rem;
  }
}
.solution2 {
  background: #ffffff;
}

.solution2-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.solution2-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.solution2-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-radius: 16px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution2-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
}

.solution2-item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 12px;
}
.solution2-item-icon svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.solution2-item-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.solution2-item-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.solution2-center {
  order: -1;
  width: 100%;
  max-width: 320px;
}

.solution2-image-wrap {
  position: relative;
}
.solution2-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {
  .solution2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
  }
  .solution2-center {
    grid-column: 1/-1;
    order: -1;
    max-width: 400px;
    justify-self: center;
  }
  .solution2-col {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .solution2-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
  }
  .solution2-center {
    grid-column: 2;
    order: 0;
    max-width: 380px;
  }
  .solution2-col-left {
    grid-column: 1;
  }
  .solution2-col-right {
    grid-column: 3;
  }
  .solution2-col-left .solution2-item {
    flex-direction: row-reverse;
    text-align: right;
  }
  .solution2-item {
    padding: 1.5rem;
  }
  .solution2-item-content h4 {
    font-size: 1.15rem;
  }
  .solution2-item-content p {
    font-size: 0.95rem;
  }
}
@media (min-width: 1280px) {
  .solution2-layout {
    gap: 4rem;
  }
  .solution2-center {
    max-width: 420px;
  }
  .solution2-item {
    padding: 1.75rem;
  }
  .solution2-item-icon {
    width: 56px;
    height: 56px;
  }
  .solution2-item-icon svg {
    width: 28px;
    height: 28px;
  }
  .solution2-item-content h4 {
    font-size: 1.25rem;
  }
}
.location {
  background: #f8fafc;
}

.location-split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
}
.location-info-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #475569;
  margin-bottom: 1.5rem;
}

.location-venue-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #0098DB;
  background: rgba(0, 152, 219, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.location-detail svg {
  width: 22px;
  height: 22px;
  color: #0098DB;
  flex-shrink: 0;
  margin-top: 2px;
}
.location-detail p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}
.location-detail strong {
  color: #475569;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #0098DB;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
.location-btn:hover {
  background: #00447C;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 152, 219, 0.3);
}

.location-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  height: 300px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (min-width: 768px) {
  .location-map {
    height: 350px;
  }
}
@media (min-width: 1024px) {
  .location-split {
    flex-direction: row;
    align-items: stretch;
  }
  .location-info-card {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
  }
  .location-btn {
    margin-top: auto;
  }
  .location-map {
    flex: 1;
    height: auto;
    min-height: 400px;
  }
}
@media (min-width: 1280px) {
  .location-info-card {
    flex: 0 0 420px;
    padding: 2.5rem;
  }
  .location-info-card h3 {
    font-size: 1.75rem;
  }
}
.transport-section {
  margin-top: 3rem;
}

.transport-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1.5rem;
  text-align: center;
}

.transport-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.transport-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  text-align: center;
}
.transport-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 0.5rem;
}
.transport-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0.25rem;
}
.transport-card p strong {
  color: #475569;
}

.transport-icon {
  margin: 0 auto 0.75rem;
}
.transport-icon svg {
  width: 32px;
  height: 32px;
  color: #0098DB;
}

@media (min-width: 768px) {
  .transport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .transport-card {
    text-align: left;
  }
  .transport-icon {
    margin: 0 0 1rem 0;
  }
  .transport-title {
    text-align: left;
    font-size: 1.35rem;
  }
}
@media (min-width: 1024px) {
  .transport-section {
    margin-top: 4rem;
  }
  .transport-card {
    padding: 1.75rem;
  }
}
.section.theater {
  position: relative;
}

.theater-demo-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  background: #ffffff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  z-index: 100;
  max-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.theater-demo-tooltip.ready {
  transition: opacity 0.3s ease;
}
.theater-demo-tooltip.active {
  opacity: 1;
  visibility: visible;
}
.theater-demo-tooltip .demo-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.theater-demo-tooltip .demo-step-num {
  width: 30px;
  height: 30px;
  background: #0098DB;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.theater-demo-tooltip .demo-step-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.4;
}
.theater-demo-tooltip .demo-step-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  color: #0f172a;
}

.seat.demo-highlight {
  -webkit-animation: demoSeatPulse 1s ease-in-out infinite;
  animation: demoSeatPulse 1s ease-in-out infinite;
  z-index: 50;
  position: relative;
}

@-webkit-keyframes demoSeatPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 152, 219, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(0, 152, 219, 0);
  }
}
@keyframes demoSeatPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 152, 219, 0.6);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 12px rgba(0, 152, 219, 0);
  }
}
.theater-demo-cursor {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 32px;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M4 4l16 8-7 2-2 7-7-17z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  -webkit-filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.theater-demo-cursor.ready {
  transition: left 0.5s ease, top 0.5s ease, opacity 0.3s ease, transform 0.15s ease;
}
.theater-demo-cursor.active {
  opacity: 1;
  visibility: visible;
}
.theater-demo-cursor.clicking {
  transform: scale(0.8);
}

.theater-demo-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  z-index: 102;
  opacity: 0;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.theater-demo-btn.active {
  opacity: 1;
}
.theater-demo-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.8);
}
.theater-demo-btn svg {
  width: 11px;
  height: 11px;
}

#theaterBuy.demo-highlight {
  -webkit-animation: demoSeatPulse 1s ease-in-out infinite;
  animation: demoSeatPulse 1s ease-in-out infinite;
}

.theater-legend-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 1rem 0 0 0;
  border: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.theater-legend-wrapper .theater-legend {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}

.theater-summary-empty {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  font-style: italic;
}

.section.speaker {
  background: #1e293b;
  overflow: hidden;
  padding-top: 3rem !important;
  padding-bottom: 0 !important;
}

.speaker-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: end;
  min-height: 450px;
}

.speaker-image {
  align-self: end;
}
.speaker-image img {
  width: 100%;
  max-width: 380px;
  display: block;
  box-shadow: none !important;
  border-radius: 0 !important;
  -webkit-filter: none !important;
  filter: none !important;
}

.speaker-info {
  align-self: center;
  padding-bottom: 3rem;
}
.speaker-info .tag {
  margin-bottom: 0.5rem;
}

.speaker-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.speaker-name span {
  color: #0098DB;
}

.speaker-role {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.25rem;
}

.speaker-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.text-highlight {
  color: #f59e0b !important;
}

.speaker-credentials {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.speaker-credential {
  text-align: center;
}
.speaker-credential strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0098DB;
}
.speaker-credential span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.speaker-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.speaker-award {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .speaker-layout {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    gap: 2rem;
  }
  .speaker-image {
    order: 2;
    display: flex;
    justify-content: center;
  }
  .speaker-image img {
    max-width: 280px;
  }
  .speaker-info {
    order: 1;
    padding-bottom: 0;
  }
  .speaker-name {
    font-size: 2rem;
  }
  .speaker-credentials {
    justify-content: center;
  }
  .speaker-awards {
    justify-content: center;
  }
}
.closing-quote {
  background: #ffffff;
  padding: 6rem 0;
}

.closing-quote-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.closing-quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  color: #f59e0b;
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -3rem;
}

.closing-quote blockquote {
  margin: 0;
  padding: 0;
}

.closing-quote-main {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 2rem;
}
.closing-quote-main em {
  color: #f59e0b;
  font-style: italic;
}

.closing-quote-sub {
  font-size: 1.15rem;
  color: #475569;
  line-height: 2;
  margin-bottom: 3rem;
}
.closing-quote-sub strong {
  color: #0f172a;
}

.closing-quote-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: #f59e0b;
}

.signature-name {
  font-family: "Reenie Beanie", cursive;
  font-size: 3rem;
  color: #0f172a;
}

@media (max-width: 768px) {
  .closing-quote {
    padding: 4rem 0;
  }
  .closing-quote-mark {
    font-size: 5rem;
    margin-bottom: -2rem;
  }
  .closing-quote-main {
    font-size: 1.8rem;
  }
  .closing-quote-sub {
    font-size: 1rem;
  }
  .signature-name {
    font-size: 1.6rem;
  }
}
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-carousel .testimonial-card {
  flex: 0 0 calc(100% - 1.5rem);
  min-width: calc(100% - 1.5rem);
  margin: 0 0.75rem;
  padding: 28px;
  box-sizing: border-box;
}

.testimonials-carousel .testimonial-card p {
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonials-arrow {
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.testimonials-arrow:hover {
  color: #ffffff;
  transform: scale(1.1);
}
.testimonials-arrow:active {
  transform: scale(0.95);
}
.testimonials-arrow svg {
  width: 20px;
  height: 20px;
}

.testimonials-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testimonials-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}
.testimonials-dot.active {
  background: #f59e0b;
  transform: scale(1.2);
}

.testimonials-counter {
  display: none;
}
.testimonials-counter span:first-child {
  color: #f59e0b;
  font-weight: 700;
}

@media (min-width: 768px) {
  .testimonials-arrow {
    width: 52px;
    height: 52px;
  }
  .testimonials-arrow svg {
    width: 24px;
    height: 24px;
  }
}
@media (min-width: 1024px) {
  .testimonials-carousel {
    max-width: 1100px;
  }
  .testimonials-carousel .testimonial-card {
    flex: 0 0 calc(50% - 1.5rem);
    min-width: calc(50% - 1.5rem);
    margin: 0 0.75rem;
    padding: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
