:root {
    /* Precise Tobamix Gradient Palette */
    --tobamix-black: #160500;
    --tobamix-orange: #FF3D10;
    --tobamix-light-orange: #FF8643;
    --tobamix-cream: #FFFDEE;
    --skena-border: rgba(22, 5, 0, 0.08); /* Finer border */

    /* Typography: From generic to precise */
    --font-heading: 'TASA Orbiter', sans-serif;
    --font-body: 'Inter', 'Segoe UI', Tahoma, sans-serif; /* Swapped Arial for Inter */

    /* Standardized Font Sizes: More balanced scale */
    --font-size-section-title: clamp(2.8rem, 6vw, 4.5rem);
    --font-size-subtitle: 1.65rem;
    --font-size-desc: 0.95rem;

    /* Layout Constants: Increased air for premium feel */
    --padding-x: 6vw;
    --section-gap: 10vw; /* Balanced breathing room (previously 15vw) */
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    height: auto;
    scroll-behavior: smooth;
}

body.skena-theme {
    background-color: var(--tobamix-cream);
    /* Subtle Technical Grid Background */
    background-image: 
        radial-gradient(rgba(22, 5, 0, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(22, 5, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    
    color: var(--tobamix-black);
    font-family: var(--font-body);
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Base Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Header: Elegant & Fixed */
.stark-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 0; /* Horizontal padding removed, will use container padding instead */
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(22, 5, 0, 0.08);
}

.menu-vibe-btn {
    display: none;
    /* Hidden on Desktop by default */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-vibe {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--tobamix-black);
}

.brand-logo-img {
    height: 60px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* White logo on transparent/orange background (hero) */
.stark-header:not(.scrolled) .brand-logo-img {
    filter: brightness(0) invert(1);
}

.brand-vibe:hover .brand-logo-img {
    transform: scale(1.05);
}


.nav-items-vibe {

    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-items-vibe a {
    text-decoration: none;
    color: var(--tobamix-black);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem; /* Slightly larger for readability */
    letter-spacing: 2.5px; /* More tracked out for elegance */
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* White links on initial transparent header (over orange hero) */
.stark-header:not(.scrolled) .nav-items-vibe a:not(.nav-cta-skena) {
    color: var(--tobamix-cream);
}



.nav-cta-skena {
    background: var(--tobamix-orange);
    padding: 0.75rem 3.5rem; /* Significantly wider for professional UI/UX */
    font-size: 0.8rem !important;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 950;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255, 61, 16, 0.25);
    padding: 8px 8px !important;
}

.nav-cta-skena:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 61, 16, 0.3);
}

/* Hero Section: Impactful Brand Orange */
.hero-clean {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center horizontally */
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    background: #000 url('../img/tobamix return.webp') no-repeat center center;
    background-size: cover;
    color: var(--tobamix-cream);
    overflow: hidden;
    text-align: center; /* Ensure text is centered */
}

.hero-clean::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layered cinematic and technical overlay */
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
        repeating-linear-gradient(0deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 1px, transparent 1px, transparent 2px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 var(--padding-x);
}

.centered-hero {
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.hero-text-side {
    flex: 1;
    max-width: 700px;
}

.hero-meta {
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: var(--tobamix-cream);
}

.hero-title-skena {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6.5vw, 8rem);
    /* Controlled scaling */
    font-weight: 900;
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--tobamix-cream);
}

.hero-subtext {
    font-size: 1.1rem;
    max-width: 480px;
    line-height: 1.6;
    margin-bottom: 3.5rem;
    font-weight: 500;
    opacity: 0.9;
    color: var(--tobamix-cream);
}

.pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 3rem;
    background: var(--tobamix-cream);
    border: 1px solid var(--tobamix-orange); /* Technical border */
    border-radius: 4px; /* Sharp technical edge instead of soft pill */
    text-decoration: none;
    color: var(--tobamix-orange);
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn:hover {
    transform: translateY(-5px);
    background: var(--tobamix-black);
    color: var(--tobamix-cream);
}

.hero-visual-side {
    display: none; /* Focus solely on the background as per user instructions */
}

.hero-text-side {
    z-index: 5;
    flex: 1;
    max-width: 800px;
    margin-right: auto; /* Keeps layout to the left as per current design */
}

.visual-wrapper {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(2deg);
    border: 1px solid var(--skena-border);
}

.clean-silhouette {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1) contrast(1.5) brightness(0.8);
    transition: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-wrapper:hover .clean-silhouette {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05) rotate(-2deg);
}

/* Milestone & Facilities: Premium Editorial Style */
.milestones-section {
    padding: var(--section-gap) 0 4vw; /* Tighter transition to portfolio */
    background: #ffffff;
    position: relative;
}

.milestone-banner {
    width: 100%;
    margin: 0 0 4rem;
    height: 45vh;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.milestone-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
    transition: transform 2s ease;
}

.milestone-banner:hover img {
    transform: scale(1.05);
}

.milestone-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(22, 5, 0, 0.8) 0%, rgba(22, 5, 0, 0.2) 60%, transparent 100%);
}

