/*

Customized corporate site styles for Geeko株式会社

*/

@charset "utf-8";

:root {
    --bg: #071014;
    --bg-soft: #0c1a20;
    --surface: rgba(255, 255, 255, 0.08);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --line: rgba(255, 255, 255, 0.16);
    --text: #f4f8fa;
    --muted: #a8b6bd;
    --accent: #35c6c8;
    --accent-2: #7ad66d;
    --accent-3: #f1b84b;
    --ink: #061115;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --mouse-x: 50%;
    --mouse-y: 25%;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", "Noto Sans JP", "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle 420px at var(--mouse-x) var(--mouse-y), rgba(53, 198, 200, 0.1), transparent 72%);
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

.background {
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(125deg, rgba(5, 18, 25, 0.96) 0%, rgba(11, 31, 38, 0.92) 44%, rgba(5, 18, 25, 0.96) 100%),
        radial-gradient(circle at 18% 20%, rgba(53, 198, 200, 0.24), transparent 34%),
        radial-gradient(circle at 88% 24%, rgba(122, 214, 109, 0.13), transparent 28%),
        radial-gradient(circle at 50% 84%, rgba(241, 184, 75, 0.11), transparent 32%);
}

.background::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.geometric-shapes,
.lines {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(53, 198, 200, 0.22);
    animation: floatShape 24s linear infinite;
}

.shape:nth-child(1) {
    width: 130px;
    height: 130px;
    left: 8%;
    border-radius: 18px;
}

.shape:nth-child(2) {
    width: 72px;
    height: 72px;
    left: 76%;
    border-radius: 50%;
    animation-delay: -6s;
    border-color: rgba(122, 214, 109, 0.22);
}

.shape:nth-child(3) {
    width: 96px;
    height: 96px;
    left: 42%;
    transform: rotate(45deg);
    animation-delay: -12s;
}

.shape:nth-child(4) {
    width: 160px;
    height: 160px;
    left: 62%;
    animation-delay: -18s;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    background: rgba(241, 184, 75, 0.04);
}

@keyframes floatShape {
    from {
        transform: translateY(110vh) rotate(0deg);
        opacity: 0;
    }
    12%, 84% {
        opacity: 1;
    }
    to {
        transform: translateY(-180px) rotate(360deg);
        opacity: 0;
    }
}

.line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(53, 198, 200, 0.36), transparent);
    animation: pulse 4s ease-in-out infinite;
}

.line:nth-child(1) {
    top: 24%;
}

.line:nth-child(2) {
    top: 58%;
    animation-delay: -1.3s;
    background: linear-gradient(90deg, transparent, rgba(122, 214, 109, 0.22), transparent);
}

