/* ========================================
   247 Studio Clone - ZLab Studio
   ======================================== */

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

:root {
    --black: #111;
    --white: #fff;
    --gray-light: #f2f2f2;
    --gray-mid: #999;
    --gray-dark: #666;
    --font: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--transition);
}

.top-bar a {
    text-decoration: underline;
    font-weight: 600;
}

.top-bar-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

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

/* ========================================
   Navbar
   ======================================== */
.navbar {
    position: fixed;
    top: 2.5rem;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    transition: top 0.4s var(--transition), background 0.3s;
}

.navbar.scrolled {
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
}

.navbar.no-bar {
    top: 0;
}

.nav-logo a {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-contact {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-menu-btn {
    display: none;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
}

/* ========================================
   Menu Overlay
   ======================================== */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--white);
    display: flex;
    flex-direction: column;
    padding: 1.5rem 3rem;
    transform: translateY(-100%);
    transition: transform 0.6s var(--transition);
}

.menu-overlay.active {
    transform: translateY(0);
}

.menu-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-close-btn {
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
}

.menu-overlay-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
}

.menu-links li {
    margin-bottom: 0.5rem;
}

.menu-links a {
    font-size: 2.5rem;
    font-weight: 500;
    transition: opacity 0.3s;
}

.menu-links a:hover {
    opacity: 0.5;
}

.menu-info {
    display: flex;
    gap: 3rem;
    font-size: 0.85rem;
}

.menu-info-label {
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8rem 3rem 3rem;
    position: relative;
}

.hero-nav-expanded {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: absolute;
    top: 7rem;
    right: 3rem;
}

.hero-nav-links {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.hero-nav-links li {
    cursor: pointer;
    transition: opacity 0.3s;
}

.hero-nav-links li:hover {
    opacity: 0.5;
}

.arrow-indicator {
    font-size: 0.6rem;
    margin-right: 0.3rem;
}

.hero-nav-lang {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.hero-nav-lang .active {
    opacity: 1;
}

.hero-nav-lang span {
    display: block;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.hero-nav-lang span:hover {
    opacity: 1;
}

.hero-nav-office {
    display: flex;
    gap: 1.5rem;
}

.hero-office-img {
    width: 180px;
    height: 120px;
    background: #d0d0d0;
    border-radius: 2px;
    object-fit: cover;
}

.hero-office-info {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.office-label {
    margin-bottom: 0.5rem;
}

.office-contact {
    margin-top: 1rem;
}

.office-contact a {
    text-decoration: underline;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding-bottom: 15%;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    max-width: 70%;
    letter-spacing: -0.02em;
    color: var(--black);
}

.hero-rotating-text {
    color: #c0c0c0;
    transition: opacity 0.4s;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.scroll-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    position: relative;
}

.scroll-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ccc;
    transform: translate(-50%, -50%);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translate(-50%, -50%); opacity: 1; }
    50% { transform: translate(-50%, 4px); opacity: 0.3; }
}

.hero-description {
    max-width: 420px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--black);
    font-style: italic;
}

/* ========================================
   Clients Section
   ======================================== */
.clients {
    padding: 6rem 3rem;
}

.clients-intro {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
    max-width: 500px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid #e0e0e0;
}

.client-item {
    padding: 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 140px;
}

.client-num {
    font-size: 0.7rem;
    color: var(--gray-mid);
    align-self: flex-start;
}

.client-logo {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.clients-more {
    text-align: right;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    color: var(--gray-mid);
}

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--black);
    color: var(--white);
    padding: 6rem 3rem;
}

.services-header {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.services-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    max-width: 60%;
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--gray-mid);
}

.services-header-right {
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2rem;
}

.services-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #555;
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    padding: 2rem 1.5rem;
    border-top: 1px solid #333;
    transition: background 0.3s;
}

.service-card:hover {
    background: #1a1a1a;
}

