/* ============================================
   CAMEOPUB - MAIN STYLESHEET
   ============================================ */

/* Font Imports */
@import url("https://fonts.cdnfonts.com/css/pp-neue-montreal");

@font-face {
    font-family: "PPSupplyMono";
    src: url("https://assets.codepen.io/7558/PPSupplyMono-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    --cameo-red: #D90429;
    --cameo-yellow: #F3C300;
    --cameo-black: #222222;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --background-dark: #0a0a0a;
    --font-primary: "PP Neue Montreal", sans-serif;
    --font-secondary: "PPSupplyMono", monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--background-dark);
    color: var(--text-primary);
    overflow: hidden;
    touch-action: pan-y;
    position: relative;
}

/* ============================================
   ANIMATED BACKGROUND PATTERN
   ============================================ */
.pattern-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: repeating-linear-gradient(
        135deg,
        #0a0a0a 0px,
        #0a0a0a 60px,
        rgba(10, 10, 10, 0.6) 70px,
        #1a1a1a 130px
    );
    z-index: -1;
    pointer-events: none;
}

.cube-svg {
    position: absolute;
    width: 200%;
    height: 200%;
    left: -30%;
    top: -20%;
    background: transparent;
    opacity: 0.15;
    z-index: 0;
    animation: cubeMove 18s linear infinite alternate;
}

@keyframes cubeMove {
    from {
        transform: translateY(0) scale(1);
    }
    to {
        transform: translateY(-20%) scale(1.02) rotate(1deg);
    }
}

h1 {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2, h3 {
    font-family: var(--font-primary);
    font-weight: 600;
}

p {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--cameo-red);
    color: var(--text-primary);
    border: 2px solid var(--cameo-red);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--background-dark);
}

/* Main Container */
.container {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 80px);
    overflow: hidden;
    background: transparent;
    touch-action: none;
    z-index: 10;
}

.scroller {
    position: relative;
    height: 100%;
    width: fit-content;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    will-change: transform;
    transform: translateX(0);
    touch-action: none;
    z-index: 1;
}

section {
    position: relative;
    height: 100%;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    overflow: hidden;
    background: rgba(10, 10, 10, 0.95);
    border-right: 1px solid rgba(217, 4, 41, 0.3);
}

section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--cameo-red) 50%, transparent 100%);
    z-index: 100;
    pointer-events: none;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(217, 4, 41, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(217, 4, 41, 0.3));
}

.navbar-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(217, 4, 41, 0.5));
}

.navbar-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.navbar-menu a {
    font-family: var(--font-secondary);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.navbar-menu a:hover {
    color: var(--cameo-red);
}

.navbar-menu a.active {
    color: var(--cameo-red);
    position: relative;
}

.navbar-menu a.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--cameo-red);
}

