/* ===================================
   ScrollSite Theme - Main Styles
   =================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', system-ui, sans-serif;
    background: #000000;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Only hide overflow on front page (for scroll snap) */
body.home {
    overflow: hidden;
}

/* Animated Background - Yin Yang Style */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-orb {
    position: absolute;
    filter: blur(100px);
    mix-blend-mode: screen;
    will-change: transform;
}

/* Large Yin-Yang inspired shapes */
.orb-1 {
    width: 70vw;
    height: 70vh;
    background: radial-gradient(ellipse at 30% 30%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.25) 40%, rgba(255,255,255,0) 70%);
    top: -10%;
    left: -15%;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    animation: yin-flow 25s ease-in-out infinite;
    opacity: 0.25;
}

.orb-2 {
    width: 70vw;
    height: 70vh;
    background: radial-gradient(ellipse at 70% 70%, rgba(200,200,200,0.55) 0%, rgba(200,200,200,0.2) 40%, rgba(200,200,200,0) 70%);
    bottom: -10%;
    right: -15%;
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    animation: yang-flow 25s ease-in-out infinite reverse;
    opacity: 0.25;
}

.orb-3 {
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle at center, rgba(222,204,156,0.7) 0%, rgba(222,204,156,0.3) 50%, rgba(222,204,156,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: pulse-center 20s ease-in-out infinite;
}

.orb-4 {
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at 50% 50%, rgba(240,240,240,0.4) 0%, rgba(240,240,240,0.15) 45%, rgba(240,240,240,0) 70%);
    top: 20%;
    left: 25%;
    border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
    animation: orbit-flow 30s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes yin-flow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    }
    25% {
        transform: translate(8vw, -5vh) rotate(90deg) scale(1.05);
        border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
    }
    50% {
        transform: translate(5vw, 8vh) rotate(180deg) scale(0.95);
        border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
    }
    75% {
        transform: translate(-3vw, 3vh) rotate(270deg) scale(1.02);
        border-radius: 55% 45% 55% 45% / 45% 55% 45% 55%;
    }
}

@keyframes yang-flow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    }
    25% {
        transform: translate(-8vw, 5vh) rotate(90deg) scale(1.05);
        border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    }
    50% {
        transform: translate(-5vw, -8vh) rotate(180deg) scale(0.95);
        border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    }
    75% {
        transform: translate(3vw, -3vh) rotate(270deg) scale(1.02);
        border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
    }
}

@keyframes pulse-center {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.15) rotate(180deg);
        opacity: 0.18;
    }
}

@keyframes orbit-flow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%;
    }
    33% {
        transform: translate(-6vw, 6vh) rotate(120deg);
        border-radius: 45% 55% 45% 55% / 55% 45% 55% 45%;
    }
    66% {
        transform: translate(6vw, -4vh) rotate(240deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 2rem;
    background: transparent;
    backdrop-filter: none;
}

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

.logo a,
.site-name {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 400;
}

.custom-logo-link img {
    max-height: 40px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
}

.nav-menu li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #DECC9C;
}

/* Language Switcher */
.language-switcher {
    display: flex !important;
    gap: 0.5rem;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.lang-btn {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.05em !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.lang-btn:hover {
    border-color: rgba(222, 204, 156, 0.6) !important;
    color: rgba(222, 204, 156, 0.9) !important;
}

.lang-btn.active {
    background: #DECC9C !important;
    border-color: #DECC9C !important;
    color: #000000 !important;
}

.lang-btn.active:hover {
    background: #E5D7AA !important;
    border-color: #E5D7AA !important;
}

/* Scroll Container */
.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: relative;
    z-index: 1;
}

/* Sections */
.section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    padding: 2rem;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Hero Section */
.hero {
    flex-direction: column;
    gap: 3rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 300;
}

.hero .highlight {
    color: #DECC9C;
    font-style: italic;
}

.rotating-text {
    display: inline-block;
    position: relative;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.rotating-text.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.rotating-text.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #C0C0C0;
    font-weight: 300;
}

/* Center Text */
.center-text h2 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    line-height: 1.3;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.center-text .accent {
    color: #DECC9C;
}

.subtitle {
    font-size: 1.25rem;
    color: #C0C0C0;
    font-weight: 300;
}

/* Journey Section */
.journey h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-align: center;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.journey .accent {
    color: #DECC9C;
}

.sphere-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
}

