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

html {
    scroll-behavior: smooth;
}

/* Offset in-page anchors for fixed header */
section, .intro, .faq, .roadmap, .rewards, .app, .contact, .best-benefits, .about {
    scroll-margin-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e6e6e6;
    overflow-x: hidden;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

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

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo:hover .logo-text {
    color: #1E90FF;
}

.logo:hover .logo-img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.logo-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-right: -2px;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1E90FF;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #213485 100%); /* linear-gradient(135deg, #000 0%, #384892 100%); */
    color: #faebd7;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}


.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid #1E90FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 20px;
    color: #1E90FF;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #1E90FF;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    color: #faebd7;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    color: #faebd7;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}

.hero-logo-img {
    width: clamp(60px, 10vw, 120px);
    height: clamp(60px, 10vw, 120px);
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(98%) sepia(8%) saturate(750%) hue-rotate(315deg) brightness(102%) contrast(96%);
    margin-right: -5px;
}

.hero-logo-text {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    color: #faebd7;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 18px;
    color: #1E90FF;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-text {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 6px 12px;
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(30, 144, 255, 0.1), rgba(30, 144, 255, 0.05));
    transition: all 0.3s ease;
}

.rotating-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, rgba(30, 144, 255, 0.15), transparent);
    animation: lightFlow 4s ease-in-out infinite;
}

.rotating-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
    border-radius: 10px;
}

@keyframes lightFlow {
    0%, 100% {
        background: linear-gradient(45deg, transparent, rgba(30, 144, 255, 0.1), transparent);
        transform: scale(1);
    }
    50% {
        background: linear-gradient(45deg, transparent, rgba(30, 144, 255, 0.15), transparent);
        transform: scale(1.02);
    }
}

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

.rotating-text.fade-out {
    animation: fadeOutCurved 0.5s ease-in-out forwards;
}

.rotating-text.fade-in {
    animation: fadeInCurved 0.5s ease-in-out forwards;
}

@keyframes fadeOutCurved {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
        border-radius: 15px;
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        border-radius: 20px;
    }
}

@keyframes fadeInCurved {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        border-radius: 20px;
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        border-radius: 15px;
    }
}

.hero-subtitle {
    font-size: 20px;
    color: #faebd7;
    font-weight: 300;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 39px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    line-height: 1.1;
}

/* Intro Section */
.intro {
    background: #050504;
    color: #e6e6e6;
    padding: 120px 0;
}

.intro-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #e6e6e6;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.intro-text p {
    margin-bottom: 25px;
    color: #e6e6e6;
}

.intro-text strong {
    color: #1E90FF;
    font-weight: 700;
}

.disclaimer {
    font-style: italic;
    opacity: 0.7;
    margin-top: 50px;
    font-size: 16px;
    text-align: center;
    color: #ccc;
}

/* FAQ Section */
.faq {
    background: #050504;
    color: #e6e6e6;
}

.faq-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.faq-item.active {
    background: rgba(30, 144, 255, 0.1);
    border-color: #1E90FF;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.faq-question h4 {
    font-size: 20px;
    font-weight: 700;
    color: #e6e6e6;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    flex: 1;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid #1E90FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 16px;
    color: #1E90FF;
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-icon {
    background: rgba(30, 144, 255, 0.2);
    transform: scale(1.1);
}

.faq-item.active .faq-icon {
    background: #1E90FF;
    border-color: #1E90FF;
}

.faq-item.active .faq-icon i {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #e6e6e6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer strong {
    color: #1E90FF;
    font-weight: 700;
}

.faq-answer ul, .faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-answer li {
    margin-bottom: 10px;
}

/* Tech Section */
.tech {
    background: #000;
    color: #fff;
}

.tech-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.tech-sub-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.tech-section {
    margin-bottom: 80px;
}

.tech-text {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

.tech-text p {
    margin-bottom: 18px;
}

.tech-text strong {
    color: #1E90FF;
    font-weight: 700;
}

/* Roadmap Section */
.roadmap {
    background: #050504;
    color: #e6e6e6;
    position: relative;
}

.roadmap-subtitle {
    font-size: 36px;
    font-weight: 700;
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.roadmap-description {
    font-size: 20px;
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1E90FF, rgba(30, 144, 255, 0.3));
    border-radius: 2px;
}

.roadmap-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
    flex-shrink: 0;
}

.marker-icon {
    font-size: 32px;
    margin-bottom: 10px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid #1E90FF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background: #1E90FF;
    border-radius: 50%;
    border: 3px solid #111;
    box-shadow: 0 0 0 3px #1E90FF;
    transition: all 0.3s ease;
}

.roadmap-item:hover .marker-icon {
    background: rgba(30, 144, 255, 0.2);
    transform: scale(1.1);
}

.roadmap-item:hover .marker-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 4px #1E90FF;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 30px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid rgba(255, 255, 255, 0.1);
}

