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

:root {
    --primary-blue: #a0cbff;
    --primary-orange: #ffb67a;
    --text-white: #f3f7fc;
    --text-gray: #989ea5;
    --bg-dark: #111113;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.04);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1368px;
    margin: 0 auto;
    padding: 0 80px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(24px);
    background: rgba(17, 17, 19, 0.8);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    padding: 12px 16px 12px 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 120px;
    height: 60px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: auto;
    height: 36px;
    padding: 11px 16px;
    background-image: url('../../src/img/desktop/menugt-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid var(--border-subtle);
    border-radius: 60px;
    color: #F3F7FC !important;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.btn-get-started * {
    position: relative;
    z-index: 2;
}

.btn-get-started img {
    width: 20px;
    height: 20px;
    display: block;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('../../src/img/desktop/hero.bg.top.png'),
        url('../../src/img/desktop/hero.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
}

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

.hero-content {
    max-width: 614px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) -5.32%, #FFFFFF 68.4%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Manrope', sans-serif;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-gray);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

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

.trust-text {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--text-gray);
}

.trust-badge {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    line-height: 150%;
    letter-spacing: 0%;
    background: linear-gradient(90deg, #FFB67A -37.29%, #A0CBFF 0.78%, #C9E1FF 28.46%, #EBF4FF 56.14%, #C9E1FF 80.37%, #A0CBFF 100.26%, #FFB67A 142.66%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-image: url('../img/desktop/button.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100px;
    color: var(--text-white);
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

/* ===== PROBLEM & SOLUTION SECTION ===== */
.problem-solution {
    padding: 120px 0;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 472px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
}

.section-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-gray);
}

.two-column {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 820px;
    margin: 0 auto;
}

.problems-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 46px;
    width: 380px;
    height: 298px;
    background: rgba(255, 255, 255, 0.03);
    background-image: url('../../src/img/desktop/rg.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 32px 46.5px;
    border-radius: 32px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.problem-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    white-space: nowrap;
    color: var(--text-gray);
}

.problem-item .icon {
    font-size: 24px;
}

.problem-icon {
    width: 24px;
    height: 24px;
    border-radius: 1.22px;
    display: block;
}

.solutions-card {
    width: 380px;
    height: 298px;
    background: #18181A;
    background-image:
        url('../../src/img/desktop/rt.front.png'),
        url('../../src/img/desktop/rt.bg.png');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    border-radius: 32px;
    padding: 32px 76px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 46px;
    box-shadow:
        0px 8px 17px 0px rgba(160, 203, 255, 0.07),
        0px 30px 30px 0px rgba(160, 203, 255, 0.06),
        0px 68px 41px 0px rgba(160, 203, 255, 0.04),
        0px 121px 48px 0px rgba(160, 203, 255, 0.01),
        0px 189px 53px 0px rgba(160, 203, 255, 0);
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.solution-icon {
    width: 24px;
    height: 24px;
    display: block;
}

/* ===== ONE APP SECTION ===== */
.one-app {
    padding: 120px 0;
}

.one-app .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    max-width: 100%;
}

.one-app .gradient-text {
    background: linear-gradient(90deg, #A0CBFF 0%, #FFC799 25%, #E1EEFF 50%, #FFC799 75%, #A0CBFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.one-app-images {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
}

.one-app-images img {
    display: block;
    max-width: 380px;
    height: auto;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.one-app-images img:hover {
    transform: translateY(-8px);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 120px 0;
}

.how-it-works .section-header {
    max-width: 472px;
    margin: 0 auto 60px;
    gap: 8px;
}

.how-it-works .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 1062px;
    margin: 0 auto;
}

.step-item {
    width: 338px;
    height: 132px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 32px;
    display: block;
    margin: 0 auto;
}

.step-item h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.step-item p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--text-gray);
    margin: 0;
}

/* ===== DETAILERS MAKING MORE MONEY SECTION ===== */
.detailers-money {
    padding: 120px 0;
}

.detailers-money .section-header {
    max-width: 447px;
    margin: 0 auto 60px;
    gap: 8px;
}

.detailers-money .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

.detailers-money .highlight-text {
    color: #A0CBFF;
    position: relative;
    display: inline-block;
}

.detailers-money .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 185px;
    height: 25px;
    background-image: url('../../src/img/desktop/line.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.testimonial-card {
    width: 380px;
    height: 194px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 32px;
    position: absolute;
    top: 10px;
    left: 24px;
    z-index: 2;
}

.testimonial-content {
    width: 380px;
    height: 142px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 32px;
    border: 1px solid var(--border-subtle);
    padding: 40px 24px;
    background: var(--bg-card);
}

