* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --accent: #1a1a1a;
    --water-color: rgba(120, 60, 180, 0.3);
    --water-color-2: rgba(100, 80, 200, 0.25);
    --water-color-3: rgba(140, 40, 160, 0.2);
    --bubble-color: rgba(150, 100, 220, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top, rgba(20, 10, 30, 0.8) 0%, var(--bg-darker) 50%),
        linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 1;
}

.water-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 50%, var(--water-color-2) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 80% 80%, var(--water-color) 0%, transparent 55%),
        radial-gradient(ellipse 600px 700px at 40% 20%, var(--water-color-3) 0%, transparent 50%),
        radial-gradient(ellipse 500px 400px at 60% 70%, var(--water-color-2) 0%, transparent 45%),
        radial-gradient(ellipse 900px 600px at 10% 90%, var(--water-color-3) 0%, transparent 50%);
    animation: waterFlow 25s ease-in-out infinite;
    opacity: 0.7;
}

.water-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle 300px at 30% 40%, var(--bubble-color) 0%, transparent 40%),
        radial-gradient(circle 200px at 70% 60%, var(--bubble-color) 0%, transparent 35%),
        radial-gradient(circle 250px at 50% 30%, var(--bubble-color) 0%, transparent 38%),
        radial-gradient(circle 180px at 15% 75%, var(--bubble-color) 0%, transparent 32%),
        radial-gradient(circle 220px at 85% 25%, var(--bubble-color) 0%, transparent 36%);
    animation: bubblesFloat 30s ease-in-out infinite;
    opacity: 0.5;
}

.water-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(120, 60, 180, 0.03) 2px,
            rgba(120, 60, 180, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(100, 80, 200, 0.03) 2px,
            rgba(100, 80, 200, 0.03) 4px
        );
    animation: wavePattern 40s linear infinite;
    opacity: 0.4;
}

@keyframes waterFlow {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-30px) scale(1.05) rotate(2deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) scale(1.1) rotate(0deg);
        opacity: 0.85;
    }
    75% {
        transform: translateY(-35px) scale(1.08) rotate(-2deg);
        opacity: 0.75;
    }
}

@keyframes bubblesFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-40px) translateX(20px) scale(1.1);
        opacity: 0.6;
    }
    66% {
        transform: translateY(-20px) translateX(-15px) scale(0.95);
        opacity: 0.55;
    }
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 255, 255, 0.2);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 60px rgba(255, 255, 255, 0.3);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(20, 10, 30, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(15, 5, 25, 0.5) 0%, transparent 50%),
        linear-gradient(to bottom, 
            var(--bg-dark) 0%, 
            var(--bg-darker) 5%,
            var(--bg-darker) 95%,
            var(--bg-dark) 100%);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        var(--bg-dark) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.experience-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 400px at 20% 30%, var(--water-color-3) 0%, transparent 50%),
        radial-gradient(circle 350px at 80% 70%, var(--water-color-2) 0%, transparent 45%);
    opacity: 0.15;
    animation: experienceBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes experienceBackground {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.2;
    }
}

.experience-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline {
    position: relative;
    padding: 40px 0;
    z-index: 1;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(120, 60, 180, 0.4) 10%,
        rgba(255, 255, 255, 0.4) 20%, 
        rgba(255, 255, 255, 0.5) 30%,
        rgba(255, 255, 255, 0.5) 70%,
        rgba(255, 255, 255, 0.4) 80%,
        rgba(120, 60, 180, 0.4) 90%,
        transparent 100%);
    transform: translateX(-50%);
    box-shadow: 
        0 0 10px rgba(120, 60, 180, 0.3),
        0 0 20px rgba(120, 60, 180, 0.2);
    animation: timelinePulse 3s ease-in-out infinite;
}

