.primary-btn {
        border: none;
        background: linear-gradient(135deg, var(--cyan), var(--blue));
        color: white;
        padding: 18px;
        border-radius: 22px;
        min-height: 58px;
        min-width: 220px;
        font-size: 17px;
        font-weight: 600;
        box-shadow:
                0 10px 25px rgba(89, 184, 255, .28);
}

.secondary-btn {
        border: none;
        background: white;
        padding: 18px;
        border-radius: 22px;
        font-size: 17px;
        color: var(--text);
        box-shadow: var(--shadow);
}

.card {
        background: rgba(255, 255, 255, .74);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, .5);
        border-radius: 28px;
        padding: 24px;
        box-shadow: var(--shadow);
}

.card-icon {
        font-size: 24px;
        margin-bottom: 14px;
}

.card h3 {
        font-size: 20px;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
}

.card p {
        color: var(--muted);
        line-height: 1.6;
        font-size: 15px;
}

.badge {
        background: white;
        border-radius: 16px;
        padding: 12px 14px;
        font-size: 14px;
        color: var(--text);
        box-shadow: var(--shadow);
}

/* STORAGE CARD */

.storage-card {

        background:
                linear-gradient(180deg,
                        rgba(255, 245, 245, .92),
                        rgba(255, 250, 250, .82));

        backdrop-filter: blur(30px);

        border: 1px solid rgba(255, 255, 255, .45);

        border-radius: 36px;

        padding: 28px;

        box-shadow:
                0 10px 30px rgba(255, 120, 120, .08),
                0 2px 8px rgba(15, 23, 40, .03);

        text-align: left;

        transition:
                background 2.2s ease,
                border-color 2.2s ease,
                box-shadow 2.2s ease;

}

.storage-card.initial-state {

        background:
                linear-gradient(180deg,
                        rgba(255, 245, 245, .92),
                        rgba(255, 250, 250, .72));

}

.storage-card.optimized {

        background:
                linear-gradient(180deg,
                        rgba(245, 255, 255, .96),
                        rgba(248, 252, 255, .92));

        border-color:
                rgba(124, 227, 255, .35);

        box-shadow:
                0 20px 50px rgba(89, 184, 255, 05),
                0 8px 20px rgba(89, 184, 255, .05);

}

.storage-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 18px;
}

.storage-label {
        color: var(--muted);
        font-size: 15px;
}

.storage-number {
        font-size: 32px;
        font-weight: 700;
        letter-spacing: -1px;
}

.bar {
        width: 100%;
        height: 16px;
        background: #e7edf5;
        border-radius: 999px;
        overflow: hidden;
        margin-bottom: 16px;
}

.bar-fill {

        width: 92%;
        height: 100%;

        border-radius: 999px;

        background:
                linear-gradient(90deg,
                        #ff5f6d,
                        #ffb347);

        transition:
                background 1.8s ease;

}

.after {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--line);
}

.after-left {
        display: flex;
        flex-direction: column;
        gap: 4px;
}

.after-title {
        font-size: 14px;
        color: var(--muted);
}

.after-value {
        font-size: 28px;
        font-weight: 700;
        letter-spacing: -1px;
        color: #3bb8ff;
}

.floating-pill {
        background: white;
        padding: 12px 16px;
        border-radius: 18px;
        box-shadow: var(--shadow);
        font-size: 14px;
        color: var(--text);
        animation:
                breathe 4s ease-in-out infinite;
}

/* LOGO */

.logo {

        display: flex;
        align-items: center;

        gap: 12px;

        flex-shrink: 0;

}

.logo-image {

        width: 42px;
        height: 42px;

        object-fit: contain;

        display: block;

        filter:
                drop-shadow(0 8px 16px rgba(89, 184, 255, .12));

}

.logo span {

        font-size: 22px;

        font-weight: 700;

        letter-spacing: -1px;

        line-height: 1;

        color: var(--text);

}

.beta-btn {
        border: none;
        background: white;
        padding: 10px 16px;
        border-radius: 18px;
        font-size: 14px;
        color: var(--text);
        box-shadow: var(--shadow);
}

.beta-note {
  margin-top: 14px;
  font-size: 0.92rem;
  opacity: 0.72;
  text-align: center;
}

/* STEPS */

.step {
        display: flex;
        gap: 18px;
        margin-bottom: 28px;
}

.step-number {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 14px;
        background: white;
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: var(--blue);
}

.step h4 {
        font-size: 20px;
        margin-bottom: 8px;
}

.step p {
        color: var(--muted);
        line-height: 1.6;
}

/* PRIVACY */

.privacy-box {
        background:
                linear-gradient(180deg,
                        rgba(255, 255, 255, .9),
                        rgba(255, 255, 255, .72));

        border-radius: 36px;
        padding: 32px;
        box-shadow: var(--shadow);
}

.privacy-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 24px;
}

#storageStatus {

        transition:
                color 1.5s ease,
                opacity .8s ease;

}

.after-value {

        transition:
                color 1.5s ease;

}

#successMessage {

        margin-top: 18px;

        font-size: 15px;

        color: #3bb8ff;

        opacity: 0;

        transform: translateY(8px);

        transition:
                opacity .4s ease,
                transform .4s ease;

}

#successMessage.visible {

        opacity: 1;

        transform: translateY(0);

}

.seo-block {

    margin-top: 80px;

    padding: 42px;

    border-radius: 32px;

    background: rgba(255,255,255,.55);

    backdrop-filter: blur(18px);

}

.seo-block h2 {

    font-size: 34px;

    margin-bottom: 24px;

    line-height: 1.1;

}

.seo-block p {

    margin-bottom: 18px;

    font-size: 18px;

    line-height: 1.7;

    color: #5f6675;

}

.faq-section {

    margin-top: 80px;

}

.faq-item {

    padding: 28px;

    border-radius: 24px;

    background: rgba(255,255,255,.5);

    margin-bottom: 18px;

}

.faq-item h3 {

    font-size: 22px;

    margin-bottom: 12px;

}

.faq-item p {

    color: #667085;

    line-height: 1.7;

}