:root {
    --primary-blue: #2999da;
    --dark-bg: #1a1a1a;
    --text-gray: #666666;
    --light-blue-bg: #e6f4fd;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
}

/* Navbar Styles */
.navbar {
    padding: 20px 0;
    background: transparent;
}

.navbar-brand img {
    height: 40px;
}

.btn-login {
    border: 1px solid #000;
    padding: 8px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    margin-right: 15px;
}

.btn-register {
    background-color: #000;
    color: #fff;
    padding: 8px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 120px;
    background-color: #fff;
    overflow: hidden;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-blue);
    z-index: 0;
    opacity: 0.8;
}

.blob-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -150px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;
}

.blob-3 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.blob-4 {
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
}

.container {
    position: relative;
    z-index: 1;
}

.trusted-badge {
    display: inline-block;
    background-color: var(--primary-blue);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-title .highlight {
    color: var(--primary-blue);
}

.hero-description {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns .btn-white {
    background: #fff;
    color: var(--primary-blue);
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 12px 45px;
    border-radius: 8px;
    font-weight: 700;
    margin-right: 20px;
    text-decoration: none;
    display: inline-block;
}

.hero-btns .btn-blue {
    background: var(--primary-blue);
    color: #fff;
    padding: 12px 45px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(41, 153, 218, 0.3);
}

.hero-image-wrapper {
    position: relative;
    text-align: right;
}

.hero-image-wrapper img {
    max-width: 120%;
    height: auto;
    transform: translateX(50px);
}

/* Solutions Section */
.solutions-section {
    background-color: var(--dark-bg);
    padding: 100px 0;
    color: #fff;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.built-for-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: #fff;
    padding: 15px 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.built-for-label h4 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 800;
}

.built-for-label p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.solutions-content {
    padding-left: 50px;
}

.solutions-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
    margin-bottom: 30px;
}

.solutions-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Advantages Section Styles */
.advantages-section {
    padding: 100px 0;
    background-color: #f8fbff;
}

.advantages-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.advantages-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.advantage-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(41, 153, 218, 0.1);
}

.card-header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.advantage-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.advantage-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

.advantage-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.advantage-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

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

    .hero-image-wrapper {
        margin-top: 50px;
        text-align: center;
    }

    .hero-image-wrapper img {
        transform: translateX(0);
        max-width: 100%;
    }

    .solutions-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .advantages-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {

    .hero-btns .btn-white,
    .hero-btns .btn-blue {
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

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

/* Struggle Section Styles */
.struggle-section {
    padding: 100px 0;
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
}

.struggle-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.struggle-section .section-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 60px;
}

.struggle-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-height: 420px;
    transition: transform 0.3s ease;
}

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

.number-box {
    width: 60px;
    height: 60px;
    background: #fff;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 8px;
    flex-shrink: 0;
}

.struggle-icon-box {
    font-size: 1.8rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.struggle-card h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-blue);
    line-height: 1.3;
}

.struggle-card.alternate-title h4 {
    margin-top: 0;
    margin-bottom: 20px;
}

.struggle-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
}

.tokens-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 20px;
}

.tokens-wrap.bottom {
    margin-top: auto;
    margin-bottom: 0;
    padding-top: 20px;
}

@media (max-width: 991px) {
    .struggle-section .section-title {
        font-size: 2.2rem;
    }

    .struggle-card {
        min-height: auto;
        margin-bottom: 20px;
    }
}

/* How It Works Section Styles */
.how-it-works-section {
    background-color: #0b0b0b;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(41, 153, 218, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(41, 153, 218, 0.08) 0%, transparent 40%);
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.3;
    pointer-events: none;
}

.how-it-works-section .section-title {
    color: #2999da;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.how-it-works-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 80px;
}

.process-container {
    position: relative;
    margin-top: 50px;
}

/* The connecting line */
.process-line-overlay {
    position: absolute;
    top: 22px;
    /* Center of 44px dot */
    left: 10%;
    /* Center of first dot (100% / 5 / 2) */
    right: 10%;
    /* Center of last dot */
    height: 2px;
    background: #fff;
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-dot {
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    border: 3px solid #000;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 35px;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.step-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.3;
    min-height: auto;
    display: block;
}

.step-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 0;
}

.step-list {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    text-align: left;
    display: inline-block;
}

.step-list li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.step-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .process-line-overlay {
        display: none;
    }

    .step-item {
        margin-bottom: 60px;
    }

    .step-item h4 {
        min-height: auto;
    }
}/* Manage Anywhere Section Styles */
.manage-anywhere-section {
    background-color: var(--primary-blue);
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Add subtle light blue background pattern */
.manage-anywhere-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.manage-content {
    padding-left: 20px;
}

.manage-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.manage-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.app-store-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    background-color: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-btn:hover {
    transform: translateY(-5px);
    background-color: #111;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn .btn-text {
    display: flex;
    flex-direction: column;
}

.app-btn .btn-text small {
    font-size: 0.7rem;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0.8;
}

.app-btn .btn-text span {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 5px;
}

/* Use a standard icon library check */
.google-play i {
    color: #fff;
}

.mobile-preview-wrapper {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.animate-float {
    animation: float_mobile 6s ease-in-out infinite;
}

@keyframes float_mobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 991px) {
    .manage-anywhere-section {
        padding: 80px 0;
        text-align: center;
    }

    .manage-content {
        padding-left: 0;
    }

    .manage-title {
        font-size: 2.2rem;
    }

    .app-store-btns {
        justify-content: center;
    }

    .mobile-preview-wrapper {
        margin-bottom: 50px;
    }
}/* Legal Support Section Styles */
.legal-support-section {
    padding: 100px 0;
    background-color: #0b0b0b;
    background-image: url('https://www.transparenttextures.com/patterns/black-linen.png');
    color: #fff;
    position: relative;
    overflow: hidden;
}

.legal-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.legal-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 500px;
}

.btn-register-now {
    display: inline-block;
    background: #2999da;
    color: #fff;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-register-now:hover {
    background: #1f7db5;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 20px rgba(41, 153, 218, 0.3);
}

.legal-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: #2999da;
    margin-top: 5px;
}

.feature-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Final CTA Section Styles */
.final-cta-section {
    padding: 100px 0;
    background-color: #fff;
    color: #1a1a1a;
    overflow: hidden;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-start-today {
    display: inline-block;
    background: #2999da;
    color: #fff;
    padding: 18px 50px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-start-today:hover {
    background: #000;
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-img-left {
    transform: rotate(-15deg);
    max-width: 250px;
}

.cta-img-right {
    transform: rotate(15deg);
    max-width: 250px;
}

@media (max-width: 991px) {

    .legal-title,
    .cta-title {
        font-size: 2.2rem;
    }

    .final-cta-section .col-md-3 {
        display: none !important;
    }
}/* Footer Styles */
.footer-section {
    background-color: #0e1117;
    padding: 80px 0 30px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 60px 0 30px;
}

.copyright-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .footer-title {
        margin-top: 40px;
    }
}