.banner-overlay-text {
    position: absolute;
    bottom: 10%;
    left: var(--padding-x);
    z-index: 2;
    color: #fff;
    max-width: 600px;
}

.banner-overlay-text h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-section-title);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.milestone-editorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(22, 5, 0, 0.1);
    padding: 0 var(--padding-x);
}

.editorial-item {
    padding: 4rem 3rem;
    position: relative;
    border-right: 1px solid rgba(22, 5, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.editorial-item:last-child {
    border-right: none;
}

/* Orange Vertical Marker (Brand Anchor) */
.editorial-item::before {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 4px;
    height: 120px;
    background: var(--tobamix-orange);
}

.editorial-item:first-child::before {
    left: 0;
}

.editorial-item h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-subtitle);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--tobamix-black);
    letter-spacing: -1px;
}

.editorial-item p {
    font-size: var(--font-size-desc);
    line-height: 1.8;
    color: #555;
    font-weight: 500;
}

.editorial-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.editorial-list li {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 600;
    color: var(--tobamix-black);
}

.editorial-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 6px;
    height: 1px;
    background: var(--tobamix-orange);
}

.summary-item {
    background: var(--tobamix-cream);
    padding: 5rem 3rem;
    justify-content: center;
}

.summary-item .orange-marker {
    width: 15px;
    height: 40px;
    background: var(--tobamix-orange);
    margin-bottom: 2.5rem;
}

.summary-item p {
    font-family: var(--font-body); /* Body font for better flow */
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 500;
    color: var(--tobamix-black);
    opacity: 0.8;
}

@media (max-width: 1400px) {
    .editorial-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 1200px) {
    .milestone-editorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .editorial-item {
        border-right: none;
        border-bottom: 1px solid rgba(22, 5, 0, 0.05);
    }
}

@media (max-width: 768px) {
    .milestone-editorial-grid {
        grid-template-columns: 1fr;
    }

    .editorial-item {
        padding: 3rem 2rem;
    }

    .milestone-banner {
        height: 50vh;
    }
}

/* Subtle Footer Marquee */
.bottom-marquee {
    position: relative; /* Replaced absolute to move below hero */
    width: 100%;
    padding: 2rem 0;
    background: #ffffff;
    color: var(--tobamix-black);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 3px;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--skena-border);
    border-bottom: 1px solid var(--skena-border); /* Elegant separation */
    z-index: 5;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: flex;
    align-items: center;
    padding-left: 70%;
    animation: marquee-scroll 80s linear infinite;
}

.marquee-logo {
    height: 30px; /* Clean size for marquee */
    width: auto;
    margin: 0 4rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.marquee-logo:hover {
    opacity: 1;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media (min-width: 1200px) {
    .bottom-marquee {
        font-size: 0.9rem;
        padding: 2rem 0;
    }
}

/* Stark Stats: Modern Technical Dashboard Style (Light) */
.stark-stats {
    display: flex;
    justify-content: space-around;
    background: #ffffff;
    color: var(--tobamix-black);
    padding: 5rem var(--padding-x);
    border-top: 1px solid var(--skena-border);
    border-bottom: 1px solid var(--skena-border);
}

.stat-cell {
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.stat-cell:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--skena-border);
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--tobamix-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.8rem;
}

.stat-tag {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Solutions Grid: Premium Light Bento */
.section-header-vibe h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-section-title);
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2rem;
    letter-spacing: -2px; /* Tighter characters for solid industrial look */
    line-height: 0.95;
}

.section-header-vibe h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* Shorter and sharper */
    height: 4px; /* Thinner for precision */
    background: var(--tobamix-orange);
}



