@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --bg: #0e1116;          
    --bg-alt: #151a21;     
    
    --text: #e9eef5;        
    --text-muted: #9aa4b2; 
    
    --accent: #1f2630;    
    --accent-strong: #2b3440;
    
    --primary: #c47e5a;      
    --primary-hover: #a86545; 
    
    --secondary: #e2b870;    
    
    --highlight: #f5f7fa;
    
    --border: #2a313c;
    
    --capsule-radius: 100px;
    --card-radius: 2rem;
    --transition: cubic-bezier(0.76, 0, 0.24, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

html {
    height: auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary);
}

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

.dot-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dot-nav .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--text) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--text) 30%, transparent);
    cursor: pointer;
    transition: all 0.4s var(--transition);
}

.dot-nav .dot.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.4);
}

.dot-nav .dot:hover {
    background: color-mix(in srgb, var(--text) 50%, transparent);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--transition), visibility 0.5s;
}

.menu-overlay.open {
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}

.menu-overlay-bg {
    position: absolute;
    inset: 0;
    background: var(--bg);
    opacity: 1;
}

.menu-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 6rem;
    gap: 4rem;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: 1px solid color-mix(in srgb, var(--text) 30%, transparent);
    color: var(--text);
    font-size: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition);
}

.menu-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.menu-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-link {
    font-size: 4.5rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.4s var(--transition);
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}

.menu-link:hover {
    color: var(--text);
    padding-left: 1rem;
}

.menu-link.active {
    color: var(--text);
    padding-left: 1rem;
}

.menu-num {
    font-size: 0.85rem;
    color: var(--primary);
    margin-right: 1.5rem;
    vertical-align: super;
    letter-spacing: 0.05em;
}

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

.menu-right .menu-info h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 500;
    width: auto;
}

.menu-right .menu-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.menu-socials {
    display: flex;
    gap: 1.5rem;
}

.menu-socials a {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.menu-socials a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.menu-capsule-img {
    width: 100%;
    height: auto;
    border-radius: var(--card-radius);
    overflow: hidden;
    margin-top: 1rem;
}

.menu-capsule-img img {
    width: 100%;
    height: auto;
    display: block;
}

.capsul {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: inset(33% 33% 33% 33%);
    transition: 0.3s ease-out;
}

.capsuleBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.capsuleLogo {
    position: relative;
    width: 42rem;
    height: 15rem;
    border-radius: var(--capsule-radius);
    background: var(--accent);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.capsuleLogo h1 {
    position: relative;
    font-size: 3.8rem;
    font-weight: 400;
    color: var(--accent);
    z-index: 1;
}

.loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--highlight);
    z-index: 0;
}

.section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0.5rem;
}

.page1 {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0.5rem;
}