.sphere {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(222,204,156,0.3) 100%);
    border: 2px solid rgba(222,204,156,0.4);
    box-shadow: 0 0 30px rgba(222,204,156,0.2);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

/* Step Sections */
.step-section {
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.step-section h3 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 200;
    letter-spacing: -0.04em;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.step-section.active h3 {
    opacity: 1;
    transform: translateX(0);
}

.step-section p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #A0A4A1;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease 0.2s;
    font-weight: 300;
    line-height: 1.6;
}

.step-section.active p {
    opacity: 1;
    transform: translateX(0);
}

/* Circle Variants */
.shape-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 0;
}

.circle-variant {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-section.active .circle-variant {
    opacity: 1;
}

/* Single Circle - Identify */
.circle-single {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(222, 204, 156, 0.4);
    background: transparent;
    box-shadow: 0 0 30px rgba(222, 204, 156, 0.2);
}

/* Double Circle - Educate */
.circle-double {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(222, 204, 156, 0.4);
    background: transparent;
    box-shadow: 0 0 30px rgba(222, 204, 156, 0.2);
}

.circle-double .inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(222, 204, 156, 0.4);
    background: transparent;
}

/* Triple Circle - Develop */
.circle-triple {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(222, 204, 156, 0.4);
    background: transparent;
    box-shadow: 0 0 30px rgba(222, 204, 156, 0.2);
}

.circle-triple .inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(222, 204, 156, 0.4);
    background: transparent;
}

.circle-triple .innermost-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(222, 204, 156, 0.4);
    background: transparent;
}

/* Stats Section */
.stats {
    flex-direction: column;
    gap: 3rem;
}

.stats h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
}

.stats em {
    font-style: italic;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-weight: 300;
}

.stat-divider {
    height: 2px;
    background: #DECC9C;
    margin: 1rem 0;
}

.stat-text {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Footer CTA */
.footer-cta {
    flex-direction: column;
    gap: 3rem;
}

.footer-cta h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.footer-cta .accent {
    color: #DECC9C;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
    font-size: 0.9rem;
    color: #A0A4A1;
}

.footer-contact a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #DECC9C;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: #A0A4A1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFFFFF;
}

/* Brands Section */
.brands-section {
    margin-top: 5rem;
    margin-bottom: 4rem;
    width: 100%;
}