.line:nth-child(3) {
    top: 78%;
    animation-delay: -2.6s;
    background: linear-gradient(90deg, transparent, rgba(241, 184, 75, 0.22), transparent);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.16;
        transform: scaleX(0.5);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

.glass {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-item {
    opacity: 0;
    transform: translateY(38px);
    transition: opacity 1s var(--ease-out) var(--reveal-delay, 0ms), transform 1s var(--ease-out) var(--reveal-delay, 0ms);
}

.reveal-item.reveal-left { transform: translateX(-36px); }
.reveal-item.reveal-right { transform: translateX(36px); }

.reveal-item.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.scroll-rail {
    position: fixed;
    top: 50%;
    right: 24px;
    z-index: 80;
    display: grid;
    justify-items: center;
    gap: 12px;
    transform: translateY(-50%);
    color: rgba(220, 231, 234, 0.64);
}

.scroll-section {
    max-width: 88px;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.scroll-track {
    position: relative;
    width: 1px;
    height: 112px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.16);
}

.scroll-track i {
    position: absolute;
    inset: 0;
    transform: scaleY(0);
    transform-origin: top;
    background: linear-gradient(var(--accent), var(--accent-2));
    box-shadow: 0 0 12px rgba(53, 198, 200, 0.8);
}

.scroll-percent {
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 100;
    width: min(1180px, calc(100% - 28px));
    transform: translateX(-50%);
    padding: 12px 16px;
    transition: background 0.45s var(--ease-out), border-color 0.45s ease, box-shadow 0.45s ease, top 0.45s var(--ease-out), padding 0.45s var(--ease-out);
}

header.scrolled {
    top: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: rgba(7, 16, 20, 0.86);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.logo-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--ink);
    font-weight: 800;
}

.logo-text {
    font-size: 1.08rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a,
.mobile-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    color: #e9f1f4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a {
    padding: 0 13px;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--ink);
    background: var(--accent);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    margin: 3px 0;
    border-radius: 2px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    right: 14px;
    width: min(320px, calc(100vw - 28px));
    padding: 12px;
    background: rgba(7, 16, 20, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mobile-nav.active {
    display: grid;
    gap: 8px;
}

.mobile-nav a {
    width: 100%;
}

main {
    overflow: hidden;
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    width: min(1440px, calc(100% - 80px));
    min-height: 100svh;
    margin: 0 auto;
    padding: 136px 0 88px;
    isolation: isolate;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-kicker,
.hero h1,
.hero-description {
    opacity: 0;
    animation: heroEnter 1.2s var(--ease-out) forwards;
}

.hero h1 { animation-delay: 0.14s; }
.hero-description { animation-delay: 0.28s; }

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

.hero-visual {
    position: absolute;
    top: 50%;
    right: -8%;
    z-index: 0;
    width: min(54vw, 760px);
    aspect-ratio: 1;
    transform: translateY(-50%);
    opacity: 0.72;
    pointer-events: none;
}

.hero-visual::before,
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(53, 198, 200, 0.16);
    transform: rotate(45deg);
}

.hero-visual::after {
    inset: 27%;
    border-color: rgba(241, 184, 75, 0.14);
    animation: visualPulse 5s ease-in-out infinite;
}

.orbit {
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(53, 198, 200, 0.26);
    border-radius: 50%;
    animation: orbitSpin 24s linear infinite;
}

.orbit-two {
    inset: 24%;
    border-style: dashed;
    border-color: rgba(122, 214, 109, 0.25);
    animation-direction: reverse;
    animation-duration: 18s;
}

.orbit i {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(53, 198, 200, 0.9);
}

.orbit i:nth-child(1) { top: 7%; left: 24%; }
.orbit i:nth-child(2) { top: 47%; right: -5px; background: var(--accent-2); }
.orbit i:nth-child(3) { bottom: 8%; left: 18%; background: var(--accent-3); }
.orbit-two i:nth-child(1) { top: -5px; left: 48%; }
.orbit-two i:nth-child(2) { top: 48%; right: -5px; }
.orbit-two i:nth-child(3) { bottom: -5px; left: 48%; }
.orbit-two i:nth-child(4) { top: 48%; left: -5px; }

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 112px;
    aspect-ratio: 1;
    transform: translate(-50%, -50%) rotate(45deg);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(7, 16, 20, 0.56);
    box-shadow: 0 0 70px rgba(53, 198, 200, 0.2);
    backdrop-filter: blur(12px);
}

.orbit-core span {
    transform: rotate(-45deg);
    color: var(--accent);
    font-size: 2.2rem;
    font-weight: 800;
}

.signal-line {
    position: absolute;
    left: 7%;
    width: 86%;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.signal-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: signalMove 3.8s ease-in-out infinite;
}

.signal-one { top: 38%; transform: rotate(18deg); }
.signal-two { top: 62%; transform: rotate(-18deg); }
.signal-two::after { animation-delay: -1.9s; }

@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes visualPulse { 50% { opacity: 0.35; transform: rotate(45deg) scale(1.06); } }
@keyframes signalMove { 50%, 100% { left: 110%; } }

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(220, 231, 234, 0.58);
    font-size: 0.68rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.hero-scroll i {
    position: relative;
    width: 54px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
}

.hero-scroll i::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: var(--accent);
    animation: scrollCue 2.2s var(--ease-out) infinite;
}

@keyframes scrollCue { 55%, 100% { transform: translateX(100%); } }

.hero-kicker,
.section-heading span,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker::before,
.section-heading span::before,
.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.hero h1 {
    max-width: 1080px;
    margin-bottom: 26px;
    font-size: clamp(2.7rem, 7vw, 5.9rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-description {
    max-width: 780px;
    color: #d5e0e4;
    font-size: 1.06rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--accent);
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(53, 198, 200, 0.24);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.22);
    color: var(--text);
}