.background {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.background .top,
.background .bottom {
    position: absolute;
    width: calc(100% - 1rem);
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.background .top {
    top: 1.5rem;
}

.background .bottom {
    left: 1rem;
    bottom: 2rem;
    align-items: end;
}

.top h1 {
    font-size: 12.5rem;
    font-weight: 500;
    line-height: 10rem;
}

.menuBtn {
    position: relative;
    width: 9rem;
    height: 3.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: var(--primary);
    color: var(--text);
    transition: all 0.3s var(--transition);
}

.menuBtn i {
    position: absolute;
    right: 0.5rem;
    padding: 0.2rem;
    background: var(--primary-hover);
    color: var(--text);
    border-radius: 50%;
    font-size: 2rem;
}

#menuOpen {
    position: fixed !important;
    bottom: 2rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1000 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.menuBtn:hover {
    transform: scale(1.05);
    background: var(--primary-hover);
}


.background .bottom h3 {
    font-size: 2.5rem;
    width: 20%;
    font-weight: 400;
    line-height: 2.5rem;
}

.background .bottom h4 {
    width: 18rem;
    font-size: 0.9rem;
}

.page2 {
    position: relative;
    width: 100%;
    padding: 3rem;
    display: flex;
    align-items: center;
    height: 150vh;
}

.page2 h4 {
    margin-top: 5.5rem;
    width: 90%;
    color: var(--text);
    font-size: 6rem;
    font-weight: 400;
    line-height: 6rem;
}

.page2 .bottom {
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    height: 20rem;
    background: var(--bg);
    opacity: 0.93;
}

.page3 {
    position: relative;
    width: 100%;
    padding: 3rem;
    height: 150vh;
}

.page3 .top,
.page3 .bottom {
    width: 100%;
}

.page3 .top {
    display: flex;
    align-items: center;
}

.page3 .top .left,
.page3 .top .right {
    width: 50%;
    display: flex;
}

.left .imgBox {
    width: 18rem;
    height: 12rem;
    overflow: hidden;
    border-radius: 125px;
    margin-right: 1rem;
}

.imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top .right p {
    font-size: 2.5rem;
    color: var(--text-muted);
    line-height: 2.5rem;
}

.page3 .bottom {
    margin-top: 10rem;
}

.hideBox {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hideBox h2 {
    position: relative;
    font-size: 11rem;
    font-weight: 400;
    line-height: 12rem;
}

.hide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
}

.page3 .bottom > p {
    margin-top: 4rem;
    width: 60%;
    font-size: 1.8rem;
    color: var(--text-muted);
    line-height: 2rem;
}

.page4 {
    position: relative;
    height: 130vh;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page4 .slider {
    width: 100%;
    overflow: hidden;
    height: auto;
}

.slider .box {
    position: relative;
    min-width: 250rem;
    height: 15rem;
    display: flex;
}

.slider .box h3 {
    font-size: 10rem;
    width: 50rem;
    position: absolute;
    left: 100%;
    animation: marquee-slide var(--time) linear infinite;
    animation-delay: calc((var(--time) / var(--quantity) * (var(--index) - 1)) - var(--time));
}

@keyframes marquee-slide {
    to {
        left: -50rem;
    }
}

.page4 .background {
    position: absolute;
    width: 40rem;
    height: 18rem;
    border-radius: 90px;
    top: 50%;
    left: 50%;
    will-change: width, height, transform, border-radius;
}

.page4 .background img {
    transform: scale(1.3);
}

.topText,
.bottomText {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.bottomText {
    top: 90%;
}

.topText h4 {
    font-size: 5rem;
    font-weight: 400;
}

.topText h3 {
    font-size: 3rem;
}

.bottomText h3 {
    width: 30%;
    font-size: 1rem;
    margin-left: 3rem;
    font-weight: 400;
}

.page4 .background2 {
    position: absolute;
    width: calc(100vw - 1rem);
    height: calc(100vh - 1rem);
    border-radius: var(--card-radius);
    top: 50%;
    left: 50%;
    overflow: hidden;
    will-change: transform, opacity;
}

.background2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.3);
}

.page5 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.page5 .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page5 .overlay-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.page5 .overlay-content h2 {
    font-size: 7rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 3rem;
}

.page5 .stats-row {
    display: flex;
    gap: 6rem;
    margin-top: 2rem;
}

.page5 .stat-item {
    display: flex;
    flex-direction: column;
}

.page5 .stat-number {
    font-size: 5rem;
    font-weight: 300;
    color: var(--primary);
    line-height: 1;
}

.page5 .stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page6 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page6 .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 2rem;
}

.page6 h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
    line-height: 1.1;
}

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

.process-step {
    position: relative;
    padding: 2.5rem;
    border: 1px solid var(--border);
    background: var(--accent);
    border-radius: 2rem;
    opacity: 0;
    transform: translateY(40px);
}

.process-step .step-num {
    font-size: 4rem;
    font-weight: 200;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.video-showreel-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.video-showreel {
    position: relative;
    width: 50%;
    height: 50vh;
    border-radius: var(--card-radius);
    overflow: hidden;
    transform-origin: center center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    will-change: transform, width, height, border-radius;
}

.video-showreel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, color-mix(in srgb, var(--bg) 50%, transparent) 0%, color-mix(in srgb, var(--accent) 20%, transparent) 100%);
}

