/* Hope - Modern Dating App Homepage (Mainstream-inspired) */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap");

/* Project theme: #894BEA (0xFF894BEA) */
:root {
    --hope-primary: #894bea;
    --hope-primary-50: #f5f3ff;
    --hope-primary-100: #ede9fe;
    --hope-primary-200: #ddd6fe;
    --hope-primary-300: #c4b5fd;
    --hope-primary-400: #a78bfa;
    --hope-primary-500: #894bea;
    --hope-primary-600: #7c3aed;
    --hope-primary-700: #6d28d9;
    --hope-primary-800: #5b21b6;
    --hope-cream: #fefcfb;
    --hope-bg: #fafafa;
    --hope-text: #0f172a;
    --hope-text-muted: #0f172a;
    --hope-white: #ffffff;
    --hope-radius: 20px;
    --hope-radius-xl: 28px;
    --hope-radius-full: 9999px;
    --hope-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --hope-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --hope-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --hope-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset layout for full-bleed */
body.hope-home .main-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}
body.hope-home .main-container > .offset-md-1.col-md-10 {
    max-width: 100%;
    margin-left: 0;
    flex: 0 0 100%;
}

/* ---------- First screen: full-screen hero with bg.jpg ---------- */
.hope-hero {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}
.hope-hero--fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Home hero starts at viewport top; nav overlays it */
body.hope-home .hope-hero--fullscreen {
    min-height: 100vh;
}

/* Home: Tantan-style — transparent at top, white after scroll */
body.hope-home .hope-nav {
    background: transparent !important;
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0.75rem 0 !important;
    z-index: 1100;
    align-items: center;
    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}
