/* ChaseCase Page Styles */

.chasecase-page {
    background-color: #0a0a0a;
    color: #e4e4e7;
}

.chasecase-article {
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #e4e4e7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    padding-bottom: 6rem;
    position: relative;
    overflow-x: hidden;
}

/* Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: #3b82f6;
    z-index: 100;
    width: 0%;
    transition: width 0.1s ease;
}

/* Background Noise */
.chasecase-noise {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Hero Section */
.chasecase-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 6rem 1.5rem 4rem;
    z-index: 10;
    background: linear-gradient(to bottom, #0a0a0a, #0a0a0a 95%, #05101e);
}

@media (min-width: 768px) {
    .chasecase-hero {
        padding: 8rem 3rem 4rem;
    }
}

.chasecase-back-link {
    position: absolute;
    top: 2rem;
    left: 1.5rem;
    z-index: 50;
}

@media (min-width: 768px) {
    .chasecase-back-link {
        top: 3rem;
        left: 3rem;
    }
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
    transition: color 0.3s;
}

.back-link:hover {
    color: #ffffff;
}

.back-link svg {
    transition: transform 0.3s;
}

.back-link:hover svg {
    transform: translateX(-4px);
}

/* Stickers */
.chasecase-sticker {
    position: absolute;
    z-index: 20;
    pointer-events: auto;
}

.sticker-top-right {
    top: 20%;
    right: 10%;
}

.sticker-bottom-left {
    bottom: 20%;
    left: 10%;
}

@media (max-width: 767px) {
    .chasecase-sticker {
        display: none;
    }
}

.sticker-badge {
    background: #117ACA;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(12px);
}

.sticker-icon-bg {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem;
    border-radius: 9999px;
}

.sticker-quote {
    background: white;
    color: black;
    padding: 1rem 1.5rem;
    border-radius: 1rem 1rem 1rem 0.25rem;
    font-weight: 500;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(229, 231, 235, 0.2);
    max-width: 240px;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.4;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* Hero Content */
.chasecase-hero-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 20;
}

.chasecase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
    color: #93c5fd;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(12px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: #60a5fa;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.chasecase-title {
    font-size: 4.5rem;
    line-height: 0.8;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #ffffff, #ffffff, #71717a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    mix-blend-mode: overlay;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .chasecase-title {
        font-size: 10rem;
    }
}

.chasecase-subtitle {
    font-size: 1.125rem;
    color: #a1a1aa;
    max-width: 42rem;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .chasecase-subtitle {
        font-size: 1.5rem;
    }
}

.highlight {
    color: #e4e4e7;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.scroll-line {
    width: 1px;
    height: 3rem;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

/* Metadata Bar */
.chasecase-metadata {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 40;
}

.metadata-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
}

@media (min-width: 768px) {
    .metadata-content {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem 3rem;
    }
}

.metadata-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metadata-item h4 {
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.625rem;
    font-weight: 700;
}

.metadata-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #e4e4e7;
}

@media (min-width: 768px) {
    .metadata-item p {
        font-size: 1rem;
    }
}

/* Main Content */
.chasecase-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 1.5rem 0;
}

@media (min-width: 768px) {
    .chasecase-content {
        padding: 8rem 3rem 0;
    }
}