.roadmap-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.timeline-date {
    font-size: 16px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #ccc;
    font-family: 'Inter', sans-serif;
    margin-bottom: 20px;
}

.timeline-status {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.timeline-status.completed {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.timeline-status.in-progress {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.timeline-status.upcoming {
    background: rgba(30, 144, 255, 0.2);
    color: #1E90FF;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

/* Rewards Section */
.rewards {
    background: linear-gradient(135deg, #000 0%, #213485 100%);;
    color: #faebd7;
}

.rewards-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #faebd7;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

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

.rewards-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

.rewards-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #1E90FF;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.step-title {
    color: #1E90FF;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.deal-highlight-section {
    margin: 30px 0;
    padding: 20px;
    background: rgba(30, 144, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(30, 144, 255, 0.2);
    position: relative;
    z-index: 2;
}

.deal-highlight-title {
    color: #1E90FF;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.deal-highlight-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.deal-cta {
    color: #1E90FF;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.reward-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.reward-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.reward-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 144, 255, 0.1);
    border: 2px solid #1E90FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.reward-icon i {
    font-size: 24px;
    color: #1E90FF;
}

.reward-item:hover .reward-icon {
    background: rgba(30, 144, 255, 0.2);
    transform: scale(1.1);
}

.reward-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.reward-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

.rewards-disclaimer {
    text-align: center;
    margin-top: 60px;
}

.rewards-disclaimer p {
    font-style: italic;
    opacity: 0.7;
    font-size: 16px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

/* Deal Container */
.deal-container {
    margin-top: 60px;
}

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

.deal-image {
    text-align: center;
}

.deal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
    animation: pulse 2s infinite;
}

.deal-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), transparent);
    opacity: 0.5;
    border-radius: 20px;
}

.deal-tagline {
    color: #1E90FF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.deal-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.deal-highlight {
    color: #1E90FF;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
    position: relative;
    z-index: 2;
}

.deal-description {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.deal-steps {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.steps-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px 0;
}

.step-number {
    color: #1E90FF;
    font-weight: 700;
    font-size: 16px;
    margin-right: 15px;
    min-width: 25px;
}

.step-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.5;
}

.whatsapp-link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #00D4AA;
    text-decoration: underline;
}

.deal-button {
    text-align: center;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Lightpaper Section */
.litepaper {
    background: #111;
    color: #fff;
    text-align: center;
}

.litepaper-content {
    max-width: 700px;
    margin: 0 auto;
}

.litepaper-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

.litepaper-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #1E90FF;
    color: #e6e6e6;
}

.btn-primary:hover {
    background: transparent;
    color: #1E90FF;
    border-color: #1E90FF;
}

.btn-secondary {
    background: transparent;
    color: #1E90FF;
    border-color: #1E90FF;
}

.btn-secondary:hover {
    background: #1E90FF;
    color: #e6e6e6;
}

.btn-submit {
    background: #1E90FF;
    color: #e6e6e6;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: #0066CC;
    transform: translateY(-2px);
}

/* Signup Section */
.signup {
    background: #000;
    color: #fff;
}

.signup-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1E90FF;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Inter', sans-serif;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #1E90FF;
    border-color: #1E90FF;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e6e6e6;
    font-weight: bold;
    font-size: 14px;
}

