/* ===============================================
   FITLIKE NIGEL - COMPLETE WEBSITE STYLING
   =============================================== */

/* Font Face Declarations */
@font-face {
    font-family: 'PPFormula';
    src: url('fonts/PPFormula-CondensedBlack.otf') format('opentype');
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* Professional Font System */
:root {
    /* Fluid Typography System using clamp() */
    /* Headings - scale from mobile to desktop and beyond */
    --heading-h1: clamp(2.7rem, 1.2rem + 6vw, 9.36rem);       /* 20% groter mobile start */
    --heading-h2: clamp(2.1rem, 1.5rem + 3vw, 5.04rem);      /* 20% groter mobile start */
    --heading-h3: clamp(1.65rem, 1.2rem + 2.25vw, 3.6rem);   /* 20% groter mobile start */
    
    /* Text content - fluid scaling */
    --text-large: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);   /* 18px -> 20px -> 24px */
    --text-normal: clamp(1rem, 0.875rem + 0.625vw, 1.25rem); /* 16px -> 18px -> 20px */
    --text-small: clamp(0.875rem, 0.8125rem + 0.3125vw, 1rem); /* 14px -> 16px -> 16px */
    
    /* Container fluid max-width - scales better for large screens */
    --container-width: clamp(20rem, 85vw, 100rem); /* 320px -> 85vw -> 1600px */
    
    /* Spacing system - fluid margins and paddings for all screen sizes */
    --space-xs: clamp(0.5rem, 0.375rem + 0.625vw, 1.5rem);   /* 8px -> 12px -> 24px */
    --space-sm: clamp(1rem, 0.75rem + 1.25vw, 3rem);         /* 16px -> 24px -> 48px */
    --space-md: clamp(1.5rem, 1rem + 2.5vw, 5rem);           /* 24px -> 40px -> 80px */
    --space-lg: clamp(3rem, 2rem + 4vw, 8rem);               /* 48px -> 64px -> 128px */
    --space-xl: clamp(4rem, 3rem + 5vw, 10rem);              /* 64px -> 80px -> 160px */
    --space-2xl: clamp(5rem, 4rem + 6vw, 12rem);             /* 80px -> 96px -> 192px */
    
    /* Font Weights */
    --weight-bold: 700;     /* Headings - Bold font */
    --weight-medium: 300;   /* Important text - Light font */
    --weight-normal: 200;   /* Body text - Light font */
    --weight-light: 200;    /* Details - Light font */

    /* Colors */
    --text-primary: #efeeec;    /* Main text color */
    --text-secondary: rgba(255, 255, 255, 0.8);  /* Secondary text */
    --text-muted: rgba(255, 255, 255, 0.6);      /* Muted text */
}


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

html {
    font-size: 16px;
    overflow-y: auto !important;
    height: auto;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow-y: auto !important;
    overflow-x: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background-color: #000000;
    color: rgba(239, 238, 236, 0.75);
    line-height: 1.6;
    overflow: hidden;
    width: 100%;
    position: relative;
    font-size: var(--text-normal);
    min-height: 100vh;
}

html {
    overflow: hidden;
}

/* Hide scrollbar for webkit browsers */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Text selection styling */
::selection {
    background-color: #ff4c24;
    color: #efeeec;
}

::-moz-selection {
    background-color: #ff4c24;
    color: #efeeec;
}

/* Keep all titles bright white */
[class*="title"] {
    color: #efeeec !important;
}

/* Keep all headings bright white */
h1, h2, h3, h4, h5, h6 {
    color: #efeeec !important;
}

/* Make all other text slightly darker */

/* Keep navigation and important UI elements brighter */
.nav-link, .nav-brand {
    color: #d4d4d4 !important;  /* Lichtere grijze kleur, subtieler */
}

.nav-link:hover, .nav-brand:hover {
    color: #ff4c24 !important;
}

/* Keep BASIC package card text black - but not buttons */
.package-card:first-child .package-name,
.package-card:first-child .price-amount,
.package-card:first-child .price-period,
.package-card:first-child .package-features li {
    color: #000000 !important;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 76, 36, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 76, 36, 1);
}

/* Hide cursor follower on mobile */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}

/* Allow text selection in form inputs */
input, 
textarea, 
select {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Performance optimizations - only on animating elements */
.testimonial-box, .package-card {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Prevent layout shifts */
img {
    transform: translateZ(0);
}

/* CSS containment for better performance */
.testimonials-wrapper, .packages-grid {
    contain: layout style paint;
}

/* Global Typography Classes */
.heading-h1 { 
    font-size: var(--heading-h1); 
    font-weight: var(--weight-bold);
    line-height: 1.1;
    color: #efeeec;
}

.heading-h2 { 
    font-size: var(--heading-h2); 
    font-weight: var(--weight-bold);
    line-height: 1.2;
    color: #efeeec;
}

.heading-h3 { 
    font-size: var(--heading-h3); 
    font-weight: var(--weight-medium);
    line-height: 1.3;
    color: #efeeec;
}

.text-large { 
    font-size: var(--text-large); 
    font-weight: var(--weight-normal);
    line-height: 1.6;
    color: #efeeec;
}

.text-normal { 
    font-size: var(--text-normal); 
    font-weight: var(--weight-normal);
    line-height: 1.6;
    color: #efeeec;
}

.text-small { 
    font-size: var(--text-small); 
    font-weight: var(--weight-normal);
    line-height: 1.5;
    color: #d4d4d4; /* Grey for smallest text */
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

/* Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    z-index: 1001;
}

.header-container {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.4s ease;
}

.main-header.scrolled .header-container {
    padding: 12px 40px;
    transform: translateY(12px);
}

.main-header.scrolled .logo {
    transform: translateX(8px);
}

.main-header.scrolled .nav-cta,
.main-header.scrolled .menu-button {
    transform: translateX(-8px);
}

.logo {
    transition: all 0.4s ease;
}

.nav-cta {
    transition: all 0.4s ease !important;
}

.menu-button {
    transition: all 0.4s ease;
}

.logo {
    position: absolute;
    left: 40px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-direction: row;
}

.logo-circle {
    width: 38px;
    height: 38px;
    background-color: #000000;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-image {
    width: 120%;
    height: 120%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%); /* Make SVG white */
    transform: translateY(2px);
}

.logo-text {
    font-size: var(--text-normal);
    font-weight: var(--weight-medium);
    color: #efeeec;
    text-transform: none;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    color: #efeeec;
    font-size: var(--text-small);
    font-weight: var(--weight-normal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d4d4d4;
}

.nav-cta {
    display: inline-block !important;
    background-color: #ff4500 !important;
    color: #ffffff !important;
    padding: 10px 18px !important;
    border-radius: 6px !important;
    font-weight: var(--weight-normal) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    position: absolute !important;
    right: 40px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    font-family: inherit !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    border: 1px solid #ff4500 !important;
    line-height: 1.2 !important;
    height: 34px !important;
    box-sizing: border-box !important;
}

.nav-cta:hover {
    background-color: rgba(255, 69, 0, 0.9) !important;
    transform: scale(0.98) !important;
    color: #ffffff !important;
}

.menu-button {
    display: none;
    width: 34px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    box-sizing: border-box;
    z-index: 1002;
}

.menu-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

.menu-button__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: -10px;
    left: 0;
    width: 100vw;
    height: calc(70vh + 10px);
    background: #efeeec;
    z-index: 999;
    transform: translateY(-100%);
    border-radius: 0;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px 40px 40px 40px;
    position: relative;
}

.mobile-menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
}

.mobile-menu-title {
    color: #000000;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}

.mobile-menu-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.menu-item-text {
    color: #000000;
    font-size: var(--heading-h2);
    font-weight: var(--weight-bold);
}

.menu-item-arrow {
    color: #000000;
    font-size: 24px;
    font-weight: normal;
    opacity: 0.6;
}

.mobile-menu-item:hover .menu-item-text {
    color: #ff4500;
}

.mobile-menu-item:hover .menu-item-arrow {
    color: #ff4500;
    transform: translateX(5px);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
}

.mobile-cta-button {
    display: block;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: var(--text-normal);
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-cta-button:hover {
    background-color: #2a2a2a;
}

/* Hide mobile menu on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}

/* Nigel Info Panel */
.nigel-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nigel-info-panel {
    position: fixed;
    top: 20px;
    right: 20px;
    width: calc(45% - 40px);
    height: calc(100vh - 40px);
    background: #efeeec;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.nigel-info-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 40px;
    position: relative;
    max-width: 500px;
}

.nigel-info-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
}

.nigel-info-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.nigel-info-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 20px;
}

.nigel-photo-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid var(--orange-bright);
}

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

.nigel-info-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}

.nigel-info-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
}

.nigel-info-text p {
    margin-bottom: 16px;
}

.nigel-credentials {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
}

.nigel-credentials h3 {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 12px 0;
}

.nigel-credentials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nigel-credentials li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.nigel-credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange-bright);
    font-weight: 600;
}

.nigel-info-cta {
    margin-top: 20px;
}

.nigel-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--orange-bright);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
}

.nigel-cta-button:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* Mobile styling for Nigel Info Panel */
/* @media (max-width: 768px) {
    .nigel-info-panel {
        top: 10px;
        left: 10px;
        right: 10px;
        width: calc(100vw - 20px);
        height: calc(100vh - 20px);
        transform: translateX(100%);
        border-radius: 8px;
    }
    
    .nigel-info-content {
        padding: 60px 30px 30px 30px;
    }
    
    .nigel-info-close {
        top: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .nigel-photo-large {
        width: 100px;
        height: 100px;
    }
    
    .nigel-info-title {
        font-size: 28px;
    }
    
    .nigel-info-text {
        font-size: 15px;
    }
} */


/* Professional Typography System */

/* HEADINGS - 3 Clear Levels */
h1, h2, h3, h4, h5, h6 {
    font-family: 'PPFormula', Arial, sans-serif;
    color: #efeeec;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0 0 24px 0;
}

/* H1 - Hero/Main Titles */
h1, .heading-h1 {
    font-size: var(--heading-h1);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 32px;
    text-transform: uppercase;
}

/* H2 - Section Titles */  
h2, .heading-h2 {
    font-size: var(--heading-h2);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}

/* H3 - Subsection/Component Titles */
h3, .heading-h3 {
    font-size: var(--heading-h3);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* PARAGRAPHS - 3 Clear Levels */

/* Large Text - Important content, intros */
.text-large {
    font-size: var(--text-large);
    font-weight: var(--weight-medium);
    line-height: 1.5;
    color: #efeeec;
    margin-bottom: 20px;
    font-family: 'Inter', Arial, sans-serif;
}

/* Normal Text - Standard body content */
p, .text-normal {
    font-size: var(--text-normal);
    font-weight: var(--weight-normal);
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 16px;
    font-family: 'Inter', Arial, sans-serif;
}

/* Small Text - Details, captions, metadata */
.text-small {
    font-size: var(--text-small);
    font-weight: var(--weight-light);
    line-height: 1.5;
    color: #d4d4d4;
    margin-bottom: 12px;
    font-family: 'Inter', Arial, sans-serif;
}

a {
    color: #efeeec;
    text-decoration: none;
}

/* ===============================================
   HERO SECTION
   =============================================== */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

/* Bottom Navigation Footer */
.navbar-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.navbar-bottom.visible {
    transform: translateY(0);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    width: 100%;
}

.nav-brand {
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(1.6rem, 2.8vw, 2.52rem);
    text-transform: uppercase;
    color: #efeeec;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-brand:hover {
    color: #ff4c24;
}

.nav-link {
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(1.0rem, 1.4vw, 1.4rem);
    text-transform: uppercase;
    color: #d4d4d4;  /* Lichtere grijze kleur, subtieler */
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff4c24;
}

.copyright-icon {
    font-size: 0.7rem;
    margin-left: 0.3rem;
    opacity: 0.7;
    vertical-align: top;
    position: relative;
    top: 0.25rem;
}

/* Left-positioned Navigation for Trajectory Page */
.navbar-left {
    justify-content: flex-start;
}

.navbar-left .nav-container {
    justify-content: flex-start;
    padding: 1.5rem 2.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.0);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: clamp(-0.375rem, -0.25rem + -0.625vw, -0.75rem);
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.019) 12%, rgba(0, 0, 0, 0.037) 17.15%, rgba(0, 0, 0, 0.075) 24.5%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.hero-scroll-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 3;
    pointer-events: none;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    display: block;
    object-fit: cover;
}

.effects-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.5;
    display: block;
}

.hero-container {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 0 4rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2vh;
}

.hero-main {
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 8rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #efeeec;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.title-line-container {
    overflow: hidden;
    display: block;
}

.title-line {
    display: block;
    transform: translateY(120%);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    color: #efeeec;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'PPFormula', Arial, sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: #ff4c24;
    color: #efeeec;
    border-color: #ff4c24;
}

.hero-btn.primary:hover {
    background: #e63d1a;
    border-color: #e63d1a;
    transform: translateY(-2px);
}

.hero-btn.secondary {
    background: transparent;
    color: #efeeec;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Decorative Elements */
.hero-decorative {
    position: absolute;
    bottom: calc(8% - 2rem);
    left: 50%;
    transform: translateX(-50%);
    width: 85vw;
    max-width: 120rem;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 4;
}

.hero-deco-left, .hero-deco-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.deco-number {
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 3.5rem);
    color: #d4d4d4;
    letter-spacing: 0.3px;
    margin-bottom: -0.3rem;
}

.deco-text {
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    text-transform: uppercase;
    color: #efeeec;
    letter-spacing: 1px;
}

/* Mobile Navigation and Hero */
@media (max-width: 768px) {
    /* Hide specific nav items on mobile */
    .nav-container a[href="#packages"],
    .nav-container a[href="#reviews"] {
        display: none;
    }
    
    .nav-container {
        padding: 1.25rem 0.75rem;
    }
    
    .hero-title {
        font-size: clamp(8rem, 18vw, 8rem);
    }
    
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-decorative {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 1rem;
        z-index: 10;
        transform: none;
    }
    
    .hero-deco-left, .hero-deco-right {
        align-items: center;
        text-align: center;
        margin-bottom: 6rem;
    }
}

/* Nigel Photo Circle in Secondary Button */
.nigel-photo-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nigel-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-btn .btn-text {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
}

.hero-btn .btn-text span {
    display: inline-block;
}

.hero-btn:hover {
    transform: scale(0.98);
    background-color: rgba(239, 238, 236, 0.9);
    transition: all 0.3s ease;
}

.hero-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(0.98);
}

.hero-btn.primary {
    background-color: #efeeec;
    color: #000000;
    border: 2px solid #efeeec;
}


.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #efeeec;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
}


.hero-intro {
    font-size: var(--text-large);
    line-height: 1.6;
    color: #efeeec;
    opacity: 0.9;
    max-width: 600px;
    margin: 0;
    font-weight: var(--weight-normal);
}

/* Hero Sidebar */
.hero-sidebar {
    position: absolute;
    left: 40px;
    top: calc(40vh + 40px);
    z-index: 5;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-features li {
    font-size: var(--text-small);
    line-height: 1.3;
    color: #d4d4d4;
    opacity: 0.7;
    margin-bottom: 4px;
    font-weight: var(--weight-light);
    letter-spacing: 0.02em;
}

.hero-social {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 10;
    transition: all 0.6s ease;
}

.hero-social.hidden {
    transform: translateX(100px);
    opacity: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #efeeec;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background-color: #ff4c24;
    border-color: #ff4c24;
    transform: translateY(-2px);
}

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


/* ===============================================
   INTRO SECTION
   =============================================== */
.intro {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl) 0;
}

.intro-title {
    font-size: var(--heading-h2);
    line-height: 0.9;
    margin-bottom: 40px;
    color: #efeeec;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
}

.intro-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-normal);
    line-height: 1.6;
    color: #efeeec;
}

.intro .text-large {
    max-width: 700px;
    margin: 0 auto;
}

.intro-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    height: 120px;
}

.intro-logo {
    position: relative;
    z-index: 10;
}

.intro-logo-circle {
    width: 90px;
    height: 90px;
    background-color: #000000;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.intro-logo-image {
    width: 120%;
    height: 120%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    transform: translateY(2px);
}

.client-icon {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
    display: flex;
    align-items: center;
    padding: var(--space-xl) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-left {
    padding-right: 40px;
}

.about-title {
    font-size: clamp(1.4rem, 1rem + 2vw, 4rem);  /* 20% kleiner dan heading-h2 */
    margin-bottom: 20px;
    color: #efeeec;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    line-height: 0.9;
}

.about-intro {
    font-size: var(--text-large);
    font-weight: var(--weight-normal);
    margin-bottom: 30px;
    line-height: 1.6;
    color: #efeeec;
}

.services-list {
    list-style: none;
    margin-bottom: 30px;
}

/* Text animation containers */
.li-text-container {
    overflow: hidden;
    position: relative;
    height: auto;
}

.li-text {
    display: block;
    transform: translateY(0);
    transition: transform 0.1s ease;
}


.services-list li {
    font-size: var(--text-normal);
    font-weight: var(--weight-normal);
    text-transform: none;
    padding: 16px 0;
    letter-spacing: 0.05em;
    border-bottom: none;
    position: relative;
    cursor: default;
    color: #efeeec;
}

.services-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.25) 85%, 
        rgba(255, 255, 255, 0) 100%);
    transform: scaleX(var(--line-scale, 0));
    transform-origin: left center;
    transition: transform 0.1s ease;
}


.more-info-btn {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: var(--weight-normal);
    padding: 12px 20px;
    border: 1px solid #ff6600;
    border-radius: 4px;
    color: #efeeec;
}

.about-right {
    overflow: hidden;
    border-radius: 8px;
}

.about-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    will-change: transform;
}

/* ===============================================
   PHILOSOPHY SECTION
   =============================================== */
.philosophy {
    display: flex;
    align-items: center;
    background-color: transparent;
    padding: var(--space-xl) 0;
    position: relative;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.philosophy-right {
    padding-left: 40px;
}

.philosophy-title {
    font-size: clamp(1.4rem, 1rem + 2vw, 4rem);  /* 20% kleiner dan heading-h2 */
    margin-bottom: 20px;
    color: #efeeec;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    line-height: 0.9;
}

.philosophy-intro {
    font-size: var(--text-large);
    margin-bottom: 30px;
    line-height: 1.6;
    color: #efeeec;
}

.philosophy-list {
    list-style: none;
    margin-bottom: 30px;
}

.philosophy-list li {
    font-size: var(--text-normal);
    font-weight: var(--weight-normal);
    text-transform: none;
    padding: 16px 0;
    letter-spacing: 0.05em;
    border-bottom: none;
    position: relative;
    color: #efeeec;
}

.philosophy-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.25) 85%, 
        rgba(255, 255, 255, 0) 100%);
    transform: scaleX(var(--line-scale, 0));
    transform-origin: left center;
    transition: transform 0.1s ease;
}

.onboarding .services-list li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.25) 85%, 
        rgba(255, 255, 255, 0) 100%);
    transform: scaleX(var(--line-scale, 0));
    transform-origin: left center;
    transition: transform 0.1s ease;
}


.philosophy-btn {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: var(--weight-normal);
    padding: 12px 20px;
    border: 1px solid #ff6600;
    border-radius: 4px;
    color: #efeeec;
}

.philosophy-left {
    overflow: hidden;
    border-radius: 8px;
}

.philosophy-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 8px;
    will-change: transform;
}

/* ===============================================
   REVIEWS SECTION
   =============================================== */
.reviews {
    background-color: #000000;
    padding: var(--space-2xl) 0;
    overflow: hidden;
    border-top: none;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--container-width);
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.25) 20%, 
        rgba(255, 255, 255, 0.25) 80%, 
        rgba(255, 255, 255, 0) 100%);
}

.reviews-hero {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-hero-title {
    font-family: 'PPFormula', Arial, sans-serif;
    font-size: var(--heading-h2);
    font-weight: 900;
    line-height: 0.9;
    color: #efeeec;
    text-transform: uppercase;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.02em;
}

.reviews .container {
    max-width: 100vw;
    padding: 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.reviews-title {
    font-size: var(--text-normal);
    color: #efeeec;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
    margin-bottom: 30px;
    font-family: 'PPFormula', Arial, sans-serif;
}

.reviews-subtitle {
    font-size: var(--text-small);
    color: #efeeec;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    font-family: 'PPFormula', Arial, sans-serif;
}

.reviews-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 100%);
    margin: 40px auto;
}

/* Client Avatars Row */
.client-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.client-avatars .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.client-avatars .avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
}


.client-avatars .avatar.active {
    transform: translateY(-3px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.4);
    border-width: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.client-avatars .avatar.active::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.client-avatars .avatar.active::before {
    opacity: 1;
}

.client-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-avatars .avatar.active img {
}

/* Testimonials Wrapper */
.testimonials-wrapper {
    width: 100%;
    height: 300px;
    max-height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
}

.testimonial-box {
    padding: var(--space-xs);
    flex-shrink: 0;
    height: 90%;
    width: clamp(20rem, 25vw, 30rem);
    min-width: clamp(20rem, 25vw, 30rem);
}

.testimonial-inner {
    background-color: #efeeec0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.testimonial-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.testimonial-box.active .testimonial-inner {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: #efeeec0f;
    opacity: 1;
}

.testimonial-box.active .testimonial-inner::before {
    opacity: 1;
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: var(--text-small);
    line-height: 1.6;
    color: #d4d4d4;
    margin-bottom: 25px;
    font-style: normal;
    font-weight: var(--weight-normal);
    position: relative;
    z-index: 1;
}


.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: var(--text-small);
    font-weight: var(--weight-bold);
    color: #efeeec;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.author-title {
    font-size: 11px;
    color: #efeeec;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
    font-family: 'PPFormula', Arial, sans-serif;
}

/* Mobile optimizations (excluding iPads) */
@media (max-width: 768px) and (not (device-width: 768px)), 
       (max-width: 767px) {
    /* Disable background-attachment on mobile for better performance */
    .hero {
        background-attachment: scroll !important;
    }
    
    /* Reduce complex animations on mobile */
    .testimonial-box, .package-card {
        will-change: auto;
    }
    
    /* Mobile Typography System */
    h1, .heading-h1 { 
        font-size: var(--heading-h1); 
        line-height: 1.2;
        margin-bottom: 24px;
    }
    h2, .heading-h2 { 
        font-size: var(--heading-h2); 
        line-height: 1.3;
        margin-bottom: 20px;
    }
    h3, .heading-h3 { 
        font-size: var(--heading-h3); 
        line-height: 1.3;
        margin-bottom: 16px;
    }
    
    .text-large {
        font-size: var(--text-large);
        line-height: 1.5;
        margin-bottom: 16px;
    }
    .text-normal, p {
        font-size: var(--text-normal);
        line-height: 1.6;
        margin-bottom: 14px;
    }
    .text-small {
        font-size: var(--text-small);
        line-height: 1.5;
        margin-bottom: 12px;
    }
    
    /* Logo mobile adjustments */
    .logo {
        left: 20px;
    }
    
    .logo-circle {
        width: 32px;
        height: 32px;
        border-width: 1px;
    }
    
    .logo-text {
        display: none !important;
    }
    
    .logo-circle {
        width: 36px !important;
        height: 36px !important;
    }
    
    /* Section specific mobile styles */
    .reviews {
        padding: var(--space-2xl) 0;
    }
    
    .reviews-hero-title {
        line-height: 1.3;
        padding: 0 20px;
    }
    
    .reviews-title {
        font-size: var(--heading-h3);
    }
    
    .client-avatars {
        gap: 8px;
        margin-bottom: 40px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .client-avatars .avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonials-wrapper {
        height: 320px;
        border: none;
    }
    
    .testimonial-box {
        width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        max-width: 400px;
        height: 260px;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .testimonial-inner {
        padding: 25px;
    }
    
    .testimonial-quote {
        font-size: var(--text-small);
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-name {
        font-size: 11px;
    }
    
    .author-title {
        font-size: 11px;
    }
    
    .about-image,
    .philosophy-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .testimonial-box {
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: 360px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    
    .testimonials-wrapper {
        height: 300px;
    }
    
    .testimonial-inner {
        padding: 20px;
    }
    
    .client-avatars .avatar {
        width: 45px;
        height: 45px;
    }
}


/* ===============================================
   ROCKS BACKGROUND
   =============================================== */
.rocks-background {
    height: 80vh;
    width: 100%;
    background-image: url("img/bg-rocks.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: -1;
    margin-top: -50vh;
    margin-bottom: -30vh;
    transform: scaleX(-1);
}

.trajectory-rocks {
    height: 80vh;
    width: 100%;
    background-image: url("img/bg-rocks.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -15rem;
    right: 0;
    z-index: -1;
    transform: scaleX(-1);
}

@media (max-width: 1024px) {
    .trajectory-rocks {
        top: 29rem;
        left: 0;
        height: 50vh;
        bottom: auto;
        right: auto;
    }
}

.trajectory-rocks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.trajectory-rocks::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.019) 12%, rgba(0, 0, 0, 0.037) 17.15%, rgba(0, 0, 0, 0.075) 24.5%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.rocks-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.rocks-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.019) 12%, rgba(0, 0, 0, 0.037) 17.15%, rgba(0, 0, 0, 0.075) 24.5%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
}

/* ===============================================
   PACKAGES SECTION
   =============================================== */
.packages {
    background-color: transparent;
    padding: 100px 0;
    position: relative;
}

.packages-title {
    font-size: var(--heading-h2);
    color: #efeeec;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}

.packages-subtitle {
    font-size: var(--text-normal);
    color: #efeeec;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: var(--container-width);
    margin: 0 auto;
    align-items: start;
}

.package-card {
    background-color: #efeeec;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #000000;
    border-radius: 6px;
    padding: var(--space-md) var(--space-md) var(--space-sm) var(--space-md);
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    background-color: #ff4500;
    border: 1px solid #ff4500;
    color: #efeeec;
    transform: scale(1);
    margin-top: 0;
}

.package-card.elite {
    background-color: #efeeec0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #efeeec;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: black;
    color: #efeeec;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: var(--weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-badge .badge-text {
    display: inline-block;
}

.package-name {
    font-size: var(--heading-h3);
    color: #000000;
    margin-bottom: 8px;
    font-weight: var(--weight-bold);
    text-transform: none;
    margin-top: 8px;
}

.package-card.featured .package-name {
    color: #efeeec;
}

.package-card.elite .package-name {
    color: #efeeec;
}

.package-card.featured .package-name {
    color: #efeeec;
}

.package-price {
    margin-bottom: 4px;
}

.price-amount {
    font-size: var(--title-medium);
    font-weight: var(--weight-bold);
    color: #000000;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.price-amount::before,
.price-amount::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-50%);
}

.price-amount::before {
    left: 10px;
}

.price-amount::after {
    right: 10px;
}

.package-card.featured .price-amount {
    color: #efeeec;
}

.package-card.featured .price-amount::before,
.package-card.featured .price-amount::after {
    background-color: rgba(255, 255, 255, 0.5);
}

.package-card.elite .price-amount {
    color: #efeeec;
}

.package-card.elite .price-amount::before,
.package-card.elite .price-amount::after {
    background-color: rgba(255, 255, 255, 0.3);
}

.price-period {
    font-size: 16px;
    color: #5a5a5a;
    font-weight: var(--weight-normal);
    margin-bottom: 24px;
    display: block;
    margin-top: 5px;
}

.package-card.featured .price-period {
    color: #efeeec;
}

.package-card.elite .price-period {
    color: #d4d4d4;
}

.package-card.featured .price-period {
    color: #efeeec;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 48px;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    font-size: var(--text-small);
    color: #4a4a4a;
    text-align: center;
    line-height: 1.5;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "";
    margin-right: 0;
}

.package-card.featured .package-features li {
    color: #efeeec;
}

.package-card.elite .package-features li {
    color: #d4d4d4;
}

.package-commitment {
    margin: 0.75rem 0 1rem 0;
    font-size: 0.85rem;
    font-weight: 400;
    color: #666;
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.package-card.featured .package-commitment {
    color: #efeeec;
    border-top-color: rgba(255,255,255,0.2);
}

.package-card.elite .package-commitment {
    color: #d4d4d4;
    border-top-color: rgba(255,255,255,0.1);
}

.package-btn {
    background-color: #000000;
    color: #efeeec;
    border: 1px solid #000000;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: var(--weight-medium);
    text-transform: none;
    letter-spacing: 0;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.package-btn .btn-text {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
}

.package-btn .btn-text span {
    display: inline-block;
}

.package-btn:hover {
    transform: scale(0.98);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card.featured .package-btn {
    background-color: #000000;
    color: #efeeec;
    border: 1px solid #000000;
}

.package-card.elite .package-btn {
    background-color: #efeeec;
    color: #000000;
    border: 1px solid #efeeec;
}

@media (max-width: 968px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .packages-title {
        font-size: var(--heading-h1);
    }
}

/* ===============================================
   ONBOARDING SECTION
   =============================================== */
.onboarding {
    background-color: #000000;
    padding: 100px 0;
    border-top: none;
    position: relative;
}


.onboarding-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.onboarding-content {
    padding-right: 40px;
}

.onboarding-intro {
    margin-bottom: 30px;
    line-height: 1.5;
    color: #efeeec;
}

/* Mobile responsiveness */
@media (max-width: 967px) {
    .onboarding-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .onboarding-content {
        padding-right: 0;
    }
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .onboarding-form-panel {
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    
    .step-title {
        color: #333333 !important;
        font-size: 16px !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
        font-weight: 900 !important;
        text-transform: uppercase !important;
        font-family: 'PPFormula', Arial, sans-serif !important;
    }
    
    
    .checkbox-item,
    .radio-item {
        background-color: #f8f9fa !important;
        border: 1px solid #dee2e6 !important;
        color: #333333 !important;
        border-radius: 4px !important;
        margin-bottom: 4px !important;
        padding: 8px 10px !important;
        font-size: var(--text-small) !important;
        line-height: 1.2 !important;
        transition: all 0.2s ease !important;
        min-height: 36px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .checkbox-item:hover,
    .radio-item:hover {
        background-color: #e9ecef !important;
        border-color: #fd7e14 !important;
    }
    
    .checkbox-item.selected,
    .radio-item.selected {
        background-color: #fff3cd !important;
        border-color: #fd7e14 !important;
    }
    
    /* Mobile checkbox centering fix */
    .checkbox-item input[type="checkbox"]:checked + .checkmark:after {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -60%) rotate(45deg) !important;
    }
    
    /* Form step 4 specific spacing */
    #step-4 .form-step {
        padding-top: 16px !important;
    }
    
    #step-4 .step-title {
        margin-bottom: 6px !important;
    }
    
    
    /* Hide desktop line breaks on mobile */
    .desktop-br {
        display: none !important;
    }
    
    /* Hide outermost client icons on mobile for better spacing */
    .client-icon.left-1,
    .client-icon.right-3 {
        display: none !important;
    }
    
    /* Smaller Nigel logo on mobile */
    .intro-logo-circle {
        width: 50px !important;
        height: 50px !important;
    }
    
    .intro-icons-container {
        height: 100px !important;
    }
    
    /* Smaller client profile icons on mobile (20% smaller) */
    .client-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .checkbox-item:hover,
    .radio-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    textarea {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #efeeec;
    }
    
    textarea:focus {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    textarea::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
}

/* iPad Mini responsiveness - MUST come after mobile styles */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 var(--space-sm);
        max-width: 100%;
    }
    
    .onboarding {
        padding: var(--space-xl) 0;
        overflow: hidden;
    }
    
    .onboarding-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 var(--space-sm);
        max-width: 100%;
    }
    
    .onboarding-content {
        padding-right: 0;
        text-align: left;
    }
    
    .onboarding-form-panel {
        width: 100% !important;
        margin: 0 !important;
        padding: 30px 20px !important;
        background: #efeeec !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #e5e7eb !important;
        box-sizing: border-box !important;
    }
    
    .onboarding-form {
        max-width: 100%;
        margin: 0;
        background: transparent;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-step {
        padding: 20px 0;
    }
    
    .step-title {
        color: #000000 !important;
        font-size: var(--text-large) !important;
        font-weight: 900 !important;
        margin-bottom: 8px !important;
        text-align: left !important;
        text-transform: uppercase !important;
        font-family: 'PPFormula', Arial, sans-serif !important;
    }
    
    
    .checkbox-item,
    .radio-item {
        color: #000000 !important;
        font-size: var(--text-normal) !important;
        padding: 16px !important;
    }
    
    .form-navigation {
        width: calc(100% - 50px);
    }
}

.onboarding-content {
    color: #efeeec;
}

.onboarding-title {
    font-size: clamp(1.4rem, 1rem + 2vw, 4rem);  /* 20% kleiner dan heading-h2 */
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 0.9;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}

.onboarding-description {
    font-size: var(--text-normal);
    line-height: 1.6;
    color: #efeeec;
}

.onboarding-description p {
    margin-bottom: 16px;
}

.onboarding-description p:last-child {
    margin-bottom: 0;
}

.onboarding-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 40px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #d4d4d4;
    font-size: var(--text-small);
    font-weight: var(--weight-normal);
    cursor: pointer;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: #efeeec;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: var(--heading-h3);
    font-weight: var(--weight-medium);
    margin-bottom: 20px;
}

.tab-content p {
    font-size: var(--text-small);
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0.9;
}

/* Form Panel */
.onboarding-form-panel {
    background: #efeeec;
    border-radius: 12px;
    padding: 40px 50px 40px 50px;
    height: fit-content;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    width: calc(100% + 300px);
    max-width: none;
    margin-right: -300px;
    position: relative;
}

.onboarding-form {
    background: transparent;
    color: #000000;
    margin-left: 0;
    max-width: 400px;
    width: 100%;
}

/* Zorg ervoor dat alleen formulier tekst zwart is */
.onboarding-form * {
    color: #000000 !important;
}

.onboarding-form .field-group label {
    color: #333333 !important;
}

.onboarding-form .field-group input::placeholder,
.onboarding-form .field-group textarea::placeholder {
    color: #666666 !important;
}

/* Desktop layout - Show line breaks for hero title */
@media (min-width: 1024px) {
    .desktop-br {
        display: inline !important;
    }
    
    /* Show all client icons on desktop */
    .client-icon.left-1,
    .client-icon.right-3 {
        display: block !important;
    }
    
    /* Restore original Nigel logo size on desktop */
    .intro-logo-circle {
        width: 90px !important;
        height: 90px !important;
    }
    
    .intro-icons-container {
        height: 120px !important;
    }
    
    /* Restore original client icon size on desktop */
    .client-icon {
        width: 45px !important;
        height: 45px !important;
    }
    
    /* Show logo text on desktop */
    .logo-text {
        display: inline !important;
        font-size: 18px !important;
    }
    
    .logo-circle {
        width: 38px !important;
        height: 38px !important;
    }
}

/* Desktop form layout */
@media (min-width: 768px) {
    .form-steps-container {
        display: flex;
        width: 400%;
        transition: transform 0.3s ease;
        overflow: hidden;
        min-height: auto;
    }

    .form-step {
        width: 25%;
        flex-shrink: 0;
        padding: 0 100px 0 0;
        box-sizing: border-box;
        color: #000000;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
}

/* Intro Step */
.intro-step {
    text-align: center;
    padding: 20px 0;
}

.intro-step-title {
    font-size: var(--heading-h3);
    color: #000000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'PPFormula', Arial, sans-serif;
}

.intro-step-text {
    font-size: var(--text-small);
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.6;
}

.intro-step-subtext {
    font-size: var(--text-small);
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.start-btn {
    background-color: #000000;
    color: #efeeec;
    border: none;
    padding: 16px 40px;
    font-size: var(--text-small);
    font-weight: var(--weight-bold);
    text-transform: none;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.start-btn:hover {
    background-color: #2a2a2a;
}

/* Form Steps */
.step-title {
    font-size: var(--text-large);
    color: #000000;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}


/* Error Messages */
.error-message {
    display: none;
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: #e53e3e;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
}

.error-message.show {
    display: block;
}

/* Form Groups */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    color: #1f2937;
    transition: all 0.2s ease;
    background: #efeeec;
    font-weight: var(--weight-normal);
    position: relative;
}

.checkbox-item:hover,
.radio-item:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

/* Custom Checkboxes and Radio Buttons */
.checkmark,
.radiomark {
    width: 18px;
    height: 18px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
    background: #efeeec;
}

.radiomark {
    border-radius: 50%;
}

.checkbox-item input:checked + .checkmark {
    background: #000000;
    border-color: #000000;
}

.checkbox-item input:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #efeeec;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-item input:checked + .radiomark {
    border-color: #000000;
}

.radio-item input:checked + .radiomark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
}

.checkbox-item input,
.radio-item input {
    display: none;
}

.radio-content {
    flex: 1;
}

.radio-content strong {
    font-size: var(--text-small);
    font-weight: var(--weight-bold);
    color: #000000;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.radio-content small {
    font-size: var(--text-small);
    color: #666666;
    line-height: 1.4;
}

/* Textarea */
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: #1f2937;
    background: #efeeec;
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
    font-weight: var(--weight-normal);
}

textarea:focus {
    outline: none;
    border-color: #6b7280;
}

textarea::placeholder {
    color: #a0aec0;
}

/* Form Navigation */
.form-navigation {
    padding: 15px;
    background-color: #efeeec;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
}

.nav-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.nav-btn,
.submit-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: var(--weight-medium);
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    border: none;
    font-family: inherit;
}

.prev-btn,
.next-btn {
    border: 1px solid #e5e7eb;
    background: #efeeec;
    color: #6b7280;
}

.prev-btn:hover,
.next-btn:hover {
    border-color: #9ca3af;
    color: #374151;
}

.submit-btn {
    background: #000000;
    color: #efeeec;
    border: none;
    font-weight: var(--weight-medium);
    position: relative;
    overflow: hidden;
}

.submit-btn .btn-text {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
}

.submit-btn .btn-text span {
    display: inline-block;
}

.submit-btn:hover {
    background: #374151;
    transform: scale(0.98);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Progress Bar */
.form-progress {
    text-align: left;
}

.progress-line {
    width: 200px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 0 0 8px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: #000000;
    border-radius: 2px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    font-size: 11px;
    color: #666666;
    font-weight: var(--weight-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Layout */
@media (max-width: 967px) {
    .onboarding {
        padding: 60px 0;
    }
    
    .onboarding-container {
        padding: 0 var(--space-sm);
        gap: 40px;
        max-width: 100%;
    }
    
    .onboarding-title {
        font-size: var(--heading-h2);
    }
    
    .onboarding-form-panel {
        padding: 30px 20px;
    }
}

.onboarding-form {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}



.step-title {
    font-size: var(--text-large);
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.25px;
    line-height: 1.3;
    font-family: 'PPFormula', Arial, sans-serif;
}


/* Intro Step Styling */
.intro-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 20px;
}

.intro-step-title {
    font-size: 32px;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    font-family: 'PPFormula', Arial, sans-serif;
}

.intro-step-text {
    font-size: 18px;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 500px;
}

.intro-step-subtext {
    font-size: var(--text-small);
    color: #666666;
    opacity: 1;
    margin-bottom: 30px;
    max-width: 400px;
}

.start-btn {
    padding: 16px 32px;
    background-color: #000000;
    color: #efeeec;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: var(--weight-bold);
    text-transform: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.05em;
}


/* Error Message Styling */
.error-message {
    background-color: #fff5f5;
    border: 1px solid #fed7d7;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 0 0 20px 0;
    color: #e53e3e;
    font-size: var(--text-small);
    font-weight: var(--weight-normal);
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.error-message.show {
    opacity: 1;
    visibility: visible;
}

.error-message.hide {
    opacity: 0;
    visibility: hidden;
}

/* Form Elements */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    color: #000000;
    font-size: var(--text-small);
    font-weight: var(--weight-normal);
    text-transform: none;
}


.checkbox-item input[type="checkbox"],
.radio-item input[type="radio"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ff6600;
    border-radius: 4px;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.radiomark {
    width: 20px;
    height: 20px;
    border: 2px solid #ff6600;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background-color: #efeeec;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.radio-item input[type="radio"]:checked + .radiomark {
    background-color: #efeeec;
}

.radio-item input[type="radio"]:checked + .radiomark:after {
    content: "";
    position: absolute;
    display: block;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.radio-content {
    display: flex;
    flex-direction: column;
}

.radio-content strong {
    font-size: var(--text-small);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.radio-content small {
    font-size: 11px;
    opacity: 0.7;
}

textarea {
    width: 100%;
    min-height: 120px;
    padding: 16px;
    background-color: #efeeec;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    color: #000000;
    font-size: 14px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

textarea:focus {
    outline: none;
    border-color: #000000;
    background-color: #efeeec;
}

textarea::placeholder {
    color: #a0aec0;
}


.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nav-btn,
.submit-btn {
    padding: 12px 24px;
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--weight-medium);
    text-transform: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0;
}


.submit-btn {
    background-color: #efeeec;
    color: #000;
    position: relative;
    overflow: hidden;
}

.submit-btn .btn-text {
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 1.2em;
    line-height: 1.2em;
}

.submit-btn .btn-text span {
    display: inline-block;
}

.submit-btn:hover {
    transform: scale(0.98);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Progress Indicator */
.form-progress {
    margin-top: 10px;
}

.progress-line {
    width: 100%;
    height: 3px;
    background-color: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #000000;
    width: 25%;
}

.progress-text {
    text-align: left;
    font-size: 11px;
    color: #000000;
    margin-top: 8px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--weight-normal);
}

/* ===============================================
   FOLLOW SECTION
   =============================================== */
.follow-section {
    background-color: #000;
    padding: clamp(10rem, 8rem + 10vw, 18rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: none;
    border-bottom: none;
}


.follow-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--container-width);
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.25) 20%, 
        rgba(255, 255, 255, 0.25) 80%, 
        rgba(255, 255, 255, 0) 100%);
}

.follow-content {
    position: relative;
    z-index: 1;
}

.follow-title {
    font-size: clamp(3.5rem, 8vw, 8rem);  /* Zelfde grootte als hero-title */
    font-weight: 900;
    margin-bottom: 15px;
    color: #efeeec;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 0.9;
}

.follow-subtitle {
    font-size: var(--text-normal);
    color: #efeeec;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.8;
    font-weight: 900;
    text-transform: uppercase;
    font-family: 'PPFormula', Arial, sans-serif;
}

.follow-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.follow-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #efeeec;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.follow-socials .social-icon:hover {
    background-color: #ff4c24;
    border-color: #ff4c24;
    transform: translateY(-2px);
}

.follow-socials .social-icon svg {
    width: 20px;
    height: 20px;
}

/* Bicep Emoji Hover Effect */
.bicep-emoji {
    position: fixed;
    width: 240px;
    height: 240px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: scale(0);
    transform-origin: center center;
}

.bicep-emoji img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.follow-title {
    cursor: pointer;
}

.follow-quote {
    margin-top: 20px;
}

.follow-quote p {
    font-size: var(--text-large);
    color: #d4d4d4;
    font-style: italic;
    font-weight: var(--weight-light);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background-color: #000;
    padding: var(--space-lg) 0 var(--space-sm) 0;
    color: #efeeec;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.footer-column h4 {
    font-size: var(--text-small);
    font-weight: var(--weight-medium);
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #d4d4d4;
    text-decoration: none;
    font-size: var(--text-normal);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #efeeec;
}

.newsletter p {
    font-size: var(--text-normal);
    color: #d4d4d4;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #efeeec;
    font-size: var(--text-small);
    transition: all 0.3s ease;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 12px 24px;
    background-color: #efeeec;
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: var(--text-small);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(0.98);
    background-color: rgba(239, 238, 236, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: none;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--container-width);
    height: 1px;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.25) 25%, 
        rgba(255, 255, 255, 0.25) 75%, 
        rgba(255, 255, 255, 0) 100%);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-circle {
    width: 38px;
    height: 38px;
    background-color: #000000;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo .logo-image {
    width: 120%;
    height: 120%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%); /* Make SVG white */
    transform: translateY(2px);
}

.footer-logo .logo-text {
    font-size: var(--text-normal);
    font-weight: var(--weight-bold);
    color: #efeeec;
}

.copyright {
    font-size: var(--text-small);
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #efeeec;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-socials .social-icon:hover {
    background-color: #ff4c24;
    border-color: #ff4c24;
    transform: translateY(-2px);
}

.footer-socials .social-icon svg {
    width: 40px;
    height: 40px;
}

/* Desktop and tablet - larger social icons (all screens except mobile) */
@media (min-width: 769px) {
    .social-icon,
    .follow-socials .social-icon,
    .footer-socials .social-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .social-icon svg,
    .follow-socials .social-icon svg,
    .footer-socials .social-icon svg {
        width: 28px !important;
        height: 28px !important;
    }

    .footer-column h4 {
        margin-bottom: 32px !important;
    }

    .follow-socials {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        padding-left: 15%; /* Minder offset op tablet */
        padding-right: 10%;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-grid,
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left,
    .philosophy-right {
        padding: 0;
    }
    
    .about-right {
        order: -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: var(--text-small);
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 var(--space-sm);
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Package cards mobile - extra spacing for featured badge */
    .package-name {
        margin-top: 30px !important;
    }
    
    .featured-badge {
        top: 8px !important;
    }
    
    
    /* Hide nav items on mobile for space - keep only Start Nu button */
    .main-nav a[href="#about"],
    .main-nav a[href="#packages"],
    .main-nav a[href="#reviews"] {
        display: none !important;
    }
    
    /* Header container mobile styling */
    .header-container {
        width: 100%;
        padding: 30px 40px;
    }
    
    /* Fix mobile navigation positioning */
    .nav-cta {
        right: 70px !important;
    }
    
    .menu-button {
        right: 20px !important;
    }
    
    /* Disable header animations on mobile - keep static positioning */
    .main-header.scrolled .header-container {
        transform: none !important;
        padding: 30px 40px !important;
    }
    
    .main-header.scrolled .logo {
        transform: none !important;
    }
    
    .main-header.scrolled .nav-cta,
    .main-header.scrolled .menu-button {
        transform: none !important;
    }
    
    /* Show menu button on mobile */
    .menu-button {
        display: flex !important;
    }
    
    /* Mobile button styling - center align and hide photo */
    .hero-btn.secondary {
        justify-content: center !important;
    }
    
    .nigel-photo-circle {
        display: none !important;
    }
    
    /* Consistent text hierarchy for mobile */
    p {
        font-size: var(--text-normal);
        line-height: 1.6;
    }
    
    .text-large {
        font-size: var(--text-large);
        line-height: 1.5;
    }
    
    .text-small {
        font-size: var(--text-small);
    }
    
    /* All section titles use h2 size */
    .section-title,
    .packages-title,
    .coaching-title,
    .contact-title,
    .reviews-title,
    .reviews-hero-title,
    .onboarding-title {
        font-size: var(--heading-h2) !important;
        line-height: 1.2;
    }
    
    /* Subsection titles */
    .package-title,
    .step-title,
    .package-card h3 {
        font-size: var(--heading-h3) !important;
    }
    
    /* Follow Section Mobile */
    .follow-section {
        padding: clamp(12rem, 25vw, 20rem) 0 !important; /* Force veel meer spacing */
    }
    
    .follow-title {
        font-size: var(--heading-h1) !important; /* Same as hero-title mobile size */
        padding: clamp(2rem, 6vw, 4rem) 20px; /* Meer padding boven en onder */
        margin-bottom: clamp(4rem, 10vw, 6rem); /* Nog meer ruimte onder titel */
        max-width: none !important; /* Remove width restriction like hero-title */
        width: 100% !important; /* Full width like hero-title */
    }
    
    .follow-socials {
        gap: clamp(20px, 5vw, 30px); /* Meer gap tussen social icons */
        margin-bottom: clamp(2rem, 6vw, 4rem); /* Extra ruimte onder socials */
    }
    
    /* Footer Mobile */
    .footer {
        padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 8vw, 6rem) 0; /* Veel meer spacing */
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px 30px; /* Meer gap tussen kolommen */
        text-align: left;
        margin-bottom: clamp(3rem, 8vw, 5rem); /* Meer ruimte onder grid */
    }
    
    .footer-column {
        margin-bottom: 2rem; /* Extra ruimte onder elke kolom */
    }
    
    .footer-column h4 {
        font-size: var(--text-small);
        margin-bottom: 20px; /* Meer ruimte onder headers */
        letter-spacing: 1px;
    }
    
    .footer-column ul li {
        margin-bottom: 12px; /* Meer ruimte tussen list items */
    }
    
    .footer-column ul li a {
        font-size: var(--text-normal);
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: clamp(2rem, 6vw, 3rem); /* Meer gap tussen elementen */
        text-align: center;
        padding-top: clamp(2rem, 6vw, 4rem); /* Meer padding boven */
    }
    
    .footer-logo {
        order: 1;
    }
    
    .copyright {
        order: 3;
    }
    
    .footer-socials {
        order: 2;
    }

    .footer-socials .social-icon {
        width: 44px;
        height: 44px;
    }

    .footer-socials .social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        height: 100vh;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-sidebar {
        display: none; /* Hide sidebar on mobile */
    }
    
    .hero-social {
        display: none; /* Hide social icons on mobile */
    }
    
    .hero-content {
        padding: 20px;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: clamp(60px, 8vh, 100px);
    }
    
    .hero-title {
        font-size: clamp(3.6rem, 14.4vw, 7.2rem); /* 20% groter */
        padding: 0;
        word-wrap: break-word;
        line-height: 1.0;
        margin-bottom: clamp(20px, 4vw, 40px);
        margin-top: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 0;
        justify-content: flex-start;
        width: 100%;
    }
    
    .hero-btn {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    
    .hero-intro {
        font-size: var(--text-normal);
        padding: 0;
        text-align: left;
    }
    
    .corner-nav-item {
        font-size: 11px;
        padding: 16px;
    }
    
    /* Circle Menu Mobile */
    .circle-menu {
        width: 56px;
        height: 56px;
        bottom: 24px;
    }
    
    .circle-menu span {
        width: 20px;
    }
    
    /* Sections Mobile */
    .intro,
    .about,
    .philosophy,
    .packages,
    .coaching,
    .contact {
        min-height: auto;
        padding: var(--space-2xl) 0;
    }
    
    .intro-title {
        font-size: var(--heading-h2);
        text-align: center;
    }
    
    .about-title,
    .philosophy-title {
        font-size: var(--heading-h2);
        text-align: left;
    }
    
    .about-grid,
    .philosophy-grid {
        text-align: left;
    }
    
    /* Onboarding Mobile - Simple Card Layout */
    .onboarding {
        padding: 20px 0;
        overflow: visible;
    }
    
    .onboarding-form {
        margin: 0;
        max-width: 100%;
        height: 520px;
        background: #ffffff;
        border-radius: 6px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .intro-step-title {
        font-size: var(--heading-h3);
    }
    
    .intro-step-text {
        font-size: var(--text-normal);
    }
    
    .intro-step-subtext {
        font-size: var(--text-small);
    }
    
    .start-btn {
        padding: 14px 28px;
        font-size: var(--text-small);
    }
    
    .error-message {
        font-size: var(--text-small);
        min-height: 38px;
        padding: 10px 14px;
        margin: 0 0 15px 0;
    }
    
    .form-steps-container {
        flex: 1 !important;
        width: 100% !important;
        overflow: hidden !important;
        position: relative !important;
        padding: 0 !important;
        display: block !important;
        transition: none !important;
        transform: none !important;
    }
    
    .form-step {
        padding: 16px !important;
        width: 100% !important;
        height: 100% !important;
        box-sizing: border-box !important;
        overflow-y: auto !important;
        display: none !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        color: #333333 !important;
        background: transparent !important;
    }
    
    .form-step.active {
        display: block !important;
    }
    
    .step-title {
        font-size: var(--text-large);
    }
    
    .checkbox-item,
    .radio-item {
        padding: 14px;
        font-size: var(--text-small);
    }
    
    .form-navigation {
        padding: 12px 16px !important;
        background: #f8f9fa !important;
        border-top: 1px solid #e9ecef !important;
        border-radius: 0 0 12px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-shrink: 0 !important;
    }
    
    .nav-buttons {
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
    }
    
    .nav-btn {
        flex: 1 !important;
        padding: 12px 16px !important;
        min-width: 0 !important;
        min-height: 44px !important;
        font-size: 14px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: all 0.2s ease !important;
        border-radius: 6px !important;
        border: 1px solid #dee2e6 !important;
        background: #f8f9fa !important;
        color: #333333 !important;
    }
    
    .nav-btn:hover {
        background: #e9ecef !important;
        border-color: #fd7e14 !important;
    }
    
    .submit-btn {
        flex: 1 !important;
        padding: 12px 16px !important;
        min-height: 44px !important;
        font-size: 14px !important;
        font-weight: var(--weight-medium) !important;
        background: #fd7e14 !important;
        color: #fff !important;
        border: 1px solid #fd7e14 !important;
        border-radius: 6px !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: transparent !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
    }
    
    .submit-btn:hover {
        background: #e8680a !important;
        border-color: #e8680a !important;
    }
    
    .submit-btn:active {
        transform: scale(0.98) !important;
    }
    
    /* Intake benefits styling */
    .intake-benefits {
        margin: 20px 0 !important;
    }
    
    .benefit-item {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 8px !important;
        font-size: 13px !important;
        color: #333333 !important;
    }
    
    .benefit-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 16px !important;
        height: 16px !important;
        background: #fd7e14 !important;
        color: #fff !important;
        border-radius: 50% !important;
        font-size: 10px !important;
        font-weight: var(--weight-normal) !important;
        margin-right: 10px !important;
        flex-shrink: 0 !important;
    }
    
    /* Contact form fields styling - Clean & Aligned */
    .contact-fields {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 !important;
    }
    
    .field-group {
        display: flex !important;
        flex-direction: column !important;
        margin: 0 !important;
    }
    
    .field-group label {
        font-size: 11px !important;
        font-weight: var(--weight-normal) !important;
        color: #666666 !important;
        margin-bottom: 6px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        line-height: 1 !important;
    }
    
    .field-group input,
    .field-group textarea {
        width: 100% !important;
        padding: 12px 14px !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 6px !important;
        font-size: 14px !important;
        font-family: inherit !important;
        background: #fafafa !important;
        box-sizing: border-box !important;
        transition: all 0.2s ease !important;
        color: #333333 !important;
        line-height: 1.4 !important;
    }
    
    .field-group input:focus,
    .field-group textarea:focus {
        outline: none !important;
        border-color: #fd7e14 !important;
        background: #ffffff !important;
        box-shadow: 0 0 0 3px rgba(253, 126, 20, 0.1) !important;
    }
    
    .field-group input::placeholder,
    .field-group textarea::placeholder {
        color: #999999 !important;
        font-style: italic !important;
    }
    
    .field-group textarea {
        resize: vertical !important;
        min-height: 70px !important;
        max-height: 120px !important;
        font-family: inherit !important;
    }
    
    /* Required field indicator */
    .field-group label:has(+ input[required]):after {
        content: ' *' !important;
        color: #fd7e14 !important;
        font-weight: bold !important;
    }
    
    .nav-buttons {
        display: flex !important;
        gap: 12px !important;
        justify-content: space-between !important;
    }
    
    /* Form improvements for mobile */
    textarea {
        width: 100%;
        box-sizing: border-box;
        min-height: 60px !important;
        max-height: 120px !important;
        font-size: var(--text-small) !important;
        padding: 8px !important;
        border-radius: 4px !important;
        border: 1px solid #dee2e6 !important;
        resize: vertical !important;
    }
    
    .checkbox-group,
    .radio-group {
        max-height: 320px !important;
        overflow-y: auto;
        padding-right: 3px;
        margin-bottom: 8px !important;
        flex: 1 !important;
    }
    
    /* Progress bar smaller */
    .progress-container {
        margin-bottom: 12px !important;
        padding: 0 16px !important;
    }
    
    .progress-text {
        font-size: 11px !important;
        margin-bottom: 6px !important;
        color: #666666 !important;
    }
    
    .progress-bar {
        height: 3px !important;
        background: #e9ecef !important;
        border-radius: 2px !important;
    }
    
    .progress-fill {
        height: 3px !important;
        background: #fd7e14 !important;
        border-radius: 2px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    /* Adjust mobile typography for very small screens */
    :root {
        --heading-h1-mobile: 43.2px;  /* Hero title - 20% groter */
        --heading-h2-mobile: 28.8px;  /* Section titles - 20% groter */
        --heading-h3-mobile: 21.6px;  /* Subsection titles - 20% groter */
        --text-large-mobile: 19.2px;  /* 20% groter */
        --text-normal-mobile: 16.8px; /* 20% groter */
        --text-small-mobile: 14.4px;  /* 20% groter */
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero {
        background-size: cover;
        background-position: 50% 50%;
    }
    
    .hero-title {
        font-size: var(--heading-h1);
        padding: 0 10px;
        margin-bottom: 8rem;
    }
    
    .hero-buttons {
        margin-bottom: 25px;
    }
    
    .hero-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero-intro {
        font-size: var(--text-normal);
        text-align: left;
    }
    
    .corner-nav-item {
        font-size: 10px;
        padding: 12px;
    }
    
    .circle-menu {
        width: 48px;
        height: 48px;
        bottom: 20px;
    }
    
    .circle-menu span {
        width: 16px;
    }
    
    .intro-title {
        font-size: var(--heading-h2);
    }
    
    .about-title,
    .philosophy-title {
        font-size: var(--heading-h2);
    }
    
    .intro-step-title {
        font-size: var(--text-large);
    }
    
    .intro-step-text {
        font-size: var(--text-small);
    }
    
    .start-btn {
        padding: 12px 24px;
        font-size: 11px;
    }
    
    .error-message {
        font-size: 11px;
        min-height: 34px;
        padding: 8px 12px;
        margin: 0 0 12px 0;
    }
    
    .onboarding-form {
        margin: 0;
        max-width: 100%;
        border-radius: 6px;
    }
    
    .form-step {
        padding: 20px;
        min-height: 400px;
    }
    
    .step-title {
        font-size: var(--text-normal);
    }
    
    .checkbox-item,
    .radio-item {
        padding: 12px;
        font-size: 11px;
    }
}

/* iPad Mini specific overrides - MUST BE LAST */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .onboarding-form-panel {
        background: #efeeec !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 12px !important;
        padding: 30px 20px !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        width: calc(100% - 30px) !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .form-step {
        width: 22% !important;
        flex-shrink: 0 !important;
        padding: 0 60px 0 0 !important;
        box-sizing: border-box !important;
        color: #000000 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .form-navigation {
        padding: 15px !important;
        background-color: #efeeec !important;
        border-top: 1px solid #e2e8f0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: calc(100% - 151px) !important;
    }
    
    .step-title {
        color: #000000 !important;
        font-size: var(--text-large) !important;
        font-weight: 900 !important;
        text-align: left !important;
        text-transform: uppercase !important;
        font-family: 'PPFormula', Arial, sans-serif !important;
    }
    
    
    .onboarding-content {
        text-align: left !important;
    }
    
    .checkbox-item,
    .radio-item {
        color: #000000 !important;
        background: transparent !important;
    }
    
    .onboarding-form-panel .form-input,
    .onboarding-form-panel .form-textarea {
        color: #000000 !important;
        background: white !important;
        border: 1px solid #ccc !important;
    }
    
    /* Testimonial cards - desktop style for iPad */
    .testimonials-wrapper {
        height: 350px !important;
        display: flex !important;
        gap: 20px !important;
    }
    
    .testimonial-box {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
        height: 90% !important;
        padding: 0.5rem !important;
    }
    
    .testimonial-inner {
        padding: 24px !important;
    }
    
    .testimonial-quote {
        font-size: var(--text-small) !important;
    }
    
    .author-avatar {
        width: 48px !important;
        height: 48px !important;
    }
    
    /* Pricing cards - 3 columns for iPad */
    .packages-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px !important;
        max-width: 100% !important;
        padding: 0 20px !important;
    }
    
    .package-card {
        padding: 30px 15px 25px 15px !important;
        transform: scale(1) !important;
        margin-top: 0 !important;
    }
    
    .featured-badge {
        top: 10px !important;
        padding: 4px 8px !important;
        font-size: 9px !important;
    }
    
    .package-name {
        font-size: 20px !important;
        margin-bottom: 5px !important;
    }
    
    .price-amount {
        font-size: 26px !important;
    }
    
    .price-period {
        font-size: 12px !important;
    }
    
    .package-features {
        font-size: 12px !important;
        margin-bottom: 30px !important;
    }
    
    .package-features li {
        margin-bottom: 8px !important;
    }
    
    .package-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* ========================================
   TRAJECTORY PAGE STYLING
   ======================================== */

.trajectory-page {
    display: flex;
    align-items: stretch;
}

/* Desktop only - ensure proper scrolling behavior */
@media (min-width: 1025px) {
    .trajectory-page {
        overflow: hidden;
        height: 100vh;
    }
}

/* Laptop optimization - more compact coaching section */
@media (min-width: 1025px) and (max-width: 1440px) {
    .trajectory-right {
        padding: 3rem 3.5rem;
        padding-top: 6rem;
    }

    .trajectory-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        margin-bottom: 1.5rem;
        line-height: 1.0;
    }

    .trajectory-description {
        font-size: var(--text-normal);
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .trajectory-price {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-top: 0.8rem;
    }

    .trajectory-features {
        min-height: 300px;
        height: 300px;
        margin-bottom: 2rem;
    }

    .trajectory-features li {
        font-size: var(--text-small);
        padding: 12px 0;
        line-height: 1.4;
    }

    .plan-switcher {
        margin-bottom: 1.5rem;
        padding: 6px;
    }

    .plan-option {
        padding: 12px 20px;
        font-size: 13px;
    }
}

.trajectory-left {
    flex: 0 0 40%;
    padding: 6rem 3rem 4rem 3rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.trajectory-right {
    flex: 1;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 8rem;
    position: relative;
    z-index: 1;
}

.trajectory-content {
    max-width: 100%;
    width: 100%;
    position: relative;
    top: 0;
}

.trajectory-title {
    font-family: 'PPFormula', Arial, sans-serif;
    font-size: var(--heading-h2);
    font-weight: 900;
    text-transform: uppercase;
    color: #efeeec;
    margin-bottom: 2rem;
    line-height: 1.1;
    overflow: hidden;
    position: relative;
}

.plan-switcher {
    display: flex;
    gap: 12px;
    margin-bottom: 2rem;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-option {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-option.active {
    background: #ff4c24;
    color: #efeeec;
    box-shadow: 0 4px 12px rgba(255, 76, 36, 0.3);
}

.trajectory-description {
    font-size: var(--text-large);
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    overflow: hidden;
    position: relative;
}

.trajectory-price {
    font-family: 'PPFormula', Arial, sans-serif;
    font-size: var(--heading-h3);
    font-weight: 900;
    color: #ff4c24;
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.trajectory-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 380px;
    height: 380px;
    overflow: hidden;
}

.trajectory-features li {
    font-size: var(--text-normal);
    font-weight: var(--weight-normal);
    text-transform: none;
    padding: 16px 0;
    letter-spacing: 0.05em;
    border-bottom: none;
    position: relative;
    cursor: default;
    color: #efeeec;
}

.trajectory-features li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.25) 85%,
        rgba(255, 255, 255, 0) 100%);
    transform: scaleX(var(--line-scale, 0));
    transform-origin: left center;
    transition: transform 0.6s ease;
}

/* Text animation containers for trajectory features */
.trajectory-features .li-text-container {
    overflow: hidden;
    position: relative;
    height: 1.6em;
}

.trajectory-features .li-text {
    display: inline-block;
    transition: transform 0.6s ease;
    line-height: 1.6;
}

/* Text containers for description lines */
.desc-line-container {
    overflow: hidden;
    position: relative;
    height: 1.6em;
    margin-bottom: 0.3rem;
}

.desc-line {
    display: inline-block;
    transition: transform 0.6s ease;
    line-height: 1.6;
}

.price-text-container {
    overflow: hidden;
    position: relative;
    height: 1.2em;
}

.price-text {
    display: inline-block;
    transition: transform 0.6s ease;
    line-height: 1.2;
}


.form-container {
    max-width: 100%;
    width: 100%;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: auto;
}

.form-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    letter-spacing: -0.02em;
    font-family: 'PPFormula', Arial, sans-serif;
    line-height: 0.9;
    width: 100%;
}


.trajectory-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.selected-plan-indicator {
    background: rgba(255, 76, 36, 0.1);
    border: 1px solid rgba(255, 76, 36, 0.3);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-label {
    font-size: var(--text-small);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-family: 'PPFormula', Arial, sans-serif;
    font-size: var(--text-normal);
    font-weight: 900;
    color: #ff4c24;
    text-transform: uppercase;
}

.trajectory-form .form-group {
    margin-bottom: 1.5rem;
}

.trajectory-form .form-label {
    display: block;
    margin-bottom: 6px;
    font-size: var(--text-small);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: none;
    letter-spacing: 0;
}

.trajectory-form .form-input,
.trajectory-form .form-textarea,
.trajectory-form select.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #efeeec;
    font-size: var(--text-normal);
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

/* Consistent gray placeholder text */
.trajectory-form .form-input::placeholder,
.trajectory-form .form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1; /* Firefox fix */
}

/* Webkit browsers (Chrome, Safari, Edge) */
.trajectory-form .form-input::-webkit-input-placeholder,
.trajectory-form .form-textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Firefox */
.trajectory-form .form-input::-moz-placeholder,
.trajectory-form .form-textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

/* IE/Edge */
.trajectory-form .form-input:-ms-input-placeholder,
.trajectory-form .form-textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.trajectory-form select.form-input {
    cursor: pointer;
    padding-left: 20px;
}

.trajectory-form select.form-input option {
    background: #1a1d20;
    color: #efeeec;
}

.trajectory-form .form-input:focus,
.trajectory-form .form-textarea:focus,
.trajectory-form select.form-input:focus {
    outline: none;
    border-color: #ff4c24;
    box-shadow: 0 0 0 2px rgba(255, 76, 36, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.trajectory-form .form-textarea {
    min-height: 80px;
    resize: vertical;
}

.trajectory-form .form-submit {
    width: 100%;
    padding: 16px 32px;
    background: #ff4c24;
    border: none;
    border-radius: 6px;
    color: #efeeec;
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    font-size: var(--text-normal);
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.trajectory-form .form-submit:hover {
    background: #e63d1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 76, 36, 0.3);
}

.back-button {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #efeeec;
    text-decoration: none;
    font-size: var(--text-small);
    font-weight: 600;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

/* Trajectory page mobile responsive */
@media (max-width: 1024px) {
    .trajectory-page {
        height: auto;
        min-height: 100vh;
        flex-direction: column;
        overflow: visible;
        align-items: stretch;
    }
    
    .trajectory-left {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem;
        padding-top: 5rem;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        min-height: auto;
        justify-content: flex-start;
        order: 2; /* Move form to bottom on mobile */
        border-right: none;
        position: relative;
        z-index: 1;
        overflow-y: visible;
        height: auto;
    }
    
    .trajectory-features {
        min-height: auto;
        height: auto;
        overflow: visible;
    }
    
    .trajectory-right {
        flex: none;
        width: 100%;
        padding: 2rem 1.5rem;
        padding-top: 5rem; /* Add more top spacing for back button */
        border-left: none;
        border-top: none;
        overflow-y: visible;
        align-items: stretch;
        order: 1; /* Move coaching content to top on mobile */
        position: relative;
        z-index: 1;
    }
    
    .trajectory-title {
        font-size: var(--heading-h3);
        margin-bottom: 1.5rem;
    }
    
    .trajectory-content {
        padding-bottom: 2rem;
        width: 100%;
        max-width: none;
    }

    .form-container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .trajectory-form {
        max-width: none;
        width: 100%;
    }

    
    .back-button {
        position: relative;
        top: auto;
        left: auto;
        margin: 1rem 0 0 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 8px 16px;
        font-size: 12px;
        opacity: 0.7;
        display: inline-flex;
        width: auto;
    }
    
    .back-button:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
}

/* Page Transition Styles */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
}

.page-transition__black {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: #000000;
    transform-origin: top;
    transform: scaleY(0);
    z-index: 2;
}

.page-transition__orange {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: #ff4c24;
    transform-origin: top;
    transform: scaleY(0);
    z-index: 1;
}

.transition__logo {
    font-family: 'PPFormula', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    color: #efeeec;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    opacity: 0;
    visibility: hidden;
}

.transition-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
}

.transition-logo-img {
    width: clamp(200px, 40vw, 600px);
    height: auto;
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(2%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(120%) contrast(110%);
}