.brands-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid rgba(222, 204, 156, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(222, 204, 156, 0.03);
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.brand-item:hover {
    border-color: rgba(222, 204, 156, 0.5);
    background: rgba(222, 204, 156, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(222, 204, 156, 0.15);
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 400;
    color: #DECC9C;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.brand-description {
    font-size: 1rem;
    color: #C0C0C0;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.contact-modal-content {
    position: relative;
    width: 96%;
    max-width: 900px;
    height: 90vh;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid rgba(222, 204, 156, 0.2);
    box-shadow: 0 25px 50px -12px rgba(222, 204, 156, 0.15);
    overflow: hidden;
    z-index: 10000;
}

.contact-modal-header {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(222, 204, 156, 0.1);
}

.contact-modal-close {
    align-self: flex-end;
    background: transparent;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 9999px;
    transition: all 0.3s ease;
    color: #A0A4A1;
}

.contact-modal-close:hover {
    background: rgba(222, 204, 156, 0.1);
    color: #DECC9C;
}

.contact-modal-header h2 {
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 300;
    margin: 0;
    padding: 0 0 1.75rem 0;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.contact-modal-body {
    height: calc(100% - 120px);
    overflow-y: auto;
    padding: 0.5rem 1.5rem 2rem;
}

.contact-modal-body::-webkit-scrollbar {
    width: 8px;
}

.contact-modal-body::-webkit-scrollbar-track {
    background: rgba(222, 204, 156, 0.05);
}

.contact-modal-body::-webkit-scrollbar-thumb {
    background: rgba(222, 204, 156, 0.3);
    border-radius: 4px;
}

.contact-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(222, 204, 156, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .form-row {
        flex-direction: row;
    }

    .form-field {
        flex: 1;
    }

    .form-field-full {
        flex: 1 1 100% !important;
    }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(222, 204, 156, 0.2);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    font-family: inherit;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #DECC9C;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(222, 204, 156, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #A0A4A1;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%23DECC9C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-field select option {
    background: #0a0a0a;
    color: #FFFFFF;
}

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

.contact-form-submit {
    width: fit-content;
    cursor: pointer;
    border-radius: 50px;
    border: 2px solid #DECC9C;
    padding: 0.75rem 2rem;
    background: transparent;
    color: #DECC9C;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.contact-form-submit:hover {
    background: #DECC9C;
    color: #000000;
    border-color: #DECC9C;
}

/* Button */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    background: transparent;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #DECC9C;
    color: #000000;
    border-color: #DECC9C;
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.2);
}

/* Footer */
.site-footer {
    background: #000000;
    padding: 2rem;
    text-align: center;
}

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

.footer-content p {
    color: #A0A4A1;
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-page {
    min-height: 100vh;
    background: #000000;
    color: #FFFFFF;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 10;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.legal-content {
    line-height: 1.8;
    position: relative;
    z-index: 10;
}

.legal-content h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.legal-content .last-updated {
    color: #A0A4A1;
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.legal-content section {
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #DECC9C;
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #FFFFFF;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #C0C0C0;
    font-weight: 300;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #C0C0C0;
}

.legal-content li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.legal-content a {
    color: #DECC9C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #E5D7AA;
}

.legal-content strong {
    color: #FFFFFF;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem;
        position: fixed;
        z-index: 1000;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .logo {
        flex: 1;
    }

    .logo a,
    .site-name {
        font-size: 1.2rem;
    }

    .language-switcher {
        order: 2;
        margin-left: auto;
    }

    .lang-btn {
        padding: 0.4rem 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-dots {
        left: 0.5rem;
        gap: 0.5rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    /* Sections - Fix header overlap and center content */
    .section {
        padding: 6rem 1.5rem 2rem;
        min-height: 100vh;
        height: auto;
        min-height: -webkit-fill-available;
        justify-content: center;
        align-items: center;
    }

    .section-content {
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* Hero adjustments */
    .hero {
        gap: 2rem;
        padding-top: 8rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Center text adjustments */
    .center-text h2 {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
        line-height: 1.4;
    }

    .subtitle {
        font-size: 1rem;
    }

    /* Journey adjustments */
    .journey h2 {
        font-size: clamp(1.3rem, 6vw, 2rem);
        line-height: 1.5;
    }

    .sphere-container {
        width: 200px;
        height: 200px;
        margin: 1.5rem auto;
    }

    .sphere {
        width: 120px;
        height: 120px;
    }

    /* Step sections */
    .step-section {
        padding-top: 6rem;
    }

    .step-section h3 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .step-section p {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .shape-container {
        width: 120px;
        height: 120px;
    }

    .circle-single,
    .circle-double,
    .circle-triple {
        width: 80px !important;
        height: 80px !important;
    }

    .circle-double .inner-circle {
        width: 50px !important;
        height: 50px !important;
    }

    .circle-triple .inner-circle {
        width: 55px !important;
        height: 55px !important;
    }

    .circle-triple .innermost-circle {
        width: 30px !important;
        height: 30px !important;
    }

    /* Stats section */
    .stats {
        gap: 2rem;
        padding-top: 6rem;
    }

    .stats h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-text {
        font-size: 1rem;
    }

    /* Footer CTA */
    .footer-cta {
        padding-top: 6rem;
        gap: 2rem;
    }

    .footer-cta h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }

    /* Brands Section Mobile */
    .brands-section {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .brands-section h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-item {
        padding: 1.5rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-description {
        font-size: 0.95rem;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Legal pages mobile */
    .legal-page {
        padding: 6rem 1.5rem 2rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}