body.hope-home .hope-nav .container {
    width: 100%;
}
body.hope-home .hope-nav .navbar-brand {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition:
        color 0.25s ease,
        text-shadow 0.25s ease;
}
body.hope-home .hope-nav .navbar-brand img {
    filter: brightness(0) invert(1);
    transition: filter 0.25s ease;
}
body.hope-home .hope-nav .nav-links a {
    color: rgba(255, 255, 255, 0.92);
    transition:
        color 0.2s ease,
        background 0.2s ease;
}
body.hope-home .hope-nav .hope-nav-toggle {
    color: #fff;
}
body.hope-home .hope-nav .nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
    body.hope-home .hope-nav .nav-links {
        background: rgba(15, 23, 42, 0.78);
        border-radius: 12px;
        padding: 0.5rem;
    }
}
/* Scrolled: solid white nav (Tantan-style) */
body.hope-home .hope-nav.hope-nav--scrolled {
    background: #fff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
body.hope-home .hope-nav.hope-nav--scrolled .hope-nav-toggle {
    color: #0f172a;
}
body.hope-home .hope-nav.hope-nav--scrolled .navbar-brand {
    color: #0f172a;
    text-shadow: none;
}
body.hope-home .hope-nav.hope-nav--scrolled .navbar-brand img {
    /* White source logo -> dark icon when header turns white */
    filter: brightness(0) saturate(100%);
}
body.hope-home .hope-nav.hope-nav--scrolled .nav-links a {
    color: #0f172a;
}
body.hope-home .hope-nav.hope-nav--scrolled .nav-links a:hover {
    color: #894bea;
    background: rgba(137, 75, 234, 0.06);
}
@media (max-width: 767px) {
    body.hope-home .hope-nav.hope-nav--scrolled .nav-links {
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }
}
.hope-hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.hope-hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0;
    animation: hope-hero-bg-fade 24s ease-in-out infinite;
}
.hope-hero-bg-slide--1 {
    background-image: url(/img/bg-1.jpg);
    animation-delay: 0s;
}
.hope-hero-bg-slide--2 {
    background-image: url(/img/bg-2.jpg);
    animation-delay: 6s;
}
.hope-hero-bg-slide--3 {
    background-image: url(/img/bg-3.jpg);
    animation-delay: 12s;
}
.hope-hero-bg-slide--4 {
    background-image: url(/img/bg-4.jpg);
    animation-delay: 18s;
}
@keyframes hope-hero-bg-fade {
    0% {
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
.hope-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.5) 0%,
        rgba(15, 23, 42, 0.35) 50%,
        rgba(15, 23, 42, 0.5) 100%
    );
    pointer-events: none;
}
.hope-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}
.hope-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(137, 75, 234, 0.25);
    border-radius: var(--hope-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--hope-primary-600);
    margin-bottom: 1.5rem;
    box-shadow: var(--hope-shadow-sm);
}
.hope-hero-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--hope-white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hope-hero-title .highlight {
    background: linear-gradient(135deg, #c4b5fd, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.hope-hero-sub {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.hope-hero-cta-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.hope-store-links {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.hope-store-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}
.hope-store-link:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}
.hope-store-link img {
    display: block;
    height: 52px;
    width: auto;
}
.hope-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(
        135deg,
        var(--hope-primary-500),
        var(--hope-primary-600)
    );
    color: var(--hope-white) !important;
    border-radius: var(--hope-radius-full);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    transition:
        transform var(--hope-transition),
        box-shadow var(--hope-transition);
}
.hope-hero-cta:hover {
    color: var(--hope-white) !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.hope-hero-cta img {
    height: 28px;
    width: auto;
}

/* ---------- Second screen: 4-phone fan + copy (natural height, fan ~50% width) ---------- */
.hope-second {
    display: flex;
    align-items: center;
    padding: 6rem 1rem 5.5rem;
    background: var(--hope-white);
}
.hope-second .container {
    width: 100%;
}
.hope-second-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
}
.hope-second-text {
    text-align: center;
}
.hope-second-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hope-primary-500);
    margin-bottom: 0.75rem;
}
.hope-second-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--hope-text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.hope-second-desc {
    font-size: 1rem;
    color: var(--hope-text-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}
.hope-second-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 260px;
}
/* Large screen: left-right layout */
@media (min-width: 992px) {
    .hope-second {
        padding: 7rem 2rem 7rem;
    }
    .hope-second-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 4rem;
        max-width: 1160px;
        width: 100%;
        margin: 0 auto;
    }
    .hope-second-text {
        flex: 0 0 auto;
        width: 100%;
        max-width: 420px;
        text-align: left;
    }
    .hope-second-label {
        margin-bottom: 1rem;
        font-size: 0.875rem;
    }
    .hope-second-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.15;
        letter-spacing: -0.03em;
    }
    .hope-second-desc {
        font-size: 1.0625rem;
        line-height: 1.7;
        max-width: 100%;
    }
    .hope-second-text .hope-second-desc {
        margin-left: 0;
        margin-right: 0;
    }
    .hope-second-phones {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        align-items: center;
        min-height: 0;
    }
}
@media (min-width: 1200px) {
    .hope-second {
        padding: 7.5rem 2.5rem 7.5rem;
    }
    .hope-second-inner {
        gap: 5rem;
        max-width: 1280px;
    }
    .hope-second-title {
        font-size: 2.25rem;
        margin-bottom: 1.5rem;
    }
    .hope-second-desc {
        font-size: 1.125rem;
    }
}
.hope-phone-stack {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 420px;
    min-height: 260px;
    margin: 0 auto;
    perspective: 1200px;
}
.hope-phone-stack-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hope-phone-frame {
    width: 120px;
    border-radius: 20px;
    overflow: hidden;
    background: #1a1a1a;
    aspect-ratio: 9 / 19.5;
}
.hope-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Stack positions: 4 phones in a row, wider spread (less overlap) */
.hope-phone-stack-item--1 {
    transform: translate(-96px, 10px) rotate(-20deg);
    z-index: 1;
}
.hope-phone-stack-item--2 {
    transform: translate(-34px, -4px) rotate(-8deg);
    z-index: 2;
}
.hope-phone-stack-item--3 {
    transform: translate(34px, -4px) rotate(8deg);
    z-index: 3;
}
.hope-phone-stack-item--4 {
    transform: translate(96px, 10px) rotate(20deg);
    z-index: 4;
}
@media (min-width: 576px) {
    .hope-phone-frame {
        width: 140px;
    }
    .hope-phone-stack-item--1 {
        transform: translate(-112px, 12px) rotate(-20deg);
    }
    .hope-phone-stack-item--2 {
        transform: translate(-40px, -6px) rotate(-8deg);
    }
    .hope-phone-stack-item--3 {
        transform: translate(40px, -6px) rotate(8deg);
    }
    .hope-phone-stack-item--4 {
        transform: translate(112px, 12px) rotate(20deg);
    }
}
@media (min-width: 768px) {
    .hope-phone-stack {
        max-width: 660px;
    }
    .hope-phone-frame {
        width: 160px;
        border-radius: 24px;
    }
    .hope-phone-stack-item--1 {
        transform: translate(-130px, 14px) rotate(-18deg);
    }
    .hope-phone-stack-item--2 {
        transform: translate(-44px, -8px) rotate(-6deg);
    }
    .hope-phone-stack-item--3 {
        transform: translate(44px, -8px) rotate(6deg);
    }
    .hope-phone-stack-item--4 {
        transform: translate(130px, 14px) rotate(18deg);
    }
}
@media (min-width: 992px) {
    .hope-phone-stack {
        max-width: 720px;
        min-height: 320px;
    }
    .hope-phone-frame {
        width: 180px;
        border-radius: 28px;
    }
    .hope-phone-stack-item--1 {
        transform: translate(-152px, 16px) rotate(-16deg);
    }
    .hope-phone-stack-item--2 {
        transform: translate(-52px, -10px) rotate(-5deg);
    }
    .hope-phone-stack-item--3 {
        transform: translate(52px, -10px) rotate(5deg);
    }
    .hope-phone-stack-item--4 {
        transform: translate(152px, 16px) rotate(16deg);
    }
}
@media (min-width: 1200px) {
    .hope-phone-stack {
        max-width: 800px;
        min-height: 380px;
    }
    .hope-phone-frame {
        width: 200px;
        border-radius: 30px;
    }
    .hope-phone-stack-item--1 {
        transform: translate(-168px, 18px) rotate(-18deg);
    }
    .hope-phone-stack-item--2 {
        transform: translate(-58px, -12px) rotate(-6deg);
    }
    .hope-phone-stack-item--3 {
        transform: translate(58px, -12px) rotate(6deg);
    }
    .hope-phone-stack-item--4 {
        transform: translate(168px, 18px) rotate(18deg);
    }
}