.video-overlay h2 {
    font-size: 5rem;
    font-weight: 300;
    color: var(--text);
    opacity: 0;
}

.page7 {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.page7 .section-header {
    position: absolute;
    top: 3rem;
    left: 3rem;
    z-index: 2;
}

.page7 .section-header .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.page7 .section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    margin-top: 0.5rem;
}

.cases-track {
    display: flex;
    height: 100%;
    padding-top: 10rem;
    gap: 2rem;
    padding-left: 3rem;
    width: fit-content;
}

.case-card {
    flex-shrink: 0;
    width: 35rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.case-card .case-img {
    width: 100%;
    height: 22rem;
    border-radius: var(--capsule-radius);
    overflow: hidden;
}

.case-card .case-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.case-card:hover .case-img img {
    transform: scale(1.05);
}

.case-card h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

.case-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 80%;
}

.page8 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page8 .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page8 h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem;
    border: 1px solid var(--border);
    border-radius: 2rem;
    background: var(--accent);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card blockquote {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 2rem;
    font-family: "Lora", serif;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--accent);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 1rem;
    font-weight: 500;
    width: auto;
}

.testimonial-author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.page9 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 3rem;
}

.page9 .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page9 h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
}

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

.team-member {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
}

.team-member .member-img {
    width: 100%;
    height: 20rem;
    border-radius: var(--capsule-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-member .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.team-member:hover .member-img img {
    transform: scale(1.05);
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.team-member span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.page10 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--bg-alt);
}

.page10 .stats-container {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 80rem;
}

.page10 .big-stat {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.page10 .big-stat .counter {
    font-size: 8rem;
    font-weight: 200;
    color: var(--primary);
    line-height: 1;
    font-family: "Host Grotesk", sans-serif;
}

.page10 .big-stat .label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 1rem;
}

.page11 {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 3rem;
}

.page11 .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
}

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 5rem;
}

.logo-marquee .marquee-track {
    display: flex;
    gap: 6rem;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.logo-marquee .logo-item {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    line-height: 5rem;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.page12 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 3rem;
}

.page12 .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page12 h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.insight-card {
    border: 1px solid color-mix(in srgb, var(--text) 6%, transparent);
    border-radius: 2rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: border-color 0.4s ease;
}

.insight-card:hover {
    border-color: color-mix(in srgb, var(--text) 15%, transparent);
}

.insight-card .card-img {
    width: 100%;
    height: 16rem;
    overflow: hidden;
}

.insight-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}

.insight-card:hover .card-img img {
    transform: scale(1.05);
}

.insight-card .card-body {
    padding: 2rem;
}

.insight-card .card-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.insight-card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.insight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.page13 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 8rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page13 .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.page13 h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
}

.timeline {
    position: relative;
    padding-left: 3rem;
    border-left: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
}

.timeline-item {
    position: relative;
    padding: 2rem 0 3rem 3rem;
    opacity: 0;
    transform: translateX(-30px);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 2.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--bg);
}

.timeline-item .year {
    font-size: 3rem;
    font-weight: 200;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 40rem;
}

.page14 {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    overflow: hidden;
}

.page14 .bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    border-radius: 0;
}

.page14 .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 50rem;
}

