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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #2c3e50 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    line-height: 1.6;
}

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

/* Animated background elements */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.1), rgba(26, 188, 156, 0.1));
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.floating-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 80%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Header */
header {
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(45deg, #2ECC71, #1ABC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 50%;
}

.logo img{
    width: 30%;
}

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

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #2ECC71;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #2ECC71, #1ABC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { filter: drop-shadow(0 0 20px rgba(46, 204, 113, 0.3)); }
    to { filter: drop-shadow(0 0 30px rgba(26, 188, 156, 0.5)); }
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2ECC71;
    font-weight: 600;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.launch-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.2), rgba(26, 188, 156, 0.2));
    padding: 15px 30px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 20px rgba(46, 204, 113, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(26, 188, 156, 0.5); }
    100% { transform: scale(1); box-shadow: 0 0 20px rgba(46, 204, 113, 0.3); }
}

/* Features Grid */
.features {
    padding: 100px 0;
}

.features h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.features-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #2ECC71, #1ABC9C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Email Signup */
.signup {
    padding: 100px 0;
    text-align: center;
}

.signup-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2ECC71, #1ABC9C, #2ECC71);
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, rgba(46, 204, 113, 0.2), rgba(26, 188, 156, 0.2));
    color: #2ECC71;
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { box-shadow: 0 0 20px rgba(46, 204, 113, 0.3); }
    50% { box-shadow: 0 0 30px rgba(46, 204, 113, 0.6); }
    100% { box-shadow: 0 0 20px rgba(46, 204, 113, 0.3); }
}

.badge-icon {
    font-size: 1.2rem;
}

.signup h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: white;
    background: linear-gradient(45deg, #ffffff, #2ECC71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.signup-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    /* width: 10%; */
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-icon-svg{
    width: 10%;
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: start;
}

.benefit-text strong {
    color: white;
    font-size: 1.1rem;
}

.benefit-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.user-counter {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.counter-info {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.counter-number {
    color: #2ECC71;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
}

.counter-total {
    color: rgba(255, 255, 255, 0.6);
}

.counter-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2ECC71, #1ABC9C);
    border-radius: 4px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    /* animation: progressShine 2s infinite; */
    pointer-events: none; /* Prevents it from interfering */

}



@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.email-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #2ECC71;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-button {
    padding: 18px 40px;
    background: linear-gradient(45deg, #2ECC71, #1ABC9C);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.4);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.urgency-text {
    text-align: center;
    color: #2ECC71;
    font-size: 1.1rem;
    margin: 25px 0;
    padding: 15px;
    background: rgba(46, 204, 113, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.urgency-icon {
    margin-right: 8px;
    font-size: 1.3rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
    color: #2ECC71;
    font-size: 1.2rem;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.partners h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.partner-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
    border-color: rgba(46, 204, 113, 0.3);
}

.partner-logo {
    flex-shrink: 0;
}

.fci-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: linear-gradient(135deg, #2ECC71, #1ABC9C);
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.fci-logo img{
    width: 100px;
}

.logo-icon {
    font-size: 3rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.fci-main {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.fci-sub {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
}

.partner-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.partner-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.partner-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #2ECC71;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.2);
    transform: translateY(-3px);
}

.benefit-highlight .benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    margin-top: -5px;
}

.benefit-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    width: 100%;
    gap: 200px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #2ECC71;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: #2ECC71;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.icons{
    display: flex;
    gap: 15px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .email-form {
        flex-direction: column;
    }

    .nav-links {
        display: flex;
    }

    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }

    .signup-card {
        padding: 40px 30px;
    }

    .signup h2 {
        font-size: 2.2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .benefit-item {
        padding: 15px;
    }

    .counter-info {
        font-size: 2.5rem;
    }

    .cta-button {
        width: 100%;
        padding: 20px;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    /* Partners responsive */
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .partner-stats {
        justify-content: center;
        gap: 20px;
    }

    .fci-logo {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .logo-icon {
        font-size: 2.5rem;
    }

    .fci-main {
        font-size: 2rem;
    }

    .partnership-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-highlight {
        padding: 20px;
    }
    .logo img {
        width: 100%;
    }

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

}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.countdown-number {
    font-size: 2rem;
    font-weight: bold;
    color: #2ECC71;
}

.countdown-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Performance optimization */
.feature-card, .benefit-item {
    will-change: transform;
}

.footer-logo {
  img {
    max-width: 150px;
    height: auto;
    /* display: block; */
    margin-bottom: 15px;
    transition: transform 0.3s ease;

    &:hover {
      transform: scale(1.05);
    }
  }

  @media (max-width: 768px) {
    text-align: center;
.logo{
    img {
      margin-left: auto;
      margin-right: auto;
    }
}

  }
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* MOBILE OVERRIDES */
@media (max-width: 768px) {
  .nav-links {
    text-align: center;
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px;
    z-index: 5;
  }

  .nav-links.show {
    display: flex;
    animation: slideDown 0.3s ease;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links li {
    margin-bottom: 10px;
  }
}

/* ANIMATION */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

