/* ===== CSS Reset & Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #121212;
  color: #F5F5F5;
  line-height: 1.6;
  overflow-x: hidden;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.logo-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  animation: logoFloat 3s ease-in-out infinite;
}



.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.logo-pro {
  background: linear-gradient(135deg, #00D9FF, #007BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
}

.logo-pro::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #007BFF);
  border-radius: 2px;
}
/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  color: #FFFFFF;
}

h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
}

h3 {
  font-size: 1.5rem;
  color: #FFFFFF;
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #E0E0E0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: #007BFF;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

.btn-cta {
  background-color: #007BFF;
  color: #FFFFFF;
  padding: 18px 40px;
  font-size: 1.125rem;
}

.btn-cta:hover {
  background-color: #0056b3;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.5);
  transform: translateY(-3px);
}

/* ===== Navigation Header ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #007BFF;
  letter-spacing: -0.5px;
}

/* ===== Hero Section ===== */
.hero {
  padding: 140px 0 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(0, 123, 255, 0.15) 0%, #121212 50%);
}

.particle-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #CCCCCC;
}

.hero-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-icon {
  width: 300px;
  height: 300px;
  filter: drop-shadow(0 0 30px rgba(0, 123, 255, 0.5));
  animation: float 6s ease-in-out infinite;
}

.shield-path {
  animation: pulse 3s ease-in-out infinite;
}

.checkmark {
  animation: drawCheck 2s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes drawCheck {
  0%, 100% {
    stroke-dasharray: 0, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 150, 150;
    stroke-dashoffset: 0;
  }
}

/* ===== Section Styles ===== */
section {
  padding: 100px 0;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-text {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.strong-statement {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-top: 2rem;
  line-height: 1.5;
}

/* ===== Problem Section ===== */
.problem-section {
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 50%, #0d0d0d 100%);
  position: relative;
}

.problem-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    );
  pointer-events: none;
}

.icon-wrapper {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.inbox-icon {
  width: 120px;
  height: 120px;
  animation: shake 3s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px) rotate(-2deg);
  }
  75% {
    transform: translateX(5px) rotate(2deg);
  }
}

/* ===== Solution Section ===== */
.solution-section {
  background: linear-gradient(135deg, #0a1628 0%, #121212 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.solution-section::after {
  content: '';
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.solution-section .container {
  position: relative;
  z-index: 1;
}

/* ===== Features Section ===== */
.features-section {
  background:
    linear-gradient(135deg, rgba(0, 123, 255, 0.03) 0%, transparent 50%),
    linear-gradient(225deg, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 120px 0;
  position: relative;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #007BFF;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 80px;
  height: 80px;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: #007BFF;
}

.feature-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Risk-Free Trial Section ===== */
.trial-section {
  background: linear-gradient(180deg, #121212 0%, #1a1a1a 50%, #0d0d0d 100%);

  padding: 100px 0;
  position: relative;
}

.trial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 51px
    );
  pointer-events: none;
}

.trial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.trial-card {
  background-color: rgba(35, 41, 52, 0.43);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.trial-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #007BFF;
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.2);
}

.trial-icon {
  margin-bottom: 1.5rem;
}

.trial-icon svg {
  width: 80px;
  height: 80px;
}

.trial-card h3 {
  margin-bottom: 1rem;
  color: #007BFF;
}

.trial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Final CTA Section ===== */
.final-cta {
  background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.03) 60px,
    rgba(255, 255, 255, 0.03) 120px
  );
  animation: moveDiagonal 20s linear infinite;
  pointer-events: none;
}

@keyframes moveDiagonal {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 2rem;
}

.final-cta .btn-cta {
  background-color: #FFFFFF;
  color: #007BFF;
}

.final-cta .btn-cta:hover {
  background-color: #F0F0F0;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 40px 0;
  border-top: 1px solid rgba(0, 123, 255, 0.2);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.5), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #999;
}

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

.footer-links a {
  color: #999;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007BFF;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.4));
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.footer-logo-pro {
  background: linear-gradient(135deg, #00D9FF, #007BFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
}

.footer-logo-pro::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #007BFF);
  border-radius: 2px;
}

.trial-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  z-index: 10;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.6);
  }
}

.trial-card:hover .trial-badge {
  animation: badgeBounce 0.6s ease;
}

@keyframes badgeBounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.1) translateY(-5px);
  }
}

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 123, 255, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
  z-index: 0;
}

.trial-card:hover .card-number {
  color: rgba(0, 123, 255, 0.2);
  transform: scale(1.2) rotate(-5deg);
}

.trial-card-featured {
  border: 2px solid rgba(0, 123, 255, 0.3);
  transform: scale(1.05);
}

.trial-card-featured .trial-badge {
  background: linear-gradient(135deg, #00D9FF, #007BFF);
  animation: featuredBadge 2s ease-in-out infinite;
}

@keyframes featuredBadge {
  0%, 100% {
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.4), 0 0 20px rgba(0, 217, 255, 0.2);
  }
  50% {
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.6), 0 0 30px rgba(0, 217, 255, 0.3);
  }
}

.trial-card-featured:hover {
  transform: translateY(-10px) scale(1.08);
  border-color: rgba(0, 217, 255, 0.6);
}

.trial-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 16px;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #007BFF;
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.8);
}

.trial-card:hover .particle {
  animation: particleFloat 2s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 50%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  left: 70%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  left: 80%;
  animation-delay: 1.5s;
}

@keyframes particleFloat {
  0% {
    bottom: 0;
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  25% {
    opacity: 1;
    transform: translateY(-20px) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-40px) scale(1.2);
  }
  100% {
    bottom: 100%;
    opacity: 0;
    transform: translateY(-60px) scale(0.5);
  }
}

/* ===== Scroll Animations ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Accessibility: Reduced Motion Support ===== */
@media (prefers-reduced-motion: reduce) {
  .particle-background {
    display: none;
  }

  .shield-icon,
  .shield-path,
  .checkmark,
  .inbox-icon {
    animation: none !important;
  }

  .fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .final-cta::before {
    animation: none !important;
  }
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-graphic {
    order: -1;
  }

  .shield-icon {
    width: 220px;
    height: 220px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trial-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .navbar-content {
    gap: 15px;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-subheadline {
    font-size: 1.125rem;
  }

  section {
    padding: 60px 0;
  }

  .features-section {
    padding: 80px 0;
  }

  .trial-section {
    padding: 60px 0;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .btn-cta {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .trial-badge {
    animation: none !important;
  }

  .trial-card:hover .trial-badge {
    animation: none !important;
  }

  .trial-card-featured .trial-badge {
    animation: none !important;
  }

  .trial-card:hover .particle {
    animation: none !important;
  }
}
