.page-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2.5rem;
    padding-top: 20px;
}

@media (max-width: 600px) {
    .page-title {
        font-size: 2rem;
        text-align: center;
        padding-top: 20px;
    }
}
/* Make only the last two featured logos 30% bigger */
.featured-logo-large {
    transform: scale(2.5);
    z-index: 1;
}
/* Guestbook styles */
.guestbook-main, .guestbook-form, .guestbook-messages {
    width: 100%;
}
.guestbook-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.guestbook-form input,
.guestbook-form textarea {
    font: inherit;
    padding: 0.7rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.7rem;
    background: #fafbfc;
    resize: none;
}
.guestbook-form textarea {
    min-height: 70px;
    max-height: 200px;
}
.guestbook-form button {
    background: var(--primary, #222);
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.guestbook-form button:hover {
    background: #444;
}
.guestbook-messages {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.guestbook-entry {
    background: #f7f7f7;
    border-radius: 0.7rem;
    padding: 1rem 1.2rem;
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.03);
}
.guestbook-entry-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.97em;
    margin-bottom: 0.3em;
    color: #888;
}
.guestbook-name {
    font-weight: 600;
}
.guestbook-date {
    font-style: italic;
}
.guestbook-text {
    color: #222;
    font-size: 1.08em;
    word-break: break-word;
}
.guestbook-empty {
    color: #aaa;
    text-align: center;
    padding: 1.5em 0 0.5em 0;
}
/* Favorites Carousel Grid */
.fav-carousel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.carousel-arrow {
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    padding: 0 0.7rem;
    transition: color 0.2s;
}
.carousel-arrow:hover {
    color: #222;
}
.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}
.carousel-track::-webkit-scrollbar {
    display: none;
}
.carousel-track .movie-card {
    min-width: 220px;
    max-width: 240px;
    scroll-snap-align: start;
}
@media (max-width: 700px) {
    .carousel-track .movie-card {
        min-width: 70vw;
        max-width: 80vw;
    }
}
/* Favorite Movies Grid */
.fav-movie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
}
.movie-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    transition: box-shadow 0.2s;
}
.movie-card:hover {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}
.movie-poster {
    width: 100%;
    aspect-ratio: 2/3;
    background: #f4f4f4;
    border-radius: 0.7rem;
    overflow: hidden;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.movie-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.movie-meta {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 1rem;
    color: #444;
    gap: 1.5rem;
}
.movie-genre {
    font-style: italic;
    color: #888;
}
.movie-rating {
    font-weight: 600;
    color: #222;
}
/* Contact Section Side-by-Side Layout */
.contact-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 3rem;
}
.contact-info, .contact-form {
    flex: 1 1 0;
    min-width: 0;
}
.contact-divider {
    width: 2px;
    background: #eee;
    margin: 0 1.5rem;
    border-radius: 1px;
    display: block;
}
@media (max-width: 900px) {
    .contact-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-divider {
        width: 100%;
        height: 2px;
        margin: 1.5rem 0;
    }
}
/* Horizontal Process Timeline */
/* Horizontal timeline: fix stacking */
.horizontal-timeline {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    position: relative;
    margin: 0 auto;
    max-width: 900px;
    min-height: 220px;
    padding: 2.5rem 1rem 1.5rem 1rem;
    gap: 0;
}
.timeline-line-horizontal {
    position: absolute;
    top: 60px;
    left: 7%;
    right: 7%;
    height: 4px;
    background: linear-gradient(90deg, #222 0%, #eee 100%);
    z-index: 0;
    border-radius: 2px;
    animation: timeline-line-grow 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes timeline-line-grow {
    0% { width: 0; opacity: 0; }
    100% { width: 86%; opacity: 1; }
}
.timeline-item-horizontal {
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    max-width: 220px;
    z-index: 1;
    margin: 0 !important;
}
.timeline-dot-horizontal {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 3px solid #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
    margin-bottom: 1.2rem;
    margin-top: 0;
    animation: timeline-dot-pop 0.7s cubic-bezier(.4,0,.2,1);
}
.timeline-dot-horizontal span {
    font-size: 1rem;
    color: #888;
}
.timeline-card-horizontal {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    padding: 1.2rem 1.5rem;
    min-width: 120px;
    max-width: 180px;
    width: 100%;
    text-align: center;
    z-index: 2;
    margin-top: 0.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
    animation: timeline-card-fadein 0.8s cubic-bezier(.4,0,.2,1);
}
.timeline-card-horizontal h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.timeline-card-horizontal p {
    font-size: 0.98rem;
    color: #444;
    margin: 0;
}
@keyframes timeline-card-fadein {
    0% { opacity: 0; transform: translateY(30px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
    .horizontal-timeline {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
        padding: 1.5rem 0.5rem;
    }
    .timeline-line-horizontal {
        top: 38px;
        left: 0;
        right: 0;
        width: 100% !important;
    }
    .timeline-item-horizontal {
        flex-direction: row;
        align-items: flex-start;
        margin-bottom: 2.2rem;
        min-width: 0;
        justify-content: flex-start;
    }
    .timeline-dot-horizontal {
        margin-bottom: 0;
        margin-right: 1.2rem;
    }
    .timeline-card-horizontal {
        margin-top: 0;
        text-align: left;
        min-width: 0;
        max-width: 100%;
        padding: 1rem 1rem;
    }
}
/* Stylish Process Timeline */
.process-timeline {
    margin: 4rem 0 3rem 0;
}
.process-timeline .section-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.01em;
}
.timeline-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #222 0%, #eee 100%);
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    min-height: 80px;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: #fff;
    border: 3px solid #222;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #222;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
    animation: timeline-dot-pop 0.7s cubic-bezier(.4,0,.2,1);
}
.timeline-dot span {
    font-size: 1rem;
    color: #888;
}
@keyframes timeline-dot-pop {
    0% { transform: translateX(-50%) scale(0.5); opacity: 0; }
    80% { transform: translateX(-50%) scale(1.15); opacity: 1; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}
.timeline-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
    padding: 1.5rem 2rem;
    margin-left: 60px;
    margin-right: 60px;
    min-width: 220px;
    flex: 1;
    z-index: 1;
    transition: box-shadow 0.2s;
}
.timeline-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.timeline-card p {
    font-size: 1rem;
    color: #444;
    margin: 0;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .timeline-card {
        padding: 1rem 1rem;
        margin-left: 40px;
        margin-right: 40px;
    }
    .timeline-dot {
        width: 26px;
        height: 26px;
        font-size: 0.95rem;
    }
}
/* Fallback: Always show fade-in sections if JS fails */
.fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}
/* Philosophy Section Visuals & Animation */
.philosophy-section .philosophy-points {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.philosophy-section .point-item {
    background: var(--bg, #fff);
    border-radius: 1.5rem;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.03);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.philosophy-section .point-item:hover {
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
}
.philosophy-section .point-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    height: 48px;
    width: 48px;
    overflow: visible;
}
.philosophy-section .point-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    overflow: visible;
}

.philosophy-section .point-number {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 0.5rem;
}
.philosophy-section .point-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}
.philosophy-section .point-item p {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin: 0;
}
/* Bullseye animation */
.bullseye-anim {
    transform-origin: 16px 16px;
    animation: bullseye-pulse 2.5s infinite cubic-bezier(.4,0,.2,1);
}
@keyframes bullseye-pulse {
    0% { r: 7; opacity: 1; }
    50% { r: 10; opacity: 0.3; }
    100% { r: 7; opacity: 1; }
}
/* Spiral animation */
.spiral-anim {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: spiral-draw 2.2s forwards cubic-bezier(.4,0,.2,1);
}
@keyframes spiral-draw {
    to { stroke-dashoffset: 0; }
}
/* Checkmark animation */
.checkmark-anim {
    stroke-dasharray: 32;
    stroke-dashoffset: 32;
    animation: checkmark-draw 1.2s 0.5s forwards cubic-bezier(.4,0,.2,1);
}
@keyframes checkmark-draw {
    to { stroke-dashoffset: 0; }
}
@media (max-width: 900px) {
    .philosophy-section .philosophy-points {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .philosophy-section .point-item {
        min-width: 0;
        width: 100%;
        max-width: 350px;
    }
}
.hero-socials {
    position: absolute;
    top: 32px;
    left: 32px;
    display: flex;
    gap: 18px;
    z-index: 10;
}
.hero-socials a {
    color: #000;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}
.hero-socials a:hover {
    opacity: 1;
    color: var(--accent);
}
.hero {
    position: relative;
}
/* Hero social icons */
.hero-socials {
    position: absolute;
    top: 32px;
    left: 32px;
    display: flex;
    gap: 18px;
    z-index: 10;
}
.hero-socials a {
    color: #000;
    font-size: 1.25rem;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}
.hero-socials a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Footer social icons */
.footer-socials {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
}
.footer-socials a {
    color: #000;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.2s, color 0.2s;
}
.footer-socials a:hover {
    opacity: 1;
    color: var(--accent);
}

/* Privacy/Terms popup */
.policy-popup {
    position: fixed;
    left: 50%;
    bottom: 5vh;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 420px;
    background: #fff;
    border: 1.5px solid #000;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    z-index: 2000;
    display: none;
    animation: popupFadeIn 0.5s;
}
.policy-popup-content {
    padding: 28px 24px 20px 24px;
    text-align: center;
}
.policy-popup p {
    font-size: 1rem;
    margin-bottom: 18px;
}
.policy-popup-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.policy-popup .cta-button {
    min-width: 90px;
    font-size: 1rem;
    padding: 10px 0;
}
.policy-popup .decline {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}
.policy-popup .decline:hover {
    background: #f5f5f5;
}
@keyframes popupFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(40px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
/* Modern minimal footer */
.site-footer {
    padding: 40px 0 24px 0;
    background: #fff;
    border-top: 2px solid #000;
    font-size: 14px;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.footer-left {
    color: #000;
    font-weight: 500;
}
.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-links a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--muted);
}
.footer-sep {
    color: #bbb;
    font-size: 16px;
}
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
/* Hero accent for more visual engagement */
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-accent-circle {
    position: absolute;
    left: 50%;
    top: -60px;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: none;
    border: 2px solid #000;
    border-radius: 50%;
    opacity: 0.08;
    animation: heroCirclePulse 4s cubic-bezier(.4,0,.2,1) infinite;
    pointer-events: none;
}
@keyframes heroCirclePulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.08; }
    50% { transform: translateX(-50%) scale(1.12); opacity: 0.16; }
}
.hero-highlight {
    background: linear-gradient(90deg, #000 60%, transparent 100%);
    color: #fff;
    padding: 0 16px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: -2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}
/* Dropdown navigation styles */
.nav-links {
    position: relative;
}
.dropdown {
    position: relative;
}
.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 6px;
    opacity: 0.5;
}
.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 180px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    z-index: 1002;
    padding: 12px 0;
    margin-top: 8px;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu,