/* ---------- Trust strip (single line, premium) ---------- */
.hope-trust {
    background: linear-gradient(
        90deg,
        var(--hope-primary-600) 0%,
        var(--hope-primary-700) 100%
    );
    color: var(--hope-white);
    padding: 1rem 1.5rem;
    text-align: center;
}
.hope-trust p {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    opacity: 0.98;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ---------- How it works (3 steps, Hinge/Bumble style) ---------- */
.hope-how {
    padding: 4.5rem 1rem;
    background: var(--hope-white);
}
.hope-how .section-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hope-primary-500);
    text-align: center;
    margin-bottom: 0.5rem;
}
.hope-how .section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--hope-text);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}
.hope-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .hope-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}
.hope-step {
    text-align: center;
    padding: 1.5rem 1rem;
}
.hope-step-num {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(
        135deg,
        var(--hope-primary-100),
        var(--hope-primary-200)
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--hope-primary-600);
}
.hope-step h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--hope-text);
    margin-bottom: 0.5rem;
}
.hope-step p {
    font-size: 0.9375rem;
    color: var(--hope-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ---------- Why Hope (value cards) ---------- */
.hope-features {
    padding: 4.5rem 1rem;
    background: var(--hope-bg);
}
.hope-features .section-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hope-primary-500);
    text-align: center;
    margin-bottom: 0.5rem;
}
.hope-features .section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--hope-text);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.hope-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.hope-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--hope-radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    background: var(--hope-white);
    color: var(--hope-primary-600);
    border: 1px solid var(--hope-primary-200);
    box-shadow: var(--hope-shadow-sm);
}
.hope-feature-card {
    background: var(--hope-white);
    border-radius: var(--hope-radius);
    padding: 2rem 1.5rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--hope-shadow-sm);
    transition:
        transform var(--hope-transition),
        box-shadow var(--hope-transition),
        border-color var(--hope-transition);
}
.hope-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hope-shadow);
    border-color: var(--hope-primary-100);
}
.hope-feature-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(
        135deg,
        var(--hope-primary-400),
        var(--hope-primary-600)
    );
    color: var(--hope-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.hope-feature-card .icon-wrap svg {
    width: 26px;
    height: 26px;
}
.hope-feature-card h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--hope-text);
    margin-bottom: 0.5rem;
}
.hope-feature-card p {
    font-size: 0.9375rem;
    color: var(--hope-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---------- Features for You (list) ---------- */
.hope-features-list {
    padding: 3.5rem 1rem;
    background: var(--hope-white);
}
.hope-features-list .section-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hope-primary-500);
    text-align: center;
    margin-bottom: 0.5rem;
}
.hope-features-list .section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--hope-text);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.hope-feature-list {
    max-width: 560px;
    margin: 0 auto;
    padding-left: 1.25rem;
    list-style: disc;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--hope-text);
}
.hope-feature-list li {
    margin-bottom: 0.75rem;
}
.hope-feature-list strong {
    color: var(--hope-primary-700);
}

