:root {
  /* Backgrounds - Clean & Minimal */
  --bg-page: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-section: rgba(13, 37, 63, 0.02);

  /* Text - Professional Hierarchy */
  --text-primary: #0D253F;
  --text-body: rgb(14, 15, 12);
  --text-secondary: rgb(80, 100, 130);
  --text-muted: rgb(130, 145, 160);

  /* Borders - Subtle Separation */
  --border-light: rgba(13, 37, 63, 0.1);
  --border-medium: rgba(13, 37, 63, 0.2);
  --border-strong: rgba(13, 37, 63, 0.3);

  /* BRAND COLORS - Blue Gradient System from Logo */
  --brand-navy: #0D253F;
  --brand-periwinkle: #7D9AF2;
  --brand-light: #A8BFFF;

  /* Accent colors */
  --accent-primary: #7D9AF2;
  --accent-strong: #5B7FE8;
  --accent-text: #0D253F;
  --accent-wash: rgba(125, 154, 242, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--text-body);
  background: var(--bg-page);
}

/* Typography Scale */
.heading-1 {
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.heading-2 {
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.heading-3 {
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.body-large {
  font-weight: 400;
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  color: var(--text-body);
}

.body-medium {
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--text-body);
}

.body-small {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-periwinkle) 100%);
  color: white;
  border: none;
  border-radius: 9999px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 52px;
  box-shadow: 0px 4px 12px rgba(125, 154, 242, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand-periwinkle) 0%, var(--brand-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(125, 154, 242, 0.4);
}

.btn-primary>* {
  position: relative;
  z-index: 1;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-medium);
  border-radius: 9999px;
  padding: 16px 32px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 52px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--accent-wash);
  border-color: var(--brand-periwinkle);
  color: var(--brand-periwinkle);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {

  .btn-primary,
  .btn-secondary {
    width: 100%;
    min-height: 56px;
  }
}

/* Hero */

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(13,37,63,0.95) 0%, rgba(125,154,242,0.70) 100%), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  overflow: hidden;    padding: 90px 0px;
}

.hero-background-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 1440 320" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%237D9AF2" fill-opacity="0.12" d="M0,160L60,170.7C120,181,240,203,360,197.3C480,192,600,160,720,133.3C840,107,960,85,1080,101.3C1200,117,1320,171,1380,197.3L1440,224L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z"></path></svg>') bottom center repeat-x;
  opacity: 0.7;
  animation: waveMove 12s linear infinite;
}

@keyframes waveMove {
  0% { background-position-x: 0; }
  100% { background-position-x: 1440px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3.5rem 1.5rem 2.5rem 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 2rem;
  background: rgba(13,37,63,0.92);
  box-shadow: 0 8px 32px 0 rgba(13,37,63,0.28), 0 0 0 4px rgba(168,191,255,0.10);
  backdrop-filter: blur(3px);
  border: 1.5px solid rgba(168,191,255,0.18);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent-wash);
  border: 1px solid rgba(125, 154, 242, 0.3);
  border-radius: 9999px;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.badge-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
}

.hero-title {
  margin: 2.2rem 0 1.7rem 0;
  color: #fff;
  text-shadow: 0 4px 24px rgba(13,37,63,0.55), 0 1px 0 #000;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.hero-word-revive {
  color: #fff;
}

.hero-word-reach {
  color: #A8BFFF;
  text-shadow: 0 2px 16px rgba(13,37,63,0.32), 0 1px 0 #fff;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-periwinkle) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar.scrolled .nav-link {
    color: rgba(13,37,63,0.92);}
.hero-subtitle {
  color: #e3e8f0;
  font-size: 1rem;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 8px rgba(13,37,63,0.12);
}

.desktop-break {
  display: block;
}

.hero-actions {
  margin-bottom: 2.7rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  font-size: 1.1rem;
  padding: 0.85em 2.2em;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px 0 rgba(125,154,242,0.10);
}

.btn-primary {
  background: linear-gradient(90deg, #7D9AF2 0%, #5B7FE8 100%);
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #5B7FE8 0%, #7D9AF2 100%);
  color: #fff;
}

.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid #A8BFFF;
}

.btn-secondary:hover {
  background: #A8BFFF;
  color: #0D253F;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  border: 1px solid var(--border-light);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(13, 37, 63, 0.08);
  opacity: 0;
  animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-periwinkle) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 37, 63, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.video-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem 3rem;
    min-height: auto;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .video-modal {
    padding: 1rem;
  }

  .video-close {
    top: -2.5rem;
    width: 36px;
    height: 36px;
  }
}


/* features */


.features-section {
  padding: 6rem 2rem;
  background: var(--bg-page);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-flex;
  padding: 6px 16px;
  background: var(--accent-wash);
  border: 1px solid rgba(125, 154, 242, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-navy);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-wash) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(125, 154, 242, 0.2);
  border-color: var(--brand-periwinkle);
}

.feature-card>* {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-wash) 0%, rgba(168, 191, 255, 0.15) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-periwinkle);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(125, 154, 242, 0.2);
}

@media (max-width: 768px) {
  .features-section {
    padding: 4rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}




.benefits-section {
  padding: 6rem 2rem;
  background: var(--bg-section);
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.benefits-content {
  padding-right: 2rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-periwinkle) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-item:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-wash) 0%, rgba(168, 191, 255, 0.15) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-periwinkle);
  flex-shrink: 0;
  border: 1px solid rgba(125, 154, 242, 0.2);
  transition: transform 0.2s ease;
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-text {
  flex: 1;
}

.benefits-visual {
  position: relative;
}

.visual-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(13, 37, 63, 0.15);
  transition: transform 0.3s ease;
  position: relative;
}

.visual-card:hover {
  transform: translateY(-8px);
}

.visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(125, 154, 242, 0.3) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.visual-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .benefits-content {
    padding-right: 0;
  }

  .benefits-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 4rem 1.5rem;
  }

  .benefit-item {
    gap: 1rem;
  }
}


.demo-form-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(125, 154, 242, 0.05) 50%,
      rgba(168, 191, 255, 0.08) 100%);
}

.demo-form-container {
  max-width: 900px;
  margin: 0 auto;
}

.demo-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.demo-form {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(13, 37, 63, 0.1);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 14px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 12px;
  font-size: 1rem;
  font-family: system-ui, sans-serif;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand-periwinkle);
  box-shadow: 0 0 0 3px rgba(125, 154, 242, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.1);
  color: rgb(5, 122, 85);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: rgb(185, 28, 28);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-submit {
  width: 100%;
  min-height: 56px;
  font-size: 1.0625rem;
  margin-top: 1rem;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .demo-form-section {
    padding: 4rem 1.5rem;
  }

  .demo-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
/* Scroll Animation */
[data-animate] {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
[data-animate].animate-in {
  opacity: 1;
  transform: none;
}

/* Hero content fade-up animation */
.animate-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--delay, 0ms);
}
.animate-fade-up.in {
  opacity: 1;
  transform: none;
}

/* Animate hero-content as a block */
.animate-hero-content {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
}
.animate-hero-content.in {
  opacity: 1;
  transform: none;
}