.page14 .cta-content h2 {
    font-size: 6rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.page14 .cta-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-form input {
    padding: 1.2rem 2rem;
    border-radius: var(--capsule-radius);
    border: 1px solid var(--border);
    background: var(--accent);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    width: 20rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.cta-form input:focus {
    border-color: var(--primary);
}

.cta-form input::placeholder {
    color: var(--text-muted);
}

.cta-form button {
    padding: 1.2rem 3rem;
    border-radius: var(--capsule-radius);
    border: none;
    background: var(--secondary);
    color: var(--bg);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.3s var(--transition);
}

.cta-form button:hover {
    transform: scale(1.05);
}

.page15 {
    position: relative;
    width: 100%;
    padding: 6rem 3rem 3rem;
    border-top: 1px solid color-mix(in srgb, var(--text) 6%, transparent);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.footer-brand h2 {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 25rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 5rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
    width: auto;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--text) 6%, transparent);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    font-size: 1.3rem;
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: var(--text);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .top h1 {
        font-size: 8rem;
        line-height: 7rem;
    }
    .page2 h4 {
        font-size: 4rem;
        line-height: 4.2rem;
    }
    .hideBox h2 {
        font-size: 7rem;
        line-height: 8rem;
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page5 .overlay-content h2 {
        font-size: 5rem;
    }
    .page5 .stat-number {
        font-size: 3.5rem;
    }
    .page10 .big-stat .counter {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    
    .capsuleLogo {
        width: 22rem;
        height: 8rem;
    }
    .capsuleLogo h1 {
        font-size: 2rem;
    }

    
    .top h1 {
        font-size: 4rem;
        line-height: 3.5rem;
    }
    .background .bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1.2rem;
        left: 0;
        width: 100%;
    }
    .background .bottom h3 {
        font-size: 1.4rem;
        width: 70%;
        line-height: 1.5rem;
    }
    .background .bottom h4 {
        width: 100%;
        font-size: 0.8rem;
    }

    
    .page2 {
        height: auto;
        min-height: auto;
        padding: 5rem 2rem;
    }
    .page2 h4 {
        font-size: 2.2rem;
        line-height: 2.6rem;
        width: 100%;
        margin-top: 0;
    }
    .page2 .bottom {
        display: none;
    }
    .page3 {
        height: auto;
        min-height: auto;
        padding: 5rem 2rem;
    }
    .page3 .top {
        flex-direction: column;
        gap: 2rem;
    }
    .page3 .top .left,
    .page3 .top .right {
        width: 100%;
    }
    .left .imgBox {
        width: 14rem;
        height: 9rem;
        border-radius: 60px;
    }
    .top .right p {
        font-size: 1.5rem;
        line-height: 1.8rem;
        color: var(--text);
    }
    .page3 .bottom {
        margin-top: 3rem;
    }
    .hideBox h2 {
        font-size: 3.2rem;
        line-height: 3.8rem;
    }
    .page3 .bottom > p {
        width: 100%;
        font-size: 1.1rem;
        line-height: 1.6rem;
        margin-top: 2rem;
        color: var(--text-muted);
    }

    
    .page4 {
        height: auto;
        min-height: 100vh;
        padding: 5rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .slider {
        margin-bottom: 3rem;
    }
    .slider .box h3 {
        font-size: 3.5rem;
    }
    .page4 .background, .page4 .background2 {
        width: 100%;
        height: 18rem;
        position: relative !important;
        transform: none !important;
        left: 0 !important;
        top: 0 !important;
        margin-bottom: 2rem;
        border-radius: 40px;
        opacity: 1 !important;
        overflow: hidden;
    }
    .page4 .background img, .page4 .background2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        transform: none !important;
    }
    .topText, .bottomText {
        padding: 0 1.5rem;
        position: absolute !important;
        transform: none !important;
        left: 0 !important;
        margin-top: 0;
        z-index: 3;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .topText {
        top: 2rem !important;
    }
    .bottomText {
        top: auto !important;
        bottom: 2rem !important;
    }
    .topText h4 { font-size: 1.8rem; }
    .topText h3 { font-size: 1rem; }
    .bottomText h3 { font-size: 0.9rem; width: 100%; margin-left: 0; }

    .page5 .overlay-content { padding: 4rem 1.5rem; }
    .page5 .overlay-content h2 { font-size: 2.2rem; }
    .page5 .stats-row { display: flex; flex-direction: column; gap: 2.5rem; }
    .page5 .stat-number { font-size: 3rem; }

    .page6, .page8, .page9, .page12, .page13 { padding: 4rem 1.5rem; min-height: auto; }
    .page6 h2, .page8 h2, .page9 h2, .page12 h2, .page13 h2 { font-size: 2.2rem; margin-bottom: 2.5rem; }
    
    .process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

    .page7 { height: auto; padding: 4rem 1.5rem; display: flex; flex-direction: column; }
    .page7 .section-header { position: relative; top: 0; left: 0; margin-bottom: 2rem; }
    .cases-track { display: flex; flex-direction: column; padding-top: 0; padding-left: 0; width: 100%; height: auto; }
    .case-card { width: 100%; margin-bottom: 3rem; }
    .case-card .case-img { height: 18rem; width: 100%; }

    .testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
    .testimonial-card blockquote { font-size: 1.05rem; }

    .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .team-member .member-img { height: 14rem; border-radius: 60px; }

    .page10 { padding: 4rem 1.5rem; min-height: auto; }
    .page10 .stats-container { display: flex; flex-direction: column; gap: 2.5rem; align-items: center; }
    .page10 .big-stat .counter { font-size: 4rem; }

    .page11 { height: auto; padding: 3rem 1.5rem; }

    .insights-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
    
    .page14 { height: auto; padding: 5rem 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .page14 .cta-content h2 { font-size: 2.5rem; }
    .page14 .cta-content p { font-size: 1rem; max-width: 100%; }
    .cta-form { display: flex; flex-direction: column; width: 100%; gap: 1rem; }
    .cta-form input { width: 100%; }

    .footer-top { display: flex; flex-direction: column; gap: 3rem; }
    .footer-links { display: flex; flex-direction: column; gap: 2.5rem; }
    .footer-brand h2 { font-size: 1.8rem; }

    .menu-link { font-size: 2.22rem; }
    .menu-content { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
    .top h1 {
        font-size: 2.5rem;
        line-height: 2.2rem;
    }
    .background .bottom h3 {
        font-size: 1.2rem;
        width: 90%;
    }
    .menuBtn {
        width: 7rem;
        height: 2.8rem;
        font-size: 0.85rem;
    }
    .page2 h4 {
        font-size: 1.6rem;
        line-height: 2rem;
    }
    .hideBox h2 {
        font-size: 2.2rem;
        line-height: 2.8rem;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-member .member-img {
        height: 18rem;
        border-radius: 80px;
    }
    .menu-link {
        font-size: 1.8rem;
    }
    .menu-content {
        padding: 4rem 1.5rem;
    }
    .page5 .overlay-content h2 {
        font-size: 2rem;
    }
    .page6 h2,
    .page8 h2,
    .page9 h2,
    .page12 h2,
    .page13 h2 {
        font-size: 2rem;
    }
    .page10 .big-stat .counter {
        font-size: 3rem;
    }
    .footer-brand h2 {
        font-size: 1.5rem;
    }
    .slider .box h3 {
        font-size: 3rem;
    }
    .topText h4 {
        font-size: 1.4rem;
    }
    .about-values h2,
    .about-team h2 {
        font-size: 2rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .sub-hero-text h1 {
        font-size: 2rem;
    }
    .sub-hero {
        padding: 9rem 1.5rem 3rem;
    }
}

.sub-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 3rem;
    background: color-mix(in srgb, var(--bg) 80%, transparent);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.sub-nav-brand {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.sub-nav .menuBtn {
    width: 7rem;
    height: 2.8rem;
    font-size: 0.85rem;
}

.sub-hero {
    padding: 10rem 3rem 5rem;
    display: flex;
    gap: 5rem;
    align-items: center;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.sub-hero-img {
    flex: 1;
    height: 30rem;
}

.capsule-mask {
    border-radius: var(--capsule-radius);
    overflow: hidden;
}

.sub-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-hero-text {
    flex: 1;
}

.sub-hero-text .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 1.5rem;
}

.sub-hero-text h1 {
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.sub-hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 35rem;
}

.about-mission {
    padding: 8rem 3rem;
}

.mission-block {
    display: flex;
    gap: 4rem;
    padding: 4rem 0;
    border-top: 1px solid color-mix(in srgb, var(--text) 6%, transparent);
}

.mission-label {
    flex: 0.3;
}

.mission-label .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-muted);
}

.about-values {
    padding: 8rem 3rem;
}

.about-values .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.about-values h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
    line-height: 1.1;
}

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

.value-card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    background: var(--accent);
    border-radius: 2rem;
    transition: border-color 0.4s ease;
}

.value-card:hover {
    border-color: var(--primary);
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.about-team {
    padding: 8rem 3rem;
}

.about-team .section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.about-team h2 {
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 5rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .sub-hero {
        flex-direction: column;
        padding: 8rem 2rem 4rem;
        gap: 3rem;
    }
    .sub-hero-img {
        height: 20rem;
        width: 100%;
    }
    .sub-hero-text h1 {
        font-size: 2.5rem;
    }
    .mission-block {
        flex-direction: column;
        gap: 1rem;
    }
    .mission-text h2 {
        font-size: 1.5rem;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .about-values h2,
    .about-team h2 {
        font-size: 3rem;
    }
    .menu-link {
        font-size: 2.5rem;
    }
    .menu-content {
        flex-direction: column;
        padding: 5rem 3rem;
    }
    .menu-right {
        flex: 0 0 auto;
    }
    .menu-capsule-img {
        display: none;
    }
}

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

.contact-form-capsule .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-capsule input,
.contact-form-capsule textarea,
.contact-form-capsule select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: color-mix(in srgb, var(--text) 4%, transparent);
    border: 1px solid color-mix(in srgb, var(--text) 10%, transparent);
    border-radius: 1rem;
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

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

.contact-form-capsule input::placeholder,
.contact-form-capsule textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-capsule select {
    color: var(--text-muted);
    cursor: pointer;
}

.contact-form-capsule select option {
    background: var(--bg);
    color: var(--text);
}

.contact-form-capsule textarea {
    resize: vertical;
    min-height: 8rem;
}

@media (max-width: 768px) {
    .contact-form-capsule .form-row {
        grid-template-columns: 1fr;
    }
}

/* Utility & Refactored Classes */
.text-center { text-align: center !important; }
.w-full { max-width: 100% !important; }
.flex-1 { flex: 1 !important; }
.flex-1-2 { flex: 1.2 !important; }
.mx-auto { margin: 0 auto !important; }
.pt-0 { padding-top: 0 !important; }
.mt-3 { margin-top: 3rem !important; }
.mb-0-5 { margin-bottom: 0.5rem !important; }
.mb-1 { margin-bottom: 1rem !important; }
.mb-2 { margin-bottom: 2rem !important; }
.d-block { display: block !important; }
.font-w-300 { font-weight: 300 !important; }
.font-w-700 { font-weight: 700 !important; }
.font-s-1 { font-size: 1rem !important; }
.font-s-3 { font-size: 3rem !important; }
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--primary) !important; }

.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
    .grid-cols-3 { grid-template-columns: 1fr !important; }
}

/* Global Buttons */
.btn-full { width: 100% !important; }
.btn-center { justify-content: center !important; }
.btn-popular { background: var(--text) !important; color: var(--bg) !important; }
.btn-popular i { background: var(--bg) !important; color: var(--text) !important; }

.value-card.popular {
    border-color: var(--primary) !important;
    background: color-mix(in srgb, var(--primary) 4%, transparent) !important;
}

/* Detail page adjustments */
.page10.auto-height { height: auto !important; min-height: 50vh !important; }
.stats-container.visible { opacity: 1 !important; transform: none !important; }
.big-stat.visible { opacity: 1 !important; transform: none !important; }