:root {
    --sf-blue: #242b62;
    --sf-red: #FF2D2D;
}

body {
    background: #ffffff;
    overflow-x: hidden;
    font-family: 'Raleway', sans-serif;
}

.navbar-sf {
    background: transparent;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: none;
}

.hero {
    position: relative;
    background: var(--sf-blue);
    color: white;
    padding: 140px 0 180px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,45,45,0.25) 0%, rgba(255,45,45,0) 70%);
    top: -200px;
    right: -200px;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
    100% { transform: translateY(0px); }
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.btn-claim {
    background: var(--sf-blue);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid #ffffff;
    padding: 14px 45px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .25s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-claim:hover {
    background: #2f3a79;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(10,16,45,.42);
}

.btn-claim-hero:hover {
    background: #1a2250;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 16px 36px rgba(10,16,45,.48);
}

.btn-claim-lg {
    padding: 16px 48px;
    font-size: 1.05rem;
    box-shadow: 0 12px 32px rgba(36,43,98,.28);
}

.btn-claim-lg:hover {
    box-shadow: 0 18px 42px rgba(36,43,98,.38);
}

.btn-catalog {
    background: #ffffff;
    color: var(--sf-blue);
    border: 2px solid #ffffff;
    padding: 12px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: .25s ease;
    text-decoration: none;
}

.btn-catalog:hover {
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    color: var(--sf-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(36,43,98,.15);
}

.info-section {
    padding: 0 0;
    background: #ffffff;
}

.info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 40px rgba(36,43,98,.06);
    transition: all .3s ease;
    position: relative;
    height: 100%;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--sf-red);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(36,43,98,.12);
}

.info-title {
    color: var(--sf-blue);
    font-weight: 700;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 18px;
}

.info-item strong {
    display: block;
    color: var(--sf-blue);
    font-weight: 600;
}

.minimal-section {
    padding: 120px 0;
    text-align: center;
}

#claim-version {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
}

.claim-hero-section {
    padding: 90px 0 100px;
    background: linear-gradient(135deg, var(--sf-blue) 0%, #1e2850 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.claim-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,45,45,.25) 0%, transparent 45%);
    pointer-events: none;
}

.claim-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.claim-hero-copy {
    color: rgba(255,255,255,.95);
    line-height: 1.6;
}

.claim-hero-copy strong {
    color: #ffffff;
    font-weight: 800;
}

.claim-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.claim-sidebar-brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.2);
}

.claim-sidebar-brand-fallback {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.2);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.claim-sidebar-brand-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
}

.claim-sidebar-brand-sub {
    color: rgba(255,255,255,.8);
    font-size: .86rem;
    margin: 2px 0 0;
}

.claim-hero-copy h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.claim-hero-copy .lead {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.claim-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.claim-notice {
    margin-top: 18px;
    display: inline-block;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: .92rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.24);
}

.claim-sidebar {
    background: rgba(13, 20, 51, .46);
    border: 1px solid rgba(255,255,255,.34);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 34px rgba(7, 11, 29, .32);
    position: relative;
    z-index: 2;
}

.claim-sidebar-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.claim-sidebar-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.claim-sidebar-text {
    font-size: .95rem;
    line-height: 1.5;
    color: rgba(255,255,255,.92);
}

.claim-sidebar-text strong {
    color: #ffffff;
    font-weight: 700;
}

.claim-section {
    padding: 90px 0;
}

.claim-section-title {
    color: var(--sf-blue);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 14px;
}

.claim-section-copy {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 68ch;
}

.claim-section-copy strong {
    color: var(--sf-blue);
    font-weight: 800;
}

.claim-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.claim-benefit-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 20px rgba(0,0,0,.04);
}

.claim-benefit-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.claim-benefit-title {
    color: var(--sf-blue);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.claim-benefit-desc {
    color: #666;
    font-size: .95rem;
    line-height: 1.6;
}

.claim-steps-section {
    background: linear-gradient(135deg, var(--sf-blue) 0%, #1e2850 100%);
    color: white;
    padding: 80px 0;
}

.claim-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 42px;
}

.claim-step-item {
    position: relative;
    padding: 28px;
}

.claim-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--sf-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.claim-step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,.92);
}

.claim-step-item:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: rgba(255,255,255,.3);
}

.claim-social-proof {
    padding: 80px 0;
    text-align: center;
}

.claim-proof-strip {
    margin: 34px auto 16px;
    padding: 14px 18px;
    border-radius: 999px;
    max-width: fit-content;
    background: #ffffff;
    border: 1px solid #e8eaed;
    color: #3f4566;
    font-size: .95rem;
    font-weight: 600;
}

.claim-proof-grid {
    margin-top: 24px;
}

.claim-proof-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 20px;
    padding: 30px 24px;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    height: 100%;
}

.claim-proof-icon {
    font-size: 1.9rem;
    margin-bottom: 10px;
}

