* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-navy: #0B1220;
    --soft-gradient: #0E1625;
    --mint-accent: #2DD4BF;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Rethink Sans', sans-serif;
    background: #0B0B0B;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar .container {
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.navbar .nav-content {
    padding: 0 16px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
}

@media (min-width: 768px) {
    .navbar .nav-content {
        height: 78px;
        padding: 0 24px;
        gap: 16px;
    }
}

@media (max-width: 1023px) {
    .navbar .nav-content {
        justify-content: space-between;
        gap: 8px;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s;
    margin-left: 0;
    flex-shrink: 0;
    padding-left: 0;
}

.logo-container:hover {
    opacity: 0.8;
}

.logo-img {
    height: 35px;
    width: auto;
    min-width: auto;
    max-width: none;
    flex-shrink: 0;
    object-fit: contain;
}

.nav-links-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: none;
    gap: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    padding: 14px 50px;
    backdrop-filter: none;
    position: relative;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 0;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: white;
    background: transparent;
}

.nav-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    margin-right: 0;
}

@media (max-width: 1023px) {
    .navbar {
        height: auto;
        min-height: 68px;
    }
    
    .navbar .container {
        padding: 0;
    }
    
    .navbar .nav-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        padding: 0 16px;
        height: 68px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .nav-buttons {
        display: flex;
        gap: 8px;
        flex-shrink: 0;
        margin: 0;
        align-items: center;
        height: 50px;
    }
    
    .nav-links-container {
        display: none;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        background: transparent !important;
        border-radius: 0;
        width: auto;
        height: 50px;
        padding: 0;
        border: none;
        box-shadow: none;
        margin: 0;
    }
    
    .logo-img {
        height: 32px;
        width: auto;
        object-fit: contain;
        display: block;
    }
    
    .btn-creator-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
        height: 50px;
        border-radius: 12px;
        background: var(--mint-accent);
        color: white;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        white-space: nowrap;
        flex-shrink: 0;
        margin: 0;
    }
    
    .btn-apple,
    .btn-android {
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
    }
}

@media (min-width: 1024px) {
    .btn-creator-mobile {
        display: none;
    }
}

.btn-apple,
.btn-android {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}