.chasecase-section {
    margin-bottom: 10rem;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .section-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.section-header {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .section-header {
        grid-column: span 4;
        position: sticky;
        top: 8rem;
        align-self: start;
    }
}

.section-title {
    font-size: 1.875rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #e4e4e7;
}

.section-body {
    grid-column: span 1;
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.75;
    font-weight: 300;
}

@media (min-width: 768px) {
    .section-body {
        grid-column: span 8;
    }
}

.section-body p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.subsection-title:first-child {
    margin-top: 0;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.impact-list li {
    padding: 0.5rem 0;
    color: #a1a1aa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-list li:last-child {
    border-bottom: none;
}

.takeaway-item {
    margin-bottom: 3rem;
}

.takeaway-item:last-child {
    margin-bottom: 0;
}

.nda-notice {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(39, 39, 42, 0.3);
    border-left: 3px solid #60a5fa;
    border-radius: 0.5rem;
}

.contact-info {
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #ffffff;
}

.footer-message {
    margin-top: 1rem;
    color: #a1a1aa;
    font-style: italic;
}

/* Case Study Images */
.case-image-container {
    margin: 2rem 0;
    width: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
    background: rgba(39, 39, 42, 0.3);
}

.case-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.case-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .case-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.case-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
    margin: 2rem 0;
    background: rgba(39, 39, 42, 0.3);
}

/* Float Animations */
.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-animation-delayed {
    animation: float-delayed 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

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

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

/* Problem Section */
.chasecase-problem {
    position: relative;
    padding: 6rem 2rem;
    background: #0e1b2e;
    border-radius: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    margin-bottom: 10rem;
}

@media (min-width: 768px) {
    .chasecase-problem {
        padding: 6rem 5rem;
    }
}

.chasecase-problem::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    filter: blur(100px);
    transition: background 0.7s;
}

.chasecase-problem:hover::before {
    background: rgba(59, 130, 246, 0.3);
}

.chasecase-problem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 9999px;
    filter: blur(100px);
}

.problem-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.problem-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.problem-title {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.2;
    max-width: 64rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .problem-title {
        font-size: 3rem;
    }
}

.italic {
    font-style: italic;
}

.highlight-blue {
    color: #60a5fa;
}

.problem-attribution {
    max-width: 36rem;
    color: rgba(191, 219, 254, 0.6);
    font-family: 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
}

.problem-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.3), transparent);
    margin: 1rem 0;
}

.problem-text {
    max-width: 42rem;
    color: rgba(191, 219, 254, 0.8);
    line-height: 1.75;
}

.bold {
    color: #ffffff;
    font-weight: 700;
}

/* Design Section */
.design-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .design-header {
        flex-direction: row;
    }
}

.section-subtitle {
    color: #71717a;
}

.color-palette {
    display: flex;
    gap: 0.5rem;
}