.signup-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    opacity: 0.7;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

/* Wallets Section */
/* App Section */
.app {
    background: linear-gradient(135deg, #000 0%, #213485 100%);;
    color: #faebd7;
    padding: 120px 0;
}

.app-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.app-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.app-main-title-light {
    font-weight: 300;
    color: #333;
}

.app-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
}

.app-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #faebd7;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.app-image {
    text-align: center;
    margin-bottom: 60px;
}

.app-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */

    transition: transform 0.3s ease;
}

.app-main-image:hover {
    transform: scale(1.02);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
    padding: 0 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(30, 144, 255, 0.3);
    /* box-shadow: 0 20px 40px rgba(30, 144, 255, 0.1); */

}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}



.product-image img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.product-content {
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #1E90FF;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0;
    font-style: italic;
}

/* Color Showcase Section */
.color-showcase {
    background: #111;
    color: #fff;
    padding: 120px 0;
}

.showcase-description {
    font-size: 20px;
    color: #ccc;
    text-align: center;
    margin-bottom: 80px;
    font-family: 'Inter', sans-serif;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.color-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.color-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.color-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.color-code {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.color-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.color-text p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.color-btn {
    background: var(--accent-color);
    color: #e6e6e6;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.color-btn:hover {
    background: #000;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transform: translateY(-2px);
}

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

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

/* Scope footer social icon button style */
.footer .social-link {
    display: inline-block;
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    padding: 8px;
}

.footer .social-link:hover {
    background: none;
    color: #1E90FF;
    transform: translateY(-2px);
}

.footer-info {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info strong {
    color: #1E90FF;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-social {
        gap: 18px;
        margin-bottom: 25px;
    }
    
    .footer .social-link {
        font-size: 22px;
        padding: 6px;
    }
    
    .footer-info {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-social {
        gap: 15px;
        margin-bottom: 20px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .footer .social-link {
        font-size: 20px;
        padding: 5px;
    }
    
    .footer-info {
        font-size: 12px;
        padding: 0 20px;
    }
    
    .footer-info p {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 20px;
    }
    
    .footer-social {
        gap: 12px;
        margin-bottom: 18px;
        flex-wrap: nowrap;
        justify-content: center;
    }
    
    .footer .social-link {
        font-size: 18px;
        padding: 4px;
    }
    
    .footer-info {
        font-size: 11px;
        padding: 0 15px;
        line-height: 1.5;
    }
    
    .footer-info p {
        margin-bottom: 6px;
    }
    
    .footer-info strong {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .footer-social {
        gap: 10px;
    }
    
    .footer .social-link {
        font-size: 16px;
        padding: 3px;
    }
    
    .footer-info {
        font-size: 10px;
    }
}

/* Responsive Design */

/* Tablet-specific improvements */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-stats {
        gap: 20px;
        margin-bottom: 50px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        gap: 10px;
        min-width: 150px;
        flex: 1;
        max-width: 180px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon i {
        font-size: 20px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 12px;
        line-height: 1.3;
    }

    /* Improve FAQ layout for tablets */
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .faq-item {
        padding: 25px;
    }

    /* Improve contact layout for tablets */
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .social-link {
        min-width: auto;
        max-width: none;
        padding: 6px 10px;
        font-size: 0.85rem;
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        padding: 0 20px;
    }

    .nav-link {
        font-size: 18px;
        padding: 15px 0;
        display: block;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 15px;
    }

    .dropdown-menu a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Improved Hero Stats for Tablet */
    .hero-stats {
        gap: 15px;
        margin-bottom: 60px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        gap: 8px;
        min-width: 140px;
        flex: 1;
        max-width: 160px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(48px, 10vw, 80px);
        gap: 0px;
    }

    .hero-logo-img {
        width: clamp(48px, 10vw, 80px);
        height: clamp(48px, 10vw, 80px);
        margin-right: -4px;
    }

    .hero-logo-text {
        font-size: clamp(48px, 10vw, 80px);
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 48px;
        font-weight: 700;
    }

    .intro-subtitle,
    .faq-subtitle,
    .app-subtitle,
    .rewards-subtitle {
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 3px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-visual {
        order: -1;
    }

    .visual-element {
        max-width: 300px;
        height: 250px;
    }

    .crypto-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

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

    .faq-item {
        padding: 20px;
        margin-bottom: 15px;
    }

    .faq-question h4 {
        font-size: 18px;
        line-height: 1.4;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
    }

    .faq-icon i {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 15px;
        line-height: 1.6;
    }

    .timeline-line {
        left: 30px;
        width: 3px;
    }

    .roadmap-item {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .timeline-marker {
        width: auto;
        order: 1;
        margin-bottom: 10px;
    }

    .marker-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 8px;
    }

    .marker-dot {
        width: 14px;
        height: 14px;
    }

    .timeline-content {
        padding: 25px 20px;
        order: 2;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-date {
        font-size: 14px;
        margin-bottom: 10px;
        text-align: center;
    }

    .timeline-title {
        font-size: 20px;
        margin-bottom: 15px;
        text-align: center;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 15px;
        text-align: center;
    }

    .timeline-status {
        font-size: 11px;
        padding: 5px 12px;
        margin: 0 auto;
    }

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

    .deal-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .deal-card {
        padding: 30px 20px;
    }
    
    .deal-highlight {
        font-size: 36px;
    }
    
    .deal-title {
        font-size: 24px;
    }

    .reward-item {
        padding: 25px;
    }

    .reward-icon {
        width: 50px;
        height: 50px;
    }

    .reward-icon i {
        font-size: 20px;
    }

    .reward-title {
        font-size: 18px;
    }

    .reward-description {
        font-size: 15px;
    }

    .litepaper-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Improved Mobile Hero Stats */
    .hero-stats {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .stat-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        flex: 1;
        min-width: 80px;
        max-width: 100px;
        padding: 12px 8px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .stat-icon i {
        font-size: 12px;
    }

    .stat-number {
        font-size: 18px;
        font-weight: 800;
    }

    .stat-label {
        font-size: 8px;
        line-height: 1.2;
        font-weight: 500;
    }

    .hero-title {
        font-size: clamp(36px, 12vw, 60px);
        gap: 0px;
    }

    .hero-logo-img {
        width: clamp(36px, 12vw, 60px);
        height: clamp(36px, 12vw, 60px);
        margin-right: -3px;
    }

    .hero-logo-text {
        font-size: clamp(36px, 12vw, 60px);
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
        font-weight: 700;
    }

    .intro-subtitle,
    .faq-subtitle,
    .app-subtitle,
    .rewards-subtitle {
        font-size: 18px;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .intro-text,
    .roadmap-description {
        font-size: 18px;
    }



    .intro-content {
        gap: 30px;
    }

    .intro-subtitle {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .app {
        padding: 60px 0;
    }

    .app-main-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .app-description {
        font-size: 15px;
    }

    .app-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .app-image {
        margin-bottom: 40px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
        padding: 0 10px;
    }

    .product-card {
        padding: 25px 20px;
        margin: 0 auto;
        max-width: 400px;
    }

    .product-image img {
        max-width: 140px;
        border-radius: 10px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
        border: 2.5px solid rgba(255, 255, 255, 0.2);
    }

    .product-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .product-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        gap: 40px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-question {
        font-size: 16px;
    }

    .about-description {
        font-size: 15px;
    }

    .download-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .app {
        padding: 80px 0;
    }

    .app-main-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .app-description {
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
        padding: 0 15px;
    }

    .product-card {
        padding: 30px 25px;
        margin: 0 auto;
        max-width: 450px;
    }

    .product-image img {
        max-width: 160px;
        border-radius: 11px;
        box-shadow: 0 14px 45px rgba(0, 0, 0, 0.8);
        border: 2.8px solid rgba(255, 255, 255, 0.2);
    }

    .product-title {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .product-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-text {
        padding-left: 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-question {
        font-size: 18px;
    }

    .about-description {
        font-size: 16px;
    }

    .feature-item {
        padding: 20px;
        margin-bottom: 25px;
    }

    .feature-item h4 {
        font-size: 18px;
    }

    .feature-item p {
        font-size: 15px;
    }

    .intro-highlight {
        font-size: 18px;
        padding: 20px;
        margin: 30px 0;
    }

    .visual-element {
        max-width: 250px;
        height: 200px;
    }

    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 6px;
        padding: 15px;
    }

    .faq-question {
        font-size: 20px;
    }

    .timeline-title {
        font-size: 22px;
    }

    /* Additional Mobile Roadmap Improvements */
    .roadmap-description {
        font-size: 16px;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .roadmap-timeline {
        padding: 20px 0;
    }

    .timeline-line {
        left: 20px;
        width: 2px;
    }

    .roadmap-item {
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .timeline-marker {
        margin-bottom: 15px;
    }

    .marker-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .marker-dot {
        width: 12px;
        height: 12px;
    }

    .timeline-content {
        padding: 20px 15px;
        margin: 0;
    }

    .timeline-date {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .timeline-title {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
    }

    .timeline-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .timeline-status {
        font-size: 10px;
        padding: 4px 10px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 16px;
    }

    .form-group input,
    .form-group select {
        padding: 15px;
        font-size: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.faq-item {
    animation: fadeIn 0.6s ease-out;
}

.roadmap-item {
    animation: fadeInUp 0.8s ease-out;
}

.wallet-option {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #1E90FF;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0066CC;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #1E90FF;
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #1E90FF;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* About Section */
.about {
    background: linear-gradient(135deg, #000 0%, #213485 100%);;
    color: #faebd7;
    padding: 120px 0;
}

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

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;

    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.about-text {
    padding-left: 20px;
}

.about-question {
    font-size: 20px;
    font-weight: 300;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.about-or {
    font-size: 24px;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin: 30px 0;
    font-family: 'Inter', sans-serif;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.about-title-light {
    font-weight: 300;
    color: #333;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.about-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.download-btn {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.download-btn:hover {
    background: rgba(30, 144, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 144, 255, 0.2);
    color: #fff;
}


.benefit-image {
    grid-column: 2;
    grid-row: 1 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.benefit-mockup {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
    color: #ffffff;
}

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

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.contact-content > p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.method-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.method-description {
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: var(--accent-color);
    color: #000000;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #1E90FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: none;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    min-width: auto;
    justify-content: center;
    backdrop-filter: none;
    position: relative;
    overflow: visible;
}

.social-link:hover {
    background: none;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: none;
    border-color: transparent;
}

.social-link i {
    font-size: 1.4rem;
    width: auto;
    text-align: center;
    transition: transform 0.3s ease;
}

.social-link span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contact-method {
        padding: 1.2rem;
        text-align: center;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 0.6rem;
        flex-wrap: wrap;
        width: 100%;
    }
    
    .social-link {
        min-width: auto;
        max-width: none;
        padding: 5px 8px;
        font-size: 0.8rem;
        flex: none;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-subtitle {
        font-size: 1.3rem;
    }
    
    .contact-content > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .contact-method {
        padding: 1rem;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .method-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .method-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Improved Social Links for Mobile */
    .social-links {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-link {
        min-width: auto;
        max-width: none;
        width: auto;
        padding: 4px 6px;
        font-size: 0.8rem;
        justify-content: center;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .social-link i {
        font-size: 1.1rem;
        margin-right: 4px;
    }
    
    .social-link span {
        font-size: 0.8rem;
        font-weight: 600;
    }
    
    /* Additional Mobile Improvements */
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .intro-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .intro-text p {
        margin-bottom: 20px;
    }
    
    .about-question {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .product-card {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .product-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .product-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Section theme overrides */
.intro,
.faq,
.roadmap {
    background: #050504;
    color: #e6e6e6;
}

/* Ensure common text elements inherit readable color */
.intro h1, .intro h2, .intro h3, .intro h4, .intro h5, .intro h6,
.faq h1, .faq h2, .faq h3, .faq h4, .faq h5, .faq h6,
.roadmap h1, .roadmap h2, .roadmap h3, .roadmap h4, .roadmap h5, .roadmap h6,
.intro p, .faq p, .roadmap p {
    color: inherit;
}

/* Newsletter (Disclaimer) - match hero gradient */
.newsletter {
    background: linear-gradient(135deg, #000 0%, #213485 100%);
    color: #faebd7;
}

.newsletter h6,
.newsletter p {
    color: #faebd7;
}

/* Section theme overrides */
.intro,
.faq,
.roadmap {
    background: #050504;
    color: #e6e6e6;
}

/* Ensure common text elements inherit readable color */
.intro h1, .intro h2, .intro h3, .intro h4, .intro h5, .intro h6,
.faq h1, .faq h2, .faq h3, .faq h4, .faq h5, .faq h6,
.roadmap h1, .roadmap h2, .roadmap h3, .roadmap h4, .roadmap h5, .roadmap h6,
.intro p, .faq p, .roadmap p {
    color: inherit;
}

/* Newsletter (Disclaimer) - match hero gradient */
.newsletter {
    background: linear-gradient(135deg, #000 0%, #213485 100%);
    color: #faebd7;
}

.newsletter h6,
.newsletter p {
    color: #faebd7;
}

/* About section text readability on dark background */
.about-question {
    color: #e6e6e6 !important;
}

.about-or {
    color: #e6e6e6 !important;
}

.about-title {
    color: #1E90FF !important;
}

.about-title-light {
    color: #e6e6e6 !important;
}

.about-description {
    color: #d1d1d1 !important;
}

.about-tagline {
    color: #e6e6e6 !important;
}

/* Redesigned About Section Layout */
.about {
    background: linear-gradient(135deg, #000 0%, #213485 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Centered Phone Mockups */
.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.about-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

/* Text Content - Centered Layout */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-question {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #e6e6e6 !important;
}

.about-or {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px 0;
    color: #1E90FF !important;
    position: relative;
}

.about-or::before,
.about-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1E90FF, transparent);
}

.about-or::before {
    left: -80px;
}

.about-or::after {
    right: -80px;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 40px 0 30px;
    line-height: 1.2;
    color: #1E90FF !important;
}

.about-title-light {
    display: block;
    margin-top: 10px;
    color: #e6e6e6 !important;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #d1d1d1 !important;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-tagline {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #1E90FF !important;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-question {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-question {
        font-size: 1.1rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-or::before,
    .about-or::after {
        width: 40px;
    }
    
    .about-or::before {
        left: -60px;
    }
    
    .about-or::after {
        right: -60px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-question {
        font-size: 1rem;
    }
    
    .about-description {
        font-size: 0.95rem;
    }
    
    .about-or::before,
    .about-or::after {
        display: none;
    }
}

/* App section text readability on dark background */
.app-main-title {
    color: #1E90FF !important;
}

.app-main-title-light {
    color: #e6e6e6 !important;
}

.app-description {
    color: #d1d1d1 !important;
}

/* Individual hero stat blocks - more subtle */
.hero-stats {
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 15px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 10px;
        margin-top: 20px;
    }
    
    .stat-item {
        padding: 15px 12px;
    }
}

/* Clean Best Benefits Section */
.best-benefits {
    background: linear-gradient(135deg, #000 0%, #213485 100%);
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.best-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.benefits-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefits-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin: 0 0 25px;
    line-height: 1.1;
    color: #e6e6e6 !important;
    letter-spacing: -0.5px;
    white-space: normal;
    overflow-wrap: anywhere;
}

.benefits-title-light {
    color: #1E90FF !important;
}

.benefits-tagline {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
    color: #1E90FF !important;
    text-transform: uppercase;
}

/* Desktop Grid Layout - Perfect Alignment */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    justify-items: stretch;
}

/* Explicit positioning for each benefit item */
#benefit_item_id_1 {
    grid-column: 1;
    grid-row: 1;
}

#benefit_item_id_2 {
    grid-column: 1;
    grid-row: 2;
}

#benefit_item_id_3 {
    grid-column: 1;
    grid-row: 3;
}

#benefit_item_id_4 {
    grid-column: 3;
    grid-row: 1;
}

#benefit_item_id_5 {
    grid-column: 3;
    grid-row: 2;
}

#benefit_item_id_6 {
    grid-column: 3;
    grid-row: 3;
}

/* Central image container */
.benefits-image-grid {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.benefits-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.benefits-img:hover {
    transform: scale(1.03) translateY(-5px);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

/* Benefit items with perfect alignment */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    min-height: 180px;
    max-height: 200px;
    overflow: hidden;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(30, 144, 255, 0.3);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1E90FF, #00BFFF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 6px 18px rgba(30, 144, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 16px;
    color: #fff;
}

.benefit-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1E90FF !important;
    line-height: 1.3;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.benefit-divider {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #1E90FF, #00BFFF);
    margin: 0 0 8px 0;
    border-radius: 2px;
    transition: width 0.3s ease;
    flex-shrink: 0;
}

.benefit-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #d1d1d1 !important;
    margin: 0;
    font-weight: 400;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* Simple Responsive Design */
@media (max-width: 1024px) {
    .best-benefits {
        padding: 80px 0;
    }
    
    .benefits-content {
        gap: 35px;
    }
    
    .benefits-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        max-width: 900px;
    }
    
    /* Reset positioning for tablet */
    #benefit_item_id_1, #benefit_item_id_2, #benefit_item_id_3,
    #benefit_item_id_4, #benefit_item_id_5, #benefit_item_id_6 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .benefits-image-grid {
        grid-column: 1 / -1;
        grid-row: 1;
        padding: 15px;
    }
    
    .benefit-item {
        min-height: 140px;
        max-height: none;
        height: auto;
        padding: 20px 15px;
    }
    
    .benefit-description {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
}

@media (max-width: 768px) {
    .best-benefits {
        padding: 60px 0;
    }
    
    .benefits-content {
        gap: 30px;
    }
    
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-tagline {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    /* Reset positioning for mobile */
    #benefit_item_id_1, #benefit_item_id_2, #benefit_item_id_3,
    #benefit_item_id_4, #benefit_item_id_5, #benefit_item_id_6 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .benefits-image-grid {
        grid-column: 1;
        grid-row: 1;
        padding: 10px;
    }
    
    .benefit-item {
        min-height: 120px;
        max-height: none;
        height: auto;
        padding: 18px 15px;
        gap: 12px;
    }
    
    .benefit-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
    }
    
    .benefit-icon i {
        font-size: 14px;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .benefit-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .best-benefits {
        padding: 40px 0;
    }
    
    .benefits-content {
        gap: 25px;
    }
    
    .benefits-title {
        font-size: 1.6rem;
    }
    
    .benefits-tagline {
        font-size: 1rem;
    }
    
    .benefits-grid {
        gap: 15px;
        max-width: 400px;
    }
    
    /* Reset positioning for small mobile */
    #benefit_item_id_1, #benefit_item_id_2, #benefit_item_id_3,
    #benefit_item_id_4, #benefit_item_id_5, #benefit_item_id_6 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .benefit-item {
        min-height: 100px;
        max-height: none;
        height: auto;
        padding: 15px 12px;
        gap: 10px;
    }
    
    .benefit-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
    }
    
    .benefit-icon i {
        font-size: 12px;
    }
    
    .benefit-title {
        font-size: 0.9rem;
    }
    
    .benefit-description {
        font-size: 0.8rem;
    }
}