.testimonial-name {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    margin: 0;
}

.testimonial-text {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--text-gray);
    white-space: nowrap;
    margin: 0;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 120px 0;
}

.pricing .section-header {
    max-width: 472px;
    margin: 0 auto 60px;
    gap: 8px;
}

.pricing .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 120px 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-orange) 25%, #e1eeff 50%, var(--primary-orange) 75%, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-mockup {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: var(--text-gray);
}

/* ===== UTILITIES ===== */
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* ===== PRICING CARDS ===== */
.pricing-cards {
    width: 1204px;
    height: 549px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.pricing-card {
    width: 380px;
    height: 521px;
    background-image: url('../img/desktop/rg.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 1;
    padding: 32px;
}

.pricing-title {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    width: 33px;
    height: 30px;
    opacity: 1;
}

.pricing-divider {
    width: 332px;
    height: 0px;
    border: 1px solid #FFFFFF;
    opacity: 0.04;
}

.pricing-content {
    width: 332px;
    height: 377px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    opacity: 1;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: 100%;
}

.pricing-price {
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    width: 72px;
    height: 59px;
    opacity: 1;
}

.pricing-period {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 58px;
    height: 24px;
    opacity: 1;
}

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

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.feature-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
}

.feature-icon .icon-check {
    position: absolute;
    top: 8.37px;
    left: 8.44px;
    width: 7.56px;
    height: 7.26px;
    border-radius: 0.52px;
    opacity: 1;
}

.pricing-feature span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    color: #F3F7FC;
    width: 129px;
    height: 24px;
    opacity: 1;
}

.pricing-feature .feature-long {
    width: 234px;
}

.pricing-feature .feature-medium {
    width: 154px;
}

.pricing-feature .feature-xlarge {
    width: 272px;
}

.pricing-feature .feature-more {
    width: 187px;
}

.pricing-feature .feature-guarantee {
    width: 230px;
}

.pricing-cta {
    width: 332px;
    height: 64px;
    padding: 11px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-image: url('../img/desktop/button.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    border: 2px solid transparent;
    text-decoration: none;
    opacity: 1;
    box-sizing: border-box;
}

.pricing-cta span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 120px 0;
}

.final-cta-box {
    position: relative;
    width: 100%;
    height: 354px;
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
}

.final-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('../../src/img/desktop/hero.bg.top.png'),
        url('../../src/img/desktop/hero.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.8;
}

.final-cta-title {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    width: 472px;
    height: 94px;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.detaild-highlight {
    color: #A0CBFF;
}

.final-cta-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #989EA5;
    width: 472px;
    height: 24px;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.final-cta-button {
    width: 204px;
    height: 44.5px;
    border-radius: 12px;
    border: none;
    background-image: url('../img/desktop/button.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(160, 203, 255, 0.3);
}

.final-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(160, 203, 255, 0.4);
}

.final-cta-button span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #FFFFFF;
    width: 128px;
    height: 24px;
    opacity: 1;
}

.final-cta-arrow {
    width: 20px;
    height: 20px;
    opacity: 1;
}

