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

@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Book.woff2') format('woff2'),
         url('/fonts/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Medium.woff2') format('woff2'),
         url('/fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('/fonts/Gotham-Bold.woff2') format('woff2'),
         url('/fonts/Gotham-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gendy';
    src: url('/fonts/Gendy-Regular.woff2') format('woff2'),
         url('/fonts/Gendy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gendy';
    src: url('/fonts/Gendy-Bold.woff2') format('woff2'),
         url('/fonts/Gendy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #F8F7FB;
    color: #1A1A1A;
    overflow-x: hidden;
}

/* NAVBAR STYLES */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #F8F7FB;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 24px;
    border-radius: 50px;
    transition: background 0.3s ease;
}

.nav-link.active {
    background: linear-gradient(135deg, #FFFFFF 0%, #D7CDFF 100%);
}

.nav-link:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #E8E3FF 100%);
}

.btn-download {
    background-color: #D89B00;
    color: #1A1A1A;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-download:hover {
    background-color: #C28900;
}

/* HERO SECTION STYLES */
.hero-section {
    padding: 60px 0 80px;
    position: relative;
    background-image: url('/doorade/images/world-map-dots.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    min-height: 900px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-bottom: 60px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.trust-icon {
    width: 20px;
    height: 20px;
}

.trust-badge span {
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 400;
}

.hero-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 1.2;
    color: #000000;
    margin: 24px 100px;
    letter-spacing: -0.5px;
    max-width: 600px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-store {
    background-color: #1E009F;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-store:hover {
    background-color: #150072;
}

.btn-store img {
    width: 20px;
    height: 20px;
}

/* PHONE MOCKUP STYLES */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.phone-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
}

/* FLOATING CARDS STYLES */
.floating-card {
    position: absolute;
    background-color: #2C3E50;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

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

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.card-1 {
    top: 25%;
    left: -18%;
}

.card-2 {
    top: 10%;
    right: -22%;
}

.card-3 {
    bottom: 22%;
    right: -20%;
}

/* ============================================ */
/* ANIMATION - Remove this section for static cards */
/* ============================================ */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.floating-card {
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 0.5s;
}

.card-3 {
    animation-delay: 1s;
}
/* ============================================ */
/* END OF ANIMATION SECTION */
/* ============================================ */

/* STATS SECTION STYLES */
.stats-section {
    background-color: #F8F7FB;
    padding: 80px 0;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 80px;
    background-color: #F8FAFC;
    border-radius: 24px;
    position: relative;
}

.coin-icon {
    width: 60px;
    height: 60px;
    position: absolute;
}

.coin-top-right {
    top: 20px;
    right: 20px;
}

.coin-bottom-left {
    bottom: 20px;
    left: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #1A1A1A;
    line-height: 1.4;
}

/* ABOUT SECTION STYLES */
.about-section {
    background-color: #F0EDFF;
    padding: 100px 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.location-card {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 16px 20px;
    width: calc(100% - 48px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 16px;
}

.flag-icon {
    width: 28px;
    height: 20px;
}

.location-name {
    font-size: 16px;
    font-weight: 500;
    color: #1A1A1A;
    flex: 1;
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.copy-link-btn {
    width: 100%;
    background-color: #E8E3FF;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #5939E3;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-link-btn:hover {
    background-color: #D7CDFF;
}

.copy-icon {
    width: 18px;
    height: 18px;
}

.about-content {
    max-width: 560px;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.verified-icon {
    width: 20px;
    height: 20px;
}

.about-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-intro {
    font-size: 16px;
    font-weight: 400;
    color: #6B7280;
    margin-bottom: 24px;
}

.highlight-text {
    color: #5939E3;
    font-weight: 500;
}

.about-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 32px;
}

.about-list {
    list-style: none;
    margin-bottom: 40px;
}

.about-list-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-list-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A4A4A;
}

.about-buttons {
    display: flex;
    gap: 16px;
}

/* FEATURES SECTION STYLES */
.features-section {
    background-color: #F8F7FB;
    padding: 100px 0 0;
    position: relative;
}

.features-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 40px;
    background-image: url('/doorade/images/diagonal-stripes.png');
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: cover; */
    position: relative;
    padding-bottom: 120px;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-badge-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 12px;
}

.features-badge-text {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.features-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4A4A;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    position: relative;
    bottom: -58px;
}

.features-image {
    width: 100%;
    /* max-width: 800px; */
    height: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1200px;
}

.feature-card {
    background-color: #F8FAFCDE;
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 20px;
    padding: 15px 15px;
    /* backdrop-filter: blur(10px); */
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: #4A4A4A;
}


/* CTA SECTION STYLES */
.cta-section {
    background-color: #1E009F;
    background-image: url('/doorade/images/map-pattern.svg');
    /* background-position: right bottom; */
    background-position: calc(100% - 200px) bottom;
    background-repeat: no-repeat;
    background-size: 30%;
    padding: 40px;
    text-align: center;
    position: relative;
    margin-top: -60px;
}

.cta-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-store-white {
    background-color: #FFFFFF;
    color: #1A1A1A;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-store-white:hover {
    background-color: #F0F0F0;
    transform: translateY(-2px);
}

.btn-store-white img {
    width: 20px;
    height: 20px;
}




/* HOW IT WORKS SECTION STYLES */
.how-it-works-section {
    background-color: #F8F1EE;
    padding: 100px 0 0;
    position: relative;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-it-works-badge {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.how-it-works-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.how-it-works-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4A4A;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.how-it-works-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-store-gold {
    background-color: #D89B00;
    color: #1A1A1A;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-store-gold:hover {
    background-color: #C28900;
    transform: translateY(-2px);
}

.btn-store-gold img {
    width: 20px;
    height: 20px;
}

/* PHONE FLOW WRAPPER */
.phone-flow-wrapper {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-line-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    max-width: 700px;
    z-index: 1;
}

.flow-line {
    width: 100%;
    height: auto;
    opacity: 0.6;
}

/* STATIC ARROWS AT FIXED POSITIONS */
.flow-arrow {
    position: absolute;
    width: 30px;
    height: 30px;
}

.arrow-1 {
    top: 25%;
    left: -1%;
}

.arrow-2 {
    top: 22%;
    right: -1%;
}

.arrow-3 {
    bottom: 5%;
    left: -1%;
}

.arrow-4 {
    bottom: 30%;
    right: -1%;
}

/* PHONE CENTER */
.phone-center {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 100%;
    /* max-width: 320px; */
    height: auto;
}

/* FLOW CARDS */
.flow-card {
    position: absolute;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 20px 5px;
    display: flex;
    gap: 14px;
    max-width: 350px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.flow-card-icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: #1E009F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.flow-card-icon {
    width: 22px;
    height: 22px;
}

.flow-card-content {
    flex: 1;
}

.flow-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 6px;
    line-height: 1.3;
}

.flow-card-description {
    font-size: 13px;
    line-height: 1.5;
    color: #4A4A4A;
}

/* CARD POSITIONS - OVERLAPPING PHONE */
.flow-card-1 {
    top: 8%;
    left: 8%;
}

.flow-card-2 {
    top: 28%;
    right: 8%;
}

.flow-card-3 {
    bottom: 25%;
    left: 8%;
}

.flow-card-4 {
    bottom: 12%;
    right: 8%;
}


/* TESTIMONIALS SECTION STYLES */
.testimonials-section {
    background-color: #F8F7FB;
    padding: 100px 0;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.testimonials-content {
    position: static;
}

.testimonials-badge {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.testimonials-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 24px;
}

.testimonials-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4A4A4A;
}

.testimonials-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 500;
    color: #5939E3;
}



/* CONTACT SECTION STYLES */
.contact-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-content {
    max-width: 500px;
}

.contact-badge {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.contact-title {
    font-family: 'Gendy', 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 32px;
}

.contact-email {
    font-size: 18px;
    font-weight: 500;
    color: #5939E3;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.contact-email:hover {
    opacity: 0.8;
}

.external-link-icon {
    width: 18px;
    height: 18px;
}

/* CONTACT FORM STYLES */
.contact-form-wrapper {
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.form-input,
.form-textarea {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 16px;
    color: #000000;
    font-family: 'Gotham', sans-serif;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #5939E3;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94A3B8;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit-btn {
    background-color: #D89B00;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.form-submit-btn:hover {
    background-color: #C28900;
    transform: translateY(-2px);
}



/* FOOTER SECTION STYLES */
.footer-section {
    background-color: #1E009F;
    padding: 60px 0 40px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.footer-text {
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.9;
}

.footer-link {
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    opacity: 1;
}

.footer-link-underline {
    text-decoration: underline;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-copyright {
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.8;
}


/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 0 20px;
        gap: 16px;
    }

    .nav-logo {
        order: 1;
    }

    .btn-download {
        order: 2;
        padding: 10px 24px;
        font-size: 14px;
    }

    .nav-links {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 6px;
        margin-top: 8px;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-section {
        padding: 40px 0 60px;
        min-height: auto;
        background-size: cover;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .btn-store {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .phone-image {
        max-width: 320px;
    }

    .floating-card {
        padding: 10px 12px;
    }

    .card-icon {
        width: 24px;
        height: 24px;
    }

    .card-title {
        font-size: 12px;
    }

    .card-subtitle {
        font-size: 10px;
    }

    .card-1 {
        top: 20%;
        left: -15%;
    }

    .card-2 {
        top: 8%;
        right: -18%;
    }

    .card-3 {
        bottom: 18%;
        right: -15%;
    }

    /* Stats Section Mobile */
    .stats-section {
        padding: 40px 0;
    }

    .stats-container {
        padding: 40px 20px;
        margin: 0 20px;
    }

    .coin-icon {
        width: 40px;
        height: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

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

    .stat-label {
        font-size: 14px;
    }

    /* About Section Mobile */
    .about-section {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .about-image-wrapper {
        order: 1;
    }

    .about-content {
        order: 2;
    }

    .about-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .about-buttons {
        flex-direction: row;
    }

    .about-buttons .btn-store {
        width: 100%;
        max-width: 100%;
    }


    /* Features Section Mobile */
    .features-section {
        padding: 60px 0 0;
    }

    .features-container {
        padding: 0 20px 100px;
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

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

    .features-image-wrapper {
        margin-top: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        position: static;
        transform: none;
        width: 100%;
        margin-top: -80px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 100px 20px 60px;
        margin-top: 0;

        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 120%;
        text-align: center;
    }

    .cta-title {
        font-size: 36px;
        margin-bottom: 32px;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .btn-store-white {
        width: 100%;
        max-width: 180px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

        .features-section {
        padding: 60px 0 0;
    }

    .features-container {
        padding: 0 20px 40px;
        background-size: contain;

        background-size: 100%;
        background-position: calc(100% - 5px) calc(100% - 900px);
    }

    .features-header {
        margin-bottom: 40px;
    }

    .features-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

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

    .features-image-wrapper {
        margin-top: 40px;
        margin-bottom: 80px;
    }

    .features-image {
        max-width: 100%;
    }

    .features-grid {
        position: static;
        grid-template-columns: 1fr;
        gap: 16px;
        transform: none;
        width: 100%;
        margin-top: 0;
        padding: 0;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-description {
        font-size: 13px;
    }


    /* How It Works Section Mobile */
    .how-it-works-section {
        padding: 60px 0 80px;
    }

    .how-it-works-container {
        padding: 0 20px;
    }

    .how-it-works-header {
        margin-bottom: 60px;
    }

    .how-it-works-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .how-it-works-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .how-it-works-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .btn-store-gold {
        width: 100%;
        max-width: 180px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .phone-flow-wrapper {
        min-height: auto;
        flex-direction: column;
        gap: 32px;
    }

    .flow-line-container {
        display: none;
    }

    .phone-center {
        order: 1;
        margin-bottom: 32px;
    }

    .phone-screen {
        max-width: 280px;
    }

    .flow-card {
        position: static;
        order: 2;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .flow-card-1,
    .flow-card-2,
    .flow-card-3,
    .flow-card-4 {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }


    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .testimonials-content {
        position: static;
    }

    .testimonials-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

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

    .testimonials-cards {
        gap: 20px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .testimonial-author {
        font-size: 15px;
    }


    /* Contact Section Mobile */
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .contact-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .contact-email {
        font-size: 16px;
    }

    .external-link-icon {
        width: 16px;
        height: 16px;
    }

    .contact-form {
        gap: 20px;
    }

    .form-label {
        font-size: 15px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 15px;
    }

    .form-submit-btn {
        width: 100%;
    }


    /* Footer Section Mobile */
    .footer-section {
        padding: 40px 0 30px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer-column {
        gap: 12px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .footer-text,
    .footer-link {
        font-size: 15px;
    }

    .footer-divider {
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-logo-img {
        height: 36px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

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

    .phone-image {
        max-width: 280px;
    }

    .floating-card {
        padding: 8px 10px;
    }

    .card-1 {
        left: -12%;
    }

    .card-2 {
        right: -15%;
    }

    .card-3 {
        right: -12%;
    }

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

    .stat-label {
        font-size: 13px;
    }

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


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

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

    .cta-buttons {
        flex-direction: row;
        align-items: center;
    }

    .btn-store-white {
        max-width: 300px;
    }



    .how-it-works-title {
        font-size: 28px;
    }

    .how-it-works-buttons {
        flex-direction: row;
        align-items: center;
    }

    .btn-store-gold {
        max-width: 300px;
    }

    .phone-screen {
        max-width: 260px;
    }

    .flow-card {
        padding: 20px;
    }

    .flow-card-icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .flow-card-title {
        font-size: 16px;
    }

    .flow-card-description {
        font-size: 13px;
    }


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

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

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .testimonial-author {
        font-size: 14px;
    }


    .contact-title {
        font-size: 48px;
    }

    .contact-email {
        font-size: 15px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input,
    .form-textarea {
        padding: 12px;
        font-size: 14px;
    }


    .footer-heading {
        font-size: 15px;
    }

    .footer-text,
    .footer-link {
        font-size: 14px;
    }

    .footer-logo-img {
        height: 32px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

