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

:root {
    --bg-primary: #E8DED4;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-light: #666666;
    --border: #d0c4b8;
    --spacing-section: 12rem;
    --spacing-large: 8rem;
    --spacing-medium: 5rem;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* SCROLL REVEAL ANIMATION - Simplified */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER & NAVIGATION */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    will-change: background, box-shadow;
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

#header.scrolled .logo {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: white;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.25s ease;
    position: relative;
    padding-bottom: 0.3rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    opacity: 0.7;
}

#header.scrolled .nav-link {
    color: var(--text-primary);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

#header.scrolled .hamburger-line {
    background: var(--text-primary);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hamburger.active .hamburger-line {
    background: white !important;
}

/* HERO SECTION - Optimized background with zoom */
.launch-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.launch-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #8B7B6C;
    background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('hero.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.15);
    z-index: 0;
}

.launch-content {
    text-align: center;
    z-index: 1;
}

.launch-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8.5rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.35em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    text-transform: uppercase;
    animation: fadeIn 1s ease-out;
}

.launch-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    letter-spacing: 0.25em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1.2s ease-out 0.2s both;
    text-transform: uppercase;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PHILOSOPHY SECTION */
.philosophy {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFE9E1;
    padding: 4rem 0;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

.philosophy-left {
    display: flex;
    align-items: center;
}

.philosophy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1;
    margin: 0;
}

.philosophy-accent {
    width: 120px;
    height: 1px;
    background: var(--text-primary);
    margin-top: 2rem;
    opacity: 0.3;
}

.philosophy-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.philosophy-intro p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--text-secondary);
    line-height: 1.3;
    font-weight: 300;
    margin: 0;
    font-style: italic;
}

.philosophy-intro strong {
    font-weight: 600;
    font-style: normal;
    color: var(--text-primary);
}

.philosophy-statement p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* SERVICES SECTIONS */
.services-title {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
}

.services-title-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    line-height: 1;
    margin: 0;
}

.service-pra,
.service-pmc {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    background: #FFFFFF;
}

.service-image-half {
    background-size: cover;
    background-position: center;
}

.service-pra .service-image-half {
    background-image: url('praimage.webp');
}

.service-pmc .service-image-half {
    background-image: url('pmcimage.webp');
}

.service-content-half {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.service-pra .service-content-half::before,
.service-pmc .service-content-half::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    z-index: 0;
}

.service-pra .service-content-half::before {
    background-image: url('praimage.webp');
}

.service-pmc .service-content-half::before {
    background-image: url('pmcimage.webp');
}

.service-content-half::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.service-content-inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.service-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 1rem 0 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s ease;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: white;
    font-size: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.service-list li:hover {
    color: white;
    padding-left: 2rem;
}

/* STAGGERED REVEAL ANIMATIONS FOR SERVICE LIST ITEMS */
.service-list li.reveal {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, color 0.25s ease, padding-left 0.25s ease;
}

.service-list li.reveal.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-list li.reveal:nth-child(1) {
    transition-delay: 0s, 0s, 0s, 0s;
}

.service-list li.reveal:nth-child(2) {
    transition-delay: 0.1s, 0.1s, 0s, 0s;
}

.service-list li.reveal:nth-child(3) {
    transition-delay: 0.2s, 0.2s, 0s, 0s;
}

.service-list li.reveal:nth-child(4) {
    transition-delay: 0.3s, 0.3s, 0s, 0s;
}

.service-list li.reveal:nth-child(5) {
    transition-delay: 0.4s, 0.4s, 0s, 0s;
}

.service-list li.reveal.visible:nth-child(1) {
    transition-delay: 0s;
}

.service-list li.reveal.visible:nth-child(2) {
    transition-delay: 0.1s;
}

.service-list li.reveal.visible:nth-child(3) {
    transition-delay: 0.2s;
}

.service-list li.reveal.visible:nth-child(4) {
    transition-delay: 0.3s;
}

