.get-started-hero {
    background: var(--color-primary-soft);
    margin-top: calc(-1 * var(--header-height));
    padding: calc(var(--space-4xl) + var(--header-height)) var(--space-md) var(--space-4xl);
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.get-started-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background-color: rgba(43, 103, 119, 0.1);
    padding: var(--space-xs) var(--space-md);
    border-radius: 999px;
    margin-bottom: var(--space-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-badge span:last-child {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-title em {
    font-style: italic;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 550px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

.hero-download-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.phone-screenshot-large {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
     image-rendering: -webkit-optimize-contrast;
}

.app-store-btn-large,
.google-play-btn-large {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background-color: var(--color-dark);
    color: var(--color-white);
    border-radius: 14px;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.app-store-btn-large:hover,
.google-play-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.app-store-btn-large svg,
.google-play-btn-large svg {
    width: 28px;
    height: 28px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-label {
    font-size: 11px;
    opacity: 0.9;
}

.app-store-name {
    font-size: 18px;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-2xl);
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    max-width: fit-content;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2xs);
}

.stat-number {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-main);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-border-subtle);
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-primary-soft), #e8d5e0);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary-soft));
    bottom: -50px;
    left: -50px;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title-left {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
}

.how-it-works-section {
    padding: var(--space-4xl) var(--space-md);
    background-color: var(--color-background);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: calc(1.5rem + 26px); /* Card offset */
    left: calc(12.5% + 26px);
    right: calc(12.5% + 26px);
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(82, 171, 152, 0.35) 0%,
        var(--color-border-subtle) 50%,
        rgba(82, 171, 152, 0.35) 100%
    );
    pointer-events: none;
}

.step-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    border: 1px solid var(--color-border-subtle);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(36, 89, 104, 0.09);
    border-color: rgba(82, 171, 152, 0.4);
}

.step-number-wrapper {
    width: 52px;
    height: 52px;
    background: var(--color-white);
    border: 2px solid var(--color-border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
    transition: border-color 240ms ease, background 240ms ease;
}

.step-card:hover .step-number-wrapper {
    border-color: var(--color-accent);
    background: rgba(82, 171, 152, 0.06);
}

.step-number {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: 0.04em;
    transition: color 240ms ease;
}

.step-card:hover .step-number {
    color: var(--color-accent);
}

.step-icon {
    width: 36px;
    height: 36px;
    margin-top: auto;
    padding-top: var(--space-md);
    color: var(--color-border-subtle);
    transition: color 240ms ease;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-card:hover .step-icon {
    color: rgba(82, 171, 152, 0.5);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin: 0 0 var(--space-xs);
    letter-spacing: -0.01em;
}

.step-content {
    flex: 1;
}

.step-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

.features-grid-section {
    padding: var(--space-4xl) var(--space-md);
    background-color: var(--color-background);
}

.features-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1040px;
    margin: 0 auto;
}

.bento-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    border: 1px solid var(--color-border-subtle);
    display: flex;
    flex-direction: column;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(36, 89, 104, 0.09);
    border-color: rgba(82, 171, 152, 0.4);
}

.bento-card.bento-accent {
    background: linear-gradient(
        145deg,
        rgba(82, 171, 152, 0.05) 0%,
        var(--color-white) 60%
    );
}

.bento-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(36, 89, 104, 0.08) 0%, rgba(82, 171, 152, 0.10) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    flex-shrink: 0;
    transition: background 220ms ease;
}

.bento-card:hover .bento-icon-wrap {
    background: linear-gradient(135deg, rgba(36, 89, 104, 0.14) 0%, rgba(82, 171, 152, 0.18) 100%);
}

.bento-icon-wrap svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-primary);
    transition: stroke 220ms ease;
}

.bento-card:hover .bento-icon-wrap svg {
    stroke: var(--color-accent);
}

.bento-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: var(--space-xs);
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-xs);
}

.bento-description {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.security-section {
    padding: var(--space-4xl) var(--space-md);
    background-color: var(--color-text-main);
    color: var(--color-white);
}

.security-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.security-section .section-label {
    color: var(--color-accent);
}

.security-section .section-title-left {
    color: var(--color-white);
}

.security-description {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.security-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.security-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.security-feature-icon svg {
    width: 100%;
    height: 100%;
}

.security-feature-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
}

.security-feature-text strong {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--color-white);
}

.security-feature-text span {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
}