.hero-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 42px;
}

.hero-service {
    min-height: 92px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
}

.hero-service span {
    display: block;
    margin-bottom: 8px;
    color: var(--accent-3);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-service strong {
    display: block;
    color: #e7f0f3;
    font-size: 0.96rem;
    line-height: 1.5;
}

.section {
    position: relative;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 108px 0;
}

.business,
.recruit {
    box-shadow: 0 0 0 100vmax rgba(255, 255, 255, 0.018);
    clip-path: inset(0 -100vmax);
}

.section-heading {
    position: relative;
    max-width: 760px;
    margin-bottom: 44px;
}

.section-heading::after {
    content: attr(data-index);
    position: absolute;
    top: -48px;
    right: -110px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.035);
    font-size: clamp(6rem, 12vw, 11rem);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.section-heading h2,
.contact-info h2 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.18;
    letter-spacing: 0;
}

.section-heading p,
.contact-info p {
    color: var(--muted);
    font-size: 1rem;
}

.company-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
}

.message,
.company-table,
.business-card,
.service-list,
.service-detail,
.recruit-copy,
.contact-info,
.contact-form {
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.message::before,
.company-table::before,
.business-card::before,
.service-list::before,
.service-detail::before,
.recruit-copy::before,
.contact-info::before,
.contact-form::before,
.map-copy::before,
.map-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle 260px at var(--card-x, 50%) var(--card-y, 50%), rgba(53, 198, 200, 0.14), transparent 70%);
    transition: opacity 0.45s ease;
}

.message:hover::before,
.company-table:hover::before,
.business-card:hover::before,
.service-list:hover::before,
.service-detail:hover::before,
.recruit-copy:hover::before,
.contact-info:hover::before,
.contact-form:hover::before,
.map-copy:hover::before,
.map-frame:hover::before {
    opacity: 1;
}

.message > *,
.company-table > *,
.business-card > *,
.service-list > *,
.service-detail > *,
.recruit-copy > *,
.contact-info > *,
.contact-form > *,
.map-copy > *,
.map-frame > * {
    position: relative;
    z-index: 1;
}

.message h3,
.business-card h3,
.service-detail h3,
.recruit-copy h3,
.contact-info h3 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1.45;
}

.message p,
.business-card p,
.service-detail p,
.recruit-copy p {
    color: var(--muted);
}

.company-table {
    display: grid;
    gap: 0;
}

.company-table div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.company-table div:first-child {
    padding-top: 0;
}

.company-table div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.company-table dt {
    color: var(--accent);
    font-weight: 800;
}

.company-table dd {
    color: #e7f0f3;
}

.company-table a,
.text-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.company-table a:hover,
.text-link:hover {
    text-decoration: underline;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.business-card {
    min-height: 360px;
    transition: transform 0.6s var(--ease-out), border-color 0.4s ease, background 0.4s ease, box-shadow 0.6s var(--ease-out);
}

.business-card:hover {
    transform: translateY(-10px);
    border-color: rgba(53, 198, 200, 0.38);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.card-index {
    margin-bottom: 24px;
    color: var(--accent-3);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.card-en {
    display: block;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.business-topics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
    list-style: none;
}

.business-topics li {
    display: grid;
    place-items: center;
    min-height: 54px;
    padding: 9px 10px;
    border-top: 2px solid var(--accent);
    background: rgba(255, 255, 255, 0.05);
    color: #dce7ea;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.service-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.service-list {
    display: grid;
    gap: 10px;
}

.service-item {
    display: grid;
    gap: 5px;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-out);
}

.service-item span {
    font-weight: 800;
}

.service-item strong {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.service-item.active,
.service-item:hover {
    border-color: rgba(53, 198, 200, 0.48);
    background: rgba(53, 198, 200, 0.12);
}

.service-item:hover {
    transform: translateX(5px);
}

.service-detail {
    display: grid;
    align-content: center;
    transition: opacity 0.22s ease, transform 0.35s var(--ease-out), border-color 0.35s ease;
}

.service-detail.is-changing {
    opacity: 0;
    transform: translateY(14px);
}

.service-detail ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
    list-style: none;
}

.service-detail li {
    min-height: 48px;
    padding: 11px 13px;
    border-left: 3px solid var(--accent);
    background: rgba(255, 255, 255, 0.05);
    color: #dce7ea;
}

.recruit-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 24px;
    align-items: center;
}

.recruit-copy .text-link {
    display: inline-flex;
    margin-top: 24px;
}

.recruit-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.recruit-tags span {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #e7f0f3;
    font-weight: 800;
    transition: transform 0.45s var(--ease-out), border-color 0.35s ease, background 0.35s ease;
}

.recruit-tags span:hover {
    transform: translateY(-6px);
    border-color: rgba(122, 214, 109, 0.4);
    background: rgba(122, 214, 109, 0.09);
}

.contact {
    padding-bottom: 118px;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 24px;
    align-items: start;
}

.access-heading {
    margin-top: 108px;
}

.contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.contact-points span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #dce7ea;
    font-size: 0.9rem;
}