.service-list li.reveal.visible:nth-child(5) {
    transition-delay: 0.4s;
}

/* APPROACH SECTION */
.approach-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    padding: var(--spacing-section) 3rem;
}

.approach-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.approach-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: 100%;
    min-height: 700px;
}

.approach-image-top,
.approach-image-bottom {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.approach-image-top img,
.approach-image-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
}

.approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    line-height: 1;
    margin: 0;
}

.approach-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-paragraph {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

.principle-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.principle-item.reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.principle-item.reveal:nth-child(2) {
    transition-delay: 0.25s;
}

.principle-item.reveal:nth-child(3) {
    transition-delay: 0.4s;
}

.principle-item.reveal:nth-child(4) {
    transition-delay: 0.55s;
}

.principle-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0;
}

.principle-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* OUR GROWTH SECTION */
.our-growth {
    background: #FFFFFF;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.growth-image {
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

.growth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.growth-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 8rem 3rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.growth-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    align-items: start;
    width: 100%;
}

.growth-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.growth-stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    transition: transform 0.3s ease;
}

.growth-stat-item:hover .growth-stat-number {
    transform: scale(1.05);
}

.growth-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.growth-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-top: 0.5rem;
}

.growth-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    line-height: 1;
    margin: 0;
}

.growth-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    max-width: 600px;
}

/* TESTIMONIALS SECTION */
.testimonials {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: #FFFFFF;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('testimonials.webp') center/cover no-repeat;
    z-index: 0;
}

.testimonials-container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    z-index: 1;
    padding: 8rem 4rem;
}