/* Enterprise Identity v8 - The Sky Narrative (Restored Alignment) */
.enterprise-identity-v4 {
    position: relative;
    width: 100%;
    min-height: 700px; /* Slightly taller for center landing */
    display: flex;
    align-items: center;
    justify-content: center; /* Repositioned to center */
    padding: 10vw var(--padding-x); /* Standardized for consistency */
    background-image: url('../img/tobamix return.webp');
    background-attachment: fixed; /* Parallax effect for depth */
    background-size: cover;
    background-position: center;
    color: #ffffff;
    overflow: hidden;
}
.enterprise-identity-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle Cinematic Darken Box */
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.7)),
        radial-gradient(circle, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.identity-content-v4 {
    position: relative;
    z-index: 2;
    max-width: 1100px; /* Expansive wide layout */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
}

.identity-logo-top {
    height: 50px;
    width: auto;
    margin-bottom: 2rem;
    opacity: 1;
}

.identity-title-v4 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.8rem); /* Refined and precisely scaled */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -1.5px;
}

.identity-text-v4 {
    font-family: var(--font-body);
    font-size: 1rem; /* Precise body scale */
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 850px;
    font-weight: 400;
}

.identity-watermark {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    height: 250px;
    opacity: 0.1;
    filter: brightness(0) invert(1);
    pointer-events: none;
    display: block;
    transform: rotate(-15deg); /* Dynamic technical rotation */
}

@media (max-width: 768px) {
    .enterprise-identity-v4 {
        min-height: 600px;
        padding: 5rem 1.5rem;
    }
}

.solutions-profile-v4 {
    padding: 6vw 0; /* Horizontal padding removed */
    background: #fff;
}

.solutions-list-v4 {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    margin-top: 5vw;
    padding: 0 var(--padding-x); /* Added horizontal padding for alignment */
}

.solution-item-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
    align-items: flex-start;
}

.solution-item-v4.row-reverse {
    direction: rtl; /* Flip columns */
}

.solution-item-v4.row-reverse > * {
    direction: ltr; /* Reset text direction inside */
}

.item-visual-v4 {
    width: 100%;
    aspect-ratio: 14/10;
    overflow: hidden;
    border-radius: 4px;
    background: #f8f8f8;
}

.item-visual-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.1); /* Industrial machinery brochure feel */
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-item-v4:hover .item-visual-v4 img {
    filter: grayscale(0) contrast(1);
    transform: scale(1.05); /* Subtle zoom */
}

.item-content-v4 {
    display: flex;
    flex-direction: column;
}

.item-header-v4 {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem; /* Reduced from 2rem */
}

.item-num-v4 {
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--tobamix-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem; /* Reduced numbering size */
    flex-shrink: 0;
}

.item-title-v4 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--tobamix-black);
}

.brands-label-v4 {
    width: 100%;
    font-size: 0.65rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.item-brands-v4 {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.brand-logo-v4 {
    height: 30px; 
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo-v4:hover {
    transform: scale(1.1);
}

.item-body-v4 {
    max-width: 700px;
}

.item-desc-v4 {
    font-size: 0.95rem; 
    line-height: 1.7;
    color: #4A4A4A;
    font-weight: 500;
    text-align: justify;
}



.brand-name-v4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--tobamix-black);
    text-transform: uppercase;
}

@media (max-width: 1200px) {
    .item-body-v4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .solution-item-v4, .solution-item-v4.row-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }
    
    .item-visual-v4 {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .span-large,
    .span-medium,
    .span-small {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-card-v2 {
        padding: 2rem;
    }
}

/* End of Solutions Grid */

.gear-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gear-card p {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.6;
}

/* Core Activities Section: Premium Profile Style */


.section-header-vibe {
    padding: 0 var(--padding-x);
    margin-bottom: 5vw;
}

.count-tag {
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0.5;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: var(--tobamix-orange); /* Subtle color indicator */
    display: flex;
    align-items: center;
    gap: 1rem;
}

.count-tag::after {
    content: '';
    width: 20px;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.section-header-vibe h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-section-title);
    font-weight: 900;
}

.horizontal-list {
    display: flex;
    gap: 40px;
    padding: 0 var(--padding-x);
    overflow-x: auto;
    scrollbar-width: none;
}

.horizontal-list::-webkit-scrollbar {
    display: none;
}

.landmark-item {
    min-width: 600px;
}

.landmark-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.landmark-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.landmark-item:hover img {
    transform: scale(1.05);
}

.landmark-info h4 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
}

