/* RESET & BASE STYLES */
* {
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #10B981;
    border-radius: 2px;
}

/* PARTICLES BACKGROUND */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 20px;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.356);
    border-radius: 8px;
    margin: 16px auto;
    border: 1px solid rgba(255,255,255,0.18);
    max-width: 720px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(2px);
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.navbar-logo-text {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.navbar-cta {
    background: linear-gradient(259deg, #242424 0%, #101010 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.navbar-cta:hover {
    background: linear-gradient(259deg, #10B981 0%, #059669 100%);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* HAMBURGER DROPDOWN */
.navbar-dropdown {
    position: fixed;
    top: 80px;
    right: 20px;
    background: rgba(13, 13, 13, 0.95);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 8px;
    padding: 16px;
    min-width: 150px;
    display: none;
    z-index: 1001;
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar-dropdown.show {
    display: block;
}

.navbar-dropdown a {
    display: block;
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.navbar-dropdown a:hover {
    background: linear-gradient(259deg, #10B981 0%, #059669 100%);
    transform: translateY(-1px);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 70px 20px;
}

.hero-tagline {
    background: linear-gradient(259deg, #242424 0%, #101010 100%);
    border-radius: 8px;
    margin: 0 auto 30px;
    border: 1px solid rgba(255,255,255,0.18);
    max-width: fit-content;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tagline-dot {
    background-color: #10B981;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: white;
    color: black;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
}

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

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

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #10B981;
}

/* PROBLEM SECTION */
.problem-section {
    background: rgba(255, 255, 255, 0.02);
}

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

.problem-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(19px);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.problem-icon {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 20px;
}

/* HOW IT WORKS */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* TRUST SECTION */
.trust-section {
    background: rgba(255, 255, 255, 0.02);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-card i {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 20px;
}

/* PRICING SECTION */
.pricing-section {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
    color: #c6c6c6;
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 34px;
}

.pricing-switch-label {
    color: #9ca3af;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.pricing-switch-label-active {
    color: #ffffff;
}

.pricing-switch-control {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.pricing-switch-control input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 99px;
    background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.pricing-switch-slider::before {
    position: absolute;
    content: "";
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background: radial-gradient(circle at 28% 25%, #ffffff 0%, #d1fae5 30%, #10B981 100%);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s cubic-bezier(0.5, 1.8, 0.5, 0.8);
}

.pricing-switch-control input:checked + .pricing-switch-slider::before {
    transform: translateX(26px);
}

.pricing-switch-control input:checked + .pricing-switch-slider {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow:
        inset 0 2px 5px rgba(0, 0, 0, 0.8),
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 0 16px rgba(16, 185, 129, 0.16);
}

.pricing-role-hidden {
    display: none;
}

.pricing-role-block {
    margin-bottom: 55px;
}

.pricing-role-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(37, 37, 37, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.14),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5),
        0 10px 22px rgba(0, 0, 0, 0.35);
}

.pricing-role-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.75);
}

.pricing-role-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pricing-card {
    position: relative;
    padding: 26px;
    border-radius: 16px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.pricing-card-skeuo {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(36, 36, 36, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.14),
        inset 0 -5px 12px rgba(0, 0, 0, 0.65);
}

.pricing-card-accent {
    border-color: rgba(16, 185, 129, 0.45);
    box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.12),
        inset 0 -6px 14px rgba(0, 0, 0, 0.65),
        inset 0 0 40px rgba(16, 185, 129, 0.07);
}

.pricing-card-addon {
    justify-content: flex-start;
}

.pricing-badge {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(16, 185, 129, 0.16);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 4px 10px;
}

.pricing-tier {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}

.pricing-price span {
    font-size: 0.95rem;
    color: #c5c5c5;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #e8e8e8;
    margin-bottom: 12px;
    font-size: 0.94rem;
}

.pricing-features i {
    color: #10B981;
    margin-top: 3px;
    font-size: 0.85rem;
}

.pricing-fee-line {
    margin-bottom: 16px;
    padding: 13px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-fee-line strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.pricing-fee-line span {
    color: #cecece;
    font-size: 0.9rem;
}

.pricing-addon-note {
    color: #bebebe;
    font-size: 0.9rem;
    margin: 8px 0 24px;
    flex-grow: 1;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 18px;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid transparent;
}

.pricing-btn:active {
    transform: translateY(2px);
}

.pricing-btn-dark {
    background: linear-gradient(180deg, #2e2e2e 0%, #151515 100%);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 8px 14px rgba(0, 0, 0, 0.5),
        inset 0 1px 1px rgba(255, 255, 255, 0.12),
        inset 0 -1px 3px rgba(0, 0, 0, 0.65);
}

.pricing-btn-dark:hover {
    border-color: rgba(16, 185, 129, 0.45);
    color: #d2faeb;
}

.pricing-btn-light {
    color: #052214;
    background: linear-gradient(180deg, #d7fff0 0%, #8cecc2 100%);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(5, 80, 49, 0.3);
}

.pricing-btn-light:hover {
    background: linear-gradient(180deg, #e8fff6 0%, #9ff1cc 100%);
}

.pricing-logic {
    margin-top: 8px;
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(10, 40, 29, 0.7) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
}

.pricing-logic h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.pricing-logic p {
    color: #ddfbe9;
    font-size: 0.95rem;
}

/* FOOTER */
.footer {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

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

.footer-section p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #10B981;
    transform: translateY(-3px);
}

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

/* RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    .navbar {
        max-width: 90%;
        padding: 10px 20px;
    }

    .navbar-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar-cta {
        padding: 6px 16px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }


    .hero-buttons, .btn {
        width: 100%;
        max-width: 100%;
    }

    .trust-indicators {
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 60px 10px;
    }

    section {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-switch {
        gap: 8px;
        margin-bottom: 26px;
    }

    .pricing-switch-label {
        font-size: 0.76rem;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-role-header {
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 480px) {

    .hero {
        padding: 40px 10px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .container {
        padding: 0 10px;
    }

    .navbar-logo-text {
        font-size: 1.2rem;
    }

    .navbar-logo-text {
        font-size: 1.3rem;
    }

    .navbar-cta {
        padding: 6px 12px;
        font-size: 12px;
    }

    .logo-icon{
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

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

    .pricing-intro {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }

    .pricing-card {
        padding: 20px;
    }

    .pricing-price {
        font-size: 1.9rem;
    }

    .pricing-logic {
        padding: 18px;
    }

}

@media screen and (max-width: 360px) {
    .navbar {
        padding: 8px 16px;
    }

    .navbar-buttons {
        display: none;
    }

    .navbar-cta {
        padding: 5px 10px;
        font-size: 11px;
    }

    .logo-icon{
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .hamburger {
        display: flex;
    }

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

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

    .btn {
        font-size: 0.81rem;
    }

    .section-title {
        font-size: 1.72rem;
    }

    .problem-card {
        font-size: smaller;
    }
    .steps-container {
        font-size: smaller;
    }
    .trust-grid {
        font-size: smaller;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }
