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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for consistent rem calculations */
    -webkit-text-size-adjust: 100%; /* Prevent iOS text size adjustment */
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Ensure consistent viewport calculations */
@supports (width: 100dvw) {
    /* Use dynamic viewport units if supported for better consistency */
    html {
        width: 100dvw;
    }
}

body {
    font-family: 'Zalando Sans Expanded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #05050A;
    color: #F0F0F0;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    max-width: 100vw;
    font-size: 1rem; /* Explicit base font size for consistency */
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    background: rgba(5, 5, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F0F0F0;
    letter-spacing: 0.02em;
}

.navbar-signup-btn {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #F0F0F0;
    background: linear-gradient(135deg, #FFD700 0%, #A855F7 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    box-shadow: 
        0 4px 20px rgba(255, 215, 0, 0.3),
        0 4px 20px rgba(168, 85, 247, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.2);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.navbar-signup-btn:hover {
    background: linear-gradient(135deg, #FFE44D 0%, #C084FC 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 30px rgba(255, 215, 0, 0.4),
        0 6px 30px rgba(168, 85, 247, 0.3),
        0 0 0 1px rgba(255, 215, 0, 0.3);
}

.navbar-signup-btn:active {
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000000;
    padding-top: 80px;
    isolation: isolate; /* Creates a new stacking context to contain particles */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 1;
    opacity: 1;
}

/* Particles Container - Only in Hero Section */
#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto;
    overflow: hidden;
    clip: rect(0, auto, auto, 0);
}

#particles-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
}

/* Animated Purple Gradient Background */
.hero-gradient-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-gradient-bg {
    position: absolute;
    width: 100%;
    height: 150vh;
    background: 
        linear-gradient(180deg, 
            transparent 0%,
            rgba(168, 85, 247, 0.3) 20%,
            rgba(139, 92, 246, 0.2) 40%,
            rgba(124, 58, 237, 0.5) 60%,
            rgba(109, 40, 217, 0.7) 80%,
            transparent 100%);
    filter: blur(60px);
    opacity: 0.6;
    transform: translateY(100vh);
}

.hero-gradient-bg:nth-child(1) {
    left: 15%;
    width: 200px;
}

.hero-gradient-bg:nth-child(2) {
    left: 50%;
    width: 250px;
    transform: translateX(-50%);
}

.hero-gradient-bg:nth-child(3) {
    right: 20%;
    width: 180px;
}

/* Responsive gradient widths */
@media (max-width: 768px) {
    .hero-gradient-bg:nth-child(1),
    .hero-gradient-bg:nth-child(2),
    .hero-gradient-bg:nth-child(3) {
        width: 150px;
    }
}

/* Semi-circle at bottom - U-shaped curve */
.hero-semi-circle {
    position: absolute;
    bottom: -150px;
    left: 0;
    width: 100%;
    height: 500px;
    z-index: 2;
    pointer-events: none;
    overflow: visible;
    max-width: 100%;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Hero Headline */
.hero-headline {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    min-height: 1.2em; /* Prevent layout shift during typewriter */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.typewriter-text,
.typewriter-highlight {
    display: inline;
}

.typewriter-cursor {
    display: inline-block;
    color: #FFFFFF;
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-headline .highlight {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.underline-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

/* Hero Description */
.hero-description {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    width: 100%;
    box-sizing: border-box;
}

/* Hero CTA Button */
.hero-cta-btn {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 2.5rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.hero-cta-btn:hover {
    background: #252547;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

/* The Rise Section / About Us */
.rise-section {
    position: relative;
    width: 100%;
    min-height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
    background: #000000;
    padding: 60px 2rem 40px;
    box-sizing: border-box;
}

.rise-container {
    max-width: 1400px;
    width: 100%;
    display: flex; /* Use flexbox instead of grid for better height control */
    flex-direction: row; /* Explicit row direction for desktop */
    gap: 3rem;
    align-items: stretch; /* Make columns equal height */
    box-sizing: border-box;
    min-height: fit-content; /* Ensure container fits content consistently */
}

/* Rise Columns */
.rise-column {
    display: flex;
    flex-direction: column;
    flex: 1; /* Equal width columns */
    min-height: fit-content; /* Fit content height */
    min-width: 0; /* Allow flex items to shrink below content size */
    width: 100%; /* Ensure full width on mobile */
    align-self: stretch; /* Ensure columns stretch to match tallest */
}

.rise-column-left {
    opacity: 0;
    transform: translateX(-50px);
    justify-content: flex-start; /* Align content to top */
}

.rise-column-right {
    opacity: 0;
    transform: translateX(50px);
    justify-content: space-between; /* Distribute cards evenly to fill height */
}

/* Left Column Content */
.rise-headline {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 1rem;
    min-height: 1.2em; /* Prevent layout shift during font loading */
    text-shadow: 
        0 0 15px rgba(168, 85, 247, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.9);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.rise-headline .highlight {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.rise-headline .underline-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
}

.rise-subheadline {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.rise-body-text {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    flex: 1; /* Allow text to grow and fill available space */
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

.rise-cta-btn {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 2.5rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
    width: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.rise-cta-btn:hover {
    background: #252547;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.rise-cta-btn:active {
    transform: translateY(0);
}

/* Right Column Content */
.rise-pillars-title {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 15px rgba(168, 85, 247, 0.3),
        0 0 30px rgba(139, 92, 246, 0.2);
}

.pillar-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-left: 4px solid rgba(168, 85, 247, 0.6); /* Purple accent border */
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    visibility: visible;
    opacity: 1; /* Fallback - will be overridden by GSAP */
    flex: 1 1 auto; /* Allow cards to grow based on content */
    min-height: fit-content; /* Fit content height */
    overflow: visible; /* Ensure all text is visible */
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(168, 85, 247, 0.15); /* Purple glow under card */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.pillar-item:hover {
    border-color: rgba(168, 85, 247, 0.5);
    border-left-color: rgba(168, 85, 247, 0.8); /* Brighter accent on hover */
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(168, 85, 247, 0.25); /* Enhanced purple glow on hover */
}

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

.pillar-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.pillar-number {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    flex-shrink: 0;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 0 20px rgba(255, 215, 0, 0.3);
}

.pillar-title {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(168, 85, 247, 0.3),
        0 0 20px rgba(139, 92, 246, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.pillar-text {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.875rem, 1.6vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    overflow: visible;
    white-space: normal;
    hyphens: auto;
    max-width: 100%;
}

/* Survey/Form Section */
.survey-section {
    position: relative;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #000000;
    padding: 60px 2rem 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* Moving Gradient Background */
.survey-gradient-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.survey-gradient-bg {
    position: absolute;
    width: 100%;
    height: 150vh;
    background: 
        linear-gradient(180deg, 
            transparent 0%,
            rgba(168, 85, 247, 0.25) 20%,
            rgba(139, 92, 246, 0.2) 40%,
            rgba(124, 58, 237, 0.4) 60%,
            rgba(109, 40, 217, 0.5) 80%,
            transparent 100%);
    filter: blur(60px);
    opacity: 0.5;
    transform: translateY(100vh);
}

.survey-gradient-bg:nth-child(1) {
    left: -20%;
    transform: translateY(100vh) translateX(0);
}

.survey-gradient-bg:nth-child(2) {
    left: 50%;
    transform: translateY(100vh) translateX(-50%);
}

.survey-gradient-bg:nth-child(3) {
    left: 120%;
    transform: translateY(100vh) translateX(0);
}

.survey-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    padding: 0 1rem;
}

.survey-headline {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.survey-headline .highlight {
    color: #FFD700;
    position: relative;
    display: inline-block;
}

.survey-description {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
}

/* Form Tabs */
.form-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding-bottom: 0;
}

.form-tab-btn {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.875rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.form-tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.form-tab-btn.active {
    color: #FFD700;
    border-bottom-color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Form Tab Content */
.form-tab-content {
    display: none;
}

.form-tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Form Styles */
.journey-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    margin-bottom: 2rem;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-left: 4px solid rgba(255, 215, 0, 0.6);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.15);
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Form Fields Grid - 2 columns on desktop */
.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.form-input,
.form-textarea {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 400;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

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

/* Style date input calendar icon - Gold color */
.form-input[type="date"] {
    color-scheme: dark;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.form-input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(77%) sepia(98%) saturate(1352%) hue-rotate(1deg) brightness(105%) contrast(101%);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    width: 18px;
    height: 18px;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Firefox */
.form-input[type="date"]::-moz-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(77%) sepia(98%) saturate(1352%) hue-rotate(1deg) brightness(105%) contrast(101%);
    opacity: 0.9;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 120px;
    line-height: 1.5;
}

/* Form Select Dropdown */
.form-select {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 400;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFD700' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select:focus {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.3);
}

.form-select option {
    background: #1a1a2e;
    color: #FFFFFF;
    padding: 0.5rem;
}

/* Form Section Heading */
.form-section-heading {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    color: #FFD700;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-section-heading:first-of-type {
    margin-top: 0;
}

/* Form Checkbox Group */
.form-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    grid-column: 1 / -1;
}

.form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    accent-color: #FFD700;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.form-checkbox:checked {
    background: #FFD700;
    border-color: #FFD700;
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000;
    font-size: 12px;
    font-weight: 700;
}

.form-checkbox:focus {
    outline: 2px solid rgba(255, 215, 0, 0.5);
    outline-offset: 2px;
}

.form-checkbox-label {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.875rem, 1.6vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.form-checkbox-item:hover .form-checkbox-label {
    color: #FFFFFF;
}

.form-checkbox-error {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    color: #f87171;
    margin-top: 0.5rem;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.3);
    display: none;
}

/* Form Pricing Info */
.form-pricing-info {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.8rem, 1.4vw, 0.6rem);
    font-weight: 400;
    color: rgba(255, 215, 0, 0.8);
    margin: 0.25rem 0 0.75rem 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Form Package Group (Radio Buttons) */
.form-package-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-package-item {
    position: relative;
}

.form-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.form-package-label {
    display: block;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.75rem;
}

.form-package-label::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.form-radio:checked + .form-package-label {
    border-color: rgba(255, 215, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.form-radio:checked + .form-package-label::before {
    border-color: #FFD700;
    background: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.form-radio:checked + .form-package-label::after {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 1.75rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000000;
}

.form-package-label:hover {
    border-color: rgba(255, 215, 0, 0.4);
    background: rgba(0, 0, 0, 0.25);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.package-name {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: #FFFFFF;
    flex: 1;
    min-width: 200px;
}

.package-badge {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 600;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    padding: 0.25rem 0.75rem;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

.package-subjects {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.package-pricing {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.package-regular-price {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.package-discounted-price {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* Form Disclaimer */
.form-disclaimer {
    margin: 1.5rem 0;
    padding: 0;
    background: transparent;
    border: none;
    grid-column: 1 / -1;
}

.form-disclaimer-text {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-style: italic;
}

.form-submit-btn {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    font-weight: 600;
    color: #FFFFFF;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.875rem 2rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    align-self: center;
    width: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.form-submit-btn:hover {
    background: #252547;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    font-weight: 500;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.3);
}

/* Mobile Responsiveness */

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.875rem 1rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
        letter-spacing: 0.01em;
    }
    
    .navbar-signup-btn {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        min-height: 36px;
    }

    .hero-section {
        padding-top: 70px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 1.25rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        margin-bottom: 1.75rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-cta-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
    }

    .hero-semi-circle {
        bottom: -100px;
        height: 300px;
    }

    .hero-gradient-bg:nth-child(1),
    .hero-gradient-bg:nth-child(2),
    .hero-gradient-bg:nth-child(3) {
        width: 120px;
    }

    .rise-section {
        padding: 40px 1rem 30px;
        box-sizing: border-box;
    }

    .rise-container {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
        padding: 0;
        margin: 0;
    }

    .rise-column {
        width: 100%;
        min-width: 0;
        min-height: auto;
        flex: 1 1 100%;
    }

    .rise-column-left,
    .rise-column-right {
        transform: translateY(0);
    }

    .rise-column-right {
        justify-content: flex-start;
    }

    .rise-headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.875rem;
    }

    .rise-subheadline {
        font-size: clamp(1rem, 4vw, 1.25rem);
        margin-bottom: 1rem;
    }

    .rise-body-text {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 1.25rem;
    }

    .rise-cta-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
        min-height: 44px;
        width: 100%;
        max-width: 280px;
    }

    .rise-pillars-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 1.25rem;
    }

    .pillar-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .pillar-header {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .pillar-number {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .pillar-title {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
    }

    .pillar-text {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
        line-height: 1.5;
    }
    
    .survey-section {
        padding: 40px 1rem 20px;
    }

    .survey-container {
        padding: 0 0.5rem;
    }
    
    .survey-headline {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .survey-description {
        font-size: clamp(0.9rem, 3vw, 1rem);
        margin-bottom: 1.5rem;
        padding: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .journey-form {
        padding: 1rem;
        gap: 1rem;
    }

    .form-label {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        margin-bottom: 0.5rem;
    }

    .form-input,
    .form-textarea {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0.75rem;
        min-height: 44px;
    }

    .form-textarea {
        min-height: 100px;
        max-height: 150px;
    }

    .form-select {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0.75rem;
        padding-right: 2.5rem;
    }

    .form-section-heading {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin: 1.25rem 0 0.875rem;
    }

    .form-checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        padding: 0.875rem;
    }

    .form-checkbox-label {
        font-size: clamp(0.85rem, 2.5vw, 0.9rem);
    }

    .form-tabs {
        gap: 0.25rem;
        margin-bottom: 1.25rem;
        flex-wrap: wrap;
    }

    .form-tab-btn {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        padding: 0.75rem 1rem;
        flex: 1;
        min-width: 0;
    }

    .form-package-group {
        gap: 0.875rem;
    }

    .form-package-label {
        padding: 1rem;
        padding-left: 2.5rem;
    }

    .form-package-label::before {
        left: 1rem;
        top: 1.25rem;
        width: 18px;
        height: 18px;
    }

    .form-radio:checked + .form-package-label::after {
        left: 1.25rem;
        top: 1.5rem;
        width: 8px;
        height: 8px;
    }

    .package-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.625rem;
    }

    .package-name {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }

    .package-badge {
        align-self: flex-start;
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: 0.2rem 0.625rem;
    }

    .package-subjects {
        font-size: clamp(0.8rem, 1.8vw, 0.9rem);
        margin-bottom: 0.625rem;
    }

    .package-pricing {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .package-regular-price,
    .package-discounted-price {
        font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    }
    
    .form-submit-btn {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
        min-height: 44px;
        width: 100%;
        touch-action: manipulation;
    }

    .site-footer {
        padding: 0.875rem 1rem;
    }

    .footer-text {
        font-size: clamp(0.75rem, 2.5vw, 0.85rem);
        line-height: 1.6;
    }

    .footer-text span,
    .footer-linkedin {
        display: inline;
    }
}

/* Mobile Devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.15rem;
    }
    
    .navbar-signup-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
        min-height: 40px;
    }

    .hero-section {
        padding-top: 75px;
    }

    .hero-content {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-headline {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        margin-bottom: 2rem;
    }

    .hero-cta-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        min-height: 44px;
    }

    .hero-semi-circle {
        bottom: -120px;
        height: 400px;
    }

    .rise-section {
        padding: 50px 1.5rem 35px;
        box-sizing: border-box;
    }

    .rise-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: stretch;
        padding: 0;
        margin: 0;
    }

    .rise-column {
        width: 100%;
        min-width: 0;
        min-height: auto;
        flex: 1 1 100%;
    }

    .rise-column-left,
    .rise-column-right {
        transform: translateY(0);
    }

    .rise-column-right {
        justify-content: flex-start;
    }

    .rise-headline {
        font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    }

    .rise-subheadline {
        font-size: clamp(1.15rem, 3.5vw, 1.5rem);
    }

    .rise-body-text {
        font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    }

    .rise-cta-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        min-height: 44px;
    }

    .pillar-item {
        padding: 1.35rem;
    }

    .pillar-header {
        flex-direction: row;
        gap: 0.625rem;
    }
    
    .survey-section {
        padding: 50px 1.5rem 25px;
    }
    
    .survey-headline {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }
    
    .survey-description {
        font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    }
    
    .journey-form {
        padding: 1.15rem;
        gap: 1.15rem;
    }

    .form-input,
    .form-textarea {
        min-height: 44px;
    }

    .form-textarea {
        min-height: 100px;
        max-height: 150px;
    }

    .form-select {
        font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    }

    .form-section-heading {
        font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    }

    .form-checkbox-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .form-tabs {
        gap: 0.375rem;
    }

    .form-tab-btn {
        font-size: clamp(0.9rem, 2.2vw, 1.05rem);
        padding: 0.8rem 1.25rem;
    }
    
    .form-submit-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        min-height: 44px;
        width: auto;
        max-width: 100%;
    }

    .site-footer {
        padding: 1rem 1.5rem;
    }
}

/* Tablet Devices (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .navbar {
        padding: 1.25rem 1.75rem;
    }

    .hero-content {
        padding: 0 2rem;
        max-width: 800px;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .rise-section {
        padding: 55px 2rem 40px;
    }

    .rise-container {
        gap: 2.5rem;
        flex-direction: row;
    }

    .rise-column {
        flex: 1;
    }

    .survey-section {
        padding: 55px 2rem 30px;
    }

    .survey-container {
        max-width: 550px;
    }
}

/* Large Desktop (1025px and above) - ensure proper max-widths */
@media (min-width: 1025px) {
    .hero-content {
        max-width: 900px;
    }

    .rise-container {
        max-width: 1400px;
    }

    .survey-container {
        max-width: 800px;
    }

    .journey-form {
        padding: 2rem;
    }

    .form-fields-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .form-group:has(.form-checkbox-group),
    .form-group.form-group-full {
        grid-column: 1 / -1;
    }
}

/* Footer */
.site-footer {
    position: relative;
    width: 100%;
    padding: 1rem 2rem;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-text {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.footer-text span {
    color: rgba(255, 255, 255, 0.8);
}

.footer-linkedin {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 500;
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline;
}

.footer-linkedin:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}