.form-group {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-group label {
    color: #dce7ea;
    font-size: 0.9rem;
    font-weight: 800;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    resize: vertical;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(53, 198, 200, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(168, 182, 189, 0.72);
}

.submit-btn {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-radius: 7px;
    background: var(--accent);
    color: var(--ink);
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(53, 198, 200, 0.24);
}

.map-panel {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 0;
}

.map-copy {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: center;
    padding: 34px;
}

.map-copy h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.55rem;
}

.map-copy address {
    color: var(--muted);
    font-style: normal;
    line-height: 1.8;
}

.access-list {
    display: grid;
    gap: 10px;
    margin-top: 24px;
    list-style: none;
}

.access-list li {
    padding: 10px 0 10px 14px;
    border-left: 2px solid var(--accent);
    color: #dce7ea;
    font-size: 0.9rem;
    line-height: 1.55;
}

.access-list strong {
    display: block;
    color: var(--accent-3);
    font-size: 0.74rem;
    font-weight: 800;
}

.map-frame {
    position: relative;
    min-width: 0;
    padding: 10px;
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 5px;
    filter: saturate(0.9) contrast(0.95);
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 9, 12, 0.6);
    padding: 44px 20px;
}

.footer-content {
    display: grid;
    gap: 20px;
    width: min(1180px, 100%);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 22px;
}

.footer-links a,
.footer-design,
.footer-design a,
.footer-copyright {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: none;
}

.footer-links a:hover,
.footer-design a:hover {
    color: var(--accent);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #071014;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: rgba(53, 198, 200, 0.45);
}

@media (max-width: 1080px) {
    .scroll-rail {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: grid;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

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

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

@media (max-width: 820px) {
    body::after {
        display: none;
    }

    header {
        top: 12px;
        width: calc(100% - 24px);
    }

    .logo-text {
        font-size: 0.98rem;
    }

    .hero {
        width: min(100% - 28px, 1180px);
        padding-top: 116px;
        padding-bottom: 64px;
    }

    .hero-visual {
        right: -42%;
        width: 120vw;
        opacity: 0.3;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading::after {
        top: -22px;
        right: 0;
        font-size: 5.5rem;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 4rem);
    }

    .hero-services,
    .company-grid,
    .service-layout,
    .recruit-grid,
    .contact-container,
    .map-panel {
        grid-template-columns: 1fr;
    }

    .section {
        width: min(100% - 28px, 1180px);
        padding: 76px 0;
    }

    .access-heading {
        margin-top: 76px;
    }

    .message,
    .company-table,
    .business-card,
    .service-list,
    .service-detail,
    .recruit-copy,
    .contact-info,
    .contact-form,
    .map-copy {
        padding: 24px;
    }

    .company-table div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .service-detail ul,
    .business-topics,
    .recruit-tags {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        line-height: 1.75;
    }

    .hero {
        padding-top: 104px;
    }

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

    .cta-buttons {
        display: grid;
    }

    .cta-button {
        width: 100%;
    }

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

    .hero-service {
        min-height: auto;
    }

    .footer-links {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-item {
        opacity: 1;
        transform: none;
    }
}