.landmark-info span {
    font-weight: 700;
    font-size: 0.7rem;
    color: var(--skena-orange);
}

/* Contact: Loud & Clear (Light Theme) */




/* Comprehensive Footer: Professional & Industrial */
.heavy-footer {
    padding: 4rem 0; /* Horizontal padding moved to footer-top and footer-bottom */
    background-color: var(--tobamix-black);
    color: var(--tobamix-cream);
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 0 var(--padding-x);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2.5rem;
    color: #ffffff; /* White instead of orange */
}

.f-brand {
    margin-bottom: 2.5rem;
}

.f-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand-info p,
.footer-copy-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9); /* More white */
    max-width: 400px;
    margin: 1.5rem 0;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8); /* Replaced 0.6 */
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.f-stay-touch {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 1;
}

.f-socials {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.f-socials a {
    color: #ffffff;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.f-socials a:hover {
    opacity: 1;
    color: var(--tobamix-orange);
    transform: translateY(-3px);
}

.f-contact-btn {
    background: var(--tobamix-orange);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.f-contact-btn:hover {
    background: #e65c00;
    transform: translateY(-2px);
}

.office-info {
    font-style: normal;
    margin-top: 1rem;
}

.office-info .info-item {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.office-info .info-text p {
    margin: 0;
}

.office-info i {
    color: #ffffff; /* White instead of orange */
    width: 24px;
    text-align: center;
    font-size: 1.25rem;
    /*padding-top: 2px;*/
}

.footer-bottom {
    padding: 2rem var(--padding-x) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem; /* Smaller for more elegant meta feel */
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--tobamix-cream);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}


/* --- RESPONSIVE ENGINE & PADDING REFINEMENT --- */

:root {
    --container-padding: var(--padding-x);
    --section-spacing: 12vw;
}

@media (max-width: 1400px) {
    :root {
        --container-padding: 5vw;
    }

    .hero-title-skena {
        font-size: 8vw;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 8vh;
    }

    .hero-text-side {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtext {
        margin: 0 auto 3rem;
    }

    .hero-visual-side {
        justify-content: center;
        width: 100%;
    }

    .visual-wrapper {
        transform: rotate(0);
        max-width: 400px;
    }

    .gear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .contact-wrapper {
        gap: 5rem;
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding: 40px;
        --section-spacing: 80px;
    }

    .hero-title-skena {
        font-size: 12vw;
    }

    .stark-stats {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-cell::after {
        display: none;
    }

    .stat-cell {
        border-bottom: 1px solid var(--skena-border);
        padding-bottom: 2rem;
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 30px;
        --section-gap: 60px;
    }

    .header-container {
        padding: 0;
    }

    /* Mobile Nav Overlay */
    .minimal-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--tobamix-orange);
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        visibility: hidden;
    }

    .stark-header.menu-open .minimal-nav {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-items-vibe {
        display: flex !important;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .nav-items-vibe a {
        font-size: 1.8rem;
        color: var(--tobamix-cream);
        font-weight: 900;
        letter-spacing: -1px;
    }

    .nav-cta-skena {
        background: var(--tobamix-cream) !important;
        color: var(--tobamix-orange) !important;
        width: auto;
        padding: 8px 8px !important;
        font-size: 1rem !important;
        margin-top: 1rem;
    }

    /* Toggle Button Animation */
    .menu-vibe-btn {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .menu-vibe-btn span {
        width: 30px;
        height: 2px;
        background: var(--tobamix-black);
        transition: all 0.4s ease;
    }

    .scrolled .menu-vibe-btn span {
        background: var(--tobamix-black);
    }

    /* Hero section is orange, so header items should be cream initially if transparent */
    /* But current header has a border and backdrop blur. Let's make it consistent. */
    .stark-header:not(.scrolled) .menu-vibe-btn span {
        background: var(--tobamix-cream);
    }

    .stark-header.menu-open .menu-vibe-btn span {
        background: var(--tobamix-cream) !important;
    }

    .stark-header.menu-open .menu-vibe-btn span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }

    .stark-header.menu-open .menu-vibe-btn span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .hero-title-skena {
        font-size: clamp(2.2rem, 10vw, 4rem);
        line-height: 0.95;
    }

    .pill-btn {
        width: 100%;
        justify-content: center;
    }

    .big-cta {
        font-size: 15vw;
    }

    .c-link {
        font-size: 1.2rem;
    }

    .contact-form-skena {
        padding: 2.5rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .f-socials {
        margin: 1rem 0;
    }

    .f-socials a {
        margin: 0 1rem;
    }

}

/* Fix for all containers to use variable padding */
.header-container,
.hero-container,
.stark-stats,
.skena-grid-section,
.landmarks-section,
.stark-contact,
.footer-inner {
    padding-left: var(--padding-x) !important;
    padding-right: var(--padding-x) !important;
}

.skena-grid-section,
.landmarks-section,
.stark-contact {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

/* Section Header Alignment: Matches navbar logo position */
.section-header-vibe,
.section-title-wrap {
    padding-left: var(--padding-x) !important;
    padding-right: var(--padding-x) !important;
}

/* Responsive Hacks */
@media (max-width: 1200px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .hero-bento {
        grid-template-columns: 1fr;
    }

    .bento-col {
        border-right: none;
        height: auto;
    }
}

@media (max-width: 768px) {
    /* Mobile Description Style: Justified & Compact */
    .hero-subtext,
    .item-desc-v4,
    .identity-text-v4,
    .editorial-item p,
    .partners-subtitle,
    .cta-description,
    .footer-brand-info p,
    .office-info p {
        text-align: justify;
        font-size: 0.9rem !important;
        line-height: 1.6;
    }

    .gear-grid {
        grid-template-columns: 1fr;
    }

    .giant-label {
        font-size: 15vw;
    }

    .stark-stats {
        grid-template-columns: 1fr;
    }
}



/* Portfolio Section: Elegant & Minimalist */
.portfolio-section {
    padding: 8vw 0 3vw; /* Reduced top padding for tighter flow */
    background: #ffffff;
    border-top: 1px solid var(--skena-border);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
    padding: 0 var(--padding-x); /* Added padding to grid for alignment */
}

.portfolio-item {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    background: #f0f0f0;
    margin-bottom: 1.5rem;
    position: relative;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-img img {
    filter: none;
    transform: scale(1.08);
}

.portfolio-details {
    display: flex;
    align-items: flex-start; /* Align with the first line of multi-line titles */
    gap: 1.5rem;
}

.p-marker {
    width: 4px;
    height: 30px;
    background: var(--tobamix-orange);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-top: 2px; /* Visual adjustment for text baseline */
}

.portfolio-item:hover .p-marker {
    transform: scaleY(1.5);
}

.p-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-subtitle);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--tobamix-black);
    line-height: 1.1;
    max-width: 80%;
}

@media (max-width: 1200px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portfolio-section {
        padding: 5rem var(--padding-x) 5vw;
    }
}

/* Partners Section: Clean Grid Portfolio Aesthetic */
.partners-section {
    padding: 3vw 0 var(--section-gap);
    background: #ffffff;
    overflow: hidden;
}

.partners-banner {
    width: 100%;
    margin: 0 0 5vw;
    height: 48vh;
    position: relative;
    overflow: hidden;
}

.partners-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) brightness(0.6) contrast(1.1);
    transition: transform 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.partners-banner:hover img {
    transform: scale(1.08);
}

.partners-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(22, 5, 0, 0.85) 0%, rgba(22, 5, 0, 0.3) 60%, transparent 100%);
}

.banner-overlay-v2 {
    position: absolute;
    top: 50%;
    left: var(--padding-x);
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10vw;
    width: calc(100% - (2 * var(--padding-x)));
    align-items: center;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-section-title);
    font-weight: 900;
    line-height: 0.85;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: #fff;
}

