:root {
    --remember-gradient: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
}

body.remember-page {
    background-color: #f5f7fb;
}

.navbar-remember {
    position: sticky;
}

.remember-hero {
    background: var(--remember-gradient);
    color: var(--white);
    padding: 160px 0 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-copy h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-copy .lead {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: #BBDEFB;
    font-weight: 600;
}

.hero-highlights {
    margin: 20px 0 30px;
    list-style: none;
    color: rgba(255, 255, 255, 0.95);
}

.hero-highlights li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.hero-highlights i {
    color: #BBDEFB;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-meta strong {
    display: block;
    font-size: 2rem;
}

.hero-meta span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-media {
    display: flex;
    justify-content: center;
}

.screen-mockup {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.screen-mockup img {
    border-radius: 12px;
}

.screen-mockup .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #BBDEFB;
    color: #1976D2;
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.trust-bar {
    background-color: var(--white);
    padding: 25px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 600;
}

.trust-icons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--gray);
}

.remember-section {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.checklist {
    list-style: none;
    margin-top: 20px;
}

.checklist li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    color: var(--gray);
}

.checklist i {
    color: #BBDEFB;
}

.stat-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}

.stat {
    margin-bottom: 20px;
}

.stat strong {
    display: block;
    font-size: 2.5rem;
    color: var(--primary);
}

.stat span {
    color: var(--gray);
}

.stat-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(66, 165, 245, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #42A5F5;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.modules {
    background-color: var(--light);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.module-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chip-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.chip-list li {
    background-color: rgba(33, 37, 41, 0.05);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
}

.screens {
    background-color: var(--white);
}

.screen-viewer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.screen-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.screen-image img {
    width: 100%;
    display: block;
}

.screen-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.screen-nav .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.screen-info {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.screen-highlights {
    list-style: none;
    margin: 20px 0;
}

.screen-highlights li {
    margin-bottom: 8px;
}

.screen-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.screen-thumbs button {
    border: 1px solid rgba(33, 37, 41, 0.15);
    border-radius: 999px;
    padding: 6px 14px;
    background-color: transparent;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.screen-thumbs button.active,
.screen-thumbs button:hover {
    border-color: #BBDEFB;
    color: #BBDEFB;
}

.workflow {
    background-color: var(--light);
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.workflow-steps article {
    background-color: var(--white);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.workflow-steps span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(66, 165, 245, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #42A5F5;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing {
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

.pricing-card.highlight {
    border: 2px solid rgba(66, 165, 245, 0.4);
}

.pricing-cta {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.final-cta {
    background: var(--remember-gradient);
    color: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: center;
}

.contact-list {
    list-style: none;
    margin-top: 20px;
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(6px);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-form label {
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-form input,
.cta-form textarea {
    padding: 12px 15px;
    border-radius: 10px;
    border: none;
    font-family: inherit;
    color: var(--primary);
}

.cta-form button {
    width: 100%;
}

.form-note {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.form-status {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.form-status.success {
    color: #c8f7dc;
}

.form-status.error {
    color: #ffd6d6;
}

@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: 2.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .nav-menu {
        width: 100%;
    }
}