.claim-proof-value {
    color: var(--sf-blue);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.claim-proof-text {
    color: #4e546f;
    font-weight: 600;
    margin-bottom: 0;
    font-size: .95rem;
    line-height: 1.6;
}

.claim-proof-cta {
    margin-top: 34px;
}

.claim-context-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    position: relative;
    overflow: hidden;
}

.claim-context-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,45,45,.14) 0%, rgba(255,45,45,0) 70%);
    top: -170px;
    right: -130px;
    pointer-events: none;
}

.claim-context-section::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36,43,98,.11) 0%, rgba(36,43,98,0) 68%);
    bottom: -170px;
    left: -120px;
    pointer-events: none;
}

.claim-context-card {
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 15px 34px rgba(13,20,51,.07);
    height: 100%;
    position: relative;
    z-index: 2;
    transition: transform .25s ease, box-shadow .25s ease;
}

.claim-context-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(13,20,51,.12);
}

.claim-context-card--invite {
    border-top: 5px solid #1f2f8a;
}

.claim-context-card--benefits {
    border-top: 5px solid var(--sf-red);
}

.claim-context-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #4a5280;
    background: #eef1ff;
    border: 1px solid #dde3ff;
    border-radius: 999px;
    padding: 7px 12px;
    margin-bottom: 16px;
}

.claim-context-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    padding: 9px 12px;
    font-weight: 600;
    font-size: .9rem;
    color: #222b58;
    background: #f4f6ff;
    border: 1px solid #e2e7ff;
    margin: 0 8px 8px 0;
}

.claim-checklist {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.claim-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #37406a;
    font-size: .98rem;
    line-height: 1.6;
    margin-bottom: 13px;
}

.claim-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #e8fff2;
    border: 1px solid #b7f0d0;
    color: #0f9a4a;
    font-weight: 800;
    font-size: .82rem;
    line-height: 1;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .claim-hero-grid {
        grid-template-columns: 1fr;
    }

    .claim-steps-grid {
        grid-template-columns: 1fr;
    }

    .claim-step-item::after {
        content: "↓" !important;
        right: auto !important;
        bottom: -16px !important;
        top: auto !important;
    }
}

@media (max-width: 767px) {
    .claim-hero-section {
        padding: 60px 0 60px;
    }

    .claim-sidebar {
        order: -1;
        margin-bottom: 20px;
    }

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

    .claim-steps-grid {
        gap: 18px;
    }
}

.footer-sf {
    background: #f8f9fc;
    padding: 50px 0 35px 0;
    border-top: 1px solid #eef0f6;
    text-align: center;
}

.footer-sf .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 8px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--sf-blue);
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(36,43,98,.08);
    transition: all .25s ease;
}

.footer-sf .social-links a:hover {
    background: var(--sf-blue);
    color: #ffffff;
    transform: translateY(-4px);
}

.footer-sf .copyright {
    margin-top: 25px;
    font-size: 14px;
    color: #8a8fa3;
}


.navbar-sf {
    background: transparent;
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: none;
}

.hero-catalog {
    position: relative;
    background: var(--sf-blue);
    color: white;
    padding: 100px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.hero-catalog::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 45, 45, 0.2) 0%, rgba(255, 45, 45, 0) 70%);
    top: -200px;
    right: -150px;
    animation: floatGlow 8s ease-in-out infinite;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.profile-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    margin-top: 20px;
    position: relative;
}

.profile-card img.profile-photo {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border: 4px solid white;
    margin-top: -55px;
}

.profile-card .profile-photo-placeholder {
    width: 110px;
    height: 110px;
    border: 4px solid white;
    margin-top: -55px;
}

.product-section {
    padding: 40px 0 80px;
    background: #f8f9fc;
}

.product-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image-container img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    color: var(--sf-blue);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
    line-height: 1.3;
    text-align: center;
}

.product-price {
    color: var(--sf-red);
    font-weight: 800;
    font-size: 1.8rem;
    margin-top: auto;
    margin-bottom: 25px;
    text-align: center;
}

.btn-catalog-primary {
    background: var(--sf-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 50px;
    transition: all .25s ease;
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: inline-block;
}

.btn-catalog-primary:hover {
    background: var(--sf-red);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 45, 45, .3);
}

.footer-sf {
    background: #ffffff;
    padding: 50px 0 35px 0;
    border-top: 1px solid #eef0f6;
    text-align: center;
}

.footer-sf .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 8px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--sf-blue);
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(36,43,98,.08);
    transition: all .25s ease;
}

.footer-sf .social-links a:hover {
    background: var(--sf-blue);
    color: #ffffff;
    transform: translateY(-4px);
}

.footer-sf .copyright {
    margin-top: 25px;
    font-size: 14px;
    color: #8a8fa3;
}

.btn-back-floating {
    position: fixed;
    top: 25px;
    left: 25px;
    background: #ffffff;
    color: var(--sf-blue);
    border-radius: 50px;
    padding: 10px 18px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 9999;
    transition: all .25s ease;
    display: inline-flex;
    align-items: center;
}

.btn-back-floating:hover {
    background: var(--sf-red);
    color: #ffffff;
    transform: translateY(-3px);
}