.timeline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.6) 20%, 
        rgba(255, 255, 255, 0.6) 80%, 
        transparent 100%);
    transform: translateX(-50%);
    animation: timelineGlow 2s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 
            0 0 10px rgba(120, 60, 180, 0.3),
            0 0 20px rgba(120, 60, 180, 0.2);
    }
    50% {
        opacity: 0.8;
        box-shadow: 
            0 0 15px rgba(120, 60, 180, 0.5),
            0 0 30px rgba(120, 60, 180, 0.3),
            0 0 40px rgba(120, 60, 180, 0.2);
    }
}

@keyframes timelineGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--text-white) 0%, rgba(120, 60, 180, 0.8) 100%);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(120, 60, 180, 0.4),
        0 0 45px rgba(120, 60, 180, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item.animate::before {
    animation: timelineDotPulse 2s ease-in-out infinite;
}

.timeline-item:hover::before {
    width: 24px;
    height: 24px;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(120, 60, 180, 0.6),
        0 0 60px rgba(120, 60, 180, 0.4);
}

@keyframes timelineDotPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(1.1);
        opacity: 0.9;
    }
}

.timeline-content {
    background: 
        linear-gradient(135deg, 
            rgba(26, 26, 26, 0.95) 0%, 
            rgba(20, 20, 20, 0.95) 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(120, 60, 180, 0.1) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at top right, 
            rgba(120, 60, 180, 0.1) 0%, 
            transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline-content:hover {
    transform: translateX(-10px) translateY(-5px);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(120, 60, 180, 0.2),
        inset 0 0 20px rgba(120, 60, 180, 0.05);
    border-color: rgba(120, 60, 180, 0.3);
}

.timeline-content:hover::after {
    opacity: 1;
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(10px) translateY(-5px);
}

.timeline-item:nth-child(even) .timeline-content::after {
    background: 
        radial-gradient(circle at top left, 
            rgba(120, 60, 180, 0.1) 0%, 
            transparent 50%);
}

.timeline-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    transition: text-shadow 0.3s ease;
}

.timeline-content:hover h3 {
    text-shadow: 
        0 0 10px rgba(120, 60, 180, 0.5),
        0 0 20px rgba(120, 60, 180, 0.3);
}

.timeline-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(120, 60, 180, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(120, 60, 180, 0.2);
    transition: all 0.3s ease;
}

.timeline-content:hover .timeline-date {
    background: rgba(120, 60, 180, 0.2);
    border-color: rgba(120, 60, 180, 0.4);
    color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(120, 60, 180, 0.2);
}

.timeline-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.timeline-content:hover .timeline-description {
    color: rgba(255, 255, 255, 0.95);
}

/* Metric Sections */
.dollars-section,
.savings-section {
    padding: 150px 0;
    text-align: center;
    background: linear-gradient(to bottom,
        var(--bg-darker) 0%,
        var(--bg-dark) 10%,
        var(--bg-dark) 90%,
        var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dollars-section::after,
.savings-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--bg-darker) 100%);
    pointer-events: none;
    z-index: 1;
}

.dollars-section.visible,
.savings-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.dollars-section::before,
.savings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 500px at 30% 40%, var(--water-color-2) 0%, transparent 50%),
        radial-gradient(circle 400px at 70% 60%, var(--water-color-3) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.2;
    animation: dollarsBackground 20s ease-in-out infinite;
}

@keyframes dollarsBackground {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.25;
    }
}

.dollars-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(120, 60, 180, 0.3),
        0 0 60px rgba(120, 60, 180, 0.2);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: dollarsTitleGlow 3s ease-in-out infinite;
}

@keyframes dollarsTitleGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(120, 60, 180, 0.3),
            0 0 60px rgba(120, 60, 180, 0.2);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.5),
            0 0 50px rgba(120, 60, 180, 0.4),
            0 0 80px rgba(120, 60, 180, 0.3);
    }
}

.savings-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4.8rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-bottom: 28px;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow:
        0 0 18px rgba(255, 255, 255, 0.35),
        0 0 36px rgba(120, 60, 180, 0.25),
        0 0 54px rgba(120, 60, 180, 0.18);
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: dollarsTitleGlow 3s ease-in-out infinite;
}

