/* ============================================
   STARK Renewal 2026
   Inspired by the reference site's spacious, geometric motion language.
   ============================================ */

:root {
    --c-bg: #f7f3ea;
    --c-bg-2: #ffffff;
    --c-bg-3: #edf3f1;
    --c-surface: #ffffff;
    --c-surface-2: #f4efe5;
    --c-border: rgba(21, 21, 21, 0.12);
    --c-border-2: rgba(21, 21, 21, 0.18);
    --c-text: #151515;
    --c-text-2: #4d4d4d;
    --c-text-3: #77716a;
    --c-primary: #f0c428;
    --c-primary-light: #ffe173;
    --c-accent: #2a6a72;
    --c-gold: #d99b2b;
    --c-green: #2f8a63;
    --c-red: #c03535;
    --c-purple: #7c3d8c;
    --c-navy: #2c3870;
    --c-coral: #e05c28;
    --grad-primary: linear-gradient(135deg, #f0c428 0%, #ffe173 100%);
    --grad-gold: linear-gradient(135deg, #d99b2b 0%, #f0c428 100%);
    --grad-dark: linear-gradient(180deg, #f7f3ea 0%, #ffffff 100%);
    --shadow-sm: 0 2px 0 rgba(21, 21, 21, 0.08);
    --shadow-md: 0 12px 32px rgba(21, 21, 21, 0.12);
    --shadow-lg: 0 24px 64px rgba(21, 21, 21, 0.14);
    --shadow-glow: 0 16px 36px rgba(240, 196, 40, 0.28);
    --shadow-glow-lg: 0 28px 72px rgba(42, 106, 114, 0.18);
    --radius-sm: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    --radius-full: 9999px;
}

* {
    letter-spacing: 0 !important;
}

html {
    background: var(--c-bg);
}

body {
    color: var(--c-text);
    background:
        linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
        var(--c-bg);
    background-size: 72px 72px, 72px 72px, auto;
}

body::before {
    background: var(--c-bg);
}

::selection {
    background: var(--c-accent);
    color: #ffffff;
}

.container {
    max-width: 1180px;
}

.header {
    color: var(--c-text);
    background: rgba(247, 243, 234, 0.72);
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header.scrolled,
.header.header-solid {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.logo-mark {
    color: #151515;
    background: var(--c-primary);
    border: 1px solid rgba(21, 21, 21, 0.18);
    box-shadow: 4px 4px 0 var(--c-accent);
}

.logo-text,
.nav-link,
.hamburger {
    color: var(--c-text);
}

.nav-link {
    font-weight: 700;
}

.nav-link::after {
    background: var(--c-red);
    height: 2px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--c-text);
}

.nav-link.nav-cta {
    color: #151515 !important;
    background: var(--c-primary);
    border: 1px solid rgba(21, 21, 21, 0.18);
    box-shadow: 3px 3px 0 var(--c-accent);
}

.hamburger-lines span {
    background: var(--c-text);
}

.nav-mobile {
    background: transparent;
    visibility: hidden;
    transition: visibility 0.4s ease;
}

.nav-mobile.active {
    visibility: visible;
}

.nav-mobile-bg {
    background:
        linear-gradient(120deg, rgba(240, 196, 40, 0.28), transparent 36%),
        linear-gradient(220deg, rgba(42, 106, 114, 0.18), transparent 42%),
        var(--c-bg);
}

.nav-mobile-link,
.nav-mobile-company,
.nav-mobile-address {
    color: var(--c-text);
}

.loader {
    background: #f0c428;
}

.loader-petal,
.loader-brand,
.loader-plane,
.loader-bar {
    color: #151515;
}

.loader-petal {
    stroke: #151515;
}

.loader-progress {
    background: rgba(21, 21, 21, 0.2);
}

.hero {
    min-height: 88svh;
    display: flex;
    align-items: center;
    color: var(--c-text);
    background: var(--c-bg);
    padding: calc(var(--header-height) + 56px) 0 72px;
    isolation: isolate;
}

.hero::after {
    content: "STARK";
    position: absolute;
    left: max(16px, calc((100vw - 1180px) / 2));
    bottom: -34px;
    z-index: 1;
    font-family: "Montserrat", sans-serif;
    font-size: 8rem;
    line-height: 0.82;
    font-weight: 900;
    color: rgba(21, 21, 21, 0.07);
    pointer-events: none;
}

.hero-bg {
    z-index: 0;
    overflow: hidden;
}

.hero-gradient {
    background:
        linear-gradient(120deg, rgba(240, 196, 40, 0.18) 0%, transparent 34%),
        linear-gradient(240deg, rgba(42, 106, 114, 0.12) 0%, transparent 40%),
        var(--c-bg);
}

.hero-bg::after {
    background-image: linear-gradient(rgba(21, 21, 21, 0.06) 1px, transparent 1px);
    background-size: 100% 96px;
    -webkit-mask-image: none;
    mask-image: none;
}

.hero-particles,
.particle {
    display: none !important;
}

.hero-image {
    inset: auto 4vw 4vh auto;
    width: min(46vw, 620px);
    height: min(46vw, 620px);
    opacity: 0.13;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-left: 0;
    text-align: left;
}

.hero-logo-img {
    display: none;
}

.hero-logo-symbol {
    width: 84px;
    height: 84px;
    margin: 0;
    color: var(--c-accent);
    filter: none;
}

.hero-kicker {
    margin-bottom: 18px;
    color: var(--c-accent);
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-title {
    font-size: 2.75rem;
    line-height: 1.15;
    color: var(--c-text);
    margin-bottom: 28px;
}

.hero-title em {
    color: var(--c-text);
    background: linear-gradient(transparent 62%, rgba(240, 196, 40, 0.72) 62%);
    -webkit-text-fill-color: currentColor;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.hero-desc {
    max-width: 620px;
    color: var(--c-text-2);
    font-size: 1.06rem;
}

.hero-buttons {
    justify-content: flex-start;
    margin: 0;
}

.btn {
    border-radius: 8px;
    min-height: 48px;
}

.btn-primary {
    color: #151515;
    background: var(--c-primary);
    border: 1px solid rgba(21, 21, 21, 0.18);
    box-shadow: 5px 5px 0 var(--c-accent);
}

.btn-primary:hover {
    box-shadow: 2px 2px 0 var(--c-accent);
}

.btn-ghost,
.btn-outline {
    color: var(--c-text);
    background: #ffffff;
    border: 1px solid var(--c-border-2);
}

.btn-ghost:hover,
.btn-outline:hover {
    color: #ffffff;
    background: var(--c-accent);
}

.btn-white {
    color: var(--c-text);
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.16);
}

.renewal-shape {
    position: absolute;
    z-index: 2;
    display: block;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 8px;
    opacity: 0.96;
    transform: translate3d(0, 0, 0);
    animation: renewalFloat 9s ease-in-out infinite;
    pointer-events: none;
}

.renewal-shape.shape-1 { width: 240px; height: 240px; left: 45%; top: -6%; background: var(--c-red); animation-duration: 12s; }
.renewal-shape.shape-2 { width: 142px; height: 142px; left: 11%; top: 11%; background: var(--c-primary); animation-duration: 8s; }
.renewal-shape.shape-3 { width: 178px; height: 204px; right: 17%; top: 3%; background: var(--c-primary); clip-path: polygon(0 0, 100% 12%, 80% 100%, 10% 86%); animation-duration: 10s; }
.renewal-shape.shape-4 { width: 96px; height: 128px; left: 32%; top: 34%; background: var(--c-accent); clip-path: polygon(12% 0, 100% 20%, 74% 100%, 0 80%); animation-duration: 11s; }
.renewal-shape.shape-5 { width: 136px; height: 136px; left: 18%; top: 26%; background: #3ebfcc; animation-duration: 9s; }
.renewal-shape.shape-6 { width: 214px; height: 214px; right: 6%; top: 9%; background: var(--c-purple); animation-duration: 13s; }
.renewal-shape.shape-7 { width: 84px; height: 176px; right: 5%; top: 31%; background: #3ebfcc; clip-path: polygon(0 0, 100% 12%, 78% 100%, 10% 90%); animation-duration: 7s; }
.renewal-shape.shape-8 { width: 82px; height: 104px; right: 19%; top: 42%; background: var(--c-navy); animation-duration: 12s; }
.renewal-shape.shape-9 { width: 264px; height: 264px; left: 25%; bottom: -12%; background: var(--c-coral); animation-duration: 10s; }
.renewal-shape.shape-10 { width: 92px; height: 92px; left: 17%; bottom: 18%; background: #b0d0e2; animation-duration: 8s; }
.renewal-shape.shape-11 { width: 190px; height: 190px; right: 8%; bottom: 7%; background: #c0d8e8; animation-duration: 9s; }
.renewal-shape.shape-12 { width: 132px; height: 148px; left: 53%; bottom: 12%; background: #b2c228; clip-path: polygon(8% 0, 100% 8%, 86% 92%, 0 100%); animation-duration: 11s; }

@keyframes renewalFloat {
    0%, 100% { transform: translate3d(var(--mx, 0), var(--my, 0), 0) rotate(0deg); }
    50% { transform: translate3d(calc(var(--mx, 0) + 12px), calc(var(--my, 0) - 22px), 0) rotate(2deg); }
}

.hero-scroll {
    position: absolute;
    right: max(20px, calc((100vw - 1180px) / 2));
    bottom: 34px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--c-text);
    font-family: "Montserrat", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.hero-scroll::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--c-text);
    border-radius: 2px;
    animation: scrollMarker 1.4s ease-in-out infinite;
}

@keyframes scrollMarker {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

.section {
    background: var(--c-bg);
}

.section:nth-of-type(odd) {
    background: #ffffff;
}

.section-about,
.section-news,
.section-service-nav,
.section-recruit-message,
.section-recruit-flow,
.section-values,
.section-news-page {
    background: #ffffff;
}

.section-header {
    text-align: left;
}

.section-label,
.page-header-label {
    color: var(--c-accent);
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    font-size: 0.86rem;
}

.section-label::before {
    width: 18px;
    height: 8px;
    border-radius: 2px;
    background: var(--c-primary);
}

.section-title,
.page-header-title,
.mission-title,
.service-detail-title,
.recruit-message-title,
.recruit-banner-title {
    color: var(--c-text);
    font-size: 2rem;
    line-height: 1.2;
}

.section-title em,
.mission-title em,
.service-detail-title em,
.recruit-message-title em,
.recruit-banner-title em {
    color: currentColor;
    background: linear-gradient(transparent 62%, rgba(240, 196, 40, 0.72) 62%);
    -webkit-text-fill-color: currentColor;
    -webkit-background-clip: border-box;
    background-clip: border-box;
}

.about-grid,
.mission-content,
.message-content,
.contact-grid {
    gap: 48px;
}

.about-lead,
.about-text,
.mission-lead,
.mission-desc,
.message-body p,
.service-detail-lead,
.service-detail-text p,
.recruit-message-text,
.recruit-banner-text,
.contact-cta-text {
    color: var(--c-text-2);
}

.about-card,
.mission-card,
.message-card,
.contact-info-card,
.contact-form-wrapper,
.privacy-content {
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
    box-shadow: 8px 8px 0 rgba(42, 106, 114, 0.22);
}

.about-card::before,
.mission-card::before {
    background: var(--c-primary);
}

.stat-item,
.value-card,
.strength-item,
.service-feature,
.position-card,
.faq-item,
.news-item-page {
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
    box-shadow: none;
}

.services-grid {
    gap: 24px;
}

.service-card {
    min-height: 430px;
    color: var(--c-text);
    border-radius: 8px;
    box-shadow: none;
}

.service-card:hover {
    box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.12);
}

.service-card-bg {
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
}

.service-card::before {
    height: 12px;
    opacity: 1;
}

.service-card[data-color="blue"]::before {
    background: var(--c-accent);
}

.service-card[data-color="gold"]::before {
    background: var(--c-primary);
}

.service-card[data-color="teal"]::before {
    background: var(--c-purple);
}

.service-num {
    color: rgba(21, 21, 21, 0.14);
}

.service-icon {
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
}

.service-title,
.service-name,
.strength-title,
.value-title,
.position-title,
.news-title,
.news-item-title {
    color: var(--c-text);
}

.service-desc,
.strength-text,
.value-text,
.position-desc,
.news-item-excerpt {
    color: var(--c-text-2);
}

.service-link {
    color: var(--c-accent);
}

.strength-icon,
.service-feature-icon,
.why-stark-num,
.flow-num {
    color: var(--c-text);
    background: var(--c-primary);
    border-radius: 8px;
}

.section-strength,
.section-history,
.section-why-stark,
.section-faq {
    background: var(--c-bg);
}

.news-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.news-item {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px 18px;
    align-items: center;
    min-height: 148px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-left: 12px solid var(--c-primary);
    border-radius: 8px;
}

.news-item:nth-child(2) {
    border-left-color: var(--c-accent);
}

.news-item:nth-child(3) {
    border-left-color: var(--c-coral);
}

.news-item:hover {
    padding-left: 24px;
    background: #ffffff;
    box-shadow: 8px 8px 0 rgba(21, 21, 21, 0.1);
}

.news-date {
    color: var(--c-text);
    font-weight: 800;
}

.news-tag,
.position-tag {
    color: var(--c-text);
    background: var(--c-bg);
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
}

.news-title {
    grid-column: 1 / -1;
}

.news-arrow {
    background: var(--c-bg);
    border-radius: 8px;
}

.news-arrow svg {
    stroke: var(--c-text);
}

.section-recruit-banner {
    background: var(--c-accent);
    color: #ffffff;
}

.section-recruit-banner::before {
    background:
        linear-gradient(90deg, rgba(240, 196, 40, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
}

.recruit-banner-gradient {
    background: rgba(42, 106, 114, 0.86);
}

.recruit-banner-image {
    opacity: 0.18;
}

.recruit-banner-title,
.recruit-banner-text {
    color: #ffffff;
}

.section-contact-cta {
    background: var(--c-bg);
}

.contact-cta-card {
    color: var(--c-text);
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
    box-shadow: 10px 10px 0 var(--c-primary);
}

.footer {
    color: var(--c-text);
    background: #ffffff;
    border-top: 1px solid rgba(21, 21, 21, 0.12);
}

.footer-main::before {
    background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
}

.footer-tagline,
.footer-nav a,
.footer-contact address,
.copyright,
.footer-links a {
    color: var(--c-text-2);
}

.social-link,
.back-to-top {
    color: var(--c-text);
    background: var(--c-primary);
    border: 1px solid rgba(21, 21, 21, 0.16);
    border-radius: 8px;
}

.page-header {
    color: var(--c-text);
    background: var(--c-bg);
}

.page-header-bg {
    background:
        linear-gradient(120deg, rgba(240, 196, 40, 0.26), transparent 36%),
        linear-gradient(240deg, rgba(124, 61, 140, 0.12), transparent 45%);
}

.page-header::after {
    background: var(--c-accent);
    opacity: 1;
    height: 8px;
}

.service-nav-item {
    color: var(--c-text);
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 8px;
}

.service-nav-item:hover {
    box-shadow: 6px 6px 0 rgba(21, 21, 21, 0.1);
}

.service-detail-bg {
    opacity: 1;
}

[data-service="mobile"] .service-detail-bg {
    background: linear-gradient(90deg, rgba(42, 106, 114, 0.12), transparent 38%);
}

[data-service="restaurant"] .service-detail-bg {
    background: linear-gradient(270deg, rgba(240, 196, 40, 0.18), transparent 38%);
}

[data-service="nail"] .service-detail-bg {
    background: linear-gradient(90deg, rgba(124, 61, 140, 0.12), transparent 38%);
}

.company-table,
.position-table,
.contact-form {
    color: var(--c-text);
}

.form-input,
.form-textarea,
.form-select {
    color: var(--c-text);
    background: #ffffff;
    border: 1px solid rgba(21, 21, 21, 0.18);
    border-radius: 8px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(42, 106, 114, 0.12);
}

.animate-on-scroll {
    transform: translateY(36px) scale(0.98);
    transition:
        opacity 0.75s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}

.animate-on-scroll.visible {
    transform: translateY(0) scale(1);
}

.services-grid .animate-on-scroll:nth-child(1),
.strength-grid .animate-on-scroll:nth-child(1),
.news-list .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.services-grid .animate-on-scroll:nth-child(2),
.strength-grid .animate-on-scroll:nth-child(2),
.news-list .animate-on-scroll:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .animate-on-scroll:nth-child(3),
.strength-grid .animate-on-scroll:nth-child(3),
.news-list .animate-on-scroll:nth-child(3) {
    transition-delay: 0.16s;
}

.strength-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.24s;
}

@media (min-width: 640px) {
    .news-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .news-item {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto 1fr;
        align-items: start;
    }

    .news-title {
        grid-column: 1 / -1;
    }
}

@media (min-width: 768px) {
    .hero::after {
        font-size: 11rem;
    }

    .hero-title {
        font-size: 3.75rem;
    }

    .section-title,
    .page-header-title,
    .mission-title,
    .service-detail-title,
    .recruit-message-title,
    .recruit-banner-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: calc(var(--header-height) + 76px);
    }

    .hero::after {
        font-size: 14rem;
    }

    .hero-title {
        font-size: 4.25rem;
    }

    .section-title,
    .page-header-title {
        font-size: 3.25rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 86svh;
        align-items: flex-start;
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero::after {
        left: 18px;
        bottom: 18px;
        font-size: 5rem;
    }

    .hero-content {
        max-width: none;
    }

    .hero-logo-symbol {
        width: 64px;
        height: 64px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-desc {
        font-size: 0.98rem;
    }

    .hero-buttons {
        max-width: none;
    }

    .hero-scroll {
        display: none;
    }

    .renewal-shape {
        opacity: 0.58;
        animation-duration: 14s !important;
    }

    .renewal-shape.shape-1 { width: 132px; height: 132px; left: 58%; top: 4%; }
    .renewal-shape.shape-2 { width: 84px; height: 84px; left: 6%; top: 10%; }
    .renewal-shape.shape-3 { width: 92px; height: 110px; right: -2%; top: 18%; }
    .renewal-shape.shape-4 { width: 68px; height: 92px; left: 70%; top: 44%; }
    .renewal-shape.shape-5 { width: 82px; height: 82px; left: 58%; top: 62%; }
    .renewal-shape.shape-6 { display: none; }
    .renewal-shape.shape-7 { display: none; }
    .renewal-shape.shape-8 { width: 52px; height: 68px; right: 12%; top: 52%; }
    .renewal-shape.shape-9 { width: 130px; height: 130px; left: 52%; bottom: -6%; }
    .renewal-shape.shape-10 { width: 62px; height: 62px; left: 10%; bottom: 18%; }
    .renewal-shape.shape-11 { display: none; }
    .renewal-shape.shape-12 { width: 84px; height: 96px; left: 72%; bottom: 22%; }

    .news-item {
        grid-template-columns: 1fr auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .renewal-shape,
    .hero-scroll::before {
        animation: none !important;
    }
}

/* ============================================
   Motion and contrast failsafes
   ============================================ */
.loader {
    color: #111111;
    animation: loaderFailsafeHide 0.55s ease 2.7s forwards;
}

.loader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    animation: none !important;
}

.loader-symbol,
.loader-petal,
.loader-orbit,
.loader-plane,
.plane-svg,
.loader-bar,
.hero-logo-symbol,
.animate-fade-up,
.particle {
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.loader-symbol {
    animation-duration: 4.8s !important;
}

.loader-orbit {
    animation-duration: 2.2s !important;
}

.loader-plane,
.loader-bar {
    animation-duration: 1.8s !important;
}

.animate-fade-up {
    opacity: 1;
}

.animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    animation: renewalContentIn 0.75s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    transform: none !important;
}

.section,
.page-header,
.footer,
.hero {
    color: #111111;
}

.section:not(.section-recruit-banner) p,
.section:not(.section-recruit-banner) li,
.page-header-desc,
.footer p,
.footer a {
    color: #262626;
}

.hero-title,
.section-title,
.page-header-title,
.service-title,
.service-name,
.strength-title,
.news-title,
.contact-cta-title,
.footer-logo,
.nav-link,
.logo-text {
    color: #111111 !important;
}

.hero-desc,
.about-lead,
.about-text,
.service-desc,
.strength-text,
.contact-cta-text {
    color: #2f2f2f !important;
}

.section-recruit-banner,
.section-recruit-banner .section-label,
.section-recruit-banner .recruit-banner-title,
.section-recruit-banner .recruit-banner-text {
    color: #ffffff !important;
}

@keyframes renewalContentIn {
    from {
        opacity: 0;
        transform: translateY(34px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loaderFailsafeHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .loader-symbol,
    .loader-petal,
    .loader-orbit,
    .loader-plane,
    .plane-svg,
    .loader-bar,
    .renewal-shape,
    .hero-scroll::before,
    .animate-fade-up,
    .animate-on-scroll {
        -webkit-animation-duration: revert !important;
        animation-duration: revert !important;
        -webkit-animation-iteration-count: revert !important;
        animation-iteration-count: revert !important;
        -webkit-transition-duration: revert !important;
        transition-duration: revert !important;
    }

    .renewal-shape {
        animation: renewalFloat 10s ease-in-out infinite !important;
    }

    .hero-scroll::before {
        animation: scrollMarker 1.4s ease-in-out infinite !important;
    }
}

/* ============================================
   Mobile fallback: keep the previous working homepage behavior.
   ============================================ */
@media (max-width: 767px) {
    :root {
        --c-bg: #0f1419;
        --c-bg-2: #151c24;
        --c-bg-3: #1c252f;
        --c-surface: #1e2832;
        --c-surface-2: #253340;
        --c-border: rgba(255,255,255,0.08);
        --c-border-2: rgba(255,255,255,0.12);
        --c-text: #ffffff;
        --c-text-2: #a8b5c4;
        --c-text-3: #6b7a8c;
        --c-primary: #f5c842;
        --c-primary-light: #ffd54f;
        --c-accent: #e6b52e;
        --c-gold: #d4a520;
        --grad-primary: linear-gradient(135deg, #d4a520 0%, #f5c842 100%);
        --grad-gold: linear-gradient(135deg, #b8942e 0%, #d4a853 100%);
        --grad-dark: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-2) 100%);
    }

    html,
    body {
        color: var(--c-text) !important;
        background: var(--c-bg) !important;
    }

    body {
        background-image: none !important;
    }

    .header {
        color: var(--c-text) !important;
        background: rgba(15, 20, 25, 0.92) !important;
        border-bottom: 1px solid var(--c-border) !important;
    }

    .header.scrolled,
    .header.header-solid {
        background: rgba(15, 20, 25, 0.96) !important;
    }

    .logo-mark {
        color: #1a1a1a !important;
        background: var(--grad-primary) !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    .logo-text,
    .nav-link,
    .hamburger,
    .nav-mobile-link,
    .nav-mobile-company,
    .nav-mobile-address {
        color: var(--c-text) !important;
    }

    .hamburger-lines span {
        background: var(--c-text) !important;
    }

    .nav-mobile {
        background: transparent !important;
    }

    .nav-mobile-bg {
        background: var(--c-bg) !important;
    }

    .hero {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        display: flex !important;
        align-items: center !important;
        color: var(--c-text) !important;
        background: var(--c-bg) !important;
        padding: calc(var(--header-height) + var(--sp-12)) 0 var(--sp-16) !important;
        overflow: hidden !important;
    }

    .hero::after,
    .renewal-shape,
    .hero-scroll,
    .hero-kicker {
        display: none !important;
    }

    .hero-bg {
        z-index: -1 !important;
    }

    .hero-gradient {
        background:
            radial-gradient(ellipse 100% 80% at 50% 0%, rgba(245,200,66,0.28) 0%, transparent 60%),
            radial-gradient(ellipse 80% 60% at 100% 50%, rgba(212,165,32,0.18) 0%, transparent 50%),
            radial-gradient(ellipse 60% 50% at 0% 100%, rgba(255,213,79,0.12) 0%, transparent 50%),
            radial-gradient(ellipse 40% 40% at 30% 60%, rgba(56,189,248,0.06) 0%, transparent 50%) !important;
    }

    .hero-bg::after {
        background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px) !important;
        background-size: 40px 40px !important;
        -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%) !important;
        mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 0%, transparent 100%) !important;
    }

    .hero-image {
        inset: 0 !important;
        width: auto !important;
        height: auto !important;
        opacity: 0.15 !important;
        display: flex !important;
    }

    .hero-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .hero-content {
        position: relative !important;
        z-index: 2 !important;
        max-width: none !important;
        text-align: center !important;
        margin: 0 auto !important;
        color: var(--c-text) !important;
    }

    .hero-logo-img {
        display: flex !important;
        justify-content: center !important;
        margin-bottom: var(--sp-8) !important;
    }

    .hero-logo-symbol {
        width: 100px !important;
        height: 100px !important;
        margin: 0 auto !important;
        color: var(--c-primary) !important;
        filter: drop-shadow(0 0 12px rgba(245,200,66,0.6)) !important;
    }

    .hero-title {
        color: var(--c-text) !important;
        font-size: clamp(1.75rem, 8vw, 3.5rem) !important;
        line-height: 1.4 !important;
        margin-bottom: var(--sp-6) !important;
    }

    .hero-title em {
        background: var(--grad-primary) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }

    .hero-desc {
        color: var(--c-text-2) !important;
        font-size: var(--fs-base) !important;
        margin-bottom: var(--sp-8) !important;
    }

    .hero-buttons {
        justify-content: center !important;
        margin: 0 auto !important;
        max-width: 300px !important;
    }

    .section,
    .page-header,
    .footer {
        color: var(--c-text) !important;
        background: var(--c-bg) !important;
    }

    .section-about,
    .section-news,
    .section-service-nav,
    .section-recruit-message,
    .section-recruit-flow,
    .section-values,
    .section-news-page,
    .footer {
        background: var(--c-bg-2) !important;
    }

    .section p,
    .section li,
    .page-header-desc,
    .footer p,
    .footer a,
    .about-lead,
    .about-text,
    .service-desc,
    .strength-text,
    .contact-cta-text {
        color: var(--c-text-2) !important;
    }

    .section-title,
    .page-header-title,
    .service-title,
    .service-name,
    .strength-title,
    .news-title,
    .contact-cta-title {
        color: var(--c-text) !important;
    }

    .service-card-bg,
    .strength-item,
    .news-item,
    .contact-cta-card,
    .service-nav-item,
    .value-card,
    .faq-item,
    .position-card,
    .contact-info-card,
    .contact-form-wrapper,
    .privacy-content {
        background: var(--c-surface) !important;
        border-color: var(--c-border) !important;
        box-shadow: none !important;
    }

    .btn {
        border-radius: var(--radius-full) !important;
    }

    .btn-primary {
        color: #1a1a1a !important;
        background: var(--grad-primary) !important;
        border: 0 !important;
        box-shadow: 0 4px 20px rgba(245,200,66,0.4) !important;
    }

    .loader {
        animation: loaderFailsafeHide 0.55s ease 2.7s forwards !important;
    }

    .loader-symbol,
    .loader-petal,
    .loader-orbit,
    .loader-plane,
    .plane-svg,
    .loader-bar {
        -webkit-animation-play-state: running !important;
        animation-play-state: running !important;
    }

    .animate-fade-up,
    .animate-on-scroll {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ============================================
   Design upgrade v9: sharper editorial identity
   ============================================ */
:root {
    --c-bg: #f8fbf7;
    --c-bg-2: #ffffff;
    --c-bg-3: #eef5f1;
    --c-surface: #ffffff;
    --c-surface-2: #f2f6f3;
    --c-border: rgba(14, 23, 32, 0.13);
    --c-border-2: rgba(14, 23, 32, 0.2);
    --c-text: #0e1720;
    --c-text-2: #334155;
    --c-text-3: #64748b;
    --c-primary: #ffd84d;
    --c-primary-light: #ffe88c;
    --c-accent: #0ea5a3;
    --c-gold: #f4b740;
    --c-green: #49b86f;
    --c-red: #e7473c;
    --c-purple: #6f4bd8;
    --c-navy: #18243a;
    --c-coral: #ff7a45;
    --grad-primary: linear-gradient(135deg, #ffd84d 0%, #ff7a45 100%);
    --grad-gold: linear-gradient(135deg, #ffd84d 0%, #49b86f 100%);
    --grad-dark: linear-gradient(135deg, #0e1720 0%, #18243a 100%);
    --shadow-sm: 0 1px 0 rgba(14, 23, 32, 0.08);
    --shadow-md: 0 18px 45px rgba(14, 23, 32, 0.12);
    --shadow-lg: 0 32px 80px rgba(14, 23, 32, 0.18);
}

html,
body {
    color: var(--c-text) !important;
    background: var(--c-bg) !important;
}

body {
    background-image:
        linear-gradient(90deg, rgba(14, 23, 32, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(14, 23, 32, 0.04) 1px, transparent 1px) !important;
    background-size: 88px 88px, 88px 88px !important;
}

body::before {
    display: none !important;
}

.container {
    max-width: 1220px;
}

.header {
    color: var(--c-text) !important;
    background: rgba(248, 251, 247, 0.86) !important;
    border-bottom: 1px solid rgba(14, 23, 32, 0.1) !important;
    box-shadow: 0 8px 28px rgba(14, 23, 32, 0.06) !important;
}

.header.scrolled,
.header.header-solid {
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 14px 38px rgba(14, 23, 32, 0.09) !important;
}

.logo-mark {
    color: var(--c-primary) !important;
    background: var(--c-text) !important;
    border: 1px solid var(--c-text) !important;
    box-shadow: none !important;
}

.logo-text,
.nav-link,
.hamburger {
    color: var(--c-text) !important;
}

.hamburger::before {
    border-radius: 8px !important;
}

.hamburger-lines span {
    background: var(--c-text) !important;
}

.nav-link {
    position: relative;
    font-weight: 800 !important;
}

.nav-link::after {
    height: 3px !important;
    background: var(--c-red) !important;
}

.nav-link.nav-cta {
    color: #ffffff !important;
    background: var(--c-text) !important;
    border-color: var(--c-text) !important;
    box-shadow: 4px 4px 0 var(--c-primary) !important;
}

.nav-mobile {
    background: transparent !important;
    visibility: hidden;
    pointer-events: none;
}

.nav-mobile.active {
    visibility: visible;
    pointer-events: auto;
}

.nav-mobile-bg {
    background:
        linear-gradient(125deg, rgba(255, 216, 77, 0.18) 0 22%, transparent 22% 100%),
        linear-gradient(215deg, rgba(14, 165, 163, 0.34) 0 28%, transparent 28% 100%),
        #0e1720 !important;
}

.nav-mobile-link,
.nav-mobile-company,
.nav-mobile-address {
    color: #ffffff !important;
}

.nav-mobile-link::before {
    color: var(--c-primary) !important;
}

.hero {
    min-height: 94svh !important;
    color: var(--c-text) !important;
    background: var(--c-bg) !important;
    padding: calc(var(--header-height) + 78px) 0 92px !important;
    overflow: hidden !important;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(112deg, transparent 0 54%, rgba(255, 216, 77, 0.84) 54% 62%, rgba(14, 165, 163, 0.92) 62% 74%, #0e1720 74% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 44% 100%, 59% 0);
    pointer-events: none;
}

.hero::after {
    left: auto !important;
    right: -0.08em !important;
    bottom: -0.18em !important;
    z-index: 1 !important;
    font-size: clamp(6rem, 18vw, 19rem) !important;
    color: rgba(14, 23, 32, 0.07) !important;
}

.hero-bg {
    z-index: 0 !important;
    overflow: hidden !important;
}

.hero-gradient {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(248, 251, 247, 0.48)),
        linear-gradient(90deg, rgba(255, 216, 77, 0.18), transparent 36%),
        var(--c-bg) !important;
}

.hero-bg::after {
    background-image:
        linear-gradient(90deg, rgba(14, 23, 32, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(14, 23, 32, 0.06) 1px, transparent 1px) !important;
    background-size: 88px 88px !important;
    opacity: 0.66 !important;
}

.hero-image {
    right: -5vw !important;
    bottom: -7vh !important;
    width: min(48vw, 680px) !important;
    height: min(48vw, 680px) !important;
    opacity: 0.18 !important;
    filter: grayscale(1) contrast(1.2) !important;
}

.hero-content {
    z-index: 4 !important;
    max-width: 780px !important;
    text-align: left !important;
}

.hero-logo-img {
    display: none !important;
}

.hero-kicker {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 12px;
    color: var(--c-text) !important;
    background: #ffffff !important;
    border: 1px solid var(--c-border-2);
    border-left: 8px solid var(--c-accent);
    border-radius: 8px;
    box-shadow: 6px 6px 0 rgba(14, 23, 32, 0.08);
}

.hero-title {
    max-width: 860px;
    color: var(--c-text) !important;
    font-size: clamp(2.85rem, 6.4vw, 5.8rem) !important;
    line-height: 1.04 !important;
    font-weight: 900 !important;
    margin: 22px 0 26px !important;
}

.hero-title em {
    color: var(--c-red) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.hero-desc {
    max-width: 650px !important;
    color: var(--c-text-2) !important;
    background: rgba(255, 255, 255, 0.72);
    border-left: 8px solid var(--c-primary);
    padding: 18px 22px;
    font-size: clamp(1rem, 1.5vw, 1.18rem) !important;
    line-height: 1.95 !important;
    box-shadow: 8px 8px 0 rgba(14, 165, 163, 0.12);
}

.hero-buttons {
    justify-content: flex-start !important;
    gap: 14px !important;
}

.btn {
    border-radius: 8px !important;
    font-weight: 800 !important;
}

.btn-primary {
    color: #ffffff !important;
    background: var(--c-text) !important;
    border: 1px solid var(--c-text) !important;
    box-shadow: 5px 5px 0 var(--c-primary) !important;
}

.btn-primary:hover {
    color: #ffffff !important;
    box-shadow: 2px 2px 0 var(--c-primary) !important;
}

.btn-ghost,
.btn-outline,
.btn-white {
    color: var(--c-text) !important;
    background: #ffffff !important;
    border: 1px solid var(--c-border-2) !important;
    box-shadow: 0 1px 0 rgba(14, 23, 32, 0.08) !important;
}

.btn-ghost:hover,
.btn-outline:hover,
.btn-white:hover {
    color: #ffffff !important;
    background: var(--c-accent) !important;
}

.renewal-shape {
    border: 0 !important;
    border-radius: 8px !important;
    opacity: 0.95 !important;
    mix-blend-mode: multiply;
    box-shadow: 12px 12px 0 rgba(14, 23, 32, 0.08);
}

.renewal-shape.shape-1 { width: 250px !important; height: 104px !important; left: 50% !important; top: 13% !important; background: var(--c-red) !important; }
.renewal-shape.shape-2 { width: 132px !important; height: 132px !important; left: 7% !important; top: 18% !important; background: var(--c-primary) !important; }
.renewal-shape.shape-3 { width: 164px !important; height: 210px !important; right: 13% !important; top: 8% !important; background: var(--c-accent) !important; }
.renewal-shape.shape-4 { width: 88px !important; height: 188px !important; left: 43% !important; top: 44% !important; background: var(--c-purple) !important; }
.renewal-shape.shape-5 { width: 112px !important; height: 112px !important; left: 16% !important; top: 58% !important; background: var(--c-green) !important; }
.renewal-shape.shape-6 { width: 230px !important; height: 142px !important; right: 3% !important; top: 38% !important; background: var(--c-primary) !important; }
.renewal-shape.shape-7 { width: 84px !important; height: 170px !important; right: 14% !important; bottom: 13% !important; top: auto !important; background: var(--c-red) !important; }
.renewal-shape.shape-8 { width: 96px !important; height: 96px !important; right: 28% !important; top: 61% !important; background: #6dd4e4 !important; }
.renewal-shape.shape-9 { width: 280px !important; height: 116px !important; left: 30% !important; bottom: 6% !important; background: var(--c-coral) !important; }

.section {
    padding: clamp(76px, 9vw, 124px) 0 !important;
    background: #ffffff !important;
}

.section:nth-of-type(odd),
.section-strength,
.section-history,
.section-why-stark,
.section-faq,
.section-contact-cta,
.page-header {
    background: var(--c-bg) !important;
}

.section-header {
    max-width: 820px;
    margin-right: auto;
    margin-left: 0;
    text-align: left !important;
}

.section-label,
.page-header-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 11px;
    color: var(--c-text) !important;
    background: var(--c-primary);
    border: 1px solid rgba(14, 23, 32, 0.18);
    border-radius: 8px;
    font-size: 0.76rem !important;
    font-weight: 900 !important;
}

.section-label::before {
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
}

.section-title,
.page-header-title,
.mission-title,
.service-detail-title,
.recruit-message-title,
.recruit-banner-title {
    color: var(--c-text) !important;
    font-size: clamp(2.3rem, 5vw, 4.6rem) !important;
    line-height: 1.04 !important;
    font-weight: 900 !important;
}

.section-title em,
.page-header-title em,
.mission-title em,
.service-detail-title em,
.recruit-message-title em,
.recruit-banner-title em {
    color: var(--c-accent) !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
}

.section:not(.section-recruit-banner) p,
.section:not(.section-recruit-banner) li,
.page-header-desc,
.footer p,
.footer a,
.about-lead,
.about-text,
.mission-lead,
.mission-desc,
.service-detail-lead,
.service-detail-text p,
.recruit-message-text,
.contact-cta-text {
    color: var(--c-text-2) !important;
}

.about-grid,
.mission-content,
.message-content,
.contact-grid {
    gap: clamp(36px, 6vw, 76px) !important;
}

.about-card,
.mission-card,
.message-card,
.contact-info-card,
.contact-form-wrapper,
.privacy-content {
    background: #ffffff !important;
    border: 1px solid var(--c-border-2) !important;
    border-radius: 8px !important;
    box-shadow: 10px 10px 0 rgba(14, 23, 32, 0.1) !important;
}

.about-card::before,
.mission-card::before {
    background: var(--c-red) !important;
}

.stat-item,
.value-card,
.strength-item,
.service-feature,
.position-card,
.faq-item,
.news-item-page,
.service-nav-item {
    background: #ffffff !important;
    border: 1px solid var(--c-border-2) !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 0 rgba(14, 23, 32, 0.08) !important;
}

.services-grid,
.strength-grid {
    gap: clamp(18px, 2.5vw, 28px) !important;
}

.service-card {
    min-height: 460px !important;
    color: var(--c-text) !important;
    border-radius: 8px !important;
    transform: translateZ(0);
}

.service-card:nth-child(2) {
    margin-top: 34px;
}

.service-card:nth-child(3) {
    margin-top: 68px;
}

.service-card-bg {
    background: #ffffff !important;
    border: 1px solid var(--c-border-2) !important;
    border-radius: 8px !important;
    box-shadow: 10px 10px 0 rgba(14, 23, 32, 0.09) !important;
}

.service-card:hover .service-card-bg {
    box-shadow: 4px 4px 0 rgba(14, 23, 32, 0.16) !important;
}

.service-card::before {
    height: 14px !important;
}

.service-card[data-color="blue"]::before { background: var(--c-accent) !important; }
.service-card[data-color="gold"]::before { background: var(--c-primary) !important; }
.service-card[data-color="teal"]::before { background: var(--c-red) !important; }

.service-num {
    color: rgba(14, 23, 32, 0.1) !important;
    font-size: 4rem !important;
}

.service-icon,
.strength-icon,
.service-feature-icon,
.why-stark-num,
.flow-num {
    color: var(--c-text) !important;
    background: var(--c-primary) !important;
    border: 1px solid rgba(14, 23, 32, 0.16);
    border-radius: 8px !important;
}

.service-card:nth-child(1) .service-icon,
.strength-item:nth-child(2) .strength-icon {
    background: #6dd4e4 !important;
}

.service-card:nth-child(3) .service-icon,
.strength-item:nth-child(4) .strength-icon {
    color: #ffffff !important;
    background: var(--c-red) !important;
}

.service-title,
.service-name,
.strength-title,
.value-title,
.position-title,
.news-title,
.news-item-title,
.contact-cta-title {
    color: var(--c-text) !important;
}

.news-list {
    gap: 22px !important;
}

.news-item {
    min-height: 164px !important;
    background: #ffffff !important;
    border: 1px solid var(--c-border-2) !important;
    border-left: 14px solid var(--c-primary) !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 0 rgba(14, 23, 32, 0.08) !important;
}

.news-item:nth-child(2) {
    border-left-color: var(--c-accent) !important;
}

.news-item:nth-child(3) {
    border-left-color: var(--c-red) !important;
}

.news-item:hover {
    box-shadow: 8px 8px 0 rgba(14, 23, 32, 0.1) !important;
}

.news-tag,
.position-tag {
    color: var(--c-text) !important;
    background: var(--c-bg-3) !important;
    border: 1px solid var(--c-border) !important;
    border-radius: 8px !important;
}

.section-recruit-banner {
    color: #ffffff !important;
    background: var(--c-text) !important;
}

.section-recruit-banner::before {
    background:
        linear-gradient(90deg, rgba(255, 216, 77, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px) !important;
    background-size: 72px 72px !important;
}

.recruit-banner-gradient {
    background:
        linear-gradient(110deg, rgba(14, 23, 32, 0.92) 0 55%, rgba(14, 165, 163, 0.76) 55% 75%, rgba(231, 71, 60, 0.82) 75% 100%) !important;
}

.recruit-banner-title,
.recruit-banner-text,
.section-recruit-banner .section-label {
    color: #ffffff !important;
}

.section-recruit-banner .section-label {
    color: var(--c-text) !important;
}

.contact-cta-card {
    color: #ffffff !important;
    background:
        linear-gradient(100deg, var(--c-text) 0 62%, var(--c-accent) 62% 82%, var(--c-primary) 82% 100%) !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: 12px 12px 0 rgba(14, 23, 32, 0.14) !important;
}

.contact-cta-title,
.contact-cta-card .contact-cta-text {
    color: #ffffff !important;
}

.footer {
    color: #ffffff !important;
    background: var(--c-text) !important;
    border-top: 0 !important;
}

.footer .logo-mark {
    color: var(--c-text) !important;
    background: var(--c-primary) !important;
    border-color: var(--c-primary) !important;
}

.footer-logo,
.footer-nav-title {
    color: #ffffff !important;
}

.footer-tagline,
.footer-nav a,
.footer-contact address,
.copyright,
.footer-links a {
    color: rgba(255, 255, 255, 0.72) !important;
}

.social-link,
.back-to-top {
    color: var(--c-text) !important;
    background: var(--c-primary) !important;
    border: 1px solid var(--c-primary) !important;
    border-radius: 8px !important;
}

.page-header {
    padding-top: calc(var(--header-height) + 92px) !important;
    overflow: hidden !important;
}

.page-header-bg {
    background:
        linear-gradient(112deg, transparent 0 52%, rgba(255, 216, 77, 0.74) 52% 64%, rgba(14, 165, 163, 0.74) 64% 100%),
        var(--c-bg) !important;
}

.page-header::after {
    background: var(--c-red) !important;
    height: 10px !important;
}

.form-input,
.form-textarea,
.form-select {
    color: var(--c-text) !important;
    background: #ffffff !important;
    border: 1px solid var(--c-border-2) !important;
    border-radius: 8px !important;
}

@media (max-width: 767px) {
    :root {
        --c-bg: #f8fbf7;
        --c-bg-2: #ffffff;
        --c-bg-3: #eef5f1;
        --c-surface: #ffffff;
        --c-surface-2: #f2f6f3;
        --c-border: rgba(14, 23, 32, 0.13);
        --c-border-2: rgba(14, 23, 32, 0.2);
        --c-text: #0e1720;
        --c-text-2: #334155;
        --c-text-3: #64748b;
        --c-primary: #ffd84d;
        --c-accent: #0ea5a3;
        --c-red: #e7473c;
    }

    html,
    body {
        color: var(--c-text) !important;
        background: var(--c-bg) !important;
    }

    body {
        background-image:
            linear-gradient(90deg, rgba(14, 23, 32, 0.045) 1px, transparent 1px),
            linear-gradient(180deg, rgba(14, 23, 32, 0.04) 1px, transparent 1px) !important;
        background-size: 56px 56px, 56px 56px !important;
    }

    .header,
    .header.scrolled,
    .header.header-solid {
        color: var(--c-text) !important;
        background: rgba(248, 251, 247, 0.94) !important;
        border-bottom: 1px solid rgba(14, 23, 32, 0.1) !important;
    }

    .logo-mark {
        color: var(--c-primary) !important;
        background: var(--c-text) !important;
        border: 1px solid var(--c-text) !important;
    }

    .logo-text,
    .hamburger {
        color: var(--c-text) !important;
    }

    .hamburger-lines span {
        background: var(--c-text) !important;
    }

    .nav-mobile {
        background: transparent !important;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-mobile.active {
        visibility: visible;
        pointer-events: auto;
    }

    .nav-mobile-bg {
        background:
            linear-gradient(125deg, rgba(255, 216, 77, 0.18) 0 22%, transparent 22% 100%),
            linear-gradient(215deg, rgba(14, 165, 163, 0.34) 0 28%, transparent 28% 100%),
            #0e1720 !important;
    }

    .nav-mobile-link,
    .nav-mobile-company,
    .nav-mobile-address {
        color: #ffffff !important;
    }

    .hero {
        min-height: 92svh !important;
        align-items: flex-start !important;
        color: var(--c-text) !important;
        background: var(--c-bg) !important;
        padding: calc(var(--header-height) + 42px) 0 74px !important;
    }

    .hero::before {
        background:
            linear-gradient(132deg, transparent 0 45%, rgba(255, 216, 77, 0.84) 45% 57%, rgba(14, 165, 163, 0.9) 57% 71%, #0e1720 71% 100%) !important;
        clip-path: polygon(0 0, 100% 0, 100% 62%, 56% 42%, 100% 100%, 62% 100%, 45% 0) !important;
        opacity: 0.58;
    }

    .hero::after {
        display: block !important;
        left: auto !important;
        right: -0.1em !important;
        bottom: -0.12em !important;
        font-size: 5.8rem !important;
        color: rgba(14, 23, 32, 0.08) !important;
    }

    .hero-bg {
        z-index: 0 !important;
    }

    .hero-gradient {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 251, 247, 0.72)),
            var(--c-bg) !important;
    }

    .hero-image {
        inset: auto -70px 4vh auto !important;
        width: 280px !important;
        height: 280px !important;
        opacity: 0.1 !important;
        display: flex !important;
    }

    .hero-content {
        z-index: 4 !important;
        max-width: none !important;
        text-align: left !important;
        color: var(--c-text) !important;
    }

    .hero-logo-img {
        display: none !important;
    }

    .hero-kicker {
        display: inline-flex !important;
        color: var(--c-text) !important;
        background: #ffffff !important;
        border-left: 8px solid var(--c-accent) !important;
    }

    .hero-title {
        color: var(--c-text) !important;
        font-size: clamp(2.65rem, 15vw, 4.4rem) !important;
        line-height: 0.98 !important;
        text-align: left !important;
    }

    .hero-title em {
        color: var(--c-red) !important;
        background: none !important;
        -webkit-text-fill-color: currentColor !important;
    }

    .hero-desc {
        color: var(--c-text-2) !important;
        background: rgba(255, 255, 255, 0.82) !important;
        border-left: 8px solid var(--c-primary) !important;
        padding: 16px !important;
        text-align: left !important;
        font-size: 0.98rem !important;
    }

    .hero-buttons {
        justify-content: flex-start !important;
        max-width: none !important;
    }

    .renewal-shape {
        display: block !important;
        opacity: 0.64 !important;
    }

    .renewal-shape.shape-1 { width: 116px !important; height: 58px !important; left: 62% !important; top: 17% !important; }
    .renewal-shape.shape-2 { width: 74px !important; height: 74px !important; left: 6% !important; top: 14% !important; }
    .renewal-shape.shape-3 { width: 78px !important; height: 116px !important; right: -10px !important; top: 28% !important; }
    .renewal-shape.shape-4 { width: 56px !important; height: 110px !important; left: 72% !important; top: 52% !important; }
    .renewal-shape.shape-5 { width: 68px !important; height: 68px !important; left: 14% !important; top: 68% !important; }
    .renewal-shape.shape-6,
    .renewal-shape.shape-7,
    .renewal-shape.shape-8,
    .renewal-shape.shape-9,
    .renewal-shape.shape-10,
    .renewal-shape.shape-11,
    .renewal-shape.shape-12 {
        display: none !important;
    }

    .section,
    .page-header,
    .footer {
        color: var(--c-text) !important;
        background: var(--c-bg) !important;
    }

    .section:nth-of-type(even),
    .section-about,
    .section-news,
    .section-service-nav,
    .section-recruit-message,
    .section-recruit-flow,
    .section-values,
    .section-news-page {
        background: #ffffff !important;
    }

    .section-header {
        text-align: left !important;
    }

    .section-title,
    .page-header-title,
    .service-title,
    .service-name,
    .strength-title,
    .news-title,
    .contact-cta-title {
        color: var(--c-text) !important;
    }

    .section p,
    .section li,
    .page-header-desc,
    .about-lead,
    .about-text,
    .service-desc,
    .strength-text,
    .contact-cta-text {
        color: var(--c-text-2) !important;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        margin-top: 0 !important;
    }

    .service-card-bg,
    .strength-item,
    .news-item,
    .contact-cta-card,
    .service-nav-item,
    .value-card,
    .faq-item,
    .position-card,
    .contact-info-card,
    .contact-form-wrapper,
    .privacy-content {
        background: #ffffff !important;
        border-color: var(--c-border-2) !important;
        box-shadow: 8px 8px 0 rgba(14, 23, 32, 0.08) !important;
    }

    .contact-cta-card {
        color: #ffffff !important;
        background:
            linear-gradient(135deg, var(--c-text) 0 65%, var(--c-accent) 65% 100%) !important;
        border: 0 !important;
    }

    .contact-cta-title,
    .contact-cta-card .contact-cta-text {
        color: #ffffff !important;
    }

    .footer {
        color: #ffffff !important;
        background: var(--c-text) !important;
    }

    .footer p,
    .footer a,
    .footer-tagline,
    .footer-nav a,
    .footer-contact address,
    .copyright,
    .footer-links a {
        color: rgba(255, 255, 255, 0.72) !important;
    }
}

/* ============================================
   Motion and mobile headline fix v11
   ============================================ */
.hero::before {
    background-size: 140% 100% !important;
    background-position: 0% 50% !important;
    transform: translate3d(0, 0, 0);
    will-change: background-position, transform, opacity;
    -webkit-animation: starkHeroSweep 8s ease-in-out infinite alternate !important;
    animation: starkHeroSweep 8s ease-in-out infinite alternate !important;
}

.hero-gradient {
    background-size: 130% 130%, 130% 130%, auto !important;
    -webkit-animation: starkGradientShift 11s ease-in-out infinite alternate !important;
    animation: starkGradientShift 11s ease-in-out infinite alternate !important;
}

.renewal-shape {
    --mx: 0px;
    --my: 0px;
    transform: translate3d(0, 0, 0) rotate(0deg);
    transform-origin: center center !important;
    will-change: transform !important;
    -webkit-animation-name: starkShapeDrift !important;
    animation-name: starkShapeDrift !important;
    -webkit-animation-duration: 7.5s !important;
    animation-duration: 7.5s !important;
    -webkit-animation-timing-function: ease-in-out !important;
    animation-timing-function: ease-in-out !important;
    -webkit-animation-iteration-count: infinite !important;
    animation-iteration-count: infinite !important;
    -webkit-animation-direction: alternate !important;
    animation-direction: alternate !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.renewal-shape.shape-1,
.renewal-shape.shape-6,
.renewal-shape.shape-9 {
    -webkit-animation-name: starkShapeSlide !important;
    animation-name: starkShapeSlide !important;
    -webkit-animation-duration: 9s !important;
    animation-duration: 9s !important;
}

.renewal-shape.shape-2 { -webkit-animation-delay: -1.2s !important; animation-delay: -1.2s !important; }
.renewal-shape.shape-3 { -webkit-animation-delay: -2.4s !important; animation-delay: -2.4s !important; }
.renewal-shape.shape-4 { -webkit-animation-delay: -3.1s !important; animation-delay: -3.1s !important; }
.renewal-shape.shape-5 { -webkit-animation-delay: -4.4s !important; animation-delay: -4.4s !important; }
.renewal-shape.shape-6 { -webkit-animation-delay: -5.5s !important; animation-delay: -5.5s !important; }
.renewal-shape.shape-7 { -webkit-animation-delay: -2.9s !important; animation-delay: -2.9s !important; }
.renewal-shape.shape-8 { -webkit-animation-delay: -4.8s !important; animation-delay: -4.8s !important; }
.renewal-shape.shape-9 { -webkit-animation-delay: -6.2s !important; animation-delay: -6.2s !important; }

.hero-scroll::before {
    -webkit-animation: starkScrollPulse 1.2s ease-in-out infinite !important;
    animation: starkScrollPulse 1.2s ease-in-out infinite !important;
}

.loader-symbol,
.loader-orbit,
.loader-plane,
.plane-svg,
.loader-bar {
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

@-webkit-keyframes starkHeroSweep {
    0% {
        background-position: 0% 50%;
        -webkit-transform: translate3d(-1.5%, 0, 0);
        transform: translate3d(-1.5%, 0, 0);
    }
    100% {
        background-position: 100% 50%;
        -webkit-transform: translate3d(1.5%, 0, 0);
        transform: translate3d(1.5%, 0, 0);
    }
}

@keyframes starkHeroSweep {
    0% {
        background-position: 0% 50%;
        -webkit-transform: translate3d(-1.5%, 0, 0);
        transform: translate3d(-1.5%, 0, 0);
    }
    100% {
        background-position: 100% 50%;
        -webkit-transform: translate3d(1.5%, 0, 0);
        transform: translate3d(1.5%, 0, 0);
    }
}

@-webkit-keyframes starkGradientShift {
    0% { background-position: 0% 0%, 100% 0%, center; }
    100% { background-position: 100% 22%, 0% 100%, center; }
}

@keyframes starkGradientShift {
    0% { background-position: 0% 0%, 100% 0%, center; }
    100% { background-position: 100% 22%, 0% 100%, center; }
}

@-webkit-keyframes starkShapeDrift {
    0% {
        -webkit-transform: translate3d(var(--mx), var(--my), 0) rotate(-4deg) scale(0.98);
        transform: translate3d(var(--mx), var(--my), 0) rotate(-4deg) scale(0.98);
    }
    50% {
        -webkit-transform: translate3d(calc(var(--mx) + 20px), calc(var(--my) - 28px), 0) rotate(5deg) scale(1.04);
        transform: translate3d(calc(var(--mx) + 20px), calc(var(--my) - 28px), 0) rotate(5deg) scale(1.04);
    }
    100% {
        -webkit-transform: translate3d(calc(var(--mx) - 14px), calc(var(--my) + 22px), 0) rotate(2deg) scale(1);
        transform: translate3d(calc(var(--mx) - 14px), calc(var(--my) + 22px), 0) rotate(2deg) scale(1);
    }
}

@keyframes starkShapeDrift {
    0% {
        -webkit-transform: translate3d(var(--mx), var(--my), 0) rotate(-4deg) scale(0.98);
        transform: translate3d(var(--mx), var(--my), 0) rotate(-4deg) scale(0.98);
    }
    50% {
        -webkit-transform: translate3d(calc(var(--mx) + 20px), calc(var(--my) - 28px), 0) rotate(5deg) scale(1.04);
        transform: translate3d(calc(var(--mx) + 20px), calc(var(--my) - 28px), 0) rotate(5deg) scale(1.04);
    }
    100% {
        -webkit-transform: translate3d(calc(var(--mx) - 14px), calc(var(--my) + 22px), 0) rotate(2deg) scale(1);
        transform: translate3d(calc(var(--mx) - 14px), calc(var(--my) + 22px), 0) rotate(2deg) scale(1);
    }
}

@-webkit-keyframes starkShapeSlide {
    0% {
        -webkit-transform: translate3d(calc(var(--mx) - 22px), var(--my), 0) rotate(-2deg);
        transform: translate3d(calc(var(--mx) - 22px), var(--my), 0) rotate(-2deg);
    }
    100% {
        -webkit-transform: translate3d(calc(var(--mx) + 26px), calc(var(--my) - 18px), 0) rotate(3deg);
        transform: translate3d(calc(var(--mx) + 26px), calc(var(--my) - 18px), 0) rotate(3deg);
    }
}

@keyframes starkShapeSlide {
    0% {
        -webkit-transform: translate3d(calc(var(--mx) - 22px), var(--my), 0) rotate(-2deg);
        transform: translate3d(calc(var(--mx) - 22px), var(--my), 0) rotate(-2deg);
    }
    100% {
        -webkit-transform: translate3d(calc(var(--mx) + 26px), calc(var(--my) - 18px), 0) rotate(3deg);
        transform: translate3d(calc(var(--mx) + 26px), calc(var(--my) - 18px), 0) rotate(3deg);
    }
}

@-webkit-keyframes starkScrollPulse {
    0%, 100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: translateX(10px) scale(1.25);
        transform: translateX(10px) scale(1.25);
        opacity: 0.55;
    }
}

@keyframes starkScrollPulse {
    0%, 100% {
        -webkit-transform: translateX(0) scale(1);
        transform: translateX(0) scale(1);
        opacity: 1;
    }
    50% {
        -webkit-transform: translateX(10px) scale(1.25);
        transform: translateX(10px) scale(1.25);
        opacity: 0.55;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero-gradient,
    .renewal-shape,
    .hero-scroll::before {
        -webkit-animation-play-state: running !important;
        animation-play-state: running !important;
    }

    .hero::before {
        -webkit-animation: starkHeroSweep 14s ease-in-out infinite alternate !important;
        animation: starkHeroSweep 14s ease-in-out infinite alternate !important;
    }

    .renewal-shape {
        -webkit-animation-duration: 14s !important;
        animation-duration: 14s !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(1.8rem, 8.2vw, 2.55rem) !important;
        line-height: 1.12 !important;
        max-width: 100% !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        text-wrap: nowrap !important;
    }

    .hero-title .title-line {
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
        white-space: nowrap !important;
        text-wrap: nowrap !important;
        word-break: keep-all !important;
        line-break: strict !important;
        overflow-wrap: normal !important;
    }

    .hero-title .title-line:first-child {
        display: block !important;
        font-size: clamp(1.42rem, 6.6vw, 1.92rem) !important;
        line-height: 1.18 !important;
    }

    .hero-title .title-line:last-child {
        display: block !important;
        font-size: clamp(1.7rem, 8vw, 2.3rem) !important;
        line-height: 1.16 !important;
    }

    .hero::before {
        -webkit-animation-duration: 7s !important;
        animation-duration: 7s !important;
    }

    .renewal-shape {
        -webkit-animation-duration: 6.5s !important;
        animation-duration: 6.5s !important;
    }
}

/* ============================================
   Mobile motion restore v14
   ============================================ */
.loader {
    -webkit-animation: loaderFailsafeHide 0.55s ease 3s forwards !important;
    animation: loaderFailsafeHide 0.55s ease 3s forwards !important;
}

.loader.animating .loader-symbol,
.loader-symbol {
    -webkit-animation: loaderRotate 4.2s linear infinite !important;
    animation: loaderRotate 4.2s linear infinite !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.loader.animating .loader-petal,
.loader-petal {
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.loader.animating .loader-orbit,
.loader-orbit {
    -webkit-animation: orbitSpin 1.7s linear infinite !important;
    animation: orbitSpin 1.7s linear infinite !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.loader.animating .loader-plane,
.loader-plane {
    -webkit-animation: starkLoaderPlaneLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
    animation: starkLoaderPlaneLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.loader.animating .plane-svg,
.plane-svg {
    -webkit-animation: planeBob 0.38s ease-in-out infinite !important;
    animation: planeBob 0.38s ease-in-out infinite !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.loader.animating .loader-bar,
.loader-bar {
    -webkit-animation: starkLoaderBarLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
    animation: starkLoaderBarLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.animate-fade-up {
    -webkit-animation-play-state: running !important;
    animation-play-state: running !important;
}

.animate-on-scroll {
    opacity: 0 !important;
    -webkit-transform: translate3d(0, 26px, 0) scale(0.985) !important;
    transform: translate3d(0, 26px, 0) scale(0.985) !important;
    -webkit-transition:
        opacity 0.72s cubic-bezier(0.33, 1, 0.68, 1),
        -webkit-transform 0.72s cubic-bezier(0.33, 1, 0.68, 1) !important;
    transition:
        opacity 0.72s cubic-bezier(0.33, 1, 0.68, 1),
        transform 0.72s cubic-bezier(0.33, 1, 0.68, 1) !important;
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
}

.hero-kicker {
    -webkit-animation: starkSmallFloat 3.8s ease-in-out infinite alternate !important;
    animation: starkSmallFloat 3.8s ease-in-out infinite alternate !important;
}

.hero-desc {
    -webkit-animation: starkPanelFloat 5s ease-in-out infinite alternate !important;
    animation: starkPanelFloat 5s ease-in-out infinite alternate !important;
}

.hero .btn-primary {
    -webkit-animation: starkButtonPulse 2.8s ease-in-out infinite !important;
    animation: starkButtonPulse 2.8s ease-in-out infinite !important;
}

.service-icon svg,
.strength-icon svg {
    -webkit-animation: starkIconFloat 3.6s ease-in-out infinite alternate !important;
    animation: starkIconFloat 3.6s ease-in-out infinite alternate !important;
}

.news-arrow svg {
    -webkit-animation: starkArrowMove 1.4s ease-in-out infinite !important;
    animation: starkArrowMove 1.4s ease-in-out infinite !important;
}

@-webkit-keyframes starkLoaderPlaneLoop {
    0% {
        -webkit-transform: translateX(-10px) translateY(-50%);
        transform: translateX(-10px) translateY(-50%);
    }
    72% {
        -webkit-transform: translateX(148px) translateY(-50%);
        transform: translateX(148px) translateY(-50%);
    }
    100% {
        -webkit-transform: translateX(148px) translateY(-50%);
        transform: translateX(148px) translateY(-50%);
    }
}

@keyframes starkLoaderPlaneLoop {
    0% {
        -webkit-transform: translateX(-10px) translateY(-50%);
        transform: translateX(-10px) translateY(-50%);
    }
    72% {
        -webkit-transform: translateX(148px) translateY(-50%);
        transform: translateX(148px) translateY(-50%);
    }
    100% {
        -webkit-transform: translateX(148px) translateY(-50%);
        transform: translateX(148px) translateY(-50%);
    }
}

@-webkit-keyframes starkLoaderBarLoop {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    72% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes starkLoaderBarLoop {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    72% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@-webkit-keyframes starkSmallFloat {
    from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    to { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); }
}

@keyframes starkSmallFloat {
    from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    to { -webkit-transform: translate3d(0, -5px, 0); transform: translate3d(0, -5px, 0); }
}

@-webkit-keyframes starkPanelFloat {
    from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    to { -webkit-transform: translate3d(0, -8px, 0); transform: translate3d(0, -8px, 0); }
}

@keyframes starkPanelFloat {
    from { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    to { -webkit-transform: translate3d(0, -8px, 0); transform: translate3d(0, -8px, 0); }
}

@-webkit-keyframes starkButtonPulse {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 14px 34px rgba(240, 196, 40, 0.22);
    }
    50% {
        -webkit-transform: translate3d(0, -3px, 0) scale(1.015);
        transform: translate3d(0, -3px, 0) scale(1.015);
        box-shadow: 0 20px 44px rgba(240, 196, 40, 0.34);
    }
}

@keyframes starkButtonPulse {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        box-shadow: 0 14px 34px rgba(240, 196, 40, 0.22);
    }
    50% {
        -webkit-transform: translate3d(0, -3px, 0) scale(1.015);
        transform: translate3d(0, -3px, 0) scale(1.015);
        box-shadow: 0 20px 44px rgba(240, 196, 40, 0.34);
    }
}

@-webkit-keyframes starkIconFloat {
    from { -webkit-transform: translate3d(0, 3px, 0) rotate(-2deg); transform: translate3d(0, 3px, 0) rotate(-2deg); }
    to { -webkit-transform: translate3d(0, -6px, 0) rotate(3deg); transform: translate3d(0, -6px, 0) rotate(3deg); }
}

@keyframes starkIconFloat {
    from { -webkit-transform: translate3d(0, 3px, 0) rotate(-2deg); transform: translate3d(0, 3px, 0) rotate(-2deg); }
    to { -webkit-transform: translate3d(0, -6px, 0) rotate(3deg); transform: translate3d(0, -6px, 0) rotate(3deg); }
}

@-webkit-keyframes starkArrowMove {
    0%, 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    50% { -webkit-transform: translate3d(7px, -7px, 0); transform: translate3d(7px, -7px, 0); }
}

@keyframes starkArrowMove {
    0%, 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
    50% { -webkit-transform: translate3d(7px, -7px, 0); transform: translate3d(7px, -7px, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .loader,
    .loader-symbol,
    .loader-petal,
    .loader-orbit,
    .loader-plane,
    .plane-svg,
    .loader-bar,
    .animate-fade-up,
    .animate-on-scroll,
    .hero-kicker,
    .hero-desc,
    .hero .btn-primary,
    .service-icon svg,
    .strength-icon svg,
    .news-arrow svg,
    .hero::before,
    .hero-gradient,
    .renewal-shape,
    .hero-scroll::before {
        -webkit-animation-play-state: running !important;
        animation-play-state: running !important;
        -webkit-animation-iteration-count: infinite !important;
        animation-iteration-count: infinite !important;
    }

    .loader {
        -webkit-animation: loaderFailsafeHide 0.55s ease 3s forwards !important;
        animation: loaderFailsafeHide 0.55s ease 3s forwards !important;
    }

    .loader-symbol {
        -webkit-animation: loaderRotate 4.2s linear infinite !important;
        animation: loaderRotate 4.2s linear infinite !important;
    }

    .loader-orbit {
        -webkit-animation: orbitSpin 1.7s linear infinite !important;
        animation: orbitSpin 1.7s linear infinite !important;
    }

    .loader-plane {
        -webkit-animation: starkLoaderPlaneLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
        animation: starkLoaderPlaneLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
    }

    .plane-svg {
        -webkit-animation: planeBob 0.38s ease-in-out infinite !important;
        animation: planeBob 0.38s ease-in-out infinite !important;
    }

    .loader-bar {
        -webkit-animation: starkLoaderBarLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
        animation: starkLoaderBarLoop 1.75s cubic-bezier(0.45, 0, 0.2, 1) infinite !important;
    }

    .animate-on-scroll {
        -webkit-transition-duration: 0.72s !important;
        transition-duration: 0.72s !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(1.66rem, 7.3vw, 2.36rem) !important;
    }

    .hero-title .title-line:first-child {
        font-size: clamp(1.32rem, 5.85vw, 1.74rem) !important;
        letter-spacing: 0 !important;
    }

    .hero-title .title-line:last-child {
        font-size: clamp(1.55rem, 7.25vw, 2.15rem) !important;
        letter-spacing: 0 !important;
    }

    .hero-kicker,
    .hero-desc,
    .hero .btn-primary,
    .service-icon svg,
    .strength-icon svg,
    .news-arrow svg {
        -webkit-animation-play-state: running !important;
        animation-play-state: running !important;
    }
}

/* ============================================
   Mobile interaction motion restore v15
   ============================================ */
.hamburger,
.hamburger::before,
.hamburger-lines span,
.nav-mobile,
.nav-mobile-bg,
.nav-mobile-bg::before,
.nav-mobile-bg::after,
.nav-mobile-link,
.nav-mobile-info,
.btn,
.btn-arrow,
.news-filter-btn {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hamburger {
    -webkit-transition:
        -webkit-transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.28s ease !important;
    transition:
        transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 0.28s ease !important;
    will-change: transform;
}

.hamburger::before {
    -webkit-transition:
        opacity 0.28s ease,
        -webkit-transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.28s ease,
        background-color 0.28s ease !important;
    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
        border-color 0.28s ease,
        background-color 0.28s ease !important;
}

.hamburger-lines span {
    -webkit-transition:
        top 0.34s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        bottom 0.34s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        width 0.28s ease,
        opacity 0.22s ease,
        background-color 0.28s ease,
        -webkit-transform 0.42s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
    transition:
        top 0.34s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        bottom 0.34s cubic-bezier(0.68, -0.55, 0.27, 1.55),
        width 0.28s ease,
        opacity 0.22s ease,
        background-color 0.28s ease,
        transform 0.42s cubic-bezier(0.68, -0.55, 0.27, 1.55) !important;
    will-change: transform, opacity, width;
}

.hamburger.is-pressed {
    -webkit-transform: scale(0.92) !important;
    transform: scale(0.92) !important;
}

.hamburger.active {
    -webkit-animation: starkMenuButtonPop 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
    animation: starkMenuButtonPop 0.38s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

.nav-mobile {
    background: transparent !important;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: visibility 0s linear 0.58s !important;
    transition: visibility 0s linear 0.58s !important;
}

.nav-mobile.active {
    visibility: visible;
    pointer-events: auto;
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
}

.nav-mobile-bg {
    opacity: 0;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition:
        opacity 0.52s cubic-bezier(0.2, 0.8, 0.2, 1),
        -webkit-transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    transition:
        opacity 0.52s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.58s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    will-change: opacity, transform;
}

.nav-mobile.active .nav-mobile-bg {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.nav-mobile-bg::before {
    opacity: 0;
    -webkit-transform: scale(0.62) rotate(-10deg);
    transform: scale(0.62) rotate(-10deg);
    -webkit-transition:
        opacity 0.72s ease 0.08s,
        -webkit-transform 0.88s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s !important;
    transition:
        opacity 0.72s ease 0.08s,
        transform 0.88s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s !important;
}

.nav-mobile.active .nav-mobile-bg::before {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
}

.nav-mobile-bg::after {
    opacity: 0;
    -webkit-transition:
        height 0.66s cubic-bezier(0.2, 0.8, 0.2, 1) 0.24s,
        opacity 0.42s ease 0.24s !important;
    transition:
        height 0.66s cubic-bezier(0.2, 0.8, 0.2, 1) 0.24s,
        opacity 0.42s ease 0.24s !important;
}

.nav-mobile.active .nav-mobile-bg::after {
    opacity: 1;
}

.nav-mobile-link {
    opacity: 0;
    -webkit-transform: translate3d(0, 105%, 0);
    transform: translate3d(0, 105%, 0);
    -webkit-transition:
        opacity 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
        color 0.24s ease,
        -webkit-transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    transition:
        opacity 0.58s cubic-bezier(0.2, 0.8, 0.2, 1),
        color 0.24s ease,
        transform 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    will-change: opacity, transform;
}

.nav-mobile.active .nav-mobile-link {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.nav-mobile.active .nav-mobile-list li:nth-child(1) .nav-mobile-link { -webkit-transition-delay: 0.12s !important; transition-delay: 0.12s !important; }
.nav-mobile.active .nav-mobile-list li:nth-child(2) .nav-mobile-link { -webkit-transition-delay: 0.18s !important; transition-delay: 0.18s !important; }
.nav-mobile.active .nav-mobile-list li:nth-child(3) .nav-mobile-link { -webkit-transition-delay: 0.24s !important; transition-delay: 0.24s !important; }
.nav-mobile.active .nav-mobile-list li:nth-child(4) .nav-mobile-link { -webkit-transition-delay: 0.30s !important; transition-delay: 0.30s !important; }
.nav-mobile.active .nav-mobile-list li:nth-child(5) .nav-mobile-link { -webkit-transition-delay: 0.36s !important; transition-delay: 0.36s !important; }
.nav-mobile.active .nav-mobile-list li:nth-child(6) .nav-mobile-link { -webkit-transition-delay: 0.42s !important; transition-delay: 0.42s !important; }

.nav-mobile-info {
    opacity: 0;
    -webkit-transform: translate3d(0, 18px, 0);
    transform: translate3d(0, 18px, 0);
    -webkit-transition:
        opacity 0.48s ease 0.46s,
        -webkit-transform 0.54s cubic-bezier(0.2, 0.8, 0.2, 1) 0.46s !important;
    transition:
        opacity 0.48s ease 0.46s,
        transform 0.54s cubic-bezier(0.2, 0.8, 0.2, 1) 0.46s !important;
}

.nav-mobile.active .nav-mobile-info {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.animate-on-scroll {
    opacity: 0 !important;
    -webkit-transform: translate3d(0, 34px, 0) scale(0.98) !important;
    transform: translate3d(0, 34px, 0) scale(0.98) !important;
    -webkit-transition:
        opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        -webkit-transform 0.78s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transition:
        opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.78s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) !important;
    transform: translate3d(0, 0, 0) scale(1) !important;
    -webkit-animation: starkScrollTextIn 0.78s cubic-bezier(0.16, 1, 0.3, 1) both !important;
    animation: starkScrollTextIn 0.78s cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.section-title.animate-on-scroll.visible,
.page-header-title.animate-on-scroll.visible,
.recruit-banner-title.animate-on-scroll.visible {
    -webkit-animation-name: starkScrollTitleIn !important;
    animation-name: starkScrollTitleIn !important;
}

.btn,
.news-filter-btn {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transition:
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        -webkit-transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    will-change: transform;
}

.btn:active,
.btn.is-pressed,
.news-filter-btn:active,
.news-filter-btn.is-pressed {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transform: translate3d(0, 2px, 0) scale(0.965) !important;
    transform: translate3d(0, 2px, 0) scale(0.965) !important;
    filter: brightness(0.96);
}

.btn-arrow {
    -webkit-transition: -webkit-transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    transition: transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

.btn:active .btn-arrow,
.btn.is-pressed .btn-arrow {
    -webkit-transform: translateX(6px) !important;
    transform: translateX(6px) !important;
}

.tap-ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.34);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-animation: starkTapRipple 0.62s ease-out forwards !important;
    animation: starkTapRipple 0.62s ease-out forwards !important;
}

.btn-outline .tap-ripple,
.btn-ghost .tap-ripple {
    background: rgba(240, 196, 40, 0.28);
}

@-webkit-keyframes starkMenuButtonPop {
    0% { -webkit-transform: scale(0.94); transform: scale(0.94); }
    60% { -webkit-transform: scale(1.05); transform: scale(1.05); }
    100% { -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes starkMenuButtonPop {
    0% { -webkit-transform: scale(0.94); transform: scale(0.94); }
    60% { -webkit-transform: scale(1.05); transform: scale(1.05); }
    100% { -webkit-transform: scale(1); transform: scale(1); }
}

@-webkit-keyframes starkScrollTextIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 34px, 0) scale(0.98);
        transform: translate3d(0, 34px, 0) scale(0.98);
        -webkit-filter: blur(5px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes starkScrollTextIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 34px, 0) scale(0.98);
        transform: translate3d(0, 34px, 0) scale(0.98);
        -webkit-filter: blur(5px);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@-webkit-keyframes starkScrollTitleIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-16px, 36px, 0) scale(0.98);
        transform: translate3d(-16px, 36px, 0) scale(0.98);
        -webkit-filter: blur(6px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes starkScrollTitleIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-16px, 36px, 0) scale(0.98);
        transform: translate3d(-16px, 36px, 0) scale(0.98);
        -webkit-filter: blur(6px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0) scale(1);
        transform: translate3d(0, 0, 0) scale(1);
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@-webkit-keyframes starkTapRipple {
    to {
        opacity: 0;
        -webkit-transform: scale(4);
        transform: scale(4);
    }
}

@keyframes starkTapRipple {
    to {
        opacity: 0;
        -webkit-transform: scale(4);
        transform: scale(4);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hamburger,
    .hamburger::before,
    .hamburger-lines span,
    .nav-mobile,
    .nav-mobile-bg,
    .nav-mobile-bg::before,
    .nav-mobile-bg::after,
    .nav-mobile-link,
    .nav-mobile-info,
    .btn,
    .btn-arrow,
    .news-filter-btn,
    .animate-on-scroll {
        -webkit-transition-duration: 0.42s !important;
        transition-duration: 0.42s !important;
    }

    .hamburger {
        -webkit-transition-duration: 0.22s !important;
        transition-duration: 0.22s !important;
    }

    .hamburger::before {
        -webkit-transition-duration: 0.34s !important;
        transition-duration: 0.34s !important;
    }

    .hamburger-lines span {
        -webkit-transition-duration: 0.42s, 0.34s, 0.34s, 0.28s, 0.22s, 0.28s !important;
        transition-duration: 0.42s, 0.34s, 0.34s, 0.28s, 0.22s, 0.28s !important;
    }

    .nav-mobile-bg,
    .nav-mobile-link,
    .nav-mobile-info,
    .animate-on-scroll {
        -webkit-transition-duration: 0.62s !important;
        transition-duration: 0.62s !important;
    }

    .animate-on-scroll.visible {
        -webkit-animation: starkScrollTextIn 0.78s cubic-bezier(0.16, 1, 0.3, 1) both !important;
        animation: starkScrollTextIn 0.78s cubic-bezier(0.16, 1, 0.3, 1) both !important;
    }

    .section-title.animate-on-scroll.visible,
    .page-header-title.animate-on-scroll.visible,
    .recruit-banner-title.animate-on-scroll.visible {
        -webkit-animation-name: starkScrollTitleIn !important;
        animation-name: starkScrollTitleIn !important;
    }

    .btn,
    .news-filter-btn,
    .btn-arrow {
        -webkit-transition-duration: 0.22s !important;
        transition-duration: 0.22s !important;
    }

    .tap-ripple {
        -webkit-animation: starkTapRipple 0.62s ease-out forwards !important;
        animation: starkTapRipple 0.62s ease-out forwards !important;
    }
}

@media (max-width: 767px) {
    .nav-mobile-link {
        font-size: clamp(1.55rem, 7vw, 2.25rem) !important;
        line-height: 1.18 !important;
    }

    .btn:active,
    .btn.is-pressed {
        -webkit-transform: translate3d(0, 2px, 0) scale(0.96) !important;
        transform: translate3d(0, 2px, 0) scale(0.96) !important;
    }
}

/* ============================================
   Content and store update v16
   ============================================ */
.page-header-recruit {
    color: #ffffff !important;
    background:
        linear-gradient(135deg, rgba(14, 23, 32, 0.96), rgba(42, 106, 114, 0.92)),
        #0e1720 !important;
}

.page-header-recruit .page-header-bg {
    background:
        linear-gradient(120deg, rgba(240, 196, 40, 0.32) 0 18%, transparent 18% 100%),
        linear-gradient(230deg, rgba(231, 71, 60, 0.22) 0 28%, transparent 28% 100%),
        linear-gradient(135deg, #0e1720 0%, #163f45 100%) !important;
}

.page-header-recruit .page-header-label,
.page-header-recruit .page-header-title,
.page-header-recruit .page-header-desc {
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
}

.page-header-recruit .page-header-desc {
    color: rgba(255, 255, 255, 0.88) !important;
}

.section-recruit-message {
    background:
        linear-gradient(120deg, rgba(240, 196, 40, 0.16), transparent 34%),
        linear-gradient(240deg, rgba(42, 106, 114, 0.16), transparent 42%),
        #ffffff !important;
}

.section-recruit-message .recruit-message-content {
    position: relative;
    color: #ffffff !important;
    background:
        linear-gradient(135deg, rgba(14, 23, 32, 0.96), rgba(42, 106, 114, 0.9)),
        #0e1720 !important;
    border-radius: 8px;
    padding: clamp(28px, 6vw, 64px);
    overflow: hidden;
    box-shadow: 12px 12px 0 rgba(14, 23, 32, 0.12);
}

.section-recruit-message .recruit-message-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 216, 77, 0.18) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.7;
}

.section-recruit-message .recruit-message-title,
.section-recruit-message .recruit-message-text {
    position: relative;
    z-index: 1;
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
}

.section-recruit-message .recruit-message-title em {
    color: #ffd84d !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
}

.section-recruit-message .recruit-message-text {
    color: rgba(255, 255, 255, 0.86) !important;
}

.section-recruit-banner {
    color: #ffffff !important;
    background: #0e1720 !important;
}

.section-recruit-banner .recruit-banner-gradient {
    background:
        linear-gradient(120deg, rgba(14, 23, 32, 0.96) 0 58%, rgba(42, 106, 114, 0.86) 58% 78%, rgba(231, 71, 60, 0.82) 78% 100%) !important;
}

.section-recruit-banner .section-label,
.section-recruit-banner .recruit-banner-title,
.section-recruit-banner .recruit-banner-title em,
.section-recruit-banner .recruit-banner-text {
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
}

.section-recruit-banner .recruit-banner-title em {
    color: #ffd84d !important;
}

.restaurant-growth-panel {
    color: var(--c-text);
    background:
        linear-gradient(135deg, rgba(255, 216, 77, 0.22), transparent 38%),
        #ffffff;
    border: 1px solid var(--c-border-2);
    border-radius: 8px;
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 8px 8px 0 rgba(14, 23, 32, 0.08);
}

.restaurant-growth-label,
.restaurant-store-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 10px;
    color: #0e1720;
    background: #ffd84d;
    border: 1px solid rgba(14, 23, 32, 0.16);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.restaurant-growth-panel h3 {
    margin: 0 0 10px;
    color: var(--c-text);
    font-size: clamp(1.25rem, 3vw, 1.7rem);
    line-height: 1.35;
}

.restaurant-growth-panel p {
    color: var(--c-text-2) !important;
    margin: 0;
}

.restaurant-store-list {
    margin-top: clamp(30px, 6vw, 54px);
}

.restaurant-store-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    color: var(--c-text);
    background: #ffffff;
    border: 1px solid var(--c-border-2);
    border-radius: 8px;
    box-shadow: 12px 12px 0 rgba(14, 23, 32, 0.12);
}

.restaurant-store-photo {
    min-height: 360px;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 216, 77, 0.52), transparent 34%),
        linear-gradient(135deg, #0e1720, #2a6a72 62%, #e7473c);
}

.restaurant-photo-placeholder {
    display: grid;
    place-content: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    min-height: 360px;
    color: #ffffff;
    text-align: center;
    padding: 28px;
}

.restaurant-photo-mark {
    font-size: clamp(2.3rem, 7vw, 4.8rem);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.restaurant-photo-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.restaurant-store-body {
    padding: clamp(24px, 5vw, 42px);
}

.restaurant-store-heading h3 {
    margin: 0 0 12px;
    color: var(--c-text);
    font-size: clamp(2rem, 6vw, 3.6rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.restaurant-store-heading p {
    color: var(--c-text-2) !important;
    margin: 0;
}

.restaurant-store-meta {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.restaurant-store-meta li {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-top: 1px solid rgba(14, 23, 32, 0.12);
}

.restaurant-store-meta span {
    color: var(--c-text-3);
    font-size: 0.82rem;
}

.restaurant-store-meta strong {
    color: var(--c-text);
    text-align: right;
}

.restaurant-store-map {
    grid-column: 1 / -1;
    height: clamp(280px, 42vw, 430px);
    border-top: 1px solid var(--c-border-2);
    background: var(--c-bg-3);
}

.restaurant-store-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .page-header-recruit {
        min-height: 48svh;
        display: flex;
        align-items: center;
    }

    .page-header-recruit .page-header-bg {
        opacity: 1 !important;
    }

    .page-header-recruit .page-header-title {
        color: #ffffff !important;
    }

    .page-header-recruit .page-header-desc {
        display: inline-block;
        margin-top: 14px;
        padding: 12px 14px;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.12);
        border-left: 6px solid #ffd84d;
        border-radius: 8px;
        text-align: left;
    }

    .section-recruit-message {
        background: #f8fbf7 !important;
    }

    .section-recruit-message .recruit-message-content {
        padding: 28px 20px;
        box-shadow: 8px 8px 0 rgba(14, 23, 32, 0.12);
    }

    .section-recruit-message .recruit-message-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
        line-height: 1.24;
    }

    .section-recruit-message .recruit-message-text {
        font-size: 0.96rem;
        line-height: 1.85;
    }

    .section-recruit-banner,
    .section-recruit-banner .recruit-banner-gradient {
        background:
            linear-gradient(135deg, rgba(14, 23, 32, 0.98), rgba(42, 106, 114, 0.9)),
            #0e1720 !important;
    }

    .section-recruit-banner .section-label,
    .section-recruit-banner .recruit-banner-title,
    .section-recruit-banner .recruit-banner-title em,
    .section-recruit-banner .recruit-banner-text {
        color: #ffffff !important;
        -webkit-text-fill-color: currentColor !important;
    }

    .restaurant-store-card {
        grid-template-columns: 1fr;
        box-shadow: 8px 8px 0 rgba(14, 23, 32, 0.1);
    }

    .restaurant-store-photo,
    .restaurant-photo-placeholder {
        min-height: 240px;
    }

    .restaurant-store-body {
        padding: 22px 18px;
    }

    .restaurant-store-meta li {
        align-items: flex-start;
    }

    .restaurant-store-map {
        height: 300px;
    }
}

body .section.section-recruit-message p.recruit-message-text,
body .section.section-recruit-message .recruit-message-content p.recruit-message-text {
    color: rgba(255, 255, 255, 0.88) !important;
    -webkit-text-fill-color: currentColor !important;
}

body .section.section-recruit-message .recruit-message-title,
body .section.section-recruit-message .recruit-message-title em {
    -webkit-text-fill-color: currentColor !important;
}

/* ============================================
   Copy and mobile contrast update v17
   ============================================ */
body .section.section-recruit-banner {
    position: relative !important;
    isolation: isolate !important;
    color: #ffffff !important;
    background:
        linear-gradient(135deg, rgba(14, 23, 32, 0.98), rgba(42, 106, 114, 0.92)),
        #0e1720 !important;
}

body .section.section-recruit-banner .recruit-banner-bg {
    z-index: 0 !important;
}

body .section.section-recruit-banner .recruit-banner-gradient {
    background:
        linear-gradient(135deg, rgba(14, 23, 32, 0.94) 0%, rgba(14, 23, 32, 0.78) 54%, rgba(42, 106, 114, 0.84) 100%) !important;
}

body .section.section-recruit-banner .recruit-banner-content {
    position: relative !important;
    z-index: 1 !important;
}

body .section.section-recruit-banner .section-label,
body .section.section-recruit-banner .recruit-banner-title,
body .section.section-recruit-banner .recruit-banner-title em,
body .section.section-recruit-banner .recruit-banner-text {
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
}

body .section.section-recruit-banner .recruit-banner-title em {
    color: #ffd84d !important;
}

body .section.section-recruit-banner .recruit-banner-text {
    color: rgba(255, 255, 255, 0.88) !important;
}

.restaurant-growth-panel {
    display: none !important;
}

@media (max-width: 767px) {
    body .section.section-recruit-banner {
        padding: 84px 0 !important;
        background:
            linear-gradient(145deg, rgba(14, 23, 32, 0.98), rgba(42, 106, 114, 0.9)),
            #0e1720 !important;
    }

    body .section.section-recruit-banner .recruit-banner-bg {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        opacity: 1 !important;
    }

    body .section.section-recruit-banner .recruit-banner-image {
        opacity: 0.14 !important;
    }

    body .section.section-recruit-banner .container {
        position: relative !important;
        z-index: 1 !important;
    }

    body .section.section-recruit-banner .recruit-banner-content {
        text-align: left !important;
    }

    body .section.section-recruit-banner .section-label {
        display: inline-flex !important;
        color: #0e1720 !important;
        -webkit-text-fill-color: currentColor !important;
        background: #ffd84d !important;
        border-left: 0 !important;
    }

    body .section.section-recruit-banner .recruit-banner-title {
        color: #ffffff !important;
        -webkit-text-fill-color: currentColor !important;
        font-size: clamp(1.9rem, 9vw, 2.8rem) !important;
        line-height: 1.22 !important;
    }

    body .section.section-recruit-banner .recruit-banner-text {
        color: rgba(255, 255, 255, 0.9) !important;
        -webkit-text-fill-color: currentColor !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-left: 6px solid #ffd84d !important;
        border-radius: 8px !important;
        padding: 14px 16px !important;
        line-height: 1.8 !important;
    }

    body .section.section-recruit-message {
        background: #f8fbf7 !important;
    }

    body .section.section-recruit-message .recruit-message-content {
        background:
            linear-gradient(135deg, rgba(14, 23, 32, 0.98), rgba(42, 106, 114, 0.92)),
            #0e1720 !important;
    }

    body .section.section-recruit-message .recruit-message-title,
    body .section.section-recruit-message .recruit-message-title em,
    body .section.section-recruit-message .recruit-message-text {
        color: #ffffff !important;
        -webkit-text-fill-color: currentColor !important;
    }

    body .section.section-recruit-message .recruit-message-title em {
        color: #ffd84d !important;
    }

    body .section.section-recruit-message .recruit-message-text {
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* ============================================
   Design impact update v18
   ============================================ */
body .section.section-strength {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    color: #ffffff !important;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, #0e1720 0%, #12343a 56%, #0e1720 100%) !important;
    background-size: 58px 58px, 58px 58px, auto !important;
}

body .section.section-strength::before {
    content: "GROWTH";
    position: absolute !important;
    top: 0.08em !important;
    right: -0.08em !important;
    z-index: -1 !important;
    color: rgba(255, 255, 255, 0.055) !important;
    font-size: clamp(5rem, 17vw, 14rem) !important;
    font-weight: 900 !important;
    line-height: 0.8 !important;
    letter-spacing: 0 !important;
    pointer-events: none !important;
}

body .section.section-strength::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 12px !important;
    background: linear-gradient(90deg, #ffd84d 0 28%, #0ea5a3 28% 58%, #e7473c 58% 100%) !important;
}

body .section.section-strength .strength-bg {
    display: none !important;
}

body .section.section-strength .container {
    position: relative !important;
    z-index: 1 !important;
}

body .section.section-strength .section-header {
    display: grid !important;
    width: 100% !important;
    max-width: 1180px !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr) !important;
    gap: clamp(22px, 4vw, 54px) !important;
    align-items: end !important;
    margin-bottom: clamp(32px, 5vw, 64px) !important;
    text-align: left !important;
}

body .section.section-strength .section-label {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: fit-content !important;
    margin: 0 0 18px !important;
    padding: 8px 12px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    background: #ffd84d !important;
    border: 0 !important;
    border-radius: 2px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
}

body .section.section-strength .section-title {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    font-size: clamp(2.7rem, 6vw, 5.4rem) !important;
    font-weight: 900 !important;
    line-height: 0.94 !important;
    letter-spacing: 0 !important;
}

body .section.section-strength .section-title em {
    color: #ffd84d !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    font-style: normal !important;
}

body .section.section-strength .strength-lead {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    padding: 18px 20px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    -webkit-text-fill-color: currentColor !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-left: 8px solid #ffd84d !important;
    border-radius: 8px !important;
    font-size: clamp(1rem, 1.5vw, 1.16rem) !important;
    font-weight: 600 !important;
    line-height: 1.85 !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

body .section.section-strength .strength-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
}

body .section.section-strength .strength-item {
    position: relative !important;
    min-height: 308px !important;
    padding: 30px 22px 28px !important;
    overflow: hidden !important;
    text-align: left !important;
    color: #0e1720 !important;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 245, 0.94)) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    border-radius: 8px !important;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.26) !important;
    transform: none !important;
}

body .section.section-strength .strength-item::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    height: 10px !important;
    background: #ffd84d !important;
}

body .section.section-strength .strength-item::after {
    content: "" !important;
    position: absolute !important;
    right: -42px !important;
    bottom: -42px !important;
    width: 128px !important;
    height: 128px !important;
    background:
        linear-gradient(135deg, transparent 0 45%, rgba(14, 23, 32, 0.08) 45% 55%, transparent 55% 100%) !important;
    pointer-events: none !important;
}

body .section.section-strength .strength-item:nth-child(2)::before {
    background: #0ea5a3 !important;
}

body .section.section-strength .strength-item:nth-child(3)::before {
    background: #e7473c !important;
}

body .section.section-strength .strength-item:nth-child(4)::before {
    background: #2a6a72 !important;
}

body .section.section-strength .strength-item:nth-child(2) {
    margin-top: 34px !important;
}

body .section.section-strength .strength-item:nth-child(3) {
    margin-top: 12px !important;
}

body .section.section-strength .strength-item:nth-child(4) {
    margin-top: 46px !important;
}

body .section.section-strength .strength-card-num {
    position: absolute !important;
    top: 28px !important;
    right: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 46px !important;
    height: 28px !important;
    margin: 0 !important;
    color: #0e1720 !important;
    background: #ffd84d !important;
    border-radius: 2px !important;
    font-size: 0.82rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
}

body .section.section-strength .strength-item:nth-child(2) .strength-card-num {
    color: #ffffff !important;
    background: #0ea5a3 !important;
}

body .section.section-strength .strength-item:nth-child(3) .strength-card-num {
    color: #ffffff !important;
    background: #e7473c !important;
}

body .section.section-strength .strength-item:nth-child(4) .strength-card-num {
    color: #ffffff !important;
    background: #2a6a72 !important;
}

body .section.section-strength .strength-icon {
    width: 66px !important;
    height: 66px !important;
    margin: 0 0 22px !important;
    color: #0e1720 !important;
    background: #f4f0de !important;
    border: 1px solid rgba(14, 23, 32, 0.12) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}

body .section.section-strength .strength-icon svg {
    width: 34px !important;
    height: 34px !important;
}

body .section.section-strength .strength-title {
    margin: 0 0 14px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: clamp(1.12rem, 1.8vw, 1.32rem) !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
    letter-spacing: 0 !important;
}

body .section.section-strength .strength-text {
    margin: 0 !important;
    color: #334155 !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: 0.98rem !important;
    font-weight: 500 !important;
    line-height: 1.75 !important;
}

body .section.section-strength .strength-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 12px 20px 0 rgba(0, 0, 0, 0.3) !important;
}

body .section.section-contact-cta {
    position: relative !important;
    overflow: hidden !important;
    background:
        linear-gradient(90deg, rgba(14, 23, 32, 0.055) 1px, transparent 1px),
        #f8fbf7 !important;
    background-size: 56px 56px, auto !important;
}

body .section.section-contact-cta .contact-cta-card {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: clamp(20px, 4vw, 48px) !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: clamp(32px, 5vw, 58px) !important;
    color: #ffffff !important;
    background:
        linear-gradient(115deg, #0e1720 0 68%, #ffd84d 68% 100%) !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: 14px 14px 0 rgba(14, 23, 32, 0.14) !important;
}

body .section.section-contact-cta .contact-cta-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 12px !important;
    background: linear-gradient(180deg, #ffd84d, #0ea5a3, #e7473c) !important;
}

body .section.section-contact-cta .contact-cta-card::after {
    content: "CONTACT" !important;
    position: absolute !important;
    right: 26px !important;
    bottom: -0.12em !important;
    color: rgba(14, 23, 32, 0.12) !important;
    font-size: clamp(3.6rem, 10vw, 8rem) !important;
    font-weight: 900 !important;
    line-height: 0.8 !important;
    letter-spacing: 0 !important;
    pointer-events: none !important;
}

body .section.section-contact-cta .contact-cta-content,
body .section.section-contact-cta .contact-cta-action {
    position: relative !important;
    z-index: 1 !important;
}

body .section.section-contact-cta .contact-cta-title {
    margin: 0 0 16px !important;
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    font-size: clamp(1.85rem, 4vw, 3.2rem) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
}

body .section.section-contact-cta .contact-cta-text {
    margin: 0 !important;
    max-width: 720px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: clamp(1rem, 1.4vw, 1.12rem) !important;
    font-weight: 500 !important;
    line-height: 1.85 !important;
}

body .section.section-contact-cta .contact-cta-action .btn-white {
    min-width: 190px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    background: #ffd84d !important;
    border: 1px solid rgba(14, 23, 32, 0.18) !important;
    border-radius: 999px !important;
    box-shadow: 0 12px 24px rgba(14, 23, 32, 0.18) !important;
}

body .section.section-contact-cta .contact-cta-action .btn-white:hover {
    color: #ffffff !important;
    background: #0ea5a3 !important;
    transform: translateY(-4px) !important;
}

body .section.section-contact-cta .contact-cta-action .btn-white .btn-arrow {
    color: currentColor !important;
}

@media (max-width: 1024px) {
    body .section.section-strength .strength-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body .section.section-strength .strength-item:nth-child(n) {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    body .section.section-strength {
        padding: 86px 0 98px !important;
        background-size: 42px 42px, 42px 42px, auto !important;
    }

    body .section.section-strength::before {
        top: 0.18em !important;
        right: -0.2em !important;
        font-size: clamp(4.4rem, 22vw, 7rem) !important;
    }

    body .section.section-strength .section-header {
        display: block !important;
        margin-bottom: 30px !important;
    }

    body .section.section-strength .section-label {
        margin-bottom: 16px !important;
    }

    body .section.section-strength .section-title {
        font-size: clamp(2.45rem, 12vw, 3.5rem) !important;
        line-height: 1.02 !important;
    }

    body .section.section-strength .strength-lead {
        margin-top: 20px !important;
        padding: 16px 16px !important;
        font-size: 0.98rem !important;
        line-height: 1.78 !important;
    }

    body .section.section-strength .strength-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px !important;
    }

    body .section.section-strength .strength-item {
        min-height: auto !important;
        padding: 28px 20px 24px !important;
        box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22) !important;
    }

    body .section.section-strength .strength-card-num {
        top: 24px !important;
        right: 20px !important;
    }

    body .section.section-strength .strength-icon {
        width: 58px !important;
        height: 58px !important;
        margin-bottom: 18px !important;
    }

    body .section.section-contact-cta {
        padding: 72px 0 !important;
    }

    body .section.section-contact-cta .contact-cta-card {
        display: block !important;
        padding: 34px 22px 26px !important;
        color: #ffffff !important;
        background:
            linear-gradient(180deg, #0e1720 0%, #12343a 100%) !important;
        border-radius: 8px !important;
        box-shadow: 8px 8px 0 rgba(14, 23, 32, 0.14) !important;
    }

    body .section.section-contact-cta .contact-cta-card::before {
        right: 0 !important;
        bottom: auto !important;
        width: auto !important;
        height: 10px !important;
        background: linear-gradient(90deg, #ffd84d, #0ea5a3, #e7473c) !important;
    }

    body .section.section-contact-cta .contact-cta-card::after {
        right: 10px !important;
        bottom: 0.03em !important;
        color: rgba(255, 255, 255, 0.06) !important;
        font-size: 3.4rem !important;
    }

    body .section.section-contact-cta .contact-cta-title {
        color: #ffffff !important;
        -webkit-text-fill-color: currentColor !important;
        font-size: clamp(1.45rem, 6vw, 1.7rem) !important;
        line-height: 1.16 !important;
        white-space: nowrap !important;
        word-break: keep-all !important;
    }

    body .section.section-contact-cta .contact-cta-text {
        color: rgba(255, 255, 255, 0.88) !important;
        -webkit-text-fill-color: currentColor !important;
        font-size: 0.98rem !important;
        line-height: 1.75 !important;
    }

    body .section.section-contact-cta .contact-cta-action {
        margin-top: 24px !important;
    }

    body .section.section-contact-cta .contact-cta-action .btn-white {
        width: 100% !important;
        min-width: 0 !important;
        justify-content: center !important;
    }
}

/* ============================================
   Header, hero and service impact update v19
   ============================================ */
body .header .logo {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 6px 14px 6px 6px !important;
    overflow: hidden !important;
    color: #0e1720 !important;
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(14, 23, 32, 0.12) !important;
    border-radius: 8px !important;
    box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.82) !important;
}

body .header .logo::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(90deg, transparent 0 70%, rgba(14, 165, 163, 0.18) 70% 100%) !important;
    pointer-events: none !important;
}

body .header .logo-mark {
    position: relative !important;
    z-index: 1 !important;
    width: 42px !important;
    height: 42px !important;
    color: #ffd84d !important;
    background: #0e1720 !important;
    border: 1px solid rgba(255, 216, 77, 0.55) !important;
    border-radius: 8px !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
    overflow: hidden !important;
}

body .header .logo-mark::after {
    content: "" !important;
    position: absolute !important;
    inset: -30% !important;
    background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.24) 42% 50%, transparent 50% 100%) !important;
    -webkit-animation: starkLogoSweep 3.8s ease-in-out infinite !important;
    animation: starkLogoSweep 3.8s ease-in-out infinite !important;
}

body .header .logo-icon {
    position: relative !important;
    z-index: 1 !important;
    width: 28px !important;
    height: 28px !important;
    -webkit-animation: starkHeaderMarkSpin 12s linear infinite !important;
    animation: starkHeaderMarkSpin 12s linear infinite !important;
}

body .header .logo-text {
    position: relative !important;
    z-index: 1 !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: 1.12rem !important;
    font-weight: 900 !important;
    letter-spacing: 0 !important;
}

body .header .logo:hover {
    -webkit-transform: translateY(-2px) !important;
    transform: translateY(-2px) !important;
    box-shadow: 3px 7px 0 rgba(14, 165, 163, 0.38) !important;
}

body .hamburger {
    width: 54px !important;
    height: 54px !important;
    isolation: isolate !important;
    overflow: hidden !important;
    color: #ffd84d !important;
    background: #0e1720 !important;
    border: 1px solid rgba(255, 216, 77, 0.62) !important;
    border-radius: 8px !important;
    box-shadow: 5px 5px 0 rgba(255, 216, 77, 0.82) !important;
}

body .hamburger::before {
    inset: 0 !important;
    opacity: 1 !important;
    background:
        linear-gradient(135deg, rgba(255, 216, 77, 0.18) 0 34%, transparent 34% 100%),
        linear-gradient(315deg, rgba(14, 165, 163, 0.3) 0 28%, transparent 28% 100%) !important;
    border: 0 !important;
    border-radius: 8px !important;
    -webkit-transform: none !important;
    transform: none !important;
}

body .hamburger::after {
    content: "" !important;
    position: absolute !important;
    inset: -40% !important;
    z-index: 0 !important;
    background: linear-gradient(115deg, transparent 0 43%, rgba(255, 255, 255, 0.22) 43% 48%, transparent 48% 100%) !important;
    -webkit-transform: translateX(-42%) !important;
    transform: translateX(-42%) !important;
    -webkit-animation: starkMenuScan 3.4s ease-in-out infinite !important;
    animation: starkMenuScan 3.4s ease-in-out infinite !important;
}

body .hamburger-lines {
    z-index: 1 !important;
    width: 24px !important;
    height: 18px !important;
}

body .hamburger-lines span {
    height: 3px !important;
    background: #ffd84d !important;
    border-radius: 0 !important;
    box-shadow: 0 0 12px rgba(255, 216, 77, 0.38) !important;
}

body .hamburger-lines span:nth-child(1) {
    width: 100% !important;
}

body .hamburger-lines span:nth-child(2) {
    width: 72% !important;
    right: 0 !important;
    left: auto !important;
}

body .hamburger-lines span:nth-child(3) {
    width: 88% !important;
    right: 0 !important;
    left: auto !important;
}

body .hamburger:hover,
body .hamburger.is-pressed {
    -webkit-transform: translateY(-2px) scale(0.96) !important;
    transform: translateY(-2px) scale(0.96) !important;
}

body .hamburger.active {
    color: #0e1720 !important;
    background: #ffd84d !important;
    border-color: #ffd84d !important;
    box-shadow: 5px 5px 0 rgba(14, 165, 163, 0.5) !important;
}

body .hamburger.active .hamburger-lines span {
    width: 100% !important;
    background: #0e1720 !important;
    box-shadow: none !important;
}

body .nav-mobile-bg {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 216, 77, 0.18) 0 24%, transparent 24% 100%),
        linear-gradient(315deg, rgba(14, 165, 163, 0.28) 0 30%, transparent 30% 100%),
        #0e1720 !important;
    background-size: 52px 52px, 52px 52px, auto, auto, auto !important;
}

body .nav-mobile-bg::before {
    content: "STARK" !important;
    position: absolute !important;
    top: 12% !important;
    right: -0.12em !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    color: rgba(255, 255, 255, 0.06) !important;
    background: none !important;
    border-radius: 0 !important;
    font-size: clamp(5.4rem, 23vw, 10rem) !important;
    font-weight: 900 !important;
    line-height: 0.8 !important;
    letter-spacing: 0 !important;
    -webkit-transform: translate3d(20px, 0, 0) !important;
    transform: translate3d(20px, 0, 0) !important;
}

body .nav-mobile.active .nav-mobile-bg::before {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
}

body .nav-mobile-bg::after {
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: 12px !important;
    background: linear-gradient(90deg, #ffd84d 0 32%, #0ea5a3 32% 66%, #e7473c 66% 100%) !important;
}

body .nav-mobile-content {
    position: absolute !important;
    z-index: 1 !important;
}

body .nav-mobile-link {
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: clamp(2.1rem, 11vw, 4.2rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
}

body .nav-mobile-link::before {
    min-width: 42px !important;
    height: 30px !important;
    justify-content: center !important;
    color: #0e1720 !important;
    background: #ffd84d !important;
    border-radius: 2px !important;
}

body .nav-mobile-link::after {
    bottom: -8px !important;
    height: 6px !important;
    background: linear-gradient(90deg, #ffd84d, #0ea5a3) !important;
}

body .nav-mobile-link:hover,
body .nav-mobile-link:focus,
body .nav-mobile-link.active {
    color: #ffd84d !important;
}

body .nav-mobile-company,
body .nav-mobile-address {
    color: rgba(255, 255, 255, 0.78) !important;
    -webkit-text-fill-color: currentColor !important;
}

body .hero-content {
    max-width: min(1040px, calc(100vw - 48px)) !important;
}

body .hero-kicker {
    display: none !important;
}

body .hero-title {
    max-width: 1040px !important;
    margin-top: 0 !important;
    font-size: clamp(2.85rem, 6vw, 5.45rem) !important;
}

body .hero-title .title-line {
    display: block !important;
    width: fit-content !important;
    max-width: 100% !important;
}

body .hero-title .title-line:last-child {
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    line-break: strict !important;
}

body .stat-num.js-step-stat {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 104px !important;
    min-height: 58px !important;
    padding: 0 14px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    background: #ffd84d !important;
    border: 1px solid rgba(14, 23, 32, 0.14) !important;
    border-radius: 8px !important;
    font-family: "Montserrat", "Noto Sans JP", sans-serif !important;
    font-size: clamp(1.75rem, 4vw, 2.65rem) !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    box-shadow: 6px 6px 0 rgba(14, 165, 163, 0.22) !important;
    -webkit-transition: background-color 0.22s ease, color 0.22s ease, -webkit-transform 0.18s ease !important;
    transition: background-color 0.22s ease, color 0.22s ease, transform 0.18s ease !important;
}

body .stat-num.js-step-stat.is-ticking {
    -webkit-animation: starkStatTick 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
    animation: starkStatTick 0.18s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

body .stat-num.js-step-stat.is-complete {
    color: #ffffff !important;
    background: #0e1720 !important;
    box-shadow: 6px 6px 0 rgba(255, 216, 77, 0.86) !important;
}

body .section.section-services {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;
    color: #ffffff !important;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(135deg, #0e1720 0%, #12343a 58%, #0e1720 100%) !important;
    background-size: 56px 56px, 56px 56px, auto !important;
}

body .section.section-services::before {
    content: "SERVICE" !important;
    position: absolute !important;
    top: 0.08em !important;
    right: -0.08em !important;
    z-index: -1 !important;
    color: rgba(255, 255, 255, 0.055) !important;
    font-size: clamp(5.2rem, 18vw, 14rem) !important;
    font-weight: 900 !important;
    line-height: 0.8 !important;
    letter-spacing: 0 !important;
    pointer-events: none !important;
}

body .section.section-services::after {
    content: "" !important;
    position: absolute !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    height: 12px !important;
    background: linear-gradient(90deg, #0ea5a3 0 35%, #ffd84d 35% 68%, #e7473c 68% 100%) !important;
}

body .section.section-services .container {
    position: relative !important;
    z-index: 1 !important;
}

body .section.section-services .section-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr) !important;
    gap: clamp(24px, 4vw, 56px) !important;
    align-items: end !important;
    max-width: 1180px !important;
    margin-bottom: clamp(34px, 5vw, 68px) !important;
    color: #ffffff !important;
}

body .section.section-services .section-label {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: fit-content !important;
    margin: 0 0 18px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    background: #ffd84d !important;
    border: 0 !important;
    border-radius: 2px !important;
}

body .section.section-services .section-title {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    font-size: clamp(2.7rem, 5.8vw, 5.25rem) !important;
    line-height: 0.98 !important;
}

body .section.section-services .section-title em {
    color: #ffd84d !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
}

body .section.section-services .service-impact-lead {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    padding: 18px 20px !important;
    color: rgba(255, 255, 255, 0.84) !important;
    -webkit-text-fill-color: currentColor !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-left: 8px solid #0ea5a3 !important;
    border-radius: 8px !important;
    font-size: clamp(1rem, 1.35vw, 1.12rem) !important;
    font-weight: 600 !important;
    line-height: 1.85 !important;
}

body .section.section-services .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(18px, 2vw, 26px) !important;
    align-items: stretch !important;
}

body .section.section-services .service-card {
    --service-accent: #0ea5a3;
    --service-accent-soft: rgba(14, 165, 163, 0.16);
    min-height: 500px !important;
    overflow: hidden !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.28) !important;
}

body .section.section-services .service-card[data-color="gold"] {
    --service-accent: #ffd84d;
    --service-accent-soft: rgba(255, 216, 77, 0.18);
}

body .section.section-services .service-card[data-color="teal"] {
    --service-accent: #e7473c;
    --service-accent-soft: rgba(231, 71, 60, 0.16);
}

body .section.section-services .service-card:nth-child(2) {
    margin-top: 34px !important;
}

body .section.section-services .service-card:nth-child(3) {
    margin-top: 68px !important;
}

body .section.section-services .service-card-bg {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        #101b24 !important;
    background-size: 36px 36px, 36px 36px, auto, auto !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body .section.section-services .service-card::before {
    height: 12px !important;
    opacity: 1 !important;
    background: var(--service-accent) !important;
}

body .section.section-services .service-card::after {
    content: "" !important;
    position: absolute !important;
    right: -48px !important;
    bottom: -48px !important;
    z-index: 1 !important;
    width: 156px !important;
    height: 156px !important;
    background: linear-gradient(135deg, transparent 0 44%, var(--service-accent-soft) 44% 56%, transparent 56% 100%) !important;
    pointer-events: none !important;
}

body .section.section-services .service-card-content {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    min-height: 500px !important;
    flex-direction: column !important;
    padding: clamp(26px, 3vw, 34px) !important;
}

body .section.section-services .service-num {
    top: 22px !important;
    right: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 54px !important;
    height: 34px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    background: var(--service-accent) !important;
    border-radius: 2px !important;
    font-size: 0.92rem !important;
    font-weight: 900 !important;
}

body .section.section-services .service-icon {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 88px !important;
    height: 88px !important;
    margin: 28px 0 30px !important;
    color: #0e1720 !important;
    background: var(--service-accent) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 8px !important;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.26) !important;
}

body .section.section-services .service-icon::before {
    content: "" !important;
    position: absolute !important;
    inset: 10px !important;
    border: 1px solid rgba(14, 23, 32, 0.2) !important;
    border-radius: 6px !important;
}

body .section.section-services .service-icon svg {
    position: relative !important;
    z-index: 1 !important;
    width: 54px !important;
    height: 54px !important;
    stroke: currentColor !important;
}

body .section.section-services .service-card:hover .service-icon svg {
    -webkit-animation: starkIconPunch 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
    animation: starkIconPunch 0.55s cubic-bezier(0.2, 0.8, 0.2, 1) both !important;
}

body .section.section-services .service-title {
    margin: 0 0 8px !important;
    color: var(--service-accent) !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: 0.9rem !important;
    font-weight: 900 !important;
}

body .section.section-services .service-name {
    margin: 0 0 18px !important;
    color: #ffffff !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    font-size: clamp(1.45rem, 2.4vw, 2rem) !important;
    font-weight: 900 !important;
    line-height: 1.18 !important;
}

body .section.section-services .service-desc {
    margin: 0 0 28px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    -webkit-text-fill-color: currentColor !important;
    font-size: 0.98rem !important;
    font-weight: 500 !important;
    line-height: 1.8 !important;
}

body .section.section-services .service-link {
    width: fit-content !important;
    margin-top: auto !important;
    padding: 12px 16px !important;
    color: #0e1720 !important;
    -webkit-text-fill-color: currentColor !important;
    background: var(--service-accent) !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
}

body .section.section-services .service-link svg {
    color: currentColor !important;
}

body .section.section-services .service-card:hover {
    -webkit-transform: translateY(-10px) !important;
    transform: translateY(-10px) !important;
    box-shadow: 12px 20px 0 rgba(0, 0, 0, 0.34) !important;
}

body .section.section-services .section-cta .btn-outline {
    color: #0e1720 !important;
    background: #ffd84d !important;
    border-color: #ffd84d !important;
    box-shadow: 5px 5px 0 rgba(14, 165, 163, 0.45) !important;
}

@-webkit-keyframes starkLogoSweep {
    0%, 52% { -webkit-transform: translateX(-42%); transform: translateX(-42%); }
    100% { -webkit-transform: translateX(42%); transform: translateX(42%); }
}

@keyframes starkLogoSweep {
    0%, 52% { -webkit-transform: translateX(-42%); transform: translateX(-42%); }
    100% { -webkit-transform: translateX(42%); transform: translateX(42%); }
}

@-webkit-keyframes starkHeaderMarkSpin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes starkHeaderMarkSpin {
    from { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes starkMenuScan {
    0%, 48% { -webkit-transform: translateX(-42%); transform: translateX(-42%); }
    100% { -webkit-transform: translateX(42%); transform: translateX(42%); }
}

@keyframes starkMenuScan {
    0%, 48% { -webkit-transform: translateX(-42%); transform: translateX(-42%); }
    100% { -webkit-transform: translateX(42%); transform: translateX(42%); }
}

@-webkit-keyframes starkStatTick {
    0% { -webkit-transform: translateY(0) scale(1); transform: translateY(0) scale(1); }
    45% { -webkit-transform: translateY(-5px) scale(1.08); transform: translateY(-5px) scale(1.08); }
    100% { -webkit-transform: translateY(0) scale(1); transform: translateY(0) scale(1); }
}

@keyframes starkStatTick {
    0% { -webkit-transform: translateY(0) scale(1); transform: translateY(0) scale(1); }
    45% { -webkit-transform: translateY(-5px) scale(1.08); transform: translateY(-5px) scale(1.08); }
    100% { -webkit-transform: translateY(0) scale(1); transform: translateY(0) scale(1); }
}

@-webkit-keyframes starkIconPunch {
    0% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); }
    45% { -webkit-transform: scale(1.13) rotate(-4deg); transform: scale(1.13) rotate(-4deg); }
    100% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); }
}

@keyframes starkIconPunch {
    0% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); }
    45% { -webkit-transform: scale(1.13) rotate(-4deg); transform: scale(1.13) rotate(-4deg); }
    100% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); }
}

@media (max-width: 1024px) {
    body .section.section-services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    body .section.section-services .service-card:nth-child(n) {
        margin-top: 0 !important;
    }
}

@media (max-width: 767px) {
    body .header .logo {
        padding-right: 10px !important;
        box-shadow: 4px 4px 0 rgba(255, 216, 77, 0.72) !important;
    }

    body .header .logo-mark {
        width: 40px !important;
        height: 40px !important;
    }

    body .header .logo-text {
        font-size: 1rem !important;
    }

    body .hamburger {
        width: 50px !important;
        height: 50px !important;
        box-shadow: 4px 4px 0 rgba(255, 216, 77, 0.72) !important;
    }

    body .hero-title {
        font-size: clamp(1.68rem, 7.1vw, 2.3rem) !important;
        line-height: 1.16 !important;
    }

    body .hero-title .title-line:first-child {
        font-size: clamp(1.32rem, 5.85vw, 1.74rem) !important;
    }

    body .hero-title .title-line:last-child {
        font-size: clamp(1.52rem, 7vw, 2.05rem) !important;
    }

    body .stat-num.js-step-stat {
        min-width: 92px !important;
        min-height: 52px !important;
        font-size: 1.65rem !important;
    }

    body .section.section-services {
        padding: 86px 0 98px !important;
        background-size: 42px 42px, 42px 42px, auto !important;
    }

    body .section.section-services::before {
        top: 0.2em !important;
        right: -0.22em !important;
        font-size: clamp(4.6rem, 23vw, 7rem) !important;
    }

    body .section.section-services .section-header {
        display: block !important;
        margin-bottom: 30px !important;
    }

    body .section.section-services .section-title {
        font-size: clamp(2.05rem, 8.8vw, 2.75rem) !important;
        line-height: 1.04 !important;
    }

    body .section.section-services .section-title em {
        white-space: nowrap !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
    }

    body .section.section-services .service-impact-lead {
        margin-top: 20px !important;
        padding: 16px 16px !important;
        font-size: 0.98rem !important;
        line-height: 1.78 !important;
    }

    body .section.section-services .services-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 18px !important;
    }

    body .section.section-services .service-card,
    body .section.section-services .service-card-content {
        min-height: auto !important;
    }

    body .section.section-services .service-card {
        box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.24) !important;
    }

    body .section.section-services .service-card-content {
        padding: 26px 20px 24px !important;
    }

    body .section.section-services .service-icon {
        width: 74px !important;
        height: 74px !important;
        margin: 26px 0 24px !important;
    }

    body .section.section-services .service-icon svg {
        width: 46px !important;
        height: 46px !important;
    }

    body .section.section-services .service-num {
        top: 20px !important;
        right: 20px !important;
    }

    body .nav-mobile-link {
        font-size: clamp(2rem, 10vw, 3.4rem) !important;
    }
}