.testimonials-content {
    position: relative;
    min-height: 450px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 100%;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.testimonial-quote {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    color: white;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 3.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: white;
    font-weight: 400;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.testimonial-company {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.testimonial-progress-bars {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 600px;
    z-index: 10;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: white;
    transition: width 0.1s linear;
}

.progress-bar.completed .progress-bar-fill {
    width: 100%;
}

.progress-bar.active .progress-bar-fill {
    animation: progressAnimation 8s linear forwards;
}

@keyframes progressAnimation {
    from { width: 0%; }
    to { width: 100%; }
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

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

.testimonial-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.testimonial-dot.active {
    background: white;
    transform: scale(1.3);
}

.testimonial-dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 4px;
}

/* CONTACT SECTION */
.contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    padding: 6rem 3rem;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    line-height: 1;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 3.5rem 3rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-card-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.contact-button {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.25s ease;
}

.contact-button.primary {
    background: var(--text-primary);
    color: white;
    border: 1px solid var(--text-primary);
}

.contact-button.primary:hover {
    background: transparent;
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.contact-button.whatsapp {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.contact-button.whatsapp:hover {
    background: linear-gradient(135deg, #6B8E6F, #8BA888);
    color: white;
    border-color: #6B8E6F;
    transform: translateY(-2px);
}

.contact-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.contact-button.secondary:hover {
    background: var(--text-primary);
    color: white;
    transform: translateY(-2px);
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}

.contact-value {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.6;
}

/* FOOTER */
footer {
    background: #000000;
    color: #FFFFFF;
    padding: var(--spacing-large) 3rem 3rem;
}

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

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-light); }

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    :root {
        --spacing-section: 8rem;
        --spacing-large: 5rem;
        --spacing-medium: 3rem;
    }
    
    .launch-logo { font-size: 5rem; }
    .launch-tagline { font-size: 0.95rem; letter-spacing: 0.2em; }
    
    .philosophy-container { gap: 5rem; }
    .philosophy-title { font-size: 4.5rem; }
    .philosophy-intro p { font-size: 1.8rem; }
    .philosophy-statement p { font-size: 1.05rem; }
    
    .services-title-text { font-size: 4rem; }
    
    .service-pra, .service-pmc {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 1.5rem;
    }
    
    .service-image-half {
        min-height: 50vh;
        order: -1;
    }
    
    .service-content-half {
        min-height: auto;
        padding: 4rem 2rem;
    }
    
    .service-title { font-size: 2.8rem; }
    .service-description { font-size: 1.05rem; }
    
    .approach-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .approach-images {
        min-height: 500px;
        order: -1;
    }
    
    .approach-title { font-size: 4.5rem; }
    
    .growth-container { padding: 5rem 2rem; }
    .growth-top {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .growth-stats-grid {
        gap: 3rem 2.5rem;
        order: 2;
    }
    
    .growth-content {
        gap: 1.5rem;
        order: 1;
    }
    
    .growth-title { font-size: 3.5rem; }
    .growth-stat-number { font-size: 3rem; }
    
    .testimonials-container { padding: 5rem 3rem; }
    .testimonial-quote { font-size: 1.8rem; margin-bottom: 2.5rem; }
    
    .testimonial-progress-bars {
        max-width: 500px;
    }
    
    .contact { padding: 4rem 2rem; }
    .contact-title { font-size: 3.5rem; }
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo { font-size: 3rem; }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 5rem;
        --spacing-large: 3.5rem;
        --spacing-medium: 2rem;
    }
    
    #navbar { padding: 1.25rem 1.5rem; }
    .logo { font-size: 1.5rem; }
    
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-link {
        font-size: 1.3rem;
        color: white !important;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        padding: 0.75rem 0;
    }
    
    .nav-link::after { display: none; }
    
    .launch-screen::before {
        background-size: cover;
        transform: scale(1.5);
        background-position: 35% center;
    }
    
    .launch-logo { font-size: 3rem; letter-spacing: 0.2em; }
    .launch-tagline { font-size: 0.65rem; letter-spacing: 0.2em; }
    
    .philosophy {
        min-height: auto;
        padding: var(--spacing-section) 0;
    }
    
    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .philosophy-left {
        justify-content: center;
    }
    
    .philosophy-title { font-size: 2.5rem; text-align: center; }
    .philosophy-accent { width: 80px; margin: 1.5rem auto 0; }
    .philosophy-intro p { font-size: 1.6rem; text-align: center; }
    .philosophy-statement p { font-size: 1.05rem; text-align: center; }
    
    .services-title { min-height: 35vh; padding: 2rem 1.5rem; }
    .services-title-text { font-size: 2.5rem; }
    
    .service-content-half { padding: 3rem 2rem; }
    .service-title { font-size: 2rem; margin-bottom: 1.5rem; }
    .service-description { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
    .service-image-half { min-height: 35vh; }
    
    .approach-section { padding: var(--spacing-section) 2rem; }
    .approach-images { min-height: 350px; gap: 1rem; }
    .approach-title { font-size: 2.5rem; }
    
    .growth-container { padding: 4rem 2rem; }
    .growth-top {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .growth-title { font-size: 2.5rem; }
    .growth-stat-number { font-size: 2.5rem; }
    .growth-image { height: 30vh; }
    
    .testimonials { min-height: 80vh; }
    .testimonials::before { inset: 1rem; }
    .testimonials-container { padding: 4rem 2rem; gap: 3rem; }
    .testimonials-content { min-height: 400px; }
    .testimonial-quote { font-size: 1.3rem; margin-bottom: 2.5rem; padding: 0 1rem; }
    
    .testimonial-progress-bars {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .progress-bar {
        height: 2px;
    }
    
    .testimonial-dots {
        gap: 0.75rem;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot.active {
        transform: scale(1.2);
    }
    
    .contact { padding: var(--spacing-section) 2rem; }
    .contact-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
    .contact-card { padding: 2.5rem 2rem; }
    .contact-card-title { font-size: 2rem; }
    
    footer { padding: var(--spacing-large) 2rem 2rem; }
    .footer-logo { font-size: 2.2rem; letter-spacing: 0.2em; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    html { scroll-behavior: auto !important; }
}