.service-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: 1px solid #555;
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: clamp(1.3rem, 2vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
}

/* ========================================
   Results Section
   ======================================== */
.results {
    padding: 8rem 3rem;
}

.results-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.results-content {
    display: flex;
    gap: 4rem;
}

.results-desc {
    max-width: 450px;
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.results-stats {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.stat-card {
    flex: 1;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-number {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: var(--gray-mid);
    text-transform: uppercase;
}

/* ========================================
   Projects Section
   ======================================== */
.projects {
    padding: 4rem 3rem 6rem;
}

.projects-intro {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 3rem;
    max-width: 450px;
    line-height: 1.5;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.project-card {
    grid-column: span 3;
}

.project-card.project-large {
    grid-column: span 4;
}

.project-card.project-wide {
    grid-column: span 4;
}

.project-card:nth-child(2) {
    grid-column: span 2;
}

.project-card:nth-child(3) {
    grid-column: span 2;
}

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 2px;
    margin-bottom: 1rem;
    transition: transform 0.4s var(--transition);
    overflow: hidden;
}

.project-card:hover .project-img {
    transform: scale(0.98);
}

.project-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-mid);
}

.projects-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.plus-icon {
    font-size: 1.5rem;
    font-weight: 300;
}

.projects-link, .insights-link {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: opacity 0.3s;
}

.projects-link:hover, .insights-link:hover {
    opacity: 0.5;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: 6rem 3rem;
}

.testimonials-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 4rem;
    max-width: 70%;
    letter-spacing: -0.02em;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s var(--transition);
}

.testimonial-card {
    min-width: calc(33.333% - 1rem);
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
    flex-shrink: 0;
}

.testimonial-num {
    font-size: 0.75rem;
    color: var(--gray-mid);
    margin-bottom: 2rem;
}

.testimonial-company {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ddd;
}

.testimonial-author strong {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    display: block;
}

.testimonial-author span {
    font-size: 0.7rem;
    color: var(--gray-mid);
    letter-spacing: 0.03em;
}

.testimonials-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-arrow {
    background: none;
    border: 1px solid #e0e0e0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font);
}

.testimonial-arrow:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ========================================
   Insights Section
   ======================================== */
.insights {
    padding: 6rem 3rem;
}

.insights-headline {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 3rem;
    max-width: 55%;
    letter-spacing: -0.02em;
}

.insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.insight-card {
    background: var(--gray-light);
    padding: 2rem;
    transition: background 0.3s;
}

.insight-card:hover {
    background: #e6e6e6;
}

.insight-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.insight-featured a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insight-featured h4 {
    font-size: 1.5rem;
    margin-top: auto;
}

.insight-date {
    font-size: 0.7rem;
    color: var(--gray-mid);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.insight-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 0.25rem 0.8rem;
    margin-bottom: 1rem;
}

.insight-card h4 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.insights-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--black);
    color: var(--white);
    padding: 6rem 3rem 3rem;
    margin: 3rem;
    border-radius: 4px;
}

.cta-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 6rem;
}

.cta-person {
    flex-shrink: 0;
}

.cta-photo {
    width: 180px;
    height: 220px;
    background: #555;
    margin-bottom: 1rem;
}

.cta-person-info {
    border-left: 2px solid #555;
    padding-left: 1rem;
}

.cta-person-info strong {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    display: block;
}

.cta-person-info span {
    font-size: 0.7rem;
    color: var(--gray-mid);
    letter-spacing: 0.05em;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-style: italic;
}

.cta-text .text-muted {
    color: #666;
}

.cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.cta-bar p {
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    color: #aaa;
}

.cta-bar strong {
    color: var(--white);
}

.cta-arrow {
    font-size: 2rem;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid #333;
}

.cta-arrow:hover {
    transform: translateX(4px);
    border-color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 4rem 3rem 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-portfolio-link {
    max-width: 400px;
}

.footer-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-mid);
    margin-bottom: 1rem;
}