.navbar-cta {
    padding: 0.75rem 1.5rem;
    background: var(--cameo-red);
    color: var(--text-primary);
    border: 2px solid var(--cameo-red);
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-cta:hover {
    background: transparent;
    transform: translateY(-2px);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar-toggle span {
    width: 25px;
    height: 2px;
    background: var(--cameo-red);
    transition: all 0.3s ease;
}

/* ============================================
   PROGRESS BAR
   ============================================ */
.progress-bar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    height: 4px;
    transform: scaleX(0%);
    transform-origin: center left;
    background: var(--cameo-red);
    will-change: transform;
    z-index: 1001;
}

.progress-counter {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    color: var(--cameo-red);
    z-index: 1001;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(10, 10, 10, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--cameo-red);
    backdrop-filter: blur(10px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    background: transparent;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0 !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(217, 4, 41, 0.1);
    border: 1px solid var(--cameo-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    width: fit-content;
    animation: slideInRight 0.9s ease forwards;
}

.hero-badge span {
    font-family: var(--font-secondary);
    font-size: clamp(8px, 1.5vw, 10px);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.hero-title {
    font-size: clamp(2rem, 7vw, 6rem);
    color: var(--cameo-red);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.hero-title .highlight {
    color: var(--cameo-red);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-mission {
    font-size: clamp(0.9rem, 1.8vw, 1.3rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    opacity: 0;
    padding: 1rem;
    border-left: 3px solid var(--cameo-red);
    background: rgba(217, 4, 41, 0.05);
    border-radius: 0 8px 8px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
}

.hero-mission strong {
    color: var(--cameo-red);
    font-weight: 700;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    opacity: 0;
    justify-content: center;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title,
.hero-subtitle,
.hero-mission,
.hero-cta {
    transform: translateY(30px);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    height: 100%;
    background: transparent;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0 !important;
    display: flex;
}

.gallery-list {
    display: flex;
    height: 100%;
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style-type: none;
    flex-direction: column;
    flex-shrink: 0 !important;
    position: relative;
    z-index: 2;
}

.gallery-item {
    flex: 1;
    display: flex;
    align-items: stretch;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
}

.gallery-item:before {
    content: "";
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.75);
    transition: all 0.35s ease;
}

.gallery-item.active {
    flex: 6;
    cursor: default;
}

.gallery-item.active:before {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, #111111 100%);
}

.gallery-item h3 {
    font-weight: bold;
    white-space: normal;
    position: absolute;
    z-index: 30;
    opacity: 1;
    top: 50%;
    left: 50%;
    transition: top 0.35s, opacity 0.15s;
    transform-origin: 0 0;
    font-size: clamp(16px, 3vw, 24px);
    text-transform: uppercase;
    transform: translate(-50%, -50%) rotate(0deg);
    color: var(--cameo-red);
    text-align: center;
    max-width: 80%;
    line-height: 1.2;
}

.gallery-item.active h3 {
    opacity: 0;
    top: 200%;
}

.gallery-item .section-content {
    position: relative;
    z-index: 30;
    opacity: 0;
    align-self: flex-end;
    width: 100%;
    transition: all 0.35s 0.1s ease-out;
}

.gallery-item.active .section-content {
    opacity: 1;
}

.gallery-item .inner {
    position: absolute;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-column-gap: 20px;
    align-items: flex-end;
    left: 0;
    bottom: 0;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

.gallery-item.active .inner {
    opacity: 1;
}

.gallery-item .bio {
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: min-content;
    grid-gap: 24px;
}

.gallery-item .bio h2 {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cameo-red);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.gallery-item .bio p {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.6;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify;
}

@media (min-width: 768px) {
    .gallery-item .inner {
        padding: 40px;
    }

    .gallery-item .bio h2 {
        font-size: 48px;
        line-height: 48px;
    }
}

@media (min-width: 1280px) {
    .gallery-list {
        flex-direction: row;
    }

    .gallery-item h3 {
        top: 100%;
        left: 50%;
        font-size: 32px;
        transform: translate(-20px, -50%) rotate(-90deg);
    }

    .gallery-item .bio h2 {
        font-size: 64px;
        line-height: 64px;
    }

    .gallery-item .inner {
        grid-auto-flow: column;
        grid-template-columns: 460px;
        grid-column-gap: 40px;
        padding: 40px;
    }
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    background: transparent;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
}

.solutions-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.solutions-title {
    font-size: clamp(1.8rem, 6vw, 4rem);
    color: var(--cameo-red);
    margin-bottom: 4rem;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    text-align: center;
}

.expandable-card {
    width: 100%;
    max-width: 900px;
    height: 400px;
    border-radius: 12px;
    background: var(--cameo-black);
    display: flex;
    gap: 8px;
    padding: 0.6em;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(217, 4, 41, 0.3);
}

.card-panel {
    height: 100%;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.1) 0%, rgba(217, 4, 41, 0.05) 100%);
    border: 2px solid var(--cameo-red);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.card-panel:hover {
    flex: 4;
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.2) 0%, rgba(217, 4, 41, 0.1) 100%);
}

.panel-label {
    min-width: 14em;
    padding: 0.5em;
    text-align: center;
    transform: rotate(-90deg);
    transition: all 0.5s ease;
    text-transform: uppercase;
    color: var(--cameo-red);
    letter-spacing: 0.15em;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.card-panel:hover .panel-label {
    transform: rotate(0) scale(0);
    opacity: 0;
}

.panel-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
}

.card-panel:hover .panel-content {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.panel-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--cameo-red);
    margin-bottom: 1rem;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.panel-content p {
    color: var(--text-primary);
    line-height: 1.6;
    text-align: justify;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============================================
   TIMELINE SECTION - CIRCULAR CAROUSEL
   ============================================ */
.benefits-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    background: transparent;
    padding: 4rem 3rem;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    position: relative;
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
}

.benefits-header h1 {
    font-size: clamp(1.3rem, 4vw, 2.5rem);
    color: var(--cameo-red);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
}

/* Hide radio buttons */
input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.cards-container {
    --base-rotation: 0deg;
    --full-circle: 360deg;
    --radius: 35vw;
    --duration: 200ms;
    --cards-container-size: calc(var(--radius) * 2);
    --cards-container-padding: 2rem;
    --border-color: rgba(217, 4, 41, 0.3);
    --label-offset: calc(var(--radius) * -1 - 1rem);
    --label-size: 40px;
    --label-color: var(--text-primary);
    --label-color-hover: var(--cameo-red);
    --label-line-h: 0;
    --label-line-h-current: 2rem;
    --label-dot-size: 15px;
    --title-top: 1.5rem;
    --title-offset-y: 30px;
    --info-top: 5rem;
    --info-width: min(70%, 500px);
    --info-offset-y: 30px;
    box-sizing: content-box;
    position: relative;
    margin: 0 auto;
    width: var(--cards-container-size);
    height: var(--cards-container-size);
    padding: var(--cards-container-padding);
}

@media (width > 600px) {
    .cards-container {
        clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    }
}

@media (min-width: 800px) {
    .cards-container {
        --radius: 30vw;
        --label-size: 50px;
        --label-dot-size: 18px;
        --label-line-h-current: 4rem;
        --title-top: 4rem;
        --info-top: 8rem;
    }
}

@media (min-width: 1200px) {
    .cards-container {
        --label-size: 60px;
        --border-color: rgba(217, 4, 41, 0.4);
    }
}

.cards {
    position: absolute;
    inset: var(--cards-container-padding);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: transform 0.3s ease-in-out var(--duration);
    list-style: none;
    margin: 0;
    padding: 0;
}

.cards li {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    transform-origin: center;
    display: grid;
    place-content: center;
    transform: rotate(calc(var(--i) * 360deg / var(--items)));
    pointer-events: none;
}

.cards li > label {
    position: absolute;
    inset: 0;
    margin: auto;
    transform: translateY(var(--label-offset));
    width: var(--label-size);
    height: var(--label-size);
    cursor: pointer;
    pointer-events: initial;
    text-align: center;
    color: var(--label-color);
    font-size: clamp(1rem, 2.5vw + .04rem, 1.5rem);
    font-weight: 700;
    transition: var(--duration) ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards li > label::before {
    content: '';
    position: absolute;
    top: var(--cards-container-padding);
    left: 50%;
    translate: -50% 0;
    width: var(--label-dot-size);
    height: var(--label-dot-size);
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: var(--label-color);
    transition: background-color var(--duration) ease-in-out;
}

.cards li > label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 5px;
    width: 2px;
    height: var(--label-line-h);
    background-color: var(--cameo-red);
    transition: height 300ms ease-in-out var(--label-line-delay, 0ms);
}

.cards li > label:hover {
    --label-color: var(--label-color-hover);
}

.cards > li > h2,
.cards > li > p {
    position: absolute;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    transform-origin: center;
}

.cards > li > h2 {
    top: var(--title-top);
    opacity: var(--title-opacity, 0);
    translate: 0 var(--title-offset-y);
    transition: var(--duration) ease-in-out var(--title-delay, 0ms);
    font-size: clamp(1.3rem, 4vw, 3rem);
    color: var(--cameo-red);
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    max-width: 90%;
}

.cards > li > p {
    top: var(--info-top);
    margin: 0 auto;
    width: var(--info-width);
    z-index: 2;
    font-size: clamp(.85rem, 2.2vw, 1.1rem);
    text-align: center;
    text-wrap: pretty;
    opacity: var(--info-opacity, 0);
    transition: var(--duration) ease-in-out var(--info-delay, 0ms);
    color: var(--text-primary);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Update custom properties for checked item */
li:has(input:checked) {
    --label-opacity: 1;
    --label-color: var(--label-color-hover);
    --label-line-h: var(--label-line-h-current);
    --label-line-delay: calc(var(--duration) * 2);
    --title-opacity: 1;
    --title-offset-y: 0;
    --title-delay: calc(var(--duration) * 3);
    --info-opacity: 1;
    --info-offset-y: 0;
    --info-delay: calc(var(--duration) * 4);
}

/* Rotate container based on checked radio */
.cards:has(input:checked) {
    transform: rotate(calc(var(--base-rotation) - (var(--index) * var(--full-circle) / var(--items))));
}

.cards:has(li:nth-child(1) > input:checked) { --index: 0; }
.cards:has(li:nth-child(2) > input:checked) { --index: 1; }
.cards:has(li:nth-child(3) > input:checked) { --index: 2; }
.cards:has(li:nth-child(4) > input:checked) { --index: 3; }

/* Timeline Navigation Arrows */
.timeline-navigation {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3rem;
    z-index: 100;
}

.timeline-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(217, 4, 41, 0.2);
    border: 2px solid var(--cameo-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--cameo-red);
}

.timeline-arrow:hover {
    background: var(--cameo-red);
    transform: scale(1.1);
}

.timeline-arrow:hover svg {
    stroke: #FFFFFF;
}

.timeline-arrow svg {
    width: 24px;
    height: 24px;
    stroke: var(--cameo-red);
    transition: stroke 0.3s ease;
}

@media (max-width: 768px) {
    .timeline-navigation {
        bottom: 1rem;
        gap: 2rem;
    }
    
    .timeline-arrow {
        width: 40px;
        height: 40px;
    }
    
    .timeline-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    background: transparent;
    padding: 4rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0 !important;
}

.values-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.values-title {
    font-size: clamp(1.8rem, 6vw, 4rem);
    color: var(--cameo-red);
    margin-bottom: 1rem;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.2;
    text-align: center;
}

.values-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(9px, 1.5vw, 10px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.4;
    color: var(--text-primary);
    text-align: center;
}

.simple-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.carousel-item {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

.carousel-item.active {
    display: flex;
}

.carousel-image {
    flex: 1;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-text {
    flex: 1;
    text-align: center;
}

.carousel-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
    color: var(--cameo-red);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.carousel-text .role {
    font-family: var(--font-secondary);
    font-size: clamp(9px, 1.5vw, 10px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.carousel-text .description {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: justify;
}

.simple-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(217, 4, 41, 0.1);
    border: 2px solid var(--cameo-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: var(--cameo-red);
    transform: scale(1.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--cameo-red);
    transition: stroke 0.3s ease;
}

.control-btn:hover svg {
    stroke: #FFFFFF;
}

.simple-dots {
    display: flex;
    gap: 1rem;
}

.simple-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(217, 4, 41, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.simple-dot.active {
    background: var(--cameo-red);
    transform: scale(1.3);
}

/* ============================================
   OUTRO SECTION
   ============================================ */
.outro-section {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    background: transparent;
    padding: 4rem 3rem;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0 !important;
}

.outro-section h1 {
    font-size: clamp(2rem, 7vw, 6rem);
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--cameo-red);
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
}

.outro-section p {
    font-size: clamp(0.95rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    max-width: 700px;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
    text-align: center;
}

.outro-section .btn-primary {
    background: var(--cameo-red);
    border-color: var(--cameo-red);
    color: var(--text-primary);
}

.outro-section .btn-primary:hover {
    background: transparent;
    color: var(--cameo-red);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-container {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.contact-form {
    margin-top: 3rem;
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(217, 4, 41, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cameo-red);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    html {
        font-size: 14px;
    }

    .container {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .navbar {
        padding: 0 1.5rem;
        height: 70px;
    }

    .hero-content,
    .solutions-content,
    .values-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-badge span {
        font-size: clamp(7px, 2vw, 9px);
    }

    .expandable-card {
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-toggle {
        display: flex;
    }

    .navbar-cta {
        display: none;
    }

    .progress-bar {
        top: 70px;
    }

    .progress-counter {
        bottom: 1rem;
        right: 1rem;
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-section,
    .solutions-section,
    .benefits-section,
    .values-section,
    .outro-section {
        padding: 3rem 1.5rem;
    }

    .starwars {
        height: 500px;
    }

    .starwars .film-info .icon {
        font-size: 70px;
    }

    .starwars .film-info .title {
        font-size: 32px;
    }

    .starwars .film-info .description {
        font-size: 16px;
    }

    .starwars .film-date {
        font-size: 180px;
    }

    .carousel-item {
        flex-direction: column;
        gap: 2rem;
    }

    .carousel-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .solutions-section,
    .benefits-section,
    .values-section,
    .outro-section {
        padding: 2rem 1rem;
    }

    .starwars {
        height: 450px;
    }

    .starwars .film-info .icon {
        font-size: 60px;
    }

    .starwars .film-info .title {
        font-size: 26px;
    }

    .starwars .film-info .description {
        font-size: 14px;
    }

    .starwars .film-date {
        font-size: 120px;
    }

    .starwars .timeline {
        padding: 0 1rem;
    }

    .starwars .timeline-dot {
        width: 1.5rem;
        height: 1.5rem;
    }

    .starwars .arrow {
        bottom: -2.5rem;
    }

    .starwars .arrow.left {
        transform: translateX(calc(-50% - 1.5rem));
    }

    .starwars .arrow.right {
        transform: translateX(calc(-50% + 1.5rem));
    }

    .starwars .arrow label svg {
        width: 28px;
        height: 18px;
    }
}