.btn-apple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 145px;
    height: 50px;
    padding: 2px 15px;
    border-radius: 300px;
    background: linear-gradient(to bottom, #1fbfab, var(--mint-accent));
    color: white;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-apple:hover {
    opacity: 0.9;
}

@media (max-width: 1023px) {
    .btn-apple {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 12px;
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        flex-shrink: 0;
    }
    
    .btn-apple span {
        display: none;
    }
    
    .btn-android {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 12px;
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        flex-shrink: 0;
    }
    
    .btn-android span {
        display: none;
    }
}

.apple-logo-svg,
.android-logo-svg {
    flex-shrink: 0;
}

.apple-logo-svg {
    width: 14px;
    height: 16px;
    margin-top: -2px;
}

.android-logo-svg {
    width: 17px;
    height: 16px;
}

.btn-android {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 145px;
    height: 50px;
    padding: 2px 15px;
    border-radius: 300px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-android:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1023px) {
    .btn-android {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 12px;
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .btn-android span {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: 100px 0;
    margin-top: 68px;
    overflow: visible;
}

@media (min-width: 768px) {
    .hero {
        margin-top: 78px;
        padding: 120px 0;
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero .container {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
        align-items: start;
    }
}

.hero header {
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .hero header {
        grid-column: 1;
        grid-row: 1;
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    text-align: left;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
        font-weight: 800;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 72px;
        font-weight: 800;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 400;
    text-align: left;
    max-width: 320px;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
        max-width: 340px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        margin-top: 0;
        max-width: 260px;
        font-size: 17px;
        line-height: 1.35;
    }
}

.hero-visual {
    order: -1;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

@media (min-width: 1024px) {
    .hero-visual {
        order: 0;
        grid-row: 1 / 3;
        grid-column: 2;
        align-self: end;
        justify-content: flex-end;
        overflow: visible;
    }
}

.hero-phones-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (min-width: 1024px) {
    .hero-phones-img {
        max-width: none;
        width: 100%;
        height: auto;
        transform: scale(1.5);
        object-fit: contain;
    }
}

@media (min-width: 1440px) {
    .hero-phones-img {
        transform: scale(1.75);
    }
}

@media (min-width: 1920px) {
    .hero-phones-img {
        transform: scale(2);
    }
}

.hero-mockup {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
    margin-bottom: 0;
    margin-top: -30px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .hero-buttons {
        margin-top: -25px;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        margin-top: -30px;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
    }
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: #1E1E1E;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), 0 0 40px rgba(255, 255, 255, 0.05);
    position: relative;
}

.btn-download::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-download:hover {
    background: #252525;
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-download:hover::before {
    opacity: 1;
}

.btn-download .download-icon {
    width: 17px;
    height: 16px;
    filter: brightness(0) invert(0.9);
    position: relative;
    z-index: 1;
}

.btn-download span {
    position: relative;
    z-index: 1;
}

.btn-creator-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-creator-hero:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-primary {
    padding: 16px 32px;
    background: var(--mint-accent);
    color: var(--dark-navy);
    border: none;
    border-radius: 12px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary.large {
    padding: 20px 40px;
    font-size: 18px;
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: 'Rethink Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: var(--mint-accent);
    color: var(--mint-accent);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    border: 2px solid rgba(45, 212, 191, 0.3);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: #0B0B0B;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reset-screen {
    text-align: center;
    padding: 40px;
}

.reset-timer {
    font-size: 72px;
    font-weight: 700;
    color: var(--mint-accent);
    margin-bottom: 16px;
}

.reset-text {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}

.trust-item h3 {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

@media (min-width: 768px) {
    .features-section {
        padding: 120px 0;
    }
}

.features-header {
    text-align: left;
    margin-bottom: 48px;
    max-width: 600px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 16px;
    color: var(--text-primary);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 32px;
    }
}

.section-subtitle {
    font-size: 16px;
    text-align: left;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    max-width: 600px;
    line-height: 1.5;
    font-weight: 400;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 18px;
        line-height: 1.24;
    }
}

/* Accuracy Section */
.accuracy-section {
    padding: 60px 0;
}

.accuracy-content {
    text-align: left;
    padding: 0;
    border: none;
    background: transparent;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.accuracy-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
}

.accuracy-number {
    color: var(--mint-accent);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -2px;
}

@media (min-width: 768px) {
    .accuracy-number {
        font-size: 64px;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(13, 13, 13, 0.3);
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    padding: 40px 32px;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    transition: background-color 0.2s;
    position: relative;
}

.feature-card:nth-child(2n) {
    border-right: none;
}

@media (min-width: 1024px) {
    .feature-card:nth-child(2n) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .feature-card:nth-child(3n) {
        border-right: none;
    }
}

.feature-card:nth-child(n+4) {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .feature-card:nth-child(n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .feature-card:nth-child(n+7) {
        border-bottom: none;
    }
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg,
.feature-icon img {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

/* Product Section */
.product-section {
    padding: 100px 0;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    margin-bottom: 100px;
}

.product-item:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .product-item {
        flex-direction: row;
        gap: 60px;
        margin-bottom: 160px;
    }
}

.product-item.reverse {
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .product-item.reverse {
        flex-direction: row;
    }
}

.product-item:last-child {
    margin-bottom: 0;
}


.product-item > img,
.product-item > .product-visual {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
}

.product-text {
    text-align: left;
    max-width: 700px;
}

.product-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.3;
}

@media (min-width: 768px) {
    .product-text h2 {
        font-size: 40px;
    }
}

.product-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}


.stress-graph-img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.reset-screen-img {
    width: 100%;
    height: auto;
    max-width: 530px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.daily-actions-img {
    width: 100%;
    height: auto;
    max-width: 530px;
    display: block;
    object-fit: contain;
    border-radius: 12px;
}

.reset-timer-screen {
    width: 100%;
    max-width: 400px;
    padding: 60px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 13, 13, 0.5);
    text-align: center;
}

.timer-circle {
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
    border: 2px solid var(--mint-accent);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.timer-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--mint-accent);
}

.timer-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.timer-instructions {
    color: rgba(255, 255, 255, 0.6);
}

.timer-instructions p {
    margin: 8px 0;
    font-size: 16px;
}

.home-screen-mockup {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 13, 13, 0.5);
}

.home-screen-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.home-card {
    padding: 20px;
    background: rgba(20, 20, 20, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.card-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Science Section */
.science-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.science-quotes {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.science-quote {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: transparent;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}

.science-quote:last-child {
    border-bottom: none;
}

.science-quote p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.quote-source {
    font-size: 14px;
    color: var(--mint-accent);
    font-weight: 500;
}

.quote-source a {
    color: var(--mint-accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.quote-source a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-badge {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 16px;
}

.testimonials-title {
    margin-top: 0;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
    text-align: left;
    display: block;
    max-width: 900px;
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 38px;
    }
}

.testimonials-title-accent {
    display: inline;
    color: white;
}

.testimonials-title-muted {
    color: rgba(255, 255, 255, 0.5);
    display: inline;
}

.testimonials-subtitle {
    margin-top: 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.5;
    text-align: left;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 13, 13, 0.5);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(13, 13, 13, 0.8);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.testimonial-card blockquote {
    margin: 0;
    margin-bottom: 24px;
}

.testimonial-card blockquote p {
    color: #949FA6;
    font-size: 18px;
    font-weight: 400;
    line-height: 29.33px;
    margin: 0;
}

.testimonial-card footer {
    margin-top: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: white;
    font-weight: 500;
    margin: 0;
}

.author-handle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 12px;
}

.testimonial-stars .star-icon {
    width: 16px;
    height: 16px;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .testimonial-stars .star-icon {
    opacity: 1;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--soft-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

.author-handle {
    color: var(--text-secondary);
    font-size: 12px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
}

.final-cta .container {
    text-align: center;
    padding: 80px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(13, 13, 13, 0.5);
    background-image: url('assets/cta-gradient.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.final-cta .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.5);
    border-radius: 16px;
    z-index: 0;
}

.final-cta .container > * {
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .final-cta .container {
        padding: 100px 60px;
    }
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 40px;
    }
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-apple-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    color: black;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 16px;
    font-weight: 500;
}

.btn-apple-cta:hover {
    opacity: 0.9;
}

.btn-apple-cta svg {
    width: 15px;
    height: 17px;
}

.btn-android-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: opacity 0.2s;
    font-size: 16px;
    font-weight: 500;
}

.btn-android-cta:hover {
    opacity: 0.9;
}

.btn-android-cta svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    padding: 80px 0 50px;
    background: #0B0B0B;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--mint-accent);
    border-radius: 2px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
}

.footer-section ul li a:hover {
    color: var(--mint-accent);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
    }

    .nav-content {
        flex-wrap: wrap;
    }

    .nav-buttons {
        width: 100%;
        justify-content: center;
    }

    .product-item {
        grid-template-columns: 1fr;
    }

    .product-item.reverse {
        direction: ltr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta-title {
        font-size: 40px;
    }

    .nav-links-container {
        display: none;
    }

    .nav-buttons {
        gap: 8px;
    }

    .btn-apple,
    .btn-android {
        padding: 8px 12px;
        font-size: 12px;
    }

    .btn-apple span,
    .btn-android span {
        display: none;
    }

    .phone-screen {
        width: 250px;
        height: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Creator Program Styles */
.creator-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.creator-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.creator-hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
    display: none;
}

.creator-hero-subtitle-alt {
    font-size: 24px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    display: block;
}

.creator-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn-creator-primary,
.btn-creator-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Rethink Sans', sans-serif;
}

.btn-creator-primary {
    background: var(--mint-accent);
    color: var(--dark-navy);
}

.btn-creator-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-creator-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-creator-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.creator-video-container {
    max-width: 800px;
    margin: 0 auto;
}

.creator-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.creator-video-placeholder:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.9);
}

.creator-video-placeholder p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* Creator Steps Section */
.creator-steps {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.creator-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.creator-step-card {
    padding: 32px 24px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.creator-step-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.8);
}

.creator-step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--mint-accent);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.creator-step-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

.creator-step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.content-ideas {
    padding: 120px 0;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.idea-card {
    padding: 40px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: border-color 0.3s;
}

.idea-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.idea-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.idea-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.idea-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.referral-system {
    padding: 120px 0;
    background: transparent;
    position: relative;
}

.referral-system::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.referral-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.referral-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.referral-code-box {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.code-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--mint-accent);
    margin-bottom: 24px;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.username-placeholder {
    color: var(--text-primary);
}

.referral-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.referral-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.referral-benefits {
    list-style: none;
    padding: 0;
}

.referral-benefits li {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
    padding-left: 8px;
}

.payout-info {
    padding: 120px 0;
}

.payout-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.payout-card h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.payout-card > p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.payout-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.payout-item {
    padding: 24px;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payout-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payout-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--mint-accent);
}

/* Copy Videos Section */
.copy-videos {
    padding: 120px 0;
    background: transparent;
}

.copy-videos-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.copy-videos-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-4px);
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-card:hover .video-placeholder {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.9);
}

.video-placeholder p {
    color: var(--text-secondary);
    font-size: 14px;
}

.video-label {
    color: var(--text-secondary);
    font-size: 14px;
    text-align: center;
    margin-top: 12px;
}

/* FAQ Section */
.creator-faq {
    padding: 120px 0;
    background: transparent;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.faq-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    font-size: 24px;
    color: var(--mint-accent);
    font-weight: 300;
    margin-left: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

.faq-answer ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--mint-accent);
}

.faq-answer strong {
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 968px) {
    .creator-hero-title {
        font-size: 48px;
    }
    
    .creator-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .copy-videos-title,
    .faq-title {
        font-size: 36px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .referral-content {
        grid-template-columns: 1fr;
    }

    .payout-card {
        padding: 40px 24px;
    }
}

@media (max-width: 640px) {
    .creator-hero-title {
        font-size: 36px;
    }
    
    .creator-hero-subtitle-alt {
        font-size: 18px;
    }
    
    .creator-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-creator-primary,
    .btn-creator-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .creator-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .copy-videos-title,
    .faq-title {
        font-size: 32px;
    }
    
    .copy-videos-subtitle,
    .faq-subtitle {
        font-size: 16px;
    }
    
    .videos-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .referral-text h2,
    .payout-card h2 {
        font-size: 32px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}
