html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(26, 26, 26, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #a855f7;
}

.cta-button {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideshow 24s infinite;
}

.hero-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow img:nth-child(2) {
    animation-delay: 6s;
}

.hero-slideshow img:nth-child(3) {
    animation-delay: 12s;
}

.hero-slideshow img:nth-child(4) {
    animation-delay: 18s;
}

@keyframes slideshow {
    0% { opacity: 0; transform: scale(1); }
    4% { opacity: 1; transform: scale(1); }
    20% { opacity: 1; transform: scale(1.05); }
    24% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 0; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero p {
    font-size: 22px;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* .secondary-button {
    background: transparent;
    color: #a855f7;
    padding: 12px 28px;
    border: 2px solid #a855f7;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: #a855f7;
    color: white;
} */

/* Trust Bar */
.trust-bar {
    background: #242424;
    padding: 30px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #a855f7;
    display: block;
}

.stat-label {
    color: #b0b0b0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* USP Section */
.usps {
    padding: 100px 0;
    background: #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #ffffff;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.usp-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #242424 100%);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.usp-card:hover {
    transform: translateY(-5px);
    border-color: #a855f7;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.usp-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.usp-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #a855f7;
}

.usp-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #242424 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: #2d2d2d;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #333;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.pricing-card.featured {
    border-color: #a855f7;
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
}

.pricing-badge {
    background: #a855f7;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: #a855f7;
    margin: 20px 0;
}

.price span {
    font-size: 18px;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #b0b0b0;
    border-bottom: 1px solid #333;
}

.pricing-features li:before {
    content: "✓ ";
    color: #a855f7;
    font-weight: bold;
    margin-right: 10px;
}

.pricing-button {
    width: 100%;
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

/* Footer */
footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #a855f7;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #a855f7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .nav-links {
        display: none;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* === Revitalize Navbar Buttons - Polished Dark Mode === */

.portal-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
}

/* Compact gradient “pill” buttons that match dark theme */
/* --- Navbar Portal Buttons: clean + modern --- */
/* === Header Portal Buttons (Clean Unified Style) === */
/* === Header Portal Buttons (Minimal, Clean, Coupon-Style Hover) === */



/* =====================================
   📱 Revitalize Mobile Dropdown Menu
   ===================================== */
   /* Hide mobile dropdown by default (desktop view) */
.nav-links .dropdown {
  display: none;
}
@media (max-width: 900px) {

  /* Basic mobile layout */
  nav.container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-divider {
    display: none;
  }

  /* Dropdown container */
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links .dropdown {
    position: relative;
  }

  /* Toggle button */
  .dropdown-toggle {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .dropdown-toggle:hover {
    opacity: 0.9;
    transform: translateY(-1px);
  }

  /* Hidden dropdown list */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    width: 160px;
    z-index: 999;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    color: #e0e0e0;
    padding: 10px;
    text-decoration: none;
    transition: background 0.2s;
    text-align: center;
  }

  .dropdown-content a:hover {
    background: rgba(168, 85, 247, 0.15);
    color: #fff;
  }

  /* Active state */
  .dropdown.active .dropdown-content {
    display: block;
  }

  /* Portal buttons below menu */
  .portal-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
  }

  .logo img {
    height: 60px;
  }
}
/* =====================================
   📱 Mobile Responsiveness Tweaks
   ===================================== */
@media (max-width: 900px) {

  /* Reduce padding and prevent giant zoomed hero */
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  /* Scale hero text and spacing */
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .hero-buttons a {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  /* Make trust bar fit tighter */
  .trust-bar .stat {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }

  /* Pricing grid stacks nicely */
  .pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  /* Prevent logo from dominating header */
  .logo img {
    max-width: 150px;
    height: auto;
  }

  /* Reduce space between nav and content */
  header nav.container {
    gap: 5px;
    padding: 8px 0;
  }

  /* Center footer text cleanly */
  footer p {
    font-size: 0.9rem;
    text-align: center;
    margin: 10px auto;
    width: 90%;
  }
}

.promo-banner {
  background: linear-gradient(135deg, #8b5cf6, #ff4770);
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px rgba(255, 104, 125, 0.3);
}

.promo-banner span {
  color: #ffe97f;
  font-weight: 700;
}

.typewrite {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  color: #a855f7;
  border-right: 2px solid #a855f7;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.8s infinite;
}

.pricing-button,
.pricing-button:link,
.pricing-button:visited,
.pricing-button:hover,
.pricing-button:active,
.pricing-button:focus {
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  color: inherit !important;
}