.partners-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0.9;
    max-width: 650px;
    border-left: 2px solid var(--tobamix-orange);
    padding-left: 2rem;
}

.partners-logos-container {
    padding: 0; /* Changed to full width */
}

.logo-slider-wrap {
    width: 100%;
    overflow: hidden;
    padding: 8vw 0; /* Menambah padding atas bawah */
    position: relative;
    border-top: 1px solid rgba(22, 5, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6rem; /* Jarak antara baris atas dan bawah diperbesar */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-slider-track {
    display: flex;
    width: fit-content;
    gap: 120px;
    animation: logo-scroll 120s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
}

.logo-slide img {
    height: 3rem; /* Larger logo slider */
    width: auto;
    transition: all 0.5s ease;
}

.logo-slide:hover img {
    transform: scale(1.1);
}

.no-partners-notice {
    width: 100%;
    text-align: center;
    padding: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--tobamix-black);
    opacity: 0.5;
    letter-spacing: 1px;
    border: 1px dashed rgba(22, 5, 0, 0.1);
    border-radius: 8px;
}

.logo-slider-track.reverse {
    animation: logo-scroll-reverse 120s linear infinite;
}

.logo-slider-track.reverse:hover {
    animation-play-state: paused;
}

@keyframes logo-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes logo-scroll-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 1200px) {
    .banner-overlay-v2 {
        gap: 5vw;
    }
}