.security-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-graphic {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-outer {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.shield-inner {
    width: 80px;
    height: 80px;
    color: var(--color-white);
}

.shield-inner svg {
    width: 100%;
    height: 100%;
}

.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shield-ring-1 {
    width: 160px;
    height: 160px;
    animation: ringPulse 3s ease-in-out infinite;
}

.shield-ring-2 {
    width: 200px;
    height: 200px;
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.shield-ring-3 {
    width: 240px;
    height: 240px;
    animation: ringPulse 3s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.1; transform: scale(1.05); }
}

/* Security section */

.sec-section {
    padding: var(--space-4xl) var(--space-md);
    background:
        radial-gradient(ellipse 70% 60% at 80% 30%, rgba(82, 171, 152, 0.10) 0%, transparent 60%),
        linear-gradient(148deg, #091420 0%, #162d3e 55%, #1f4558 100%);
    position: relative;
    overflow: hidden;
}


.sec-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--space-4xl);
    position: relative;
    z-index: 1;
}

.sec-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.sec-headline {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.92);
    line-height: 0.95;
    margin-bottom: 1.2rem;
}

.sec-subhead {
    font-size: var(--font-size-sm);
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.7;
    margin: 0;
}

.sec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1040px;
    margin: 0 auto var(--space-xl);
    position: relative;
    z-index: 2;
}

.sec-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.sec-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(82, 171, 152, 0.3);
    transform: translateY(-4px);
}

.sec-num {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--color-accent);
    margin-bottom: 1.2rem;
}

.sec-term {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 900;
    color: rgba(245, 245, 245, 0.9);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 0.95;
    margin: 0 0 1.2rem;
    overflow: hidden;
}

.sec-divider {
    width: 28px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 1px;
    margin-bottom: 1.1rem;
    opacity: 0.6;
}

.sec-desc {
    font-size: var(--font-size-sm);
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.7;
    margin: 0 0 auto;
    flex: 1;
    padding-bottom: 1.5rem;
}

.sec-badge {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(82, 171, 152, 0.5);
    margin-top: auto;
}

.sec-footer-note {
    text-align: center;
    font-size: var(--font-size-sm);
    color: rgba(245, 245, 245, 0.3);
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .sec-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .sec-grid {
        grid-template-columns: 1fr;
    }

    .sec-term {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }
}

.faq-section {
    padding: var(--space-4xl) var(--space-md);
    background-color: var(--color-white);
}

.final-cta-section {
    padding: var(--space-4xl) var(--space-md);
    background: linear-gradient(
        180deg,
        var(--color-background) 0%,
        var(--color-primary-soft) 50%,
        #e8d5e0 100%
    );
    overflow: hidden;
}

.final-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.15;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.final-cta-description {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.final-cta-trust {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.final-cta-trust .trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.final-cta-trust .trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.final-cta-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.phone-mockup-large {
    position: relative;
    z-index: 2;
}

.phone-frame-large {
    width: 260px;
    height: 520px;
    background: linear-gradient(160deg, #1c1c1e 0%, #2a2a2c 55%, #1c1c1e 100%);
    border-radius: 36px;
    padding: 5px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07),
        0 32px 80px rgba(0, 0, 0, 0.30),
        0 10px 28px rgba(0, 0, 0, 0.15);
    position: relative;
}

.phone-notch-large {
    display: none;
}

.phone-screen-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--color-primary-soft), var(--color-white));
    border-radius: 31px;
    overflow: hidden;
}

.phone-home-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
}

.floating-card {
    position: absolute;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 60px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 80px;
    left: -30px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-label {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-card-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-main);
}

.floating-card-change {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.floating-card-change.positive {
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .get-started-hero {
        min-height: auto;
        padding: var(--space-3xl) var(--space-md);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
        padding: var(--space-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .timeline-line {
        display: none;
    }

    .step-card {
        text-align: center;
    }

    .step-card:hover {
        transform: translateY(-4px);
    }

    .step-number-wrapper {
        width: 48px;
        height: 48px;
        margin: 0 auto;
    }

    .step-icon {
        display: none;
    }

    .features-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .security-visual {
        order: -1;
        margin-bottom: var(--space-xl);
    }

    .security-features {
        align-items: center;
    }

    .security-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-cta-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .final-cta-buttons {
        justify-content: center;
    }

    .final-cta-trust {
        justify-content: center;
    }

    .final-cta-visual {
        min-height: 450px;
    }

    .floating-card-1 {
        right: 10px;
    }

    .floating-card-2 {
        left: 10px;
    }
}

@media (max-width: 600px) {
    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .features-bento {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-download-group {
        flex-direction: column;
        align-items: center;
    }

    .app-store-btn-large,
    .google-play-btn-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-buttons .app-store-btn-large,
    .final-cta-buttons .google-play-btn-large {
        width: 100%;
        max-width: 280px;
    }

    .phone-frame-large {
        width: 220px;
        height: 440px;
    }

    .floating-card {
        padding: var(--space-sm);
    }

    .floating-card-value {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .final-cta-title {
        font-size: 1.5rem;
    }

    .final-cta-visual {
        min-height: 380px;
    }

    .floating-card-1,
    .floating-card-2 {
        display: none;
    }
}

/* QR Code */
.qr-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-md);
    background-color: var(--color-white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.qr-code-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.qr-code-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

@media (max-width: 600px) {
    .qr-code-wrapper {
        display: none;
    }
}