/* ==========================================
   MOBILE-FIRST OVERRIDES
   Base styles are for mobile, media queries scale up
   ========================================== */

/* ==========================================
   TOP BAR - Mobile First
   ========================================== */
.top-bar {
    height: auto;
    min-height: 36px;
    padding: 0.5rem 0;
}

.top-bar-content {
    padding: 0 1rem;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.top-bar-item {
    font-size: 0.8rem;
    gap: 0.35rem;
}

.top-bar-item span {
    display: none;
}

.top-bar-item svg {
    width: 18px;
    height: 18px;
}

.top-bar-divider {
    display: none;
}

/* Tablet and up */
@media (min-width: 640px) {
    .top-bar-item span {
        display: inline;
    }
    
    .top-bar-divider {
        display: inline;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .top-bar {
        height: var(--top-bar-height);
        padding: 0;
    }
    
    .top-bar-content {
        padding: 0 2rem;
        flex-wrap: nowrap;
        gap: 1.5rem;
    }
    
    .top-bar-item {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .top-bar-item svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   NAVIGATION - Mobile First
   ========================================== */
.nav {
    top: 36px;
    height: 60px;
    padding: 0 1rem;
    justify-content: flex-end;
}

.nav-links {
    display: none;
}

.nav-menu-btn {
    display: flex;
}

.nav-link--cta {
    display: none;
}

/* Tablet and up */
@media (min-width: 768px) {
    .nav {
        top: var(--top-bar-height);
        height: var(--nav-height);
        padding: 0 var(--space-md);
    }
    
    .nav-links {
        display: flex;
        gap: var(--space-md);
    }
    
    .nav-menu-btn {
        display: none;
    }
    
    .nav-link--cta {
        display: flex;
    }
}

/* Large Desktop */
@media (min-width: 1024px) {
    .nav-links {
        gap: var(--space-lg);
    }
}

/* ==========================================
   MOBILE MENU - Mobile First
   ========================================== */
.mobile-link-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: none;
}

@media (min-width: 480px) {
    .mobile-link-text {
        font-size: 1.75rem;
    }
}

@media (min-width: 640px) {
    .mobile-link-text {
        font-size: 2rem;
    }
}

/* ==========================================
   HERO SECTION - Mobile First
   ========================================== */
.hero--text-only {
    min-height: auto;
    min-height: auto; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 0.5rem;
    gap: 0;
}

.hero-text-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    display: block !important;
    text-align: center;
}

.hero-word {
    position: relative !important;
    left: 0 !important;
    display: block;
}

/* IK en BEN naast elkaar */
.hero-word--ik,
.hero-word--ben {
    display: inline-block !important;
}

.hero-word--ik {
    margin-right: 0.3rem;
}

.hero-word.active {
    opacity: 1 !important;
}

.hero-word-group {
    position: relative !important;
    left: 0 !important;
    display: flex !important;
    gap: 0.5rem;
}

.hero-word-group.active {
    opacity: 1 !important;
}

.hero-word .word-fill,
.hero-word-group .word-fill {
    font-size: clamp(2.5rem, 14vw, 4rem);
}

.hero-photos {
    position: relative !important;
    width: 100% !important;
    height: clamp(160px, 50vw, 240px) !important;
    padding: 0 1rem;
    margin-top: 0.5rem;
    z-index: 1;
    display: flex !important;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
}

.hero-photos.visible {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.hero-photo {
    width: clamp(140px, 38vw, 200px);
    height: clamp(180px, 50vw, 260px);
    border-radius: 12px;
    position: absolute !important;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
}

.hero-photo--left,
.hero-photo--right {
    position: absolute !important;
}

/* Stacked first */
.hero-photos.visible .hero-photo {
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
}

/* Spread apart on mobile */
.hero-photos.spread .hero-photo--left {
    transform: translateX(calc(-50% - 0.5rem)) translateY(0) scale(1) !important;
}

.hero-photos.spread .hero-photo--right {
    transform: translateX(calc(50% + 0.5rem)) translateY(0) scale(1) !important;
}

/* Hero badges directly under photos */
.hero-badges {
    position: relative !important;
    bottom: auto !important;
    width: 100%;
    max-width: none;
    margin-top: 0.5rem;
    padding: 0 1rem 1rem;
    z-index: 2;
}

.hero-badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.hero-badge {
    padding: 0.4rem 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.hero-badge i,
.hero-badge svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.hero-badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.hero-languages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    justify-content: center;
}

.hero-languages i,
.hero-languages svg {
    width: 14px;
    height: 14px;
    color: var(--color-accent);
}

.hero-languages-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-languages-flags {
    display: flex;
    gap: 0.25rem;
}

.hero-language {
    font-size: 1rem;
}

.hero-language--text {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

/* Tablet */
@media (min-width: 640px) {
    .hero--text-only {
        padding-top: 120px;
        padding-bottom: 3rem;
    }
    
    .hero-word .word-fill,
    .hero-word-group .word-fill {
        font-size: clamp(3.5rem, 12vw, 6rem);
    }
    
    .hero-photos {
        margin-top: 2rem;
        height: clamp(260px, 50vw, 400px) !important;
    }
    
    .hero-photo {
        width: clamp(180px, 32vw, 280px);
        height: clamp(240px, 42vw, 380px);
        border-radius: 14px;
    }
    
    .hero-photos.spread .hero-photo--left {
        transform: translateX(calc(-50% - 0.75rem)) translateY(0) scale(1) !important;
    }
    
    .hero-photos.spread .hero-photo--right {
        transform: translateX(calc(50% + 0.75rem)) translateY(0) scale(1) !important;
    }
    
    .hero-badges {
        margin-top: 2rem;
        padding: 0 2rem;
    }
    
    .hero-badges-grid {
        gap: 0.5rem;
    }
    
    .hero-badge {
        padding: 0.5rem 0.9rem;
    }
    
    .hero-badge i,
    .hero-badge svg {
        width: 15px;
        height: 15px;
    }
    
    .hero-badge-text {
        font-size: 0.7rem;
    }
    
    .hero-languages {
        margin-top: 1rem;
        padding: 0.6rem 1.1rem;
        gap: 0.6rem;
    }
    
    .hero-language {
        font-size: 1.15rem;
    }
}

/* Desktop - photo and badges below text */
@media (min-width: 1024px) {
    .hero--text-only {
        min-height: auto;
        padding-top: calc(var(--top-bar-height) + var(--nav-height));
        padding-bottom: 1rem;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text-container {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        min-height: 160px;
        padding: 0 clamp(2rem, 6vw, 6rem);
        display: block !important;
        text-align: left;
    }
    
    .hero-text-container.photos-visible {
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .hero-word {
        position: relative !important;
        left: auto !important;
        display: block;
    }
    
    /* IK en BEN naast elkaar op desktop */
    .hero-word--ik,
    .hero-word--ben {
        display: inline-block !important;
    }
    
    .hero-word--ik {
        margin-right: 0.5rem;
    }
    
    .hero-word.active {
        opacity: 1 !important;
    }
    
    .hero-word-group {
        position: relative !important;
        left: auto !important;
        display: flex !important;
        gap: 1rem;
    }
    
    .hero-word-group.active {
        opacity: 1 !important;
    }
    
    .hero-word .word-fill,
    .hero-word-group .word-fill {
        font-size: clamp(4rem, 12vw, 14rem);
    }
    
    .hero-photos {
        position: relative !important;
        width: 100% !important;
        height: clamp(420px, 60vh, 650px) !important;
        margin-top: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-photo {
        position: absolute !important;
        width: clamp(280px, 28vw, 420px);
        height: clamp(380px, 40vw, 560px);
        border-radius: 16px;
    }
    
    .hero-photo--left,
    .hero-photo--right {
        position: absolute !important;
    }
    
    /* Stacked first, then spread */
    .hero-photos.visible .hero-photo {
        transform: translateY(0) scale(1) !important;
        opacity: 1 !important;
    }
    
    .hero-photos.spread .hero-photo--left {
        transform: translateX(calc(-50% - 1.5rem)) translateY(0) scale(1) !important;
    }
    
    .hero-photos.spread .hero-photo--right {
        transform: translateX(calc(50% + 1.5rem)) translateY(0) scale(1) !important;
    }
    
    .hero-badges {
        position: relative !important;
        margin-top: 1rem;
        max-width: 900px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badges-grid {
        gap: 0.6rem;
    }
    
    .hero-badge {
        padding: 0.55rem 1rem;
        border-radius: 10px;
    }
    
    .hero-badge i,
    .hero-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .hero-badge-text {
        font-size: 0.75rem;
    }
    
    .hero-languages {
        margin-top: 1rem;
        padding: 0.65rem 1.25rem;
        gap: 0.75rem;
    }
    
    .hero-language {
        font-size: 1.25rem;
    }
}

/* ==========================================
   FLOATING ICONS - Mobile First
   ========================================== */
.floating-icon {
    width: 28px;
    height: 28px;
    display: none;
}

.floating-icon svg {
    width: 16px;
    height: 16px;
}

/* Tablet - show some icons */
@media (min-width: 640px) {
    .floating-icon {
        display: flex;
        width: 32px;
        height: 32px;
    }
    
    .floating-icon svg {
        width: 18px;
        height: 18px;
    }
    
    /* Hide some icons on tablet */
    .floating-icon--9,
    .floating-icon--10,
    .floating-icon--11,
    .floating-icon--12 {
        display: none;
    }
}

/* Desktop - show all icons */
@media (min-width: 1024px) {
    .floating-icon {
        width: 44px;
        height: 44px;
    }
    
    .floating-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .floating-icon--9,
    .floating-icon--10,
    .floating-icon--11,
    .floating-icon--12 {
        display: flex;
    }
}

/* ==========================================
   SCROLL INDICATOR - Mobile First
   ========================================== */
.scroll-indicator {
    bottom: 1rem;
}

.scroll-text {
    font-size: 0.6rem;
}

.scroll-line {
    height: 35px;
}

@media (min-width: 768px) {
    .scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .scroll-line {
        height: 50px;
    }
}

/* ==========================================
   LOADER - Mobile First
   ========================================== */
.loader-name {
    font-size: clamp(2.5rem, 10vw, 5rem);
}

.loader-bar {
    width: 80px;
}

.loader-tagline {
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .loader-name {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    
    .loader-bar {
        width: 120px;
    }
    
    .loader-tagline {
        font-size: 0.875rem;
    }
}

/* ==========================================
   STORY SECTION - Mobile First
   ========================================== */
.story-section {
    padding: var(--space-lg) 0;
}

.story-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
    margin-bottom: var(--space-md);
}

.story-block--intro {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    text-align: center;
}

.story-icon-float {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.story-icon-float svg {
    width: 24px;
    height: 24px;
}

.story-lead {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

.story-block--full {
    grid-template-columns: 1fr;
    padding: var(--space-md);
    gap: var(--space-md);
}

.story-block-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.story-countries {
    padding: var(--space-md);
}

.story-countries-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

.country-flag {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.language-item {
    grid-template-columns: 70px 1fr 60px;
    gap: 0.75rem;
}

.story-block--highlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: var(--space-md);
}

.story-block-number {
    font-size: 3.5rem;
}

.bring-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

.bring-item {
    padding: var(--space-sm);
}

.bring-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
}

.bring-icon svg {
    width: 20px;
    height: 20px;
}

.story-bring-title {
    font-size: 1.5rem;
}

.statement-text {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
}

/* Tablet */
@media (min-width: 640px) {
    .story-section {
        padding: var(--space-xl) 0;
    }
    
    .story-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .bring-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bring-grid--compact {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .story-countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .story-section {
        padding: var(--space-2xl) 0;
    }
    
    .story-block--intro {
        grid-template-columns: 100px 1fr;
        text-align: left;
    }
    
    .story-icon-float {
        width: 80px;
        height: 80px;
        margin: 0;
    }
    
    .story-icon-float svg {
        width: 32px;
        height: 32px;
    }
    
    .story-lead {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .story-block--full {
        grid-template-columns: 2fr 1fr;
        padding: var(--space-lg);
        gap: var(--space-lg);
    }
    
    .story-block-content p {
        font-size: 1.0625rem;
    }
    
    .story-countries {
        padding: var(--space-lg);
    }
    
    .story-countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .country-card {
        padding: var(--space-md);
    }
    
    .country-flag {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .language-item {
        grid-template-columns: 100px 1fr 80px;
        gap: 1rem;
    }
    
    .story-block--highlight {
        grid-template-columns: auto 1fr;
        text-align: left;
        padding: var(--space-lg);
    }
    
    .story-block-number {
        font-size: 6rem;
    }
    
    .bring-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .bring-grid--compact {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bring-item {
        padding: var(--space-md);
    }
    
    .bring-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .bring-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .story-bring-title {
        font-size: 2rem;
    }
    
    .statement-text {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

/* ==========================================
   JOURNEY / TIMELINE - Mobile First
   ========================================== */
.journey {
    padding: var(--space-lg) 0;
}

.journey-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: var(--space-md);
}

.timeline {
    padding-left: 45px;
}

.timeline-line {
    left: 15px;
}

.timeline-marker {
    left: -37px;
    width: 34px;
    height: 34px;
}

.timeline-marker svg {
    width: 16px;
    height: 16px;
}

.timeline-item {
    padding-bottom: var(--space-md);
}

/* Tablet */
@media (min-width: 640px) {
    .journey {
        padding: var(--space-xl) 0;
    }
    
    .journey-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
        margin-bottom: var(--space-lg);
    }
    
    .timeline {
        padding-left: 50px;
    }
    
    .timeline-line {
        left: 18px;
    }
    
    .timeline-marker {
        left: -44px;
        width: 38px;
        height: 38px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .journey {
        padding: var(--space-2xl) 0;
    }
    
    .journey-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: var(--space-xl);
    }
    
    .timeline {
        padding-left: 60px;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-marker {
        left: -52px;
        width: 44px;
        height: 44px;
    }
    
    .timeline-marker svg {
        width: 20px;
        height: 20px;
    }
    
    .timeline-item {
        padding-bottom: var(--space-lg);
    }
}

/* ==========================================
   WHATSAPP FLOAT - Mobile First
   ========================================== */
.whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ==========================================
   CONTAINER - Mobile First
   ========================================== */
.container {
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ==========================================
   GENERAL SPACING - Mobile First
   ========================================== */
section {
    padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-xl) 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: var(--space-2xl) 0;
    }
}

/* ==========================================
   TYPOGRAPHY - Mobile First
   ========================================== */
h1, .h1 {
    font-size: clamp(2rem, 8vw, 3rem);
}

h2, .h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
}

h3, .h3 {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

p {
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    h1, .h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    h2, .h2 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    h3, .h3 {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    h1, .h1 {
        font-size: clamp(3rem, 5vw, 5rem);
    }
    
    h2, .h2 {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
}

/* ==========================================
   PROJECTS SECTION - Mobile First
   ========================================== */
.projects-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

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

@media (min-width: 640px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .project-card {
        padding: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   REVIEWS SECTION - Mobile First
   ========================================== */
.reviews-inline {
    padding: var(--space-md) 0;
}

.reviews-inline h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.reviews-scroll-container {
    gap: var(--space-sm);
}

.review-card-inline {
    min-width: 260px;
    max-width: 280px;
    padding: var(--space-sm);
}

.review-card-inline p {
    font-size: 0.85rem;
    -webkit-line-clamp: 4;
}

@media (min-width: 640px) {
    .reviews-inline {
        padding: var(--space-lg) 0;
    }
    
    .reviews-inline h3 {
        font-size: 1.5rem;
    }
    
    .reviews-scroll-container {
        gap: var(--space-md);
    }
    
    .review-card-inline {
        min-width: 300px;
        max-width: 340px;
        padding: var(--space-md);
    }
    
    .review-card-inline p {
        font-size: 0.9rem;
        -webkit-line-clamp: 5;
    }
}

@media (min-width: 1024px) {
    .reviews-inline h3 {
        font-size: 1.75rem;
    }
    
    .review-card-inline {
        min-width: 340px;
        max-width: 380px;
    }
    
    .review-card-inline p {
        font-size: 0.95rem;
    }
}

/* ==========================================
   CONTACT FORM - Mobile First
   ========================================== */
.contact-form {
    padding: var(--space-md);
}

.contact-form h3 {
    font-size: 1.25rem;
}

.form-group input,
.form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.875rem 1rem;
}

.contact-form button {
    width: 100%;
    padding: 0.875rem;
}

@media (min-width: 640px) {
    .contact-form {
        padding: var(--space-lg);
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
    
    .contact-form button {
        width: auto;
        padding: 1rem 2rem;
    }
}

/* ==========================================
   FOOTER - Mobile First
   ========================================== */
.footer {
    padding: var(--space-md) 0;
}

.footer-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
}

@media (min-width: 768px) {
    .footer {
        padding: var(--space-lg) 0;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================
   TOUCH OPTIMIZATIONS
   ========================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .nav-link,
    .mobile-link,
    .top-bar-item {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Disable hover effects on touch */
    .hero-photo:hover img {
        filter: grayscale(20%);
        transform: none;
    }
    
    .country-card:hover,
    .bring-item:hover {
        transform: none;
        box-shadow: none;
    }
    
    /* Better scrolling */
    .reviews-scroll-container {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .review-card-inline {
        scroll-snap-align: start;
    }
}

/* ==========================================
   SAFE AREA INSETS (iPhone X+)
   ========================================== */
@supports (padding: env(safe-area-inset-bottom)) {
    .whatsapp-float {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }
    
    .footer {
        padding-bottom: calc(var(--space-md) + env(safe-area-inset-bottom));
    }
    
    .mobile-menu {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-dot,
    .floating-icon,
    .story-icon-float {
        animation: none !important;
    }
}

/* ==========================================
   LANDSCAPE MOBILE
   ========================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero--text-only {
        min-height: 100vh;
    }
    
    .hero-photo {
        height: 70vh;
    }
    
    .hero-badges {
        bottom: 3%;
    }
    
    .hero-badge {
        padding: 0.35rem 0.6rem;
    }
    
    .hero-badge-text {
        font-size: 0.6rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .top-bar,
    .nav,
    .mobile-menu,
    .whatsapp-float,
    .scroll-indicator,
    .loader,
    .gradient-blob,
    .noise-overlay,
    .floating-icon {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero--text-only {
        min-height: auto;
        background: white;
    }
}

/* ==========================================
   JOURNEY HORIZONTAL TIMELINE - Mobile First
   ========================================== */
.journey-timeline-wrapper {
    display: block;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.75rem 0;
}

.journey-timeline-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.75rem 0 0.5rem;
    position: relative;
}

.journey-timeline-track::-webkit-scrollbar {
    display: none;
}

.journey-timeline-line {
    position: absolute;
    top: calc(0.75rem + 14px);
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.12) 10%, 
        rgba(255, 255, 255, 0.12) 90%, 
        transparent 100%
    );
    z-index: 0;
}

.journey-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    min-width: 68px;
    padding: 0 0.35rem;
    cursor: pointer;
    scroll-snap-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.journey-timeline-item:first-of-type {
    padding-left: 1.25rem;
}

.journey-timeline-item:last-of-type {
    padding-right: 1.25rem;
}

.journey-timeline-item:active {
    transform: scale(0.92);
}

.journey-timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.journey-timeline-item.active .journey-timeline-dot {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 12px rgba(0, 210, 106, 0.5);
}

.journey-timeline-item.active .journey-timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 210, 106, 0.12);
    animation: timelinePulse 2s ease-out infinite;
}

@keyframes timelinePulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.journey-timeline-flag {
    font-size: 1.4rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.journey-timeline-item.active .journey-timeline-flag {
    opacity: 1;
    transform: scale(1.15);
}

.journey-timeline-label {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.journey-timeline-item.active .journey-timeline-label {
    color: var(--color-accent);
    font-weight: 700;
}

.journey-timeline-item--current .journey-timeline-dot {
    background: rgba(0, 210, 106, 0.3);
    border-color: var(--color-accent);
}

.journey-timeline-item--highlight .journey-timeline-dot {
    border-color: rgba(100, 150, 255, 0.4);
}

/* Future timeline item - special orange styling */
.journey-timeline-item--future .journey-timeline-dot {
    background: rgba(255, 140, 50, 0.2);
    border-color: rgba(255, 140, 50, 0.5);
}

.journey-timeline-item--future.active .journey-timeline-dot {
    background: #ff8c32;
    border-color: #ff8c32;
    box-shadow: 0 0 10px rgba(255, 140, 50, 0.5);
}

.journey-timeline-item--future .journey-timeline-label {
    color: rgba(255, 140, 50, 0.6);
}

.journey-timeline-item--future.active .journey-timeline-label {
    color: #ff8c32;
}

.journey-timeline-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.6rem;
    font-weight: 500;
    padding: 0.5rem 0 0.25rem;
    animation: hintBounce 1.5s ease-in-out infinite;
}

.journey-timeline-hint svg {
    width: 12px;
    height: 12px;
}

@keyframes hintBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
}

/* Hide hint after interaction */
.journey-timeline-wrapper.interacted .journey-timeline-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Desktop: show horizontal timeline on all screens */
@media (min-width: 768px) {
    .journey-timeline-wrapper {
        display: block;
        width: 100%;
        margin-left: 0;
        background: transparent;
        padding: 1rem 0;
    }
    
    .journey-timeline-track {
        justify-content: flex-start;
        overflow-x: visible;
        padding: 1rem 0;
    }
    
    .journey-timeline-item {
        min-width: 90px;
    }
    
    .journey-timeline-flag {
        font-size: 1.6rem;
    }
    
    .journey-timeline-label {
        font-size: 0.7rem;
    }
    
    .journey-timeline-dot {
        width: 16px;
        height: 16px;
    }
    
    .journey-timeline-hint {
        display: none;
    }
}

@media (min-width: 1024px) {
    .journey-timeline-item {
        min-width: 100px;
    }
    
    .journey-timeline-flag {
        font-size: 1.75rem;
    }
    
    .journey-timeline-label {
        font-size: 0.75rem;
    }
}

/* ==========================================
   JOURNEY SELECTOR - Hidden on all screens now (replaced by timeline)
   ========================================== */
.journey-selector {
    display: none;
    gap: 0.35rem;
}

.journey-selector-item {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.journey-selector .journey-flag {
    font-size: 1.1rem;
}

.journey-selector-info .journey-place {
    font-size: 0.8rem;
}

.journey-selector-info .journey-years {
    font-size: 0.65rem;
}

.journey-selector-indicator {
    width: 5px;
    height: 5px;
}

/* Journey Details */
.journey-detail-header h3 {
    font-size: 1.25rem;
}

.journey-detail-header .journey-period {
    font-size: 0.75rem;
}

.journey-detail-body p {
    font-size: 0.9rem;
}

.journey-skills-list {
    gap: 0.35rem;
}

.journey-skill-tag {
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
}

/* Tablet */
@media (min-width: 640px) {
    .journey-selector {
        gap: 0.45rem;
    }
    
    .journey-selector-item {
        padding: 0.875rem 1.125rem;
        gap: 0.875rem;
    }
    
    .journey-selector .journey-flag {
        font-size: 1.2rem;
    }
    
    .journey-selector-info .journey-place {
        font-size: 0.85rem;
    }
    
    .journey-selector-info .journey-years {
        font-size: 0.7rem;
    }
    
    .journey-detail-header h3 {
        font-size: 1.4rem;
    }
    
    .journey-skill-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .journey-selector {
        gap: 0.5rem;
    }
    
    .journey-selector-item {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .journey-selector .journey-flag {
        font-size: 1.25rem;
    }
    
    .journey-selector-info .journey-place {
        font-size: 0.9rem;
    }
    
    .journey-selector-info .journey-years {
        font-size: 0.7rem;
    }
    
    .journey-selector-indicator {
        width: 6px;
        height: 6px;
    }
    
    .journey-detail-header h3 {
        font-size: 1.5rem;
    }
    
    .journey-detail-body p {
        font-size: 1rem;
    }
    
    .journey-skill-tag {
        font-size: 0.8rem;
        padding: 0.45rem 0.85rem;
    }
}

/* ==========================================
   STORY SCREEN - Mobile First
   ========================================== */
.story-screen {
    padding: var(--space-lg) 0;
}

.story-screen--journey {
    min-height: auto;
    padding: var(--space-md) 0 var(--space-lg);
}

.story-screen--journey .story-grid {
    gap: var(--space-sm);
}

.story-screen--journey .story-grid-right {
    margin-bottom: 0;
}

.story-screen-inner {
    padding: 0 1rem;
}

.story-headline {
    font-size: clamp(1.5rem, 6vw, 2rem);
}

.story-subtext {
    font-size: 0.9rem;
}

/* Journey Grid - Mobile stacked */
.journey-selector-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.journey-column {
    width: 100%;
}

/* Tablet - side by side */
@media (min-width: 768px) {
    .story-screen {
        padding: var(--space-xl) 0;
    }
    
    .story-screen--journey {
        padding: var(--space-xl) 0;
    }
    
    .story-screen--journey .story-grid {
        gap: clamp(2rem, 4vw, 4rem);
    }
    
    .story-screen-inner {
        padding: 0 var(--space-md);
    }
    
    .story-headline {
        font-size: clamp(2rem, 5vw, 2.5rem);
    }
    
    .story-subtext {
        font-size: 1rem;
    }
    
    .journey-selector-grid {
        flex-direction: row;
        gap: var(--space-lg);
    }
    
    .journey-column {
        width: 50%;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .story-screen {
        padding: var(--space-2xl) 0;
    }
    
    .story-screen--journey {
        padding: clamp(6rem, 12vh, 10rem) 0;
    }
    
    .story-headline {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

/* ==========================================
   MODAL - Mobile First
   ========================================== */
.modal {
    padding: 1rem;
}

.modal-content {
    padding: 2rem 1.5rem;
    border-radius: 24px;
}

.modal-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
}

.modal-header h3 {
    font-size: 1.75rem;
}

.modal-form .form-group input,
.modal-form .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.875rem 1rem;
}

@media (min-width: 640px) {
    .modal {
        padding: var(--space-md);
    }
    
    .modal-content {
        padding: 2.5rem 2rem;
        border-radius: 28px;
    }
    
    .modal-close {
        top: 1.25rem;
        right: 1.25rem;
        width: 42px;
        height: 42px;
    }
    
    .modal-header h3 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .modal-content {
        padding: 3rem 2.5rem;
        border-radius: 32px;
    }
    
    .modal-close {
        top: 1.5rem;
        right: 1.5rem;
        width: 44px;
        height: 44px;
    }
    
    .modal-header h3 {
        font-size: 2.25rem;
    }
    
    .modal-form .form-group input,
    .modal-form .form-group textarea {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

/* ==========================================
   TEMPLATES CAROUSEL - Mobile First
   ========================================== */
.templates-carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 1rem 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: none;
    -webkit-mask-image: none;
}

.templates-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.templates-carousel {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    width: max-content;
    animation: none !important; /* Disable animation on mobile - use scroll instead */
}

.template-item {
    width: 180px;
    flex-shrink: 0;
}

.template-mockup {
    border-radius: 10px;
}

.template-browser {
    padding: 0.4rem 0.6rem;
}

.template-browser-dot {
    width: 5px;
    height: 5px;
}

@media (min-width: 640px) {
    .templates-carousel-wrapper {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 1rem 0;
    }
    
    .templates-carousel {
        gap: 1.25rem;
        padding: 0 2rem;
        animation: none !important; /* Still scrollable on tablet */
    }
    
    .template-item {
        width: 200px;
    }
}

/* Desktop: restore auto-scrolling carousel animation */
@media (min-width: 1024px) {
    .templates-carousel-wrapper {
        width: auto;
        margin-left: 0;
        overflow: hidden;
        mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    }
    
    .templates-carousel {
        gap: 1.5rem;
        padding: 0;
        width: max-content;
        animation: scrollCarousel 25s linear infinite !important; /* Restore animation on desktop */
    }
    
    .templates-carousel:hover {
        animation-play-state: paused !important;
    }
    
    .template-item {
        width: 220px;
        flex-shrink: 0;
    }
    
    .template-mockup {
        border-radius: 12px;
    }
    
    .template-browser {
        padding: 0.5rem 0.75rem;
    }
    
    .template-browser-dot {
        width: 6px;
        height: 6px;
    }
}

/* ==========================================
   DESIGNS SECTION - Mobile First
   ========================================== */
.story-screen--designs {
    display: flex;
    flex-direction: column;
    padding: var(--space-md) 0 var(--space-lg);
}

.designs-content {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.designs-text {
    max-width: 100%;
}

.designs-text .story-headline {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    margin-top: 0.25rem;
}

.designs-text .story-subtext {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

@media (min-width: 640px) {
    .story-screen--designs {
        padding: var(--space-xl) 0;
    }
    
    .designs-content {
        padding: 0 var(--space-md);
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .designs-text {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .designs-text .story-headline {
        font-size: clamp(2.25rem, 6vw, 3rem);
        margin-top: 0.5rem;
    }
    
    .designs-text .story-subtext {
        font-size: 0.9rem;
        margin-top: 1rem;
    }
}

@media (min-width: 1024px) {
    .story-screen--designs {
        display: block;
        padding: clamp(4rem, 8vh, 6rem) 0 clamp(3rem, 6vh, 4rem);
    }
    
    .designs-content {
        margin-bottom: 2.5rem;
        text-align: left;
    }
    
    .designs-text {
        max-width: 500px;
        margin: 0;
    }
    
    .designs-text .story-headline {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

/* ==========================================
   HIGHLIGHT & FUTURE CARDS - Mobile First
   ========================================== */
.story-highlight-card,
.story-future-card {
    padding: 1.25rem;
    border-radius: 16px;
}

.story-highlight-title,
.story-future-card h4 {
    font-size: 1.25rem;
}

.story-highlight-card p,
.story-future-card p {
    font-size: 0.875rem;
}

.story-future-year {
    font-size: 2rem;
    top: 0.75rem;
    right: 1rem;
}

.story-cta-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.story-contact-info {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.story-contact-link {
    justify-content: center;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .story-highlight-card,
    .story-future-card {
        padding: 1.5rem;
        border-radius: 18px;
    }
    
    .story-highlight-title,
    .story-future-card h4 {
        font-size: 1.35rem;
    }
    
    .story-highlight-card p,
    .story-future-card p {
        font-size: 0.9rem;
    }
    
    .story-future-year {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .story-highlight-card,
    .story-future-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .story-highlight-title,
    .story-future-card h4 {
        font-size: 1.5rem;
    }
    
    .story-highlight-card p,
    .story-future-card p {
        font-size: 0.95rem;
    }
    
    .story-future-year {
        font-size: 3rem;
        top: 1rem;
        right: 1.5rem;
    }
    
    .story-cta-small {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ==========================================
   SKILL TAGS - Mobile First
   ========================================== */
.skill-tags {
    gap: 0.35rem;
}

.skill-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
}

@media (min-width: 640px) {
    .skill-tags {
        gap: 0.5rem;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}

@media (min-width: 1024px) {
    .skill-tag {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

/* ==========================================
   TECH SLIDER - Mobile First
   ========================================== */
.tech-slider-section {
    margin-top: var(--space-md);
}

.tech-slider-label {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.tech-slider-track {
    gap: 1rem;
}

.tech-item {
    width: 44px;
    height: 44px;
}

.tech-item svg {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .tech-slider-section {
        margin-top: var(--space-lg);
    }
    
    .tech-slider-label {
        font-size: 1.0625rem;
    }
    
    .tech-slider-track {
        gap: 1.25rem;
    }
    
    .tech-item {
        width: 50px;
        height: 50px;
    }
    
    .tech-item svg {
        width: 22px;
        height: 22px;
    }
}

@media (min-width: 1024px) {
    .tech-slider-section {
        margin-top: var(--space-xl);
    }
    
    .tech-slider-label {
        font-size: 1.125rem;
        margin-bottom: var(--space-md);
    }
    
    .tech-slider-track {
        gap: 1.5rem;
    }
    
    .tech-item {
        width: 56px;
        height: 56px;
    }
    
    .tech-item svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================
   STORY GRID - Mobile First (CRITICAL FIX)
   ========================================== */
.story-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
}

.story-grid-left,
.story-grid-right {
    text-align: center;
}

.story-grid-left .story-label,
.story-grid-right .story-label {
    display: block;
    text-align: center;
}

.story-grid-left .story-headline,
.story-grid-right .story-headline {
    text-align: center;
}

.story-grid-left .story-subtext,
.story-grid-right .story-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Reverse grid order on mobile */
.story-grid--reverse {
    display: flex;
    flex-direction: column-reverse;
}

.story-grid--reverse .story-grid-left,
.story-grid--reverse .story-grid-right {
    width: 100%;
}

/* Tablet and Desktop: restore original grid layout */
@media (min-width: 768px) {
    .story-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 4vw, 4rem);
        text-align: left;
    }
    
    .story-grid-left,
    .story-grid-right {
        text-align: left;
    }
    
    .story-grid-left .story-label,
    .story-grid-right .story-label {
        text-align: left;
    }
    
    .story-grid-left .story-headline,
    .story-grid-right .story-headline {
        text-align: left;
    }
    
    .story-grid-left .story-subtext,
    .story-grid-right .story-subtext {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    
    .story-grid--reverse {
        display: grid;
        flex-direction: unset;
        direction: rtl;
    }
    
    .story-grid--reverse > * {
        direction: ltr;
    }
}

@media (min-width: 1024px) {
    .story-grid {
        gap: clamp(3rem, 6vw, 6rem);
    }
}

/* ==========================================
   JOURNEY DETAIL - Mobile First (Compact Card Style)
   ========================================== */
.journey-detail {
    min-height: auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 1rem 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.journey-detail-content {
    text-align: center;
}

.journey-detail-content .story-label {
    display: inline-block;
    text-align: center;
    background: rgba(0, 210, 106, 0.1);
    color: var(--color-accent);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.6rem;
    margin-bottom: 0.5rem;
}

.journey-detail-content .story-headline {
    text-align: center;
    font-size: clamp(1.35rem, 5vw, 1.6rem);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.journey-detail-content .story-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.8rem;
    line-height: 1.55;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.7);
}

.journey-detail-quote {
    text-align: center;
    border-left: none;
    padding-left: 0;
    padding: 0.7rem 0.75rem;
    margin-top: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    font-size: 0.8rem;
    border: none;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
}

.journey-detail-skills {
    justify-content: center;
    margin-top: 0.75rem;
    gap: 0.3rem;
}

.journey-detail-skills span {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
}

/* Journey Languages Grid - Mobile */
.journey-languages {
    gap: 0.4rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
}

.journey-language {
    grid-template-columns: 70px 1fr 45px;
    gap: 0.4rem;
}

.journey-language-name {
    font-size: 0.7rem;
}

.journey-language-bar {
    height: 4px;
}

.journey-language-level {
    font-size: 0.6rem;
}

@media (min-width: 768px) {
    .journey-detail {
        min-height: auto;
        text-align: left;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .journey-detail-content {
        text-align: left;
    }
    
    .journey-detail-content .story-label {
        text-align: left;
        display: inline-block;
        background: rgba(0, 210, 106, 0.1);
        color: var(--color-accent);
        padding: 0.3rem 0.9rem;
        font-size: 0.7rem;
    }
    
    .journey-detail-content .story-headline {
        text-align: left;
        font-size: clamp(1.75rem, 3vw, 2.5rem);
    }
    
    .journey-detail-content .story-subtext {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.95rem;
        max-width: 100%;
        line-height: 1.7;
    }
    
    .journey-detail-quote {
        text-align: left;
        border-left: 3px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        border-bottom: none;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        font-style: italic;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 0 12px 12px 0;
        margin-top: 1.25rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .journey-detail-skills {
        justify-content: flex-start;
        margin-top: 1.25rem;
    }
    
    .journey-detail-skills span {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
    }
    
    .journey-languages {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .journey-language {
        grid-template-columns: 100px 1fr 60px;
        gap: 0.75rem;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .journey-language-name {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .journey-language-bar {
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
        overflow: hidden;
    }
    
    .journey-language-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--color-accent), rgba(0, 210, 106, 0.6));
        border-radius: 3px;
    }
    
    .journey-language-level {
        font-size: 0.7rem;
        text-align: right;
    }
}

/* ==========================================
   JOURNEY SELECTOR - Mobile First (CENTERED)
   ========================================== */
.journey-selector {
    gap: 0.25rem;
}

.journey-selector-item {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
    justify-content: flex-start;
    text-align: left;
}

.journey-selector .journey-flag {
    font-size: 1.25rem;
    min-width: 28px;
    text-align: center;
}

.journey-selector-info {
    flex: 1;
    text-align: center;
}

.journey-selector-info .journey-place {
    font-size: 0.9rem;
    display: block;
}

.journey-selector-info .journey-years {
    font-size: 0.7rem;
    display: block;
}

.journey-selector-indicator {
    width: 6px;
    height: 6px;
}

/* Journey section label centered */
.story-screen--journey .story-label {
    display: inline-block;
    text-align: center;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    font-size: 0.65rem;
}

.story-screen--journey .story-grid-right {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-screen--journey .story-grid-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Override grid for journey - always stacked layout */
.story-screen--journey .story-grid--reverse {
    display: flex;
    flex-direction: column-reverse;
}

@media (min-width: 768px) {
    .story-screen--journey .story-grid--reverse {
        display: flex;
        flex-direction: column-reverse;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .story-screen--journey .story-grid-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .story-screen--journey .story-grid-left {
        width: 100%;
    }
    
    .story-screen--journey .story-label {
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 0.35rem 0.85rem;
        font-size: 0.7rem;
    }
}

@media (min-width: 1024px) {
    .story-screen--journey .story-grid--reverse {
        max-width: 900px;
    }
}

/* ==========================================
   STORY SCREEN INTRO - Mobile First
   ========================================== */
.story-screen--intro {
    padding: var(--space-md) 1rem var(--space-md);
    min-height: auto;
}

.story-screen--intro .story-grid {
    gap: var(--space-sm);
}

/* Hide origin card on mobile to reduce clutter */
.story-screen--intro .story-origin {
    display: none;
}

/* Stats mobile - more compact */
.story-stats {
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    justify-content: center;
    margin-top: 1rem;
}

.story-stat {
    text-align: center;
    min-width: 70px;
}

.story-stat-value {
    font-size: 1.25rem;
}

.story-stat-label {
    font-size: 0.6rem;
}

/* Tech pills more compact on mobile */
.story-tech-pills {
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.story-tech-pills span {
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
}

/* Tablet */
@media (min-width: 768px) {
    .story-screen--intro {
        padding: clamp(3rem, 6vh, 5rem) var(--space-md) clamp(6rem, 12vh, 10rem);
    }
    
    .story-screen--intro .story-grid {
        gap: clamp(2rem, 4vw, 4rem);
    }
    
    /* Show origin card on tablet+ */
    .story-screen--intro .story-origin {
        display: flex;
    }
    
    .story-stats {
        justify-content: flex-start;
        gap: 2rem;
        margin-top: 1.5rem;
    }
    
    .story-stat {
        text-align: left;
    }
    
    .story-stat-value {
        font-size: 2rem;
    }
    
    .story-stat-label {
        font-size: 0.75rem;
    }
    
    .story-tech-pills {
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .story-tech-pills span {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================
   STORY ORIGIN CARD - Mobile First
   ========================================== */
.story-origin {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
    text-align: center;
}

.story-origin-age {
    font-size: 3rem;
    text-align: center;
}

.story-origin-content {
    text-align: center;
}

.story-origin-title {
    font-size: 1.1rem;
}

.story-origin-content p {
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .story-origin {
        flex-direction: row;
        gap: 1.5rem;
        padding: 2rem;
        text-align: left;
    }
    
    .story-origin-age {
        font-size: clamp(4rem, 8vw, 6rem);
        text-align: left;
    }
    
    .story-origin-content {
        text-align: left;
    }
    
    .story-origin-title {
        font-size: 1.25rem;
    }
    
    .story-origin-content p {
        font-size: 0.95rem;
    }
}

/* ==========================================
   STORY BADGES - Mobile First
   ========================================== */
.story-badges-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.story-badge {
    padding: 0.75rem;
    justify-content: center;
    text-align: center;
}

.story-badge-icon {
    width: 32px;
    height: 32px;
}

.story-badge-icon svg {
    width: 16px;
    height: 16px;
}

.story-badge-title {
    font-size: 0.8rem;
}

.story-badge-label {
    font-size: 0.7rem;
}

@media (min-width: 480px) {
    .story-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-badge {
        justify-content: flex-start;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .story-badges-grid {
        gap: 0.75rem;
    }
    
    .story-badge {
        padding: 0.875rem 1rem;
    }
    
    .story-badge-icon {
        width: 36px;
        height: 36px;
    }
    
    .story-badge-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .story-badge-title {
        font-size: 0.875rem;
    }
    
    .story-badge-label {
        font-size: 0.75rem;
    }
}

/* ==========================================
   STORY EXPERTISE - Mobile First
   ========================================== */
.story-expertise {
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.expertise-item {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
}

.expertise-item svg {
    width: 14px;
    height: 14px;
}

@media (min-width: 768px) {
    .story-expertise {
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .expertise-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .expertise-item svg {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================
   STORY TECH PILLS - Mobile First
   ========================================== */
.story-tech-pills {
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.story-tech-pills span {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .story-tech-pills {
        justify-content: flex-start;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }
    
    .story-tech-pills span {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* ==========================================
   STORY LANGUAGES (Tags) - Mobile First
   ========================================== */
.story-languages {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.language-tags {
    justify-content: center;
}

.language-tag {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .story-languages {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .language-tags {
        justify-content: flex-start;
    }
    
    .language-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
}

/* ==========================================
   STORY HEADLINE - Mobile First
   ========================================== */
.story-headline {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    margin-bottom: var(--space-sm);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.story-subtext {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 100%;
    padding: 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (min-width: 768px) {
    .story-headline {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: var(--space-md);
    }
    
    .story-subtext {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 600px;
    }
}

@media (min-width: 1024px) {
    .story-headline {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
    
    .story-subtext {
        font-size: 1.1rem;
    }
}

/* ==========================================
   DESIGNS SECTION - Mobile First (FIX)
   ========================================== */
.story-screen--designs {
    padding: var(--space-md) 0;
}

.designs-content {
    padding: 0 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.designs-text {
    max-width: 100%;
    text-align: center;
}

.designs-text .story-label {
    display: block;
    text-align: center;
}

.designs-text .story-headline {
    text-align: center;
}

.designs-text .story-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .story-screen--designs {
        padding: var(--space-lg) 0;
    }
    
    .designs-content {
        padding: 0 var(--space-md);
        margin-bottom: 2rem;
        text-align: left;
    }
    
    .designs-text {
        max-width: 500px;
        text-align: left;
    }
    
    .designs-text .story-label {
        text-align: left;
    }
    
    .designs-text .story-headline {
        text-align: left;
    }
    
    .designs-text .story-subtext {
        text-align: left;
        margin-left: 0;
    }
}

@media (min-width: 1024px) {
    .story-screen--designs {
        padding: clamp(4rem, 8vh, 6rem) 0 clamp(3rem, 6vh, 4rem);
    }
    
    .designs-content {
        margin-bottom: 2.5rem;
    }
}

/* ==========================================
   STORY SCREEN NOW (Weboplossingen) - Mobile
   ========================================== */
.story-screen--now {
    padding: var(--space-md) 0;
    overflow-x: hidden;
}

.story-screen--now .story-grid-left {
    text-align: center;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.story-screen--now .story-grid-left .story-label {
    text-align: center;
}

.story-screen--now .story-grid-left .story-headline {
    text-align: center;
    font-size: clamp(1.5rem, 9vw, 2rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.story-screen--now .story-grid-left .story-subtext {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 100%;
}

@media (min-width: 768px) {
    .story-screen--now {
        padding: clamp(4rem, 8vh, 6rem) var(--space-md);
    }
    
    .story-screen--now .story-grid-left {
        text-align: left;
    }
    
    .story-screen--now .story-grid-left .story-label {
        text-align: left;
    }
    
    .story-screen--now .story-grid-left .story-headline {
        text-align: left;
    }
    
    .story-screen--now .story-grid-left .story-subtext {
        text-align: left;
        margin-left: 0;
    }
}

/* ==========================================
   ABOUT CARD - Mobile First
   ========================================== */
.about-card {
    padding: 1.25rem;
    text-align: center;
}

.about-card-title {
    text-align: center;
    font-size: 0.7rem;
}

.about-card-text {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.65;
}

.about-card-traits {
    justify-content: center;
}

.about-card-traits span {
    padding: 0.3rem 0.65rem;
    font-size: 0.65rem;
}

@media (min-width: 768px) {
    .about-card {
        padding: 2rem;
        text-align: left;
    }
    
    .about-card-title {
        text-align: left;
        font-size: 0.75rem;
    }
    
    .about-card-text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .about-card-traits {
        justify-content: flex-start;
    }
    
    .about-card-traits span {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* ==========================================
   STORY TAGS - Mobile First
   ========================================== */
.story-tags {
    justify-content: center;
    gap: 0.5rem;
}

.story-tags span {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.story-tags-inline {
    justify-content: center;
}

.story-tags-inline span {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
}

@media (min-width: 768px) {
    .story-tags {
        justify-content: flex-end;
        gap: 1rem;
    }
    
    .story-tags span {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .story-tags-inline {
        justify-content: flex-start;
    }
    
    .story-tags-inline span {
        padding: 0.35rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* ==========================================
   REVIEWS SLIDER - Mobile First
   ========================================== */
.reviews-inline {
    margin-top: var(--space-md);
    padding: 0;
}

.reviews-slider {
    margin: 0 -1rem;
    padding: 0 1rem;
}

.reviews-track {
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.review-card {
    width: 260px;
    padding: 1rem;
}

.review-card-header {
    margin-bottom: 0.75rem;
}

.review-stars svg {
    width: 12px;
    height: 12px;
}

.review-card-platform {
    font-size: 0.6rem;
}

.review-card-quote {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
    -webkit-line-clamp: 3;
}

.review-card-author {
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.review-card-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
}

.review-card-name {
    font-size: 0.8rem;
}

@media (min-width: 640px) {
    .reviews-slider {
        margin: 0;
        padding: 0;
    }
    
    .reviews-track {
        gap: 1rem;
        padding: 0.75rem 0;
    }
    
    .review-card {
        width: 290px;
        padding: 1.25rem;
    }
    
    .review-stars svg {
        width: 13px;
        height: 13px;
    }
    
    .review-card-quote {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }
    
    .review-card-avatar {
        width: 30px;
        height: 30px;
    }
    
    .review-card-name {
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .reviews-inline {
        margin-top: var(--space-lg);
    }
    
    .reviews-track {
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .review-card {
        width: 320px;
        padding: 1.5rem;
    }
    
    .review-card-header {
        margin-bottom: 1rem;
    }
    
    .review-stars svg {
        width: 14px;
        height: 14px;
    }
    
    .review-card-platform {
        font-size: 0.7rem;
    }
    
    .review-card-quote {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .review-card-author {
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .review-card-avatar {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .review-card-name {
        font-size: 0.9rem;
    }
}

/* ==========================================
   PROJECTS SECTION - Mobile First
   ========================================== */
.story-screen--projects {
    padding: var(--space-md) 1rem;
}

.projects-container {
    width: 100%;
}

.projects-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.projects-header .story-label {
    display: block;
    text-align: center;
}

.projects-header .story-headline {
    text-align: center;
    font-size: clamp(1.5rem, 6vw, 2rem);
}

.projects-intro {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* Tech ticker mobile */
.tech-ticker {
    margin-top: 1rem;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-ticker-track {
    display: flex;
    gap: 0.5rem;
    animation: tickerScroll 20s linear infinite;
    width: max-content;
}

.tech-pill {
    padding: 0.35rem 0.7rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Projects grid mobile */
.projects-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
    max-width: 100%;
}

.project-card {
    padding: 1rem;
}

.project-card-badge {
    font-size: 0.55rem;
}

.project-card-badge svg {
    width: 9px;
    height: 9px;
}

.project-card-title {
    font-size: 0.95rem;
}

.project-card-desc {
    font-size: 0.8rem;
}

.project-card-link {
    top: 0.75rem;
    right: 0.75rem;
}

.project-card-link svg {
    width: 12px;
    height: 12px;
}

@media (min-width: 480px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 640px) {
    .story-screen--projects {
        padding: var(--space-lg) var(--space-md);
    }
    
    .projects-header {
        margin-bottom: 2rem;
    }
    
    .projects-header .story-headline {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .projects-intro {
        font-size: 0.95rem;
    }
    
    .tech-ticker {
        margin-top: 1.5rem;
    }
    
    .tech-pill {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }
    
    .project-card {
        padding: 1.125rem;
    }
    
    .project-card-title {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .story-screen--projects {
        padding: clamp(5rem, 10vh, 8rem) var(--space-md);
    }
    
    .projects-header {
        margin-bottom: 3rem;
    }
    
    .tech-ticker {
        margin-top: 2rem;
    }
    
    .tech-ticker-track {
        gap: 0.75rem;
    }
    
    .tech-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .project-card {
        padding: 1.25rem;
    }
    
    .project-card-badge {
        font-size: 0.6rem;
    }
    
    .project-card-badge svg {
        width: 10px;
        height: 10px;
    }
    
    .project-card-link {
        top: 1rem;
        right: 1rem;
    }
    
    .project-card-link svg {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================
   FUTURE SECTION - Mobile First
   ========================================== */
.story-screen--future {
    padding: var(--space-lg) 1rem;
    text-align: center;
}

.story-future-year-large {
    font-size: clamp(3rem, 10vw, 5rem);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .story-screen--future {
        padding: clamp(6rem, 12vh, 10rem) var(--space-md);
    }
    
    .story-future-year-large {
        font-size: clamp(4rem, 12vw, 8rem);
        margin-bottom: 1rem;
    }
}