/* ===== BOTTOM INFO SECTION ===== */
.bottom-info {
    width: 100%;
    height: 361px;
    opacity: 1;
    background-image: url('../img/desktop/footer.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 40px;
}

.bottom-info-box {
    width: 100%;
    max-width: 1368px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-eclipse {
    position: relative;
    z-index: 1;
}

.footer-dot {
    position: absolute;
    z-index: 2;
}

.footer-content {
    position: absolute;
    width: 1034px;
    height: 120px;
    top: 93px;
    left: 167px;
    display: flex;
    gap: 148px;
    opacity: 1;
    z-index: 3;
}

.footer-left {
    width: 150px;
    height: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
}

.footer-left a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 150px;
    height: 24px;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-left a:hover {
    color: #FFFFFF;
}

.footer-center {
    width: 150px;
    height: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
}

.footer-center a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 150px;
    height: 24px;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-center a:hover {
    color: #FFFFFF;
}

.footer-right {
    width: 150px;
    height: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 1;
}

.footer-right a {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 150px;
    height: 24px;
    opacity: 1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-right a:hover {
    color: #FFFFFF;
}

.footer-extra {
    width: 296px;
    height: 120px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    opacity: 1;
}

.footer-extra-inner {
    width: 250px;
    height: 36px;
    display: flex;
    gap: 16px;
    opacity: 1;
}

.social-box {
    width: 117px;
    height: 36px;
    background-image: url('../img/desktop/social.bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-box:hover {
    transform: translateY(-2px);
}

.google-play-icon {
    max-width: 100%;
    max-height: 100%;
}

.footer-extra-bottom {
    width: 296px;
    height: 44px;
    display: flex;
    gap: 16px;
    opacity: 1;
}

.social-item {
    width: 140px;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 1;
}

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

.social-item span {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    width: 92px;
    height: 24px;
    opacity: 1;
}

/* ===== PRIVACY PAGE ===== */
.privacy-content {
    background: #161617;
    min-height: 100vh;
    padding: 120px 0;
}

.privacy-content h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 39px;
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 60px;
}

.privacy-box {
    width: 1199px;
    height: auto;
    margin: 0 auto 80px auto;
    border-radius: 24px;
    padding: 32px 40px 40px 40px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
}

.privacy-section {
    width: 1119px;
    height: 279px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    opacity: 1;
}

.privacy-section h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 31px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    width: 1119px;
    height: 47px;
    opacity: 1;
}

.privacy-text {
    width: 1119px;
    height: 168px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0%;
    color: #989EA5;
    opacity: 1;
}

.privacy-text p {
    margin: 0 0 16px 0;
}

.privacy-text ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.privacy-text li {
    margin-bottom: 8px;
}

.privacy-text a {
    color: #989EA5;
    text-decoration: underline;
    transition: color 0.3s;
}

.privacy-text a:hover {
    color: #A0CBFF;
}

.privacy-section-large {
    height: 327px;
}

.privacy-section-small {
    height: 231px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet - 1024px and below */
@media screen and (max-width: 1024px) {
    .container {
        max-width: 90%;
        padding: 0 24px;
    }

    /* Navbar */
    .nav-links {
        gap: 20px;
        padding: 12px 12px 12px 24px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .btn-get-started {
        padding: 9px 14px;
        font-size: 13px;
    }

    /* Hero */
    .hero-title {
        font-size: 56px;
        white-space: normal;
    }

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

    /* Two Column Layouts */
    .two-column {
        gap: 32px;
    }

    /* One App Images */
    .one-app-images {
        gap: 24px;
    }

    .one-app-images img {
        max-width: 280px;
    }

    /* Steps Container */
    .steps-container {
        gap: 32px;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 24px;
    }

    /* Pricing */
    .pricing-card {
        max-width: 360px;
    }

    /* Privacy */
    .privacy-box {
        width: 90%;
        padding: 24px 32px;
    }

    .privacy-section,
    .privacy-section h2,
    .privacy-text {
        width: 100%;
    }
}

/* Mobile - 768px and below */
@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    /* Navbar */
    .navbar {
        padding: 16px 0;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 12px;
        padding: 10px;
        height: auto;
        justify-content: center;
    }

    .nav-links a {
        font-size: 12px;
    }

    .btn-get-started {
        width: 100%;
        justify-content: center;
        padding: 10px 16px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

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

    .hero-trust {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Two Column to Single Column */
    .two-column {
        flex-direction: column;
        gap: 32px;
    }

    .problems-list,
    .solutions-card {
        width: 100%;
    }

    /* One App Section */
    .one-app-images {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .one-app-images img {
        max-width: 100%;
        width: 100%;
    }

    /* Steps Container */
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-item {
        max-width: 100%;
    }

    /* Testimonials */
    .testimonials-grid {
        flex-direction: column;
        gap: 24px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    /* Pricing */
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .pricing-features {
        gap: 16px;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 32px;
    }

    .final-cta-subtitle {
        font-size: 16px;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-extra {
        position: static;
        width: 100%;
    }

    /* Privacy Page */
    .privacy-content {
        padding: 100px 0 60px;
    }

    .privacy-content h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .privacy-box {
        width: 100%;
        padding: 24px 20px;
    }

    .privacy-section {
        height: auto;
        padding: 20px 0;
    }

    .privacy-section-large,
    .privacy-section-small {
        height: auto;
    }

    .privacy-section h2 {
        font-size: 24px;
        height: auto;
    }

    .privacy-text {
        font-size: 15px;
        height: auto;
    }
}

/* Small Mobile - 480px and below */
@media screen and (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 32px;
    }

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

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 28px;
    }

    /* Navbar - Stack vertically on very small screens */
    .nav-links {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .btn-get-started {
        width: 100%;
    }

    /* Problem/Solution Items */
    .problem-item,
    .solution-item {
        font-size: 14px;
    }

    /* Pricing */
    .pricing-title {
        font-size: 28px;
    }

    .pricing-price {
        font-size: 48px;
    }

    .pricing-feature span {
        font-size: 14px;
    }

    /* Final CTA */
    .final-cta-title {
        font-size: 24px;
    }

    .final-cta-subtitle {
        font-size: 14px;
    }

    /* Privacy */
    .privacy-content h1 {
        font-size: 28px;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

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