/* ---------- Quote / social proof strip ---------- */
.hope-quote {
    padding: 3rem 1.5rem;
    background: linear-gradient(
        135deg,
        var(--hope-primary-50) 0%,
        var(--hope-cream) 100%
    );
    text-align: center;
}
.hope-quote blockquote {
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.hope-quote p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--hope-text);
    line-height: 1.5;
}
.hope-quote .attribution {
    font-size: 0.875rem;
    color: var(--hope-text-muted);
    margin-top: 0.75rem;
}

/* ---------- Content (SEO) ---------- */
.hope-content {
    padding: 4rem 1rem 4rem;
    background: var(--hope-white);
}
.hope-content .content-inner {
    max-width: 680px;
    margin: 0 auto;
}
.hope-content h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--hope-text);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}
.hope-content h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--hope-primary-700);
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
}
.hope-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--hope-text);
    margin-bottom: 1rem;
}
.hope-content a {
    color: var(--hope-primary-600);
    font-weight: 600;
    text-decoration: none;
}
.hope-content a:hover {
    text-decoration: underline;
}

/* ---------- Final CTA ---------- */
.hope-cta {
    padding: 4.5rem 1.5rem;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hope-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 30% 50%,
        rgba(137, 75, 234, 0.07) 0%,
        transparent 55%
    );
    pointer-events: none;
}
.hope-cta .container {
    position: relative;
    z-index: 1;
}
.hope-cta-card {
    max-width: 760px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 2rem 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
    border: 1px solid rgba(137, 75, 234, 0.15);
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}
.hope-cta .hope-cta-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hope-primary-600);
    font-weight: 700;
}
.hope-cta h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--hope-text);
    margin-bottom: 0.65rem;
    letter-spacing: -0.02em;
}
.hope-cta .hope-cta-sub {
    font-size: 1rem;
    color: var(--hope-text-muted);
    margin: 0 auto 1.25rem;
    max-width: 520px;
    line-height: 1.6;
}
.hope-cta .hope-store-links {
    justify-content: center;
    gap: 0.85rem;
}
.hope-cta .hope-store-link img {
    height: 54px;
}
.hope-cta .hope-cta-note {
    margin: 0.95rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
    letter-spacing: 0.02em;
}

@media (min-width: 768px) {
    .hope-second-phones {
        min-height: 320px;
    }
    .hope-phone-stack {
        min-height: 340px;
    }
    .hope-cta-card {
        padding: 2.4rem 2rem;
    }
    .hope-cta .hope-store-link img {
        height: 58px;
    }
}
@media (max-width: 767px) {
    .hope-store-link img {
        height: 46px;
    }
}
