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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(to bottom, #020617, #0f172a, #020617);
    color: #e2e8f0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #22c55e, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #22c55e;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #22c55e;
}

/* Button Styles */
.btn-primary {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.btn-gradient {
    padding: 1rem 2rem;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.btn-gradient:hover {
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.5);
    transform: scale(1.05);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: #1e293b;
    border: 2px solid #22c55e;
    color: white;
    font-weight: bold;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.btn-secondary:hover {
    background: #334155;
}

.btn-white {
    padding: 1rem 2.5rem;
    background: white;
    color: #22c55e;
    font-weight: bold;
    border-radius: 9999px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.125rem;
}

.btn-white:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section.bg-dark {
    background: rgba(15, 23, 42, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 8rem 0;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1), transparent);
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.gradient-text {
    display: block;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-image {
    position: relative;
}

.image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    border-radius: 1rem;
    filter: blur(2rem);
    opacity: 0.3;
}

.hero-img {
    position: relative;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .image-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 16rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #020617, rgba(2, 6, 23, 0.5), transparent);
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(34, 197, 94, 0.5);
}

.feature-icon {
    height: 3.5rem;
    width: 3.5rem;
    background: linear-gradient(to bottom right, #22c55e, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    color: white;
    font-size: 1.75rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #9ca3af;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    position: relative;
    background: linear-gradient(to bottom right, #1e293b, #0f172a);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 3rem;
    width: 3rem;
    background: linear-gradient(to bottom right, #22c55e, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.step-icon {
    color: #22c55e;
    font-size: 3rem;
    margin: 1.5rem 0 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.step-description {
    color: #9ca3af;
}

/* Feature Images Grid */
.feature-images-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .feature-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 20rem;
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-image-card:hover img {
    transform: scale(1.1);
}

.feature-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #020617, rgba(2, 6, 23, 0.7), transparent);
}

.feature-image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
}

.feature-image-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.feature-image-content p {
    color: #d1d5db;
}

/* Small Features Grid */
.small-features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .small-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .small-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.small-feature-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.small-feature-card.green {
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.1), transparent);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.small-feature-card.blue {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), transparent);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.small-feature-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.small-feature-card.green i {
    color: #22c55e;
}

.small-feature-card.blue i {
    color: #3b82f6;
}

.small-feature-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.small-feature-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: linear-gradient(to right, #16a34a, #2563eb);
    padding: 3rem;
}

@media (min-width: 768px) {
    .cta-banner {
        padding: 4rem;
    }
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
.footer {
    background: #020617;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.footer .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(to right, #22c55e, #3b82f6);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-btn:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

.footer-disclaimer {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.disclaimer-box {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-box h4 {
    color: #facc15;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.disclaimer-content {
    color: #9ca3af;
    font-size: 0.875rem;
}

.disclaimer-content p {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Legal Pages Styles */
.legal-container {
    max-width: 56rem;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .legal-title {
        font-size: 3rem;
    }
}

.legal-content {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .legal-content {
        padding: 3rem;
    }
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.legal-list {
    color: #d1d5db;
}

.legal-list p {
    margin-bottom: 0.75rem;
}

.legal-list strong {
    color: white;
}

/* Notice Boxes */
.notice-box {
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 3rem;
}

.notice-box.yellow {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.notice-box.blue {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.notice-box.warning {
    background: linear-gradient(to right, rgba(234, 179, 8, 0.2), rgba(239, 68, 68, 0.2));
    border: 1px solid rgba(234, 179, 8, 0.5);
}

.notice-box.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.notice-box.orange {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.notice-box.green {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.notice-title {
    color: #facc15;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notice-box.blue .notice-title {
    color: #3b82f6;
}

.notice-box.danger .notice-title {
    color: #ef4444;
}

.notice-box.orange .notice-title {
    color: #f97316;
}

.notice-box.green .notice-title {
    color: #22c55e;
}

.notice-header {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.notice-header i {
    font-size: 2rem;
    flex-shrink: 0;
}

.notice-header h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.notice-box p {
    color: #d1d5db;
}

/* Page Header */
.page-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.page-icon {
    color: #22c55e;
    font-size: 3rem;
}

/* Limits Grid */
.limits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .limits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.limit-card {
    background: rgba(30, 41, 59, 0.5);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.limit-card h3 {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.limit-card ul {
    list-style: none;
    padding: 0;
}

.limit-card li {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Commitment Banner */
.commitment-banner {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 1rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.commitment-icon {
    flex-shrink: 0;
}

.commitment-icon i {
    color: #22c55e;
    font-size: 2.5rem;
}

.commitment-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.commitment-content p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.last-updated {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 2rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}