.dropdown.open > .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}
.dropdown-menu a:hover {
    background: #f5f5f5;
}
@media (max-width: 900px) {
    .unique-pages-carousel {
        gap: 16px;
    }
    .teaser-card {
        min-width: 220px;
        max-width: 260px;
    }
}
/* Organized navigation menu */
.nav-section {
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 8px 0 0 0;
    margin-left: 8px;
    pointer-events: none;
    background: none;
    border: none;
    list-style: none;
}

/* Unique Pages Carousel */
.unique-pages-carousel-section {
    padding: 60px 0 40px 0;
}
.carousel-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.unique-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}
.unique-pages-carousel {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0 24px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}
.unique-pages-carousel::-webkit-scrollbar {
    display: none;
}
.teaser-card {
    min-width: 260px;
    max-width: 320px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}
.carousel-arrow {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin: 0 8px;
    transition: background 0.2s, box-shadow 0.2s;
    z-index: 2;
}
.carousel-arrow:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
    .unique-pages-carousel {
        gap: 16px;
    }
    .teaser-card {
        min-width: 220px;
        max-width: 260px;
    }
}
/* Unique pages teaser grid */
.unique-pages-teasers {
    padding: 60px 0 40px 0;
}
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}
.teaser-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.teaser-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-4px) scale(1.02);
}
.teaser-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}
.teaser-card p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 8px;
}
.teaser-card .cta-button {
    margin-top: auto;
}
/* Carousel styles for My Favs */
.carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 16px 0;
    scroll-snap-type: x mandatory;
}
.carousel img {
    height: 120px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    scroll-snap-align: start;
    transition: transform 0.2s;
}
.carousel img:hover {
    transform: scale(1.06) translateY(-4px);
}
.view-all {
    font-size: 12px;
    margin-left: 16px;
    text-decoration: underline;
    color: var(--accent);
    font-weight: 500;
}
.fav-movie-list, .fav-series-list, .fav-musics-list {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.movie-item, .series-item, .music-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.movie-item img, .series-item img, .music-item img {
    height: 100px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
/*

Tooplate 2141 Minimal White

https://www.tooplate.com/view/2141-minimal-white

*/



/* Design tokens and small overrides to modernize while keeping palette */
:root {
    --bg: #ffffff;
    --text: #000000;
    --accent: #000000;
    --muted: #666666;
    --container: 1200px;
    --space-lg: 80px;
    --radius: 6px;
}

/* CSS Document */

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            user-select: auto;
        }

        /* Decorative Elements */
        .black-line {
            width: 100%;
            height: 1px;
            background: #000;
            margin: 60px 0;
        }

        .black-block {
            width: 20px;
            height: 20px;
            background: #000;
            position: absolute;
        }

        .vertical-line {
            width: 1px;
            height: 100px;
            background: #000;
            margin: 40px auto;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            border-bottom: 2px solid #000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: -1px;
            position: relative;
            color: #000;
            text-decoration: none;
        }

        .logo::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: #000;
        }

        /* Hamburger Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 30px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: #000;
            margin: 3px 0;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #000;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 1px;
            background: #000;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            width: 10px;
        }

        .nav-links a.active {
            font-weight: 700;
        }

        /* Section 1: Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 100px;
            height: 1px;
            background: #000;
            animation: slideRight 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 10%;
            width: 150px;
            height: 1px;
            background: #000;
            animation: slideLeft 8s ease-in-out infinite;
        }

        .hero-decoration {
            position: absolute;
            top: 30%;
            right: 15%;
            width: 40px;
            height: 40px;
            border: 2px solid #000;
            transform: rotate(45deg);
            animation: rotateSquare 10s linear infinite;
        }

        /* Animated Objects (Reduced) */
        .floating-objects {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-circle {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 1px solid #000;
            border-radius: 50%;
            opacity: 0.2;
            animation: floatUp 18s ease-in-out infinite;
        }

        .floating-circle:nth-child(1) {
            left: 10%;
            bottom: -100px;
            animation-delay: 0s;
            width: 60px;
            height: 60px;
        }

        .floating-circle:nth-child(2) {
            right: 15%;
            bottom: -100px;
            animation-delay: 8s;
            width: 100px;
            height: 100px;
        }

        .floating-square {
            position: absolute;
            width: 30px;
            height: 30px;
            background: #000;
            opacity: 0.08;
            animation: floatDiagonal 25s linear infinite;
            top: 40%;
            left: -50px;
        }

        .floating-line {
            position: absolute;
            height: 1px;
            background: #000;
            opacity: 0.15;
            animation: expandContract 10s ease-in-out infinite;
            width: 200px;
            top: 65%;
            right: 10%;
            transform-origin: center;
        }

        .hero-content {
            text-align: center;
            max-width: 800px;
            animation: fadeInUp 1s ease;
            position: relative;
            z-index: 2;
        }

        /* Animations */
        @keyframes floatUp {
            0%, 100% {
                transform: translateY(0) scale(1);
                opacity: 0;
            }
            10% {
                opacity: 0.2;
            }
            50% {
                transform: translateY(-600px) scale(1.1);
                opacity: 0.05;
            }
            90% {
                opacity: 0;
            }
        }

        @keyframes floatDiagonal {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            100% {
                transform: translate(1400px, -300px) rotate(360deg);
            }
        }

        @keyframes expandContract {
            0%, 100% {
                transform: scaleX(0.5) rotate(0deg);
            }
            50% {
                transform: scaleX(1.2) rotate(180deg);
            }
        }

        @keyframes rotateSquare {
            0% {
                transform: rotate(45deg) scale(1);
            }
            25% {
                transform: rotate(135deg) scale(1.1);
            }
            50% {
                transform: rotate(225deg) scale(1);
            }
            75% {
                transform: rotate(315deg) scale(0.9);
            }
            100% {
                transform: rotate(405deg) scale(1);
            }
        }

        @keyframes slideRight {
            0%, 100% {
                transform: translateX(0);
                opacity: 0.5;
            }
            50% {
                transform: translateX(50px);
                opacity: 1;
            }
        }

        @keyframes slideLeft {
            0%, 100% {
                transform: translateX(0);
                opacity: 0.5;
            }
            50% {
                transform: translateX(-50px);
                opacity: 1;
            }
        }

        .hero h1 {
            font-size: clamp(48px, 8vw, 88px);
            font-weight: 100;
            letter-spacing: -3px;
            margin-bottom: 30px;
            line-height: 0.9;
            position: relative;
        }

        .hero h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: #000;
        }

        .hero .subtitle {
            font-size: 16px;
            color: #000;
            font-weight: 400;
            margin-bottom: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 50px;
            background: #000;
            color: #fff;
            text-decoration: none;
            font-size: 12px;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: 2px solid #000;
            position: relative;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: -10px;
            right: -10px;
            width: 20px;
            height: 20px;
            border-top: 2px solid #000;
            border-right: 2px solid #000;
        }

        .cta-button:hover {
            background: transparent;
            color: #000;
            transform: translate(-5px, -5px);
        }

        /* Section 2: About - Mixed Layouts */
        .about {
            padding: 120px 20px;
            background: #fff;
            position: relative;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            height: 1px;
            background: #000;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Quote Block */
        .about-intro {
            margin-bottom: 80px;
        }

        .quote-block {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
        }

        .quote-mark {
            font-size: 120px;
            line-height: 1;
            font-weight: 100;
            position: absolute;
            top: -40px;
            left: -60px;
            opacity: 0.1;
        }

        .quote-block h3 {
            font-size: 32px;
            font-weight: 300;
            line-height: 1.4;
            letter-spacing: -1px;
            margin-bottom: 30px;
        }

        .quote-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .author-line {
            width: 50px;
            height: 1px;
            background: #000;
        }

        .quote-author p {
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2px;
            background: #000;
            padding: 2px;
            margin-bottom: 100px;
        }

        .stat-item {
            background: #fff;
            padding: 60px 20px;
            text-align: center;
            position: relative;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 100;
            letter-spacing: -2px;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .stat-decoration {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 20px;
            height: 20px;
            border: 1px solid #000;
            transform: rotate(45deg);
        }

        /* Philosophy Section */
        .philosophy-section {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
            margin-bottom: 100px;
            align-items: start;
        }

        .philosophy-header {
            position: relative;
        }

        .philosophy-header h2 {
            font-size: 64px;
            font-weight: 100;
            letter-spacing: -2px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .header-decoration {
            position: absolute;
            bottom: 0;
            right: -20px;
            width: 40px;
            height: 40px;
            background: #000;
        }

        .philosophy-content {
            padding-top: 40px;
        }

        .lead-text {
            font-size: 24px;
            line-height: 1.6;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .philosophy-points {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .point-item {
            position: relative;
            padding-left: 20px;
        }

        .point-number {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 10px;
            font-weight: 700;
        }

        .point-item h4 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .point-item p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        /* Process Timeline */
        .process-timeline {
            margin-bottom: 100px;
        }

        .section-subtitle {
            font-size: 48px;
            font-weight: 100;
            text-align: center;
            margin-bottom: 60px;
            letter-spacing: -1px;
        }

        .timeline-container {
            position: relative;
            display: flex;
            justify-content: space-between;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background: #000;
            z-index: 0;
        }

        .timeline-item {
            position: relative;
            text-align: center;
            flex: 1;
        }

        .timeline-dot {
            width: 40px;
            height: 40px;
            background: #fff;
            border: 2px solid #000;
            margin: 0 auto 30px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            background: #000;
            transform: rotate(45deg);
        }

        .timeline-content h4 {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .timeline-content p {
            font-size: 14px;
            color: #666;
        }

        /* Values Grid */
        .values-section {
            text-align: center;
        }

        .values-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
        }

        .values-header h2 {
            font-size: 48px;
            font-weight: 100;
            letter-spacing: -1px;
        }

        .black-square {
            width: 15px;
            height: 15px;
            background: #000;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .value-card {
            padding: 60px 20px;
            border: 1px solid #000;
            transition: all 0.3s ease;
        }

        .value-card.black {
            background: #000;
            color: #fff;
        }

        .value-icon {
            font-size: 48px;
            font-weight: 100;
            margin-bottom: 20px;
        }

        .value-card h4 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        .value-card:hover {
            transform: translateY(-10px);
        }

        .split-layout {
            display: grid;
            grid-template-columns: 1fr 2px 1fr;
            gap: 60px;
            align-items: center;
            margin-top: 80px;
        }

        .split-divider {
            width: 2px;
            height: 300px;
            background: #000;
            justify-self: center;
        }

        .split-left {
            text-align: right;
            padding-right: 20px;
        }

        .split-left h2 {
            font-size: 64px;
            font-weight: 100;
            letter-spacing: -2px;
            margin-bottom: 30px;
            position: relative;
        }

        .split-left h2::before {
            content: '';
            position: absolute;
            left: -40px;
            top: 50%;
            width: 30px;
            height: 30px;
            background: #000;
            transform: translateY(-50%);
        }

        .split-right {
            padding-left: 20px;
        }

        .split-right p {
            font-size: 18px;
            line-height: 2;
            margin-bottom: 30px;
        }

        .accent-box {
            display: inline-block;
            padding: 10px 20px;
            border: 1px solid #000;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
        }

        .accent-box::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: -1;
        }

        /* Section 3: Services - Asymmetric Grid */
        .services {
            padding: 120px 20px;
            background: #fafafa;
            position: relative;
        }

        .services::before,
        .services::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 50px;
            border: 2px solid #000;
        }

        .services::before {
            top: 80px;
            left: 5%;
            animation: rotateSlowly 20s linear infinite;
        }

        .services::after {
            bottom: 80px;
            right: 5%;
            transform: rotate(45deg);
            animation: rotateSlowly 20s linear infinite reverse;
        }

        @keyframes rotateSlowly {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .services-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .services-header h2 {
            font-size: 56px;
            font-weight: 100;
            letter-spacing: -1px;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .services-header h2::before,
        .services-header h2::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 1px;
            background: #000;
            top: 50%;
            transform: translateY(-50%);
        }

        .services-header h2::before {
            left: -50px;
        }

        .services-header h2::after {
            right: -50px;
        }

        .services-header::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent);
        }

        .asymmetric-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
        }

        .asymmetric-grid.reverse {
            grid-template-columns: 1fr 2fr;
        }

        .service-large * {
            position: relative;
            z-index: 1;
        }

        .service-large {
            background: #fff;
            padding: 60px;
            border-left: 4px solid #000;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
        }

        .service-large::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.02);
            transition: left 0.6s ease;
            pointer-events: none;
        }

        .service-large:hover::before {
            left: 0;
        }

        .service-large::after {
            content: '';
            position: absolute;
            top: 40px;
            right: 40px;
            width: 15px;
            height: 15px;
            background: #000;
            transition: all 0.3s ease;
            pointer-events: none;
            z-index: 0;
        }

        .service-large:hover::after {
            transform: scale(1.5) rotate(45deg);
        }

        .service-large:hover {
            transform: translateX(10px);
            border-left-width: 8px;
        }

        .asymmetric-grid.reverse .service-large {
            border-left: none;
            border-right: 4px solid #000;
        }

        .asymmetric-grid.reverse .service-large::after {
            right: auto;
            left: 40px;
        }

        .asymmetric-grid.reverse .service-large:hover {
            transform: translateX(-10px);
            border-right-width: 8px;
        }

        .service-small {
            background: #000;
            color: #fff;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .service-small::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 0;
            height: 0;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.6s ease;
            pointer-events: none;
        }

        .service-small:hover::before {
            width: 200px;
            height: 200px;
        }

        .service-number {
            font-size: 88px;
            font-weight: 100;
            line-height: 1;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-small:hover .service-number {
            transform: scale(1.1);
        }

        .service-large h3,
        .service-large p {
            position: relative;
            z-index: 1;
            user-select: text;
        }

        .service-large h3 {
            font-size: 36px;
            font-weight: 300;
            margin-bottom: 20px;
            letter-spacing: -1px;
            display: inline-block;
        }

        .service-large h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 1px;
            background: #000;
            transition: width 0.3s ease;
        }

        .service-large:hover h3::after {
            width: 100%;
        }

        .service-large p {
            color: #666;
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 30px;
            user-select: text;
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
        }

        .service-tag {
            display: inline-block;
            padding: 8px 16px;
            border: 1px solid #000;
            font-size: 11px;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            z-index: 1;
            text-decoration: none;
            color: #000;
        }

        .service-tag:hover {
            background: #000;
            color: #fff;
            transform: translateY(-2px);
        }

        .service-small h4 {
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 400;
            opacity: 0.9;
            transition: all 0.3s ease;
        }

        .service-small:hover h4 {
            opacity: 1;
            letter-spacing: 3px;
        }

        /* Section 4: Contact - Minimal Form */
        .contact {
            padding: 120px 20px;
            background: #fff;
            position: relative;
        }




        .info-item {
            margin-bottom: 30px;
            padding-left: 30px;
            position: relative;
        }

        .info-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 10px;
            height: 10px;
            background: #000;
            transform: rotate(45deg);
        }

        .info-item h4 {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .info-item p {
            font-size: 18px;
            font-weight: 300;
        }

        .contact-form {
            padding-left: 40px;
        }

        .form-group {
            margin-bottom: 40px;
            position: relative;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 0;
            border: none;
            border-bottom: 2px solid #000;
            background: transparent;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            padding-left: 20px;
        }

        .form-group label {
            position: absolute;
            left: 0;
            top: 15px;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-group input:focus + label,
        .form-group input:not(:placeholder-shown) + label,
        .form-group textarea:focus + label,
        .form-group textarea:not(:placeholder-shown) + label {
            top: -20px;
            font-size: 11px;
            font-weight: 500;
        }

        .submit-btn {
            padding: 18px 60px;
            background: #000;
            color: #fff;
            border: 2px solid #000;
            font-size: 12px;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            position: relative;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: -8px;
            width: 30px;
            height: 30px;
            border-bottom: 2px solid #000;
            border-left: 2px solid #000;
        }

        .submit-btn:hover {
            background: transparent;
            color: #000;
            transform: translate(3px, 3px);
        }

        /* Footer */
        footer {
            padding: 60px 20px;
            text-align: center;
            border-top: 3px solid #000;
            background: #fff;
            position: relative;
        }

        footer::before,
        footer::after {
            content: '';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100px;
            height: 1px;
            background: #000;
        }

        footer::before {
            left: 20%;
        }

        footer::after {
            right: 20%;
        }

        footer p {
            color: #000;
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile responsive */
        @media (max-width: 1000px) {
            footer::before,
            footer::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                z-index: 1000;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links a {
                font-size: 18px;
                letter-spacing: 2px;
            }

            .nav-links a::before {
                display: none;
            }

            .nav-links a.active {
                position: relative;
            }

            .nav-links a.active::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 30px;
                height: 2px;
                background: #000;
            }
        }

            /* About section mobile */
            .quote-mark {
                font-size: 80px;
                left: -30px;
                top: -20px;
            }

            .quote-block h3 {
                font-size: 24px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .philosophy-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .philosophy-header h2 {
                writing-mode: horizontal-tb;
                font-size: 48px;
            }

            .header-decoration {
                position: static;
                width: 60px;
                height: 2px;
                margin-top: 20px;
            }

            .philosophy-points {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .timeline-container {
                flex-direction: column;
                gap: 40px;
            }

            .timeline-line {
                width: 2px;
                height: 100%;
                top: 0;
                left: 20px;
                right: auto;
            }

            .timeline-item {
                display: flex;
                align-items: center;
                gap: 30px;
                text-align: left;
            }

            .timeline-dot {
                margin: 0;
                flex-shrink: 0;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .values-header h2 {
                font-size: 36px;
            }

            .split-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .split-divider {
                width: 100px;
                height: 2px;
            }

            .split-left {
                text-align: left;
                padding-right: 0;
            }

            .split-left h2::before {
                display: none;
            }

            .asymmetric-grid,
            .asymmetric-grid.reverse {
                grid-template-columns: 1fr;
            }

            .asymmetric-grid.reverse .service-large {
                border-right: none;
                border-left: 4px solid #000;
            }

            .asymmetric-grid.reverse .service-large::after {
                left: auto;
                right: 20px;
            }

            .asymmetric-grid.reverse .service-large:hover {
                transform: translateX(10px);
                border-left-width: 8px;
                border-right-width: 4px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-divider {
                width: 100px;
                height: 2px;
                margin: 0 auto;
            }

            .contact-info,
            .contact-form {
                padding: 0;
            }

            .hero h1 {
                font-size: 48px;
            }

            .services-header h2,
            .split-left h2 {
                font-size: 36px;
            }

            .services-header h2::before,
            .services-header h2::after {
                display: none;
            }

            .service-large {
                padding: 40px;
            }

            .service-large::after {
                top: 20px;
                right: 20px;
            }

            .service-tag {
                padding: 6px 12px;
                font-size: 10px;
            }

            .service-number {
                font-size: 60px;
            }

            .hero-decoration {
                display: none;
            }

            .hero::before,
            .hero::after {
                width: 50px;
            }

            /* Hide some animated objects on mobile for performance */
            .floating-objects {
                opacity: 0.5;
            }

            .floating-circle:nth-child(2) {
                display: none;
            }

            .services::before,
            .services::after {
                width: 30px;
                height: 30px;
            }

            footer::before,
            footer::after {
                display: none;
            }
        
        /* Accessibility - Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }
        /* Featured section improvements */
        .featured-section {
            padding: 40px 20px;
            background: transparent;
        }

        .featured-on {
            margin: 0 auto;
            text-align: center;
            max-width: 1000px;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .featured-label {
            font-size: 13px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--muted);
            margin-bottom: 4px;
            display: block;
        }

        .featured-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 36px;
            flex-wrap: wrap;
            width: 100%;
        }

        .featured-logos img {
            max-height: 48px;
            opacity: 0.75;
            transition: opacity 0.2s ease, transform 0.2s ease;
            filter: grayscale(30%);
        }

        .featured-logos img:hover {
            opacity: 1;
            transform: translateY(-4px);
            filter: none;
        }

/* Mobile optimizations for the Philosophy / point-item block */
@media (max-width: 768px) {
    .philosophy-content {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 6px 0;
    }

    .philosophy-content .point-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        padding: 12px 14px;
        background: transparent;
        border-radius: 12px;
    }

    .philosophy-content .point-icon {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.03);
        border-radius: 10px;
    }

    .philosophy-content .point-icon svg {
        width: 34px;
        height: 34px;
    }

    .philosophy-content .point-number {
        display: none; /* hide the small numeric label to reduce clutter on narrow screens */
    }

    .philosophy-content h4 {
        font-size: 1.03rem;
        margin: 0;
        line-height: 1.15;
    }

    .philosophy-content p {
        margin: 6px 0 0 0;
        color: rgba(0,0,0,0.6);
        font-size: 0.96rem;
    }
}

@media (max-width: 420px) {
    .philosophy-content .point-item {
        gap: 10px;
        padding: 10px 12px;
    }
    .philosophy-content .point-icon { width:52px; height:52px; }
    .philosophy-content .point-icon svg { width:28px; height:28px; }
    .philosophy-content h4 { font-size: 0.98rem; }
    .philosophy-content p { font-size: 0.92rem; }
}

/* Mobile improvements for the horizontal process timeline - stack and left-align cards */
@media (max-width: 768px) {
    .horizontal-timeline {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0 0.5rem 0;
        min-height: 0;
        gap: 18px;
    }

    .timeline-line-horizontal {
        /* make the line run full-width under the dots but with some inset */
        position: absolute;
        top: 36px;
        left: 16px;
        right: 16px;
        height: 3px;
        background: linear-gradient(90deg, rgba(15,23,32,0.08) 0%, rgba(15,23,32,0.02) 100%);
        z-index: 0;
        border-radius: 2px;
    }

    .timeline-item-horizontal {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 0;
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
    }

    .timeline-dot-horizontal {
        margin: 0;
        margin-right: 12px;
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        left: auto;
        position: relative;
        transform: none;
        z-index: 2;
    }

    .timeline-dot-horizontal span { font-size: 0.95rem; }

    .timeline-card-horizontal {
        margin-top: 0;
        text-align: left;
        min-width: 0;
        max-width: none;
        padding: 0.9rem 1rem;
        width: calc(100% - 68px);
        box-shadow: none;
        background: transparent;
    }

    /* ensure timeline items sit above the line */
    .timeline-item-horizontal, .timeline-card-horizontal { z-index: 3; }
}

@media (max-width: 420px) {
    .timeline-dot-horizontal { width: 36px; height: 36px; flex: 0 0 36px; margin-right: 10px; }
    .timeline-line-horizontal { top: 34px; left: 12px; right: 12px; }
    .timeline-card-horizontal { padding: 0.7rem 0.8rem; width: calc(100% - 56px); }
}