@media (max-width: 992px) {
    .partners-banner {
        height: 65vh;
    }

    .banner-overlay-v2 {
        grid-template-columns: 1fr;
        gap: 3rem;
        top: 55%;
    }

    .partners-title {
        font-size: 15vw;
    }

    .partners-subtitle {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
}

/* Enterprise Identity V2: Full-Width Elegant Background (Optimized) */
.identity-section-v2 {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* FIXED to prevent scroll lag/heaviness */
    color: #fff;
    overflow: hidden;
}

.identity-container-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.identity-content-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* SEJAJAR (side by side) */
    gap: 6rem;
    align-items: flex-end; /* Align bottom for better editorial feel */
}

.identity-tag-v2 {
    display: inline-block;
    background: var(--tobamix-orange);
    color: #fff;
    padding: 0.6rem 1.4rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    border-radius: 4px;
}

.identity-title-v2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 950;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.identity-desc-v2 {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    margin-bottom: 0;
}

.identity-focus-box-v2 {
    background: rgba(0, 0, 0, 0.45); /* Slightly darker for contrast */
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle thin border instead of heavy orange */
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.focus-icon-v2 {
    font-size: 3rem;
    color: var(--tobamix-orange);
    margin-bottom: 2rem;
    display: block;
}

.identity-focus-box-v2 p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

@media (max-width: 1100px) {
    .identity-content-v2 {
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .identity-section-v2 {
        padding: 5rem 0;
    }
    
    .identity-title-v2 {
        font-size: 2.2rem;
    }
    
    .identity-desc-v2 {
        font-size: 1.1rem;
    }
    
    .identity-focus-box-v2 {
        padding: 2rem;
        border-radius: 16px;
    }
    
    .identity-focus-box-v2 p {
        font-size: 1rem;
    }
}

/* Industrial CTA: Elegant & High-Impact */
.industrial-cta {
    position: relative;
    padding: 18rem 0 10rem; /* Reduced bottom padding */
    background: var(--tobamix-black);
    overflow: hidden;
    color: #fff;
}

.cta-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: transform 3s ease;
    z-index: 1;
}

.industrial-cta:hover .cta-bg-overlay {
    transform: scale(1.1);
}

.industrial-cta::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--tobamix-black) 25%, rgba(22, 5, 0, 0.4) 100%);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 5;
    max-width: 900px; /* Wider for better balance */
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-icon {
    height: 48px;
    width: auto;
    margin-bottom: 2.5rem;
    opacity: 1;
}

.cta-tag {
    font-family: var(--font-heading);
    color: var(--tobamix-orange);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 3.5rem; /* More space */
    font-family: var(--font-heading);
    letter-spacing: -1.5px;
}

.cta-title span {
    color: var(--tobamix-orange);
}

.cta-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    max-width: 750px;
    margin-bottom: 5.5rem; /* Significant gap to buttons */
    font-weight: 400;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0; /* Minimalist sharp edges */
    text-decoration: none;
    border: 1px solid transparent;
}

.primary-cta {
    background: transparent;
    border: 1px solid var(--tobamix-orange);
    color: var(--tobamix-orange);
}

.primary-cta:hover {
    background: var(--tobamix-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

.secondary-cta {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #ffffff;
}

.secondary-cta:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,0.1);
}
@media (max-width: 991px) {
    .industrial-cta {
        padding: 8rem 0;
        text-align: center;
    }
    .industrial-cta::after {
        background: rgba(0,0,0,0.7);
    }
    .cta-description {
        margin: 0 auto 4rem;
    }
    .cta-actions {
        justify-content: center;
        flex-direction: column;
    }
}