.color-swatch {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .design-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.design-card {
    padding: 2rem;
    background: #18181b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.design-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #71717a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 700;
}

.design-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.typography-sample {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.type-name {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.25rem;
}

.type-label {
    color: #71717a;
    font-size: 0.875rem;
}

.typography-preview {
    padding: 1rem;
    background: rgba(39, 39, 42, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.type-h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.type-h2 {
    font-size: 1.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.type-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.component-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 0.75rem 1.5rem;
    background: #117ACA;
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(17, 122, 202, 0.2);
    cursor: pointer;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: #18181b;
    color: #d4d4d8;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    border: 1px solid #3f3f46;
    cursor: pointer;
}

.component-card {
    padding: 1rem;
    background: white;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.component-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #dbeafe;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}

.component-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    flex: 1;
}

.placeholder-line {
    height: 0.5rem;
    width: 6rem;
    background: #e4e4e7;
    border-radius: 0.25rem;
}

.placeholder-line.short {
    width: 4rem;
    height: 0.375rem;
}

/* Solution Section */
.chasecase-solution {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 10rem;
}

.solution-feature {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .solution-feature {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-feature.reverse {
        direction: rtl;
    }
    
    .solution-feature.reverse > * {
        direction: ltr;
    }
}

.phone-mockup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: black;
    border: 8px solid #27272a;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.5s;
}

.phone-frame:hover {
    transform: scale(1.02);
}

.phone-frame.dark {
    border-color: #27272a;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5rem;
    width: 6rem;
    background: black;
    border-radius: 0 0 0.75rem 0.75rem;
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    color: black;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.phone-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #71717a;
}

/* Mockup Content */
.mockup-header {
    background: #117ACA;
    padding: 1.5rem;
    padding-bottom: 2rem;
    color: white;
}

.mockup-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.mockup-nav-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
}

.mockup-nav-title {
    font-weight: 700;
}

.mockup-balance {
    text-align: center;
    margin-bottom: 1rem;
}

.balance-label {
    font-size: 0.875rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.balance-amount {
    font-size: 2.25rem;
    font-weight: 700;
}

.mockup-content {
    background: #fafafa;
    flex: 1;
    height: 100%;
    margin-top: -1.5rem;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1.5rem;
    position: relative;
    z-index: 10;
    overflow-y: auto;
}

.mockup-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mockup-section-header h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e293b;
}

.badge-count {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 700;
    background: #dbeafe;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.mission-card {
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mission-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-icon.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.mission-icon.orange {
    background: #fed7aa;
    color: #ea580c;
}

.mission-info {
    flex: 1;
}

.mission-title {
    font-weight: 700;
    color: #1e293b;
}

.mission-reward {
    font-size: 0.75rem;
    color: #16a34a;
    font-weight: 700;
}

.mission-checkbox {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    border: 2px solid #e2e8f0;
}

.solution-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.solution-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.solution-icon.blue {
    background: #3b82f6;
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.2);
}

.solution-icon.green {
    background: #22c55e;
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.2);
}

.solution-title {
    font-size: 2.25rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.solution-description {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.75;
}

.solution-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.list-number {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solution-list p {
    color: #d4d4d8;
}

.outcome-card {
    padding: 1.5rem;
    background: #18181b;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-card h4 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.outcome-card p {
    color: #a1a1aa;
    font-size: 0.875rem;
}

.highlight-green {
    color: #4ade80;
    font-weight: 700;
}

/* Savings Mockup */
.mockup-image-header {
    height: 40%;
    background: #1e293b;
    position: relative;
}

.mockup-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
}

.image-nav {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
}

.image-nav .mockup-nav-icon {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-title {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    color: white;
}

.image-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.image-heading {
    font-size: 1.875rem;
    font-weight: 700;
}

.mockup-savings-content {
    flex: 1;
    background: white;
    position: relative;
    margin-top: -1rem;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.savings-progress {
    width: 100%;
    margin-bottom: 2rem;
}

.savings-amounts {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.savings-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.savings-goal {
    color: #64748b;
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.25rem;
}

.progress-bar {
    height: 1rem;
    width: 100%;
    background: #f1f5f9;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #117ACA;
    border-radius: 9999px;
}

.btn-add-money {
    width: 100%;
    padding: 1rem;
    background: #117ACA;
    color: white;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 20px 25px -5px rgba(17, 122, 202, 0.3);
    border: none;
    margin-bottom: 1rem;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.1s;
}

.btn-add-money:active {
    transform: scale(0.95);
}

.btn-edit-goal {
    color: #64748b;
    font-weight: 700;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Reflection Section */
.chasecase-reflection {
    background: linear-gradient(to bottom right, #18181b, #18181b, #000000);
    padding: 2.5rem 2.5rem;
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    margin-bottom: 8rem;
}

@media (min-width: 768px) {
    .chasecase-reflection {
        padding: 5rem;
    }
}

.chasecase-reflection::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    filter: blur(100px);
    pointer-events: none;
}

.reflection-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

@media (min-width: 768px) {
    .reflection-content {
        text-align: left;
    }
}

.reflection-title {
    font-size: 2.25rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #e4e4e7;
    margin-bottom: 2rem;
}

.reflection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    color: #a1a1aa;
}

@media (min-width: 768px) {
    .reflection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.reflection-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reflection-item h4 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .reflection-item h4 {
        justify-content: flex-start;
    }
}

.reflection-item h4 svg {
    color: #60a5fa;
}

.reflection-item p {
    line-height: 1.75;
}

/* Navigation Footer */
.chasecase-nav-footer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    margin-top: 8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #71717a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.nav-footer-link {
    color: #71717a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.nav-footer-link:hover {
    color: #ffffff;
}

.nav-footer-link svg {
    transition: transform 0.3s;
}

.nav-footer-link:hover svg {
    transform: translateX(-4px);
}

.nav-footer-link.next {
    color: #e4e4e7;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    gap: 1rem;
}

.nav-footer-link.next:hover {
    color: #60a5fa;
}

.nav-footer-link.next:hover svg {
    transform: translateX(4px);
}


/* Icon Styles */
.icon-arrow-left,
.icon-users,
.icon-sparkles,
.icon-layout,
.icon-palette,
.icon-check,
.icon-target,
.icon-credit-card,
.icon-chevron-right {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