.footer-index-link {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-nav {
    display: flex;
    gap: 6rem;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-nav-col a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
}

.footer-nav-col a:hover {
    opacity: 0.5;
}

.footer-nav-col p {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.footer-contact-info {
    margin-top: 0.5rem;
    text-decoration: underline;
}

.footer-middle {
    margin-bottom: 4rem;
}

.footer-services {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-left: auto;
    width: fit-content;
}

.footer-services span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-mid);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #e0e0e0;
    padding-top: 3rem;
}

.footer-logo-large {
    display: flex;
    flex-direction: column;
}

.footer-logo-large span {
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.footer-bottom-right {
    text-align: right;
}

.footer-copyright {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-mid);
    margin-bottom: 2rem;
}

.footer-social-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-mid);
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-social a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 0.5;
}

/* ========================================
   Contact Form Overlay
   ======================================== */
.contact-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.6s var(--transition);
}

.contact-overlay.active {
    transform: translateX(0);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
}

.contact-close {
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.contact-form-wrapper > p {
    color: var(--gray-mid);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    font-family: var(--font);
    font-size: 0.9rem;
    outline: none;
    background: transparent;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--black);
}

.contact-form textarea {
    resize: none;
    margin-bottom: 2rem;
}

.budget-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--gray-mid);
    margin-bottom: 1rem;
}

.budget-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.budget-options label {
    font-size: 0.8rem;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.budget-options label:has(input:checked) {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.budget-options input {
    display: none;
}

.form-consent {
    margin-bottom: 2rem;
}

.form-consent label {
    font-size: 0.7rem;
    color: var(--gray-mid);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-consent input {
    margin-top: 2px;
}

.form-submit {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: opacity 0.3s;
}

.form-submit:hover {
    opacity: 0.8;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .hero-nav-expanded {
        display: none;
    }

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

@media (max-width: 990px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .navbar.scrolled {
        padding: 1rem 2rem;
    }

    .hero {
        padding: 8rem 2rem 2rem;
    }

    .hero-headline {
        max-width: 100%;
    }

    .clients {
        padding: 4rem 2rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services {
        padding: 4rem 2rem;
    }

    .services-header {
        flex-direction: column;
        gap: 2rem;
    }

    .services-headline {
        max-width: 100%;
    }

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

    .results {
        padding: 4rem 2rem;
    }

    .results-content {
        flex-direction: column;
    }

    .projects {
        padding: 4rem 2rem;
    }

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

    .project-card,
    .project-card.project-large,
    .project-card.project-wide {
        grid-column: span 1;
    }

    .testimonials {
        padding: 4rem 2rem;
    }

    .testimonials-headline {
        max-width: 100%;
    }

    .testimonial-card {
        min-width: calc(50% - 0.75rem);
    }

    .insights {
        padding: 4rem 2rem;
    }

    .insights-headline {
        max-width: 100%;
    }

    .cta-section {
        margin: 2rem;
        padding: 4rem 2rem 2rem;
    }

    .cta-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer {
        padding: 3rem 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-nav {
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 1.2rem 1rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 1rem;
    }

    .hero {
        padding: 7rem 1rem 1.5rem;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .clients {
        padding: 3rem 1rem;
    }

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

    .services {
        padding: 3rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .results {
        padding: 3rem 1rem;
    }

    .results-stats {
        flex-direction: column;
    }

    .projects {
        padding: 3rem 1rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card,
    .project-card.project-large,
    .project-card.project-wide {
        grid-column: span 1;
    }

    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonial-card {
        min-width: calc(100% - 1rem);
    }

    .insights {
        padding: 3rem 1rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-featured {
        grid-row: span 1;
    }

    .cta-section {
        margin: 1rem;
        padding: 3rem 1rem 1.5rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-bottom-right {
        text-align: left;
    }

    .menu-overlay {
        padding: 1.2rem 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1rem;
    }
}