.dollars-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.savings-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Cases Section */
.cases-section {
    padding: 100px 0;
    background: linear-gradient(to bottom,
        var(--bg-dark) 0%,
        var(--bg-darker) 5%,
        var(--bg-darker) 100%);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cases-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, 
        var(--bg-dark) 0%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.cases-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.cases-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cases-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    cursor: grab;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    touch-action: pan-x;
}

.cases-carousel::-webkit-scrollbar {
    height: 8px;
}

.cases-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.cases-carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.cases-carousel::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.cases-carousel:active {
    cursor: grabbing;
}

.case-item {
    flex: 0 0 350px;
    min-width: 350px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.case-content {
    position: relative;
    background-color: var(--accent);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.case-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.case-placeholder {
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.nda-pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.nda-pattern-layer::before {
    content: 'NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA NDA';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    position: absolute;
    white-space: nowrap;
    transform: rotate(-45deg);
    transform-origin: center;
    top: 50%;
    left: 50%;
    width: 800%;
    margin-left: -400%;
    line-height: 2.8;
    text-align: center;
}

.nda-pattern-layer:nth-child(1)::before {
    margin-top: -300px;
}

.nda-pattern-layer:nth-child(2)::before {
    margin-top: -250px;
}

.nda-pattern-layer:nth-child(3)::before {
    margin-top: -200px;
}

.nda-pattern-layer:nth-child(4)::before {
    margin-top: -150px;
}

.nda-pattern-layer:nth-child(5)::before {
    margin-top: -100px;
}

.nda-pattern-layer:nth-child(6)::before {
    margin-top: -50px;
}

.nda-pattern-layer:nth-child(7)::before {
    margin-top: 0;
}

.nda-pattern-layer:nth-child(8)::before {
    margin-top: 50px;
}

.nda-pattern-layer:nth-child(9)::before {
    margin-top: 100px;
}

.nda-pattern-layer:nth-child(10)::before {
    margin-top: 150px;
}

.nda-pattern-layer:nth-child(11)::before {
    margin-top: 200px;
}

.nda-pattern-layer:nth-child(12)::before {
    margin-top: 250px;
}

.nda-label {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.2em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Bebas Neue', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-description {
        text-align: center;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline::after {
        left: 30px;
        transform: none;
    }

    .timeline-item {
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item::before {
        left: 30px;
    }
    
    .timeline-content h3 {
        font-size: 1.4rem;
        line-height: 1.3;
        word-break: break-word;
        hyphens: auto;
        padding-right: 10px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .case-item {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .case-content {
        height: 350px;
    }
    
    .case-placeholder::before,
    .case-placeholder::after {
        font-size: 2rem;
    }

    .dollars-title,
    .savings-title {
        font-size: clamp(2rem, 10vw, 4rem);
        letter-spacing: 0.1em;
        white-space: normal;
        line-height: 1.2;
        word-break: keep-all;
        display: inline-block;
        max-width: 100%;
    }

    .savings-subtitle {
        font-size: 0.95rem;
    }

    .cases-carousel {
        gap: 20px;
        scroll-padding: 20px;
    }

    .case-item {
        flex: 0 0 calc(85vw - 20px);
        min-width: calc(85vw - 20px);
    }
}

@media (max-width: 480px) {
    .timeline-content h3 {
        font-size: 1.2rem;
        line-height: 1.25;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .timeline::before,
    .timeline::after,
    .timeline-item::before {
        left: 25px;
    }
    
    .dollars-title,
    .savings-title {
        font-size: clamp(1.6rem, 11vw, 3rem);
        letter-spacing: 0.06em;
        line-height: 1.15;
        word-spacing: 0.1em;
    }

    .case-item {
        flex: 0 0 calc(90vw - 20px);
        min-width: calc(90vw - 20px);
    }
    
    .case-placeholder::before,
    .case-placeholder::after {
        font-size: 1.8rem;
    }

    .dollars-section,
    .savings-section {
        padding: 100px 0;
    }

    .savings-subtitle {
        font-size: 0.85rem;
    }
}

