@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');

/* ==========================
   Cyber Gradient + Glass Morphism Design
   FUKLab - Security Consulting
   ========================== */

/* ==========================
   CSS Variables (Design Tokens)
   ========================== */

:root {
    /* Primary Gradient Colors */
    --color-primary: #a855f7;         /* Purple */
    --color-secondary: #6366f1;       /* Indigo */
    --color-accent: #22d3ee;          /* Cyan */
    --color-highlight: #818cf8;       /* Light Indigo */

    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(15, 15, 25, 0.8);
    --bg-card-solid: #0f0f19;
    --bg-glass: rgba(20, 20, 35, 0.6);

    /* Text Colors */
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b0;
    --text-muted: #707080;

    /* Border Colors */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(168, 85, 247, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #22d3ee 100%);
    --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #0f0a1a 30%, #0a0f1a 60%, #0a0a0f 100%);
    --gradient-card: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(99, 102, 241, 0.05) 100%);
    --gradient-glow: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);

    /* Glass Effect */
    --glass-blur: blur(20px);
    --glass-saturate: saturate(180%);
}


/* ==========================
   Base
   ========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.75;
    max-width: 100%;
    overflow-x: hidden;
    min-width: 0;
    padding-top: 70px;
    position: relative;
}

/* Background Mesh Effect */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 60% at 50% 50%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(29, 78, 216, 0.35);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main {
    display: block;
}

.skip-link {
    position: absolute;
    top: 10px;
    left: 16px;
    z-index: 3000;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #12325d;
    font-weight: 600;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
    box-shadow: 0 12px 24px rgba(11, 32, 61, 0.16);
}

.skip-link:focus {
    transform: translateY(0);
}


/* ==========================
   Header & Navigation
   ========================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: var(--glass-blur) var(--glass-saturate);
    -webkit-backdrop-filter: var(--glass-blur) var(--glass-saturate);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.site-title:hover {
    opacity: 0.8;
}

.site-title img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex: 0 0 32px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a[aria-current="page"] {
    color: var(--text-primary);
}

.nav-links a[aria-current="page"]::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    width: 26px;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    background: transparent;
    border: 0;
}

.hamburger span {
    height: 3px;
    width: 100%;
    border-radius: 3px;
    background: var(--gradient-primary);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}


/* ==========================
   Hero Section
   ========================== */

.hero {
    min-height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Animated Gradient Orbs */
.hero::before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(circle at 30% 30%, rgba(168, 85, 247, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(34, 211, 238, 0.3) 0%, transparent 40%);
    animation: orbRotate 30s infinite linear;
    z-index: 0;
}

@keyframes orbRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cyber Grid */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(168, 85, 247, 0.03) 0px,
            rgba(168, 85, 247, 0.03) 1px,
            transparent 1px,
            transparent 50px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(168, 85, 247, 0.03) 0px,
            rgba(168, 85, 247, 0.03) 1px,
            transparent 1px,
            transparent 50px
        );
    pointer-events: none;
    z-index: 1;
}

/* Moving Light Beam */
.moving-light {
    position: absolute;
    top: 0;
    left: -150%;
    width: 300%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 40%,
        rgba(168, 85, 247, 0.15) 50%,
        rgba(34, 211, 238, 0.1) 55%,
        transparent 60%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: moveLight 6s infinite linear;
    z-index: 2;
}

@keyframes moveLight {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(100%) skewX(-20deg); }
}

.hero > div:not(.moving-light):not(.hero-aurora-layer):not(.hero-diagonal-grid):not(.hero-signal-layer):not(.hero-particle-layer):not(.hero-flow-layer):not(.hero-scan-layer):not(.hero-node-layer):not(.hero-warning-pulse):not(.hero-light-sweep) {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-target {
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.target-badge {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid var(--color-primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--color-accent);
    display: inline-block;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f8f8fa;
    line-height: 1.5;
}

.hero p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.9;
    max-width: 920px;
    margin: 0 auto;
}

.hero p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.4);
}

.cta-button.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(168, 85, 247, 0.6);
}

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
}

.cta-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}


/* ==========================
   Page Header (Sub Pages)
   ========================== */

.page-header {
    height: 34vh;
    min-height: 220px;
    background: linear-gradient(135deg, #0a0a0f 0%, #0f0a1a 30%, #0a0f1a 70%, #0a0a0f 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 300%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(168, 85, 247, 0.12) 50%,
        rgba(34, 211, 238, 0.08) 55%,
        transparent 65%
    );
    transform: skewX(-20deg);
    animation: sweepLight 10s infinite linear;
}

@keyframes sweepLight {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(100%) skewX(-20deg); }
}

.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(168, 85, 247, 0.02) 0px,
            rgba(168, 85, 247, 0.02) 1px,
            transparent 1px,
            transparent 40px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(168, 85, 247, 0.02) 0px,
            rgba(168, 85, 247, 0.02) 1px,
            transparent 1px,
            transparent 40px
        );
    pointer-events: none;
}

.page-header h1 {
    font-size: 42px;
    margin: 0;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0d0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    margin-top: 12px;
    font-size: 17px;
    z-index: 2;
    color: var(--text-secondary);
    max-width: 740px;
    padding: 0 20px;
}


/* ==========================
   Sections & Headings
   ========================== */

.section {
    max-width: 1100px;
    margin: 84px auto;
    padding: 0 20px;
}

/* ==========================
   Page CTA Blocks
   ========================== */

.page-cta {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.top-cta {
    margin-top: 36px;
}

.bottom-cta {
    margin-bottom: 80px;
}

.page-cta .box {
    margin-top: 0;
    text-align: center;
}

.cta-note {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

h2 {
    font-size: 24px;
    margin-bottom: 24px;
    padding-left: 16px;
    position: relative;
    color: var(--text-primary);
}

h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    color: var(--text-primary);
    font-size: 18px;
}

/* Gradient Heading */
.gradient-heading {
    background: linear-gradient(135deg, #a855f7 0%, #8b7fc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ==========================
   Glass Cards
   ========================== */

.box {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 28px;
    margin-top: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), rgba(34, 211, 238, 0.5), transparent);
}


/* ==========================
   Service Cards
   ========================== */

.service-cards {
    display: flex;
    gap: 25px;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 32%;
    position: relative;
    overflow: hidden;
}

.service-card.link-card {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.service-card.link-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow:
        0 20px 60px rgba(168, 85, 247, 0.2),
        0 0 40px rgba(168, 85, 247, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card i {
    font-size: 48px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
    transition: all 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.8));
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-target {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}


/* ==========================
   Link Box
   ========================== */

.link-box {
    display: block;
    margin-top: 20px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.link-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.link-box:hover {
    background: rgba(168, 85, 247, 0.08);
    transform: translateX(8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.15);
}

.link-box:hover::before {
    opacity: 1;
}

.section .link-box h3,
.section .link-box p {
    color: var(--text-primary);
}

.link-box .service-target {
    color: var(--text-secondary);
}


/* ==========================
   Other Support
   ========================== */

.other-support {
    text-align: center;
    margin: 30px 0 15px 0;
    color: var(--text-secondary);
    font-size: 15px;
}

.other-support-box {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.other-support-box p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.9;
}


/* ==========================
   Buttons
   ========================== */

.button-area {
    margin-top: 25px;
    text-align: center;
}

.button-area.button-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-button,
.contact-button,
.submit-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-button::before,
.contact-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
    z-index: -1;
}

.service-button:hover,
.contact-button:hover,
.submit-button:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.service-button:hover::before,
.contact-button:hover::before {
    width: 100%;
}

.submit-button:hover {
    background: var(--gradient-primary);
}

.service-button::after {
    content: "→";
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-button:hover::after {
    transform: translateX(5px);
}


/* ==========================
   Company Overview
   ========================== */

.company-overview {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 30px 35px;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    margin-top: 20px;
    box-shadow: var(--shadow-card);
}

.company-overview .row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-glass);
}

.company-overview .row:last-child {
    border-bottom: none;
}

.company-overview .label {
    width: 180px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-overview .value {
    flex: 1;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-top: 4px;
}

.company-overview .value .value-title {
    display: block;
    margin-top: 4px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}


/* ==========================
   Features Grid
   ========================== */

.features-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.feature-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.feature-card i {
    font-size: 48px;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ==========================
   Flow Steps
   ========================== */

.flow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.flow-step {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    text-align: center;
    padding: 30px 25px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
}

.flow-step::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 0 0 3px 3px;
}

.flow-step:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow:
        0 20px 50px rgba(168, 85, 247, 0.15),
        0 0 30px rgba(168, 85, 247, 0.1);
}

.flow-step i {
    font-size: 44px;
    margin-bottom: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flow-step h3 {
    font-size: 17px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.flow-arrow {
    display: none;
}

/* Flow diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.flow-node {
    flex: 1 1 170px;
    min-width: 170px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}

.flow-node h3 {
    margin: 0 0 6px 0;
    font-size: 15px;
}

.flow-node p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
}

.flow-link {
    color: var(--color-accent);
    font-size: 14px;
    opacity: 0.8;
}


/* ==========================
   Price Cards
   ========================== */

.price-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.price-card {
    flex: 1;
    min-width: 260px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow:
        0 20px 50px rgba(168, 85, 247, 0.2),
        0 0 40px rgba(168, 85, 247, 0.1);
}

.price-card:hover::before {
    opacity: 1;
}

.price-card i {
    font-size: 48px;
    margin-bottom: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.price-card h3 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.price-card .price {
    font-size: 22px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.price-card .desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.price-note {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}


/* ==========================
   Contact Section & Form
   ========================== */

.contact-section {
    max-width: 900px;
    margin: 120px auto 100px auto;
    padding: 60px 40px;
    text-align: center;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.contact-section h2 {
    border-left: none;
    padding-left: 0;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-section h2::before {
    display: none;
}

.contact-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 12px auto 0 auto;
    border-radius: 4px;
}

.contact-form {
    background: rgba(15, 15, 25, 0.5);
    border: 1px solid var(--border-glass);
    padding: 35px;
    border-radius: 16px;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-top: 18px;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: flex-start;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: rgba(10, 10, 15, 0.8);
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.contact-form .submit-button {
    margin-top: 18px;
}

.contact-form .form-note {
    width: 100%;
    margin: 8px 0 0;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.7;
}

.contact-form .policy-consent {
    color: #254566;
}

.contact-form .policy-consent a {
    color: #1d4ed8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-form .form-status {
    width: 100%;
    min-height: 26px;
    margin: 16px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.contact-form .form-status.is-pending {
    color: #1d4ed8;
}

.contact-form .form-status.is-success {
    color: #0f766e;
}

.contact-form .form-status.is-error {
    color: #b91c1c;
}

.contact-form .turnstile-field {
    width: 100%;
    margin: 18px 0 0;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
}

.contact-form .cf-turnstile {
    max-width: 100%;
}

.policy-page {
    max-width: 920px;
}

.policy-content {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    color: #183657;
}

.policy-content h2 {
    color: #10243e;
    font-size: 17px;
    line-height: 1.45;
    margin: 28px 0 10px;
    padding-left: 12px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p,
.policy-content li {
    color: #254566;
    font-size: 15px;
    line-height: 1.9;
}

.policy-content ul {
    margin: 10px 0 0;
    padding-left: 1.3em;
}

.policy-updated {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid #dbe6f2;
    color: #526b87;
    font-size: 14px;
}

.info-handling-card {
    background: linear-gradient(135deg, #f8fbff 0%, #eef6fb 100%);
    border: 1px solid #d7e5f1;
    border-left: 4px solid #1d9bf0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.info-handling-card h2 {
    margin-top: 0;
}

.info-handling-card p {
    color: #254566;
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
}

.submit-button[disabled] {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}


/* ==========================
   News & Blog Lists
   ========================== */

.news-list,
.blog-list {
    margin-top: 25px;
}

.news-item,
.blog-item {
    padding: 20px 24px;
    margin-bottom: 15px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.news-item:hover,
.blog-item:hover {
    background: rgba(168, 85, 247, 0.08);
    transform: translateX(8px);
    border-color: rgba(168, 85, 247, 0.3);
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
}

.news-title {
    margin-top: 6px;
    color: var(--text-primary);
    font-size: 15px;
}

.blog-item h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: var(--text-primary);
}

.blog-item span {
    color: var(--text-muted);
    font-size: 13px;
}

.blog-item-link {
    display: block;
    color: inherit;
}

.blog-item-link:hover {
    color: inherit;
}

.blog-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-summary {
    margin: 0;
    color: var(--text-secondary);
}

.blog-empty {
    padding: 20px 24px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
}


/* ==========================
   Footer
   ========================== */

footer {
    background: rgba(10, 10, 15, 0.95);
    text-align: center;
    padding: 25px;
    margin-top: 60px;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border-glass);
}

/* Enhanced Site Footer */
.site-footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, rgba(5, 5, 10, 0.95) 100%);
    border-top: 1px solid var(--border-glass);
    margin-top: 100px;
    padding: 0;
    position: relative;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), rgba(34, 211, 238, 0.5), transparent);
}

.footer-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 34px;
    flex-wrap: nowrap;
    text-align: left;
}

.footer-brand {
    flex: 0 0 210px;
    min-width: 210px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 26px;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin: 0 0 0 52px;
}

.footer-note {
    margin: 10px 0 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex: 1 1 auto;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: nowrap;
    min-width: 0;
}

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column:first-child ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(145px, 1fr));
    column-gap: 18px;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    display: inline-block;
    color: var(--text-muted);
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-accent);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}


/* ==========================
   Reason List (選ばれる理由)
   ========================== */

.reason-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.reason-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.reason-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.reason-item:hover {
    transform: translateX(12px);
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
}

.reason-item:hover::after {
    opacity: 1;
}

.reason-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 70px;
    position: relative;
    z-index: 1;
}

.reason-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.reason-content h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin: 0 0 14px 0;
    font-weight: 600;
}

.reason-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}


/* ==========================
   Challenge Section
   ========================== */

.challenge-section {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.95) 0%, rgba(15, 10, 25, 0.9) 50%, rgba(10, 10, 15, 0.95) 100%);
    padding: 100px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.challenge-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.4) 50%, transparent 100%);
}

.challenge-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.4) 50%, transparent 100%);
}

.challenge-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.challenge-section h2 {
    text-align: center;
    padding-left: 0;
    font-size: 30px;
    margin-bottom: 25px;
}

.challenge-section h2::before {
    display: none;
}

.challenge-intro {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 2;
    margin-bottom: 55px;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.challenge-card {
    display: flex;
    gap: 22px;
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #f87171 0%, #ef4444 100%);
    border-radius: 20px 0 0 20px;
}

.challenge-card:hover {
    transform: translateY(-5px);
    border-color: rgba(248, 113, 113, 0.3);
    box-shadow: 0 12px 40px rgba(248, 113, 113, 0.1);
}

.challenge-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.15) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 14px;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

.challenge-icon i {
    font-size: 24px;
    color: #f87171;
}

.challenge-content h3 {
    font-size: 17px;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    font-weight: 600;
}

.challenge-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.challenge-cta {
    text-align: center;
    margin-top: 55px;
}

.challenge-cta p {
    font-size: 18px;
    color: var(--text-secondary);
}

.challenge-cta strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ==========================
   Problem-Solution Section
   ========================== */

.problem-solution-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 10, 25, 0.9) 50%, var(--bg-dark) 100%);
    padding: 80px 20px;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.problem-solution-container {
    max-width: 1100px;
    margin: 0 auto;
}

.problems-block,
.solutions-block {
    margin-bottom: 40px;
}

.problem-cards,
.solution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.problem-card,
.solution-card {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    flex: 1;
    max-width: 350px;
    transition: all 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.2);
}

.problem-card i {
    color: #f87171;
    font-size: 20px;
    flex-shrink: 0;
}

.solution-card i {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 20px;
    flex-shrink: 0;
}

.problem-card p,
.solution-card p {
    margin: 0;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
}

.solution-summary {
    margin-top: 22px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.arrow-divider {
    text-align: center;
    font-size: 32px;
    color: var(--color-primary);
    margin: 30px 0;
}

.integrated-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 25px;
}

.integrated-intro {
    margin: 8px 0 0 0;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.integrated-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.integrated-card {
    position: relative;
    background: linear-gradient(135deg, rgba(18, 18, 30, 0.9) 0%, rgba(14, 14, 24, 0.7) 100%);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.integrated-card p {
    margin: 8px 0 0 0;
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.7;
}

.integrated-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.3px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.35);
    color: var(--text-primary);
}

.pair-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: center;
}

.pair-illustration {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: rgba(10, 10, 20, 0.7);
    border: 1px solid rgba(168, 85, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pair-illustration svg {
    width: 56px;
    height: 56px;
}

.pair-content p {
    margin: 6px 0 10px 0;
}

.integrated-tag.tag-problem {
    background: rgba(248, 113, 113, 0.15);
    border-color: rgba(248, 113, 113, 0.4);
}

.integrated-tag.tag-target {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.4);
}

@media (max-width: 900px) {
    .problem-solution-section {
        padding: 60px 20px;
    }

    .integrated-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .integrated-grid {
        grid-template-columns: 1fr;
    }

    .pair-card {
        grid-template-columns: 1fr;
    }

    .pair-illustration {
        width: 64px;
        height: 64px;
    }

    .problem-card,
    .solution-card {
        min-width: 100%;
        max-width: 100%;
    }
}


/* ==========================
   Section Divider
   ========================== */

.section-divider {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 1px;
    position: relative;
}

.section-divider::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 30%, var(--color-accent) 70%, transparent 100%);
}


/* ==========================
   Scroll Fade-in Animation
   ========================== */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero::before,
    .hero::after,
    .moving-light,
    .page-header::before,
    .hero-aurora-layer,
    .hero-diagonal-grid,
    .hero-signal-layer,
    .hero-particle-layer,
    .hero-flow-layer,
    .hero-scan-layer,
    .hero-node-layer,
    .hero-warning-pulse,
    .hero-light-sweep,
    .flow-line,
    .hero-node,
    .hero-warning-pulse::before,
    .hero-warning-pulse::after,
    .enterprise-theme .enterprise-hero,
    .enterprise-theme .enterprise-hero-copy {
        animation: none;
    }

    .hero-light-sweep {
        opacity: 0;
    }
}


/* ==========================
   Empty State
   ========================== */

.empty-state {
    text-align: center;
    padding: 50px;
}

.empty-state h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--text-secondary);
}


/* ==========================
   Box内h2調整
   ========================== */

.box h2 {
    padding-left: 0;
    font-size: 20px;
    margin-top: 0;
}

.box h2::before {
    display: none;
}


/* ==========================
   Challenge List (課題リスト)
   ========================== */

.challenge-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.challenge-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 14px;
}

.challenge-list li:last-child {
    border-bottom: none;
}

.challenge-list li i {
    font-size: 18px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}


/* ==========================
   PC Layout (901px+)
   ========================== */

@media screen and (min-width: 901px) {
    header {
        z-index: 2000;
    }

    .hamburger {
        z-index: 3000;
    }

    .nav-links {
        z-index: 2500;
    }

    .service-cards {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 25px;
    }

    .service-card {
        width: 32%;
    }

    /* 4-column cards */
    .service-cards.four-col .service-card,
    .price-cards .price-card {
        width: calc(25% - 19px);
    }

    .service-cards .service-card:nth-child(4),
    .price-cards .price-card:nth-child(4) {
        width: calc(25% - 19px);
    }

    .service-cards .service-card:nth-child(3):last-child {
        width: 32%;
    }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
    .service-card,
    .price-card {
        width: calc(50% - 13px) !important;
    }
}

@media screen and (min-width: 901px) and (max-width: 1100px) {
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================
   Responsive (Mobile)
   ========================== */

@media screen and (max-width: 900px) {
    body {
        padding-top: 60px;
    }

    header {
        z-index: 2000;
    }

    .nav-container {
        padding: 10px 16px;
    }

    .hamburger {
        display: flex;
        z-index: 3000;
    }

    .nav-links {
        position: absolute;
        top: 58px;
        right: 16px;
        background: rgba(15, 15, 25, 0.95);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border: 1px solid var(--border-glass);
        border-radius: 16px;
        padding: 20px 25px;
        width: 240px;
        flex-direction: column;
        gap: 16px;
        box-shadow: var(--shadow-card);
        display: none;
        z-index: 2500;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 15px;
        padding: 8px 0;
    }

    .nav-links a::after {
        display: none;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 0;
        padding: 88px 20px 68px 20px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.5;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .cta-button {
        width: auto;
        max-width: 300px;
    }

    /* Page Header */
    .page-header {
        height: auto;
        min-height: 0;
        padding: 64px 20px 46px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 15px;
    }

    /* Sections */
    .section {
        margin: 58px auto;
        padding: 0 16px;
    }

    .page-cta {
        margin: 20px auto;
        padding: 0 16px;
    }

    .top-cta {
        margin-top: 14px;
    }

    .bottom-cta {
        margin-bottom: 56px;
    }

    h2 {
        font-size: 22px;
    }

    /* Cards - Single Column */
    .service-cards,
    .features-grid,
    .price-cards {
        flex-direction: column;
        gap: 20px;
    }

    .service-card,
    .feature-card,
    .price-card,
    .box,
    .other-support-box {
        width: 100%;
        min-width: 0;
    }

    .flow-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-diagram {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .flow-node {
        min-width: 100%;
    }

    .flow-link {
        text-align: center;
        transform: rotate(90deg);
        line-height: 1;
    }

    /* Reason List */
    .reason-item {
        flex-direction: column;
        gap: 18px;
        padding: 28px 22px;
    }

    .reason-number {
        font-size: 32px;
    }

    .reason-content h3 {
        font-size: 18px;
    }

    /* Challenge Section */
    .challenge-section {
        padding: 70px 0;
    }

    .challenge-section h2 {
        font-size: 24px;
    }

    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .challenge-card {
        padding: 24px;
    }

    .challenge-intro {
        font-size: 15px;
        margin-bottom: 40px;
    }

    /* Company Overview */
    .company-overview .row {
        flex-direction: column;
    }

    .company-overview .label {
        width: 100%;
        margin-bottom: 6px;
    }

    /* Contact */
    .contact-section {
        margin: 70px 16px;
        padding: 40px 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .contact-form .turnstile-field {
        justify-content: flex-start;
    }

    /* Buttons */
    .service-button,
    .contact-button,
    .submit-button {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        font-size: 16px;
    }

    .button-area a {
        width: auto;
        display: inline-flex;
    }

    /* Footer */
    footer {
        font-size: 12px;
        padding: 20px;
    }

    .footer-content {
        flex-direction: column;
        padding: 50px 20px 40px;
    }

    .footer-brand {
        flex-basis: auto;
        min-width: 0;
    }

    .footer-links {
        width: 100%;
        gap: 35px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-tagline {
        margin-left: 52px;
    }

    .footer-column {
        min-width: 140px;
    }

    .footer-column:first-child ul {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .site-title {
        font-size: 20px;
    }

    .footer-tagline {
        margin-left: 0;
    }

    .footer-column:first-child ul {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 22px;
    }

    .page-header h1 {
        font-size: 24px;
    }
}


/* ==========================
   FAQ Accordion
   ========================== */

.faq-section {
    margin-top: 40px;
}

.faq-item {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.4);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-primary);
    user-select: none;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}


/* ==========================
   Comparison Table
   ========================== */

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table th {
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    color: var(--text-secondary);
    font-size: 14px;
}

.comparison-table .plan-name {
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-table .highlight {
    background: rgba(168, 85, 247, 0.08);
}

.comparison-table strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* モバイル対応 */
@media (max-width: 900px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}


/* ==========================
   Case Study Card
   ========================== */

.case-studies {
    margin-top: 30px;
}

.case-study-card {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.4);
}

@media screen and (min-width: 901px) {
    .service-cards.two-col {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 980px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-cards.two-col .service-card {
        width: calc(50% - 13px);
    }
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.case-study-badge {
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.case-study-title {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.case-study-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-study-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.case-study-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.case-study-meta-item i {
    color: var(--color-accent);
    font-size: 16px;
}

@media (max-width: 900px) {
    .case-study-card {
        padding: 20px;
    }

    .case-study-meta {
        gap: 12px;
    }
}

/* ==========================
   Hover Behavior (Links Only)
   ========================== */

.service-card,
.feature-card,
.flow-step,
.price-card,
.reason-item,
.challenge-card,
.problem-card,
.solution-card,
.case-study-card {
    cursor: default;
}

.service-card:hover {
    transform: none;
    border-color: var(--border-glass);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(0);
}

.service-card:hover::after {
    opacity: 0;
}

.service-card:hover i {
    transform: none;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.5));
}

.feature-card:hover {
    transform: none;
    border-color: var(--border-glass);
    box-shadow: var(--shadow-card);
}

.flow-step:hover {
    transform: none;
    border-color: var(--border-glass);
    box-shadow: var(--shadow-card);
}

.price-card:hover {
    transform: none;
    border-color: var(--border-glass);
    box-shadow: var(--shadow-card);
}

.price-card:hover::before {
    opacity: 0;
}

.reason-item:hover {
    transform: none;
    border-color: var(--border-glass);
    box-shadow: none;
}

.reason-item:hover::after {
    opacity: 0;
}

.challenge-card:hover {
    transform: none;
    border-color: var(--border-glass);
    box-shadow: none;
}

.problem-card:hover,
.solution-card:hover {
    transform: none;
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: none;
}

.case-study-card:hover {
    transform: none;
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: none;
}


/* ==========================
   Contract Scope Box
   ========================== */

.contract-scope {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
}

.contract-scope-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.contract-scope-row:last-child {
    border-bottom: none;
}

.contract-scope-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.contract-scope-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-align: right;
}

@media (max-width: 900px) {
    .contract-scope-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 15px 0;
    }

    .contract-scope-value {
        text-align: left;
    }
}

/* ==========================
   Blog
   ========================== */

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.blog-category {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 211, 238, 0.15);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 12px;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-tag {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.2);
    font-size: 12px;
}

.blog-cover {
    width: 100%;
    border-radius: 16px;
    margin: 20px 0;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-content {
    line-height: 1.9;
}

.blog-content p,
.blog-content ul,
.blog-content ol,
.blog-content blockquote,
.blog-content pre {
    margin-bottom: 18px;
}

.blog-content h2 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.blog-content h3 {
    margin-top: 22px;
    margin-bottom: 10px;
}

.blog-content ul {
    padding-left: 20px;
}

.blog-content ol {
    padding-left: 24px;
}

.blog-content a {
    text-decoration: underline;
    text-decoration-color: rgba(34, 211, 238, 0.45);
    text-underline-offset: 3px;
}

.blog-content blockquote {
    margin-left: 0;
    padding: 16px 20px;
    border-left: 4px solid rgba(34, 211, 238, 0.55);
    background: rgba(99, 102, 241, 0.08);
    border-radius: 0 12px 12px 0;
    color: var(--text-secondary);
}

.blog-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-content pre {
    overflow-x: auto;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(3, 7, 18, 0.78);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.blog-content code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

.blog-content :not(pre) > code {
    padding: 0.14em 0.42em;
    border-radius: 6px;
    background: rgba(148, 163, 184, 0.18);
    color: #dbeafe;
}

.blog-content img {
    width: 100%;
    margin: 22px 0;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.blog-cta {
    justify-content: flex-start;
    margin-top: 30px;
}

/* ==========================
   2026-02 AI x Cloud Refresh
   ========================== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: var(--bg-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
}

.hero.hero-split {
    min-height: 620px;
    text-align: left;
    align-items: stretch;
    padding: 0;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    display: block;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(8, 17, 30, 0.92) 0%, rgba(8, 17, 30, 0.78) 48%, rgba(8, 17, 30, 0.9) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 30px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 80px;
}

.hero-copy h1 {
    max-width: 920px;
}

.hero-copy p {
    max-width: 700px;
}

.hero-panel {
    padding: 26px;
}

.hero-panel h2 {
    margin: 0;
    font-size: 20px;
}

.hero-panel .challenge-list {
    margin-top: 12px;
}

.flow-steps.five-col {
    grid-template-columns: repeat(5, 1fr);
}

@media screen and (max-width: 1200px) {
    .flow-steps.five-col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .hero.hero-split {
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 84px;
        padding-bottom: 48px;
    }

    .hero-panel {
        margin-top: 6px;
    }

    .flow-steps.five-col {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   2026-02 Enterprise Evidence Theme
   ========================== */

body.enterprise-theme {
    background: #edf2f8;
    color: #10243e;
    font-family: "IBM Plex Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    line-height: 1.8;
    font-size: 16px;
}

body.enterprise-theme::before {
    background:
        radial-gradient(circle at 16% 12%, rgba(30, 64, 175, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 84% 88%, rgba(14, 116, 144, 0.08) 0%, transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(237, 242, 248, 0.75) 100%);
}

.enterprise-theme h1,
.enterprise-theme h2,
.enterprise-theme h3 {
    font-family: "Manrope", "IBM Plex Sans JP", sans-serif;
    letter-spacing: 0.01em;
    font-weight: 500;
}

.enterprise-theme strong {
    font-weight: 500;
    color: #12325d;
}

.enterprise-theme header {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid #cfd9e6;
    box-shadow: 0 6px 24px rgba(11, 32, 61, 0.07);
    backdrop-filter: blur(8px);
}

.enterprise-theme .site-title {
    background: none;
    color: #12325d;
    -webkit-text-fill-color: #12325d;
}

.enterprise-theme .nav-links a {
    color: #3b526f;
    font-weight: 600;
}

.enterprise-theme .nav-links a:hover {
    color: #12325d;
}

.enterprise-theme .nav-links a::after {
    background: linear-gradient(90deg, #1d4ed8, #0891b2);
}

.enterprise-theme .hamburger span {
    background: #1d4ed8;
}

.enterprise-theme .hero.enterprise-hero {
    min-height: clamp(540px, 74vh, 760px);
    padding: 0 20px;
    isolation: isolate;
    overflow: hidden;
    max-width: 100%;
    background-image:
        linear-gradient(118deg, rgba(3, 9, 20, 0.34) 0%, rgba(4, 13, 28, 0.42) 44%, rgba(5, 17, 36, 0.54) 100%),
        radial-gradient(circle at 12% 10%, rgba(137, 184, 236, 0.26) 0%, transparent 36%),
        radial-gradient(circle at 86% 82%, rgba(231, 182, 114, 0.22) 0%, transparent 45%),
        url("assets/images/fuklab-hero-dark-network-1800.webp");
    background-size: auto, auto, auto, cover;
    background-position: center, 12% 10%, 86% 82%, 50% 48%;
    background-repeat: no-repeat;
    animation: enterpriseHeroShift 12s ease-in-out infinite alternate;
}

.enterprise-theme .hero.enterprise-hero::before {
    background:
        linear-gradient(180deg, rgba(2, 7, 15, 0.1) 0%, rgba(2, 7, 15, 0.35) 100%),
        radial-gradient(ellipse at 50% 32%, transparent 0%, rgba(2, 7, 15, 0.3) 78%);
    opacity: 0.42;
    animation: enterpriseOrb 18s infinite alternate ease-in-out, enterpriseFieldDrift 24s infinite alternate ease-in-out, enterpriseOrbPulse 12s ease-in-out infinite;
}

.enterprise-theme .hero.enterprise-hero::after {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(166, 194, 226, 0.14) 0px,
            rgba(166, 194, 226, 0.14) 1px,
            transparent 1px,
            transparent 68px
        ),
        linear-gradient(
            112deg,
            transparent 30%,
            rgba(149, 201, 255, 0.24) 50%,
            transparent 70%
        );
    background-position: 0 0, -55% 0;
    background-size: auto, 220% 100%;
    mix-blend-mode: screen;
    opacity: 0.2;
    filter: saturate(118%);
    animation: enterpriseHeroGridMove 30s linear infinite, enterpriseHeroGridPulse 11s ease-in-out infinite alternate;
}

.enterprise-theme .moving-light {
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 42%,
        rgba(235, 203, 149, 0.14) 50%,
        rgba(177, 210, 244, 0.17) 56%,
        transparent 65%,
        transparent 100%
    );
    opacity: 0.32;
    filter: blur(1.6px);
    animation: moveLight 12s infinite linear;
}

.enterprise-theme .hero-aurora-layer {
    position: absolute;
    inset: -15% -12%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(34px) saturate(128%);
    opacity: 0.24;
    background:
        radial-gradient(ellipse at 14% 16%, rgba(184, 217, 249, 0.26) 0%, transparent 54%),
        radial-gradient(ellipse at 82% 20%, rgba(122, 170, 221, 0.22) 0%, transparent 52%),
        radial-gradient(ellipse at 54% 90%, rgba(225, 190, 138, 0.16) 0%, transparent 58%);
    animation: heroAuroraDrift 9s ease-in-out infinite alternate, heroAuroraPulse 5s ease-in-out infinite;
}

.enterprise-theme .hero-diagonal-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.08;
    background:
        repeating-linear-gradient(
            122deg,
            rgba(194, 215, 239, 0.22) 0px,
            rgba(194, 215, 239, 0.22) 1px,
            transparent 1px,
            transparent 48px
        ),
        repeating-linear-gradient(
            302deg,
            rgba(194, 215, 239, 0.16) 0px,
            rgba(194, 215, 239, 0.16) 1px,
            transparent 1px,
            transparent 52px
        );
    animation: heroDiagonalRun 12s linear infinite;
}

.enterprise-theme .hero-signal-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.2;
    background:
        linear-gradient(118deg, transparent 0%, rgba(218, 183, 126, 0.22) 44%, transparent 59%),
        linear-gradient(302deg, transparent 0%, rgba(163, 198, 234, 0.19) 48%, transparent 64%);
    animation: heroSignalSweep 8s ease-in-out infinite alternate;
}

.enterprise-theme .hero-signal-layer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(199, 214, 231, 0.12) 0px,
            rgba(199, 214, 231, 0.12) 1px,
            transparent 1px,
            transparent 32px
        );
    opacity: 0.13;
    animation: heroScanlineDrift 9s linear infinite;
}

.enterprise-theme .hero-particle-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(rgba(190, 212, 237, 0.24) 1px, transparent 1.9px),
        radial-gradient(rgba(221, 192, 146, 0.16) 1px, transparent 2.1px);
    background-size: 48px 48px, 80px 80px;
    background-position: 0 0, 22px 16px;
    opacity: 0.2;
    animation: heroParticleDrift 10s linear infinite, heroParticlePulse 5s ease-in-out infinite alternate;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 76%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 76%, transparent 100%);
}

@keyframes enterpriseOrb {
    0% { transform: translate3d(-1%, 0, 0) scale(1.02); }
    100% { transform: translate3d(1.2%, -1.4%, 0) scale(1.08); }
}

@keyframes enterpriseOrbPulse {
    0% { opacity: 0.32; }
    100% { opacity: 0.5; }
}

@keyframes enterpriseHeroShift {
    0% { background-position: center, 12% 10%, 86% 82%, 50% 47%; }
    100% { background-position: center, 14% 14%, 82% 76%, 53% 52%; }
}

@keyframes enterpriseFieldDrift {
    0% { transform: translate3d(-2%, 0, 0); }
    100% { transform: translate3d(2%, -2%, 0); }
}

@keyframes enterpriseHeroGridMove {
    0% { background-position: 0 0, -55% 0; }
    100% { background-position: 68px 0, 155% 0; }
}

@keyframes enterpriseHeroGridPulse {
    0% { opacity: 0.15; }
    100% { opacity: 0.25; }
}

@keyframes enterpriseGridMove {
    0% { background-position: 0 0, 0 0, -40% 0; }
    100% { background-position: 0 52px, 52px 0, 160% 0; }
}

@keyframes enterpriseGridPulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.7; }
}

@keyframes heroAuroraDrift {
    0% { transform: translate3d(-2%, -1%, 0) scale(1.02) rotate(0deg); }
    100% { transform: translate3d(2%, 1%, 0) scale(1.08) rotate(3deg); }
}

@keyframes heroAuroraPulse {
    0% { opacity: 0.48; }
    50% { opacity: 0.64; }
    100% { opacity: 0.52; }
}

@keyframes heroDiagonalRun {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 220px -180px, -220px 180px; }
}

@keyframes heroSignalSweep {
    0% { background-position: -35% 0, 135% 0; }
    100% { background-position: 145% 0, -20% 0; }
}

@keyframes heroScanlineDrift {
    0% { transform: translateY(0); }
    100% { transform: translateY(22px); }
}

@keyframes heroParticleDrift {
    0% { background-position: 0 0, 20px 12px; }
    100% { background-position: 120px -88px, -90px 84px; }
}

@keyframes heroParticlePulse {
    0% { opacity: 0.13; filter: brightness(0.95); }
    100% { opacity: 0.24; filter: brightness(1.2); }
}

@keyframes enterpriseCopyFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3px); }
}

.enterprise-theme .enterprise-hero-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: end;
    padding-top: 118px;
    padding-bottom: 90px;
}

.enterprise-theme .enterprise-hero .enterprise-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px 7px 14px;
    border-radius: 999px;
    border: 1px solid rgba(200, 219, 243, 0.36);
    color: #d6e4f7;
    background: rgba(8, 20, 39, 0.48);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    max-width: none;
    margin: 0 0 14px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

.enterprise-theme .enterprise-hero h1 {
    color: #ffffff;
    font-family: "Manrope", "IBM Plex Sans JP", sans-serif;
    font-size: clamp(29px, 3.8vw, 44px);
    line-height: 1.14;
    margin: 0 0 16px;
    font-weight: 550;
    letter-spacing: -0.01em;
    text-shadow: 0 6px 18px rgba(2, 6, 14, 0.42);
    text-wrap: balance;
}

.enterprise-theme .enterprise-hero h1 .hero-title-lead {
    display: block;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0;
    color: #f5f8fd;
    text-transform: none;
}

.enterprise-theme .enterprise-hero h1 .hero-title-main {
    display: block;
    margin-top: 6px;
    font-weight: 550;
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: #ffffff;
}

.enterprise-theme .enterprise-hero p {
    color: #e3ebf7;
    font-size: clamp(14px, 1.25vw, 17px);
    line-height: 1.85;
    letter-spacing: 0.01em;
    font-weight: 400;
    max-width: 56ch;
    margin: 0 auto;
    text-wrap: pretty;
}

.enterprise-theme .enterprise-hero-copy {
    position: relative;
    max-width: 760px;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    text-align: center;
    animation: enterpriseCopyFloat 10s ease-in-out infinite alternate;
}

.enterprise-theme .enterprise-hero-copy::before {
    display: none;
}

.enterprise-theme .enterprise-hero-copy::after {
    display: none;
}

.enterprise-theme .enterprise-hero-copy .hero-cta {
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* Hero attack-flow effect */
.enterprise-theme .hero.enterprise-hero {
    animation: enterpriseHeroShift 16s ease-in-out infinite alternate;
}

.enterprise-theme .hero.enterprise-hero::before {
    inset: 0;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    z-index: 3;
    background:
        radial-gradient(circle at 50% 42%, rgba(3, 9, 20, 0.12) 0%, rgba(3, 9, 20, 0.5) 74%),
        linear-gradient(90deg, rgba(2, 7, 15, 0.68) 0%, rgba(2, 7, 15, 0.26) 48%, rgba(2, 7, 15, 0.58) 100%);
    opacity: 0.78;
    animation: enterpriseHeroReadability 14s ease-in-out infinite alternate;
}

.enterprise-theme .hero.enterprise-hero::after {
    z-index: 1;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(114, 187, 255, 0.11) 0px,
            rgba(114, 187, 255, 0.11) 1px,
            transparent 1px,
            transparent 52px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(78, 166, 239, 0.1) 0px,
            rgba(78, 166, 239, 0.1) 1px,
            transparent 1px,
            transparent 58px
        );
    opacity: 0.2;
    mix-blend-mode: screen;
    animation: heroAttackGridMove 16s linear infinite, heroAttackGridPulse 5s ease-in-out infinite alternate;
}

.enterprise-theme .hero-flow-layer,
.enterprise-theme .hero-scan-layer,
.enterprise-theme .hero-node-layer,
.enterprise-theme .hero-warning-pulse,
.enterprise-theme .hero-light-sweep {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    pointer-events: none;
    overflow: hidden;
}

.enterprise-theme .hero-flow-layer {
    z-index: 2;
    opacity: 0.78;
}

.enterprise-theme .flow-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, transparent 0%, rgba(76, 195, 255, 0.18) 18%, rgba(101, 210, 255, 0.96) 48%, rgba(255, 119, 91, 0.7) 58%, transparent 100%);
    background-size: 220% 100%;
    box-shadow: 0 0 24px rgba(76, 195, 255, 0.32);
    transform-origin: left center;
    animation: heroDataRun 6.4s linear infinite;
}

.enterprise-theme .flow-line::before,
.enterprise-theme .flow-line::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7dd3fc;
    box-shadow: 0 0 18px rgba(125, 211, 252, 0.8);
    transform: translateY(-50%);
}

.enterprise-theme .flow-line::before {
    left: 0;
}

.enterprise-theme .flow-line::after {
    right: 0;
    background: #fb7185;
    box-shadow: 0 0 20px rgba(251, 113, 133, 0.85);
}

.enterprise-theme .flow-line-1 {
    top: 28%;
    left: 14%;
    width: 52%;
    transform: rotate(10deg);
}

.enterprise-theme .flow-line-2 {
    top: 42%;
    left: 38%;
    width: 42%;
    transform: rotate(-18deg);
    animation-delay: -1.7s;
}

.enterprise-theme .flow-line-3 {
    top: 62%;
    left: 20%;
    width: 58%;
    transform: rotate(-5deg);
    animation-delay: -3.2s;
}

.enterprise-theme .flow-line-4 {
    top: 72%;
    left: 48%;
    width: 34%;
    transform: rotate(20deg);
    animation-delay: -4.5s;
}

.enterprise-theme .hero-scan-layer {
    z-index: 2;
    opacity: 0.58;
    background:
        linear-gradient(112deg, transparent 18%, rgba(80, 190, 255, 0.04) 34%, rgba(130, 219, 255, 0.42) 48%, rgba(255, 145, 98, 0.18) 54%, transparent 72%),
        repeating-linear-gradient(180deg, rgba(194, 223, 255, 0.08) 0px, rgba(194, 223, 255, 0.08) 1px, transparent 1px, transparent 30px);
    background-size: 240% 100%, 100% 30px;
    background-position: -150% 0, 0 0;
    mix-blend-mode: screen;
    animation: heroScanSweep 7s ease-in-out infinite, heroScanlineRun 9s linear infinite;
}

.enterprise-theme .hero-node-layer {
    z-index: 2;
}

.enterprise-theme .hero-node {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(187, 231, 255, 0.9);
    border-radius: 50%;
    background: rgba(7, 25, 48, 0.88);
    box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.08), 0 0 26px rgba(88, 204, 255, 0.72);
    animation: heroNodePulse 3.2s ease-in-out infinite;
}

.enterprise-theme .node-a {
    top: 27%;
    left: 13%;
}

.enterprise-theme .node-b {
    top: 36%;
    left: 55%;
    animation-delay: -0.7s;
}

.enterprise-theme .node-c {
    top: 56%;
    left: 25%;
    animation-delay: -1.5s;
}

.enterprise-theme .node-d {
    top: 65%;
    left: 69%;
    animation-delay: -2.3s;
}

.enterprise-theme .node-e {
    top: 42%;
    left: 82%;
    animation-delay: -3s;
}

.enterprise-theme .hero-warning-pulse {
    z-index: 2;
}

.enterprise-theme .hero-warning-pulse::before,
.enterprise-theme .hero-warning-pulse::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 121, 79, 0.96) 0 4px, rgba(255, 121, 79, 0.22) 5px 16px, transparent 17px),
        radial-gradient(circle, rgba(255, 121, 79, 0.2) 0%, transparent 58%);
    box-shadow: 0 0 34px rgba(255, 121, 79, 0.65);
    animation: heroWarningPulse 2.7s ease-in-out infinite;
}

.enterprise-theme .hero-warning-pulse::before {
    top: 38%;
    left: 62%;
    width: 76px;
    height: 76px;
}

.enterprise-theme .hero-warning-pulse::after {
    top: 58%;
    left: 74%;
    width: 54px;
    height: 54px;
    animation-delay: -1.2s;
}

.enterprise-theme .hero-light-sweep {
    z-index: 4;
    opacity: 0.44;
    background: linear-gradient(112deg, transparent 0%, transparent 42%, rgba(175, 219, 255, 0.1) 48%, rgba(126, 211, 252, 0.28) 53%, transparent 62%, transparent 100%);
    filter: blur(1.4px);
    transform: translateX(-70%) skewX(-14deg);
    animation: heroLightSweep 7.5s linear infinite;
}

@keyframes enterpriseHeroReadability {
    0% { opacity: 0.68; }
    100% { opacity: 0.82; }
}

@keyframes heroAttackGridMove {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 0 104px, 116px 0; }
}

@keyframes heroAttackGridPulse {
    0% { opacity: 0.14; }
    100% { opacity: 0.27; }
}

@keyframes heroDataRun {
    0% {
        opacity: 0.24;
        background-position: -140% 0;
    }
    40% {
        opacity: 0.94;
    }
    100% {
        opacity: 0.24;
        background-position: 160% 0;
    }
}

@keyframes heroScanSweep {
    0% { background-position: -160% 0, 0 0; }
    56% { background-position: 145% 0, 0 0; }
    100% { background-position: 145% 0, 0 0; }
}

@keyframes heroScanlineRun {
    0% { transform: translateY(0); }
    100% { transform: translateY(30px); }
}

@keyframes heroNodePulse {
    0%, 100% {
        opacity: 0.58;
        transform: scale(0.82);
    }
    50% {
        opacity: 1;
        transform: scale(1.22);
    }
}

@keyframes heroWarningPulse {
    0%, 100% {
        opacity: 0.38;
        transform: scale(0.82);
    }
    50% {
        opacity: 1;
        transform: scale(1.12);
    }
}

@keyframes heroLightSweep {
    0% { transform: translateX(-80%) skewX(-14deg); }
    100% { transform: translateX(80%) skewX(-14deg); }
}

.enterprise-theme .enterprise-hero-copy .cta-button {
    min-width: 168px;
    padding: 15px 24px;
    border-radius: 0;
    font-size: 15px;
    letter-spacing: 0;
}

.enterprise-theme .enterprise-hero-copy .cta-button.primary {
    background: linear-gradient(120deg, #4f8fd5, #2f6bad);
    box-shadow: 0 10px 24px rgba(47, 107, 173, 0.35);
}

.enterprise-theme .enterprise-hero-copy .cta-button.secondary {
    border-color: rgba(200, 220, 243, 0.52);
    color: #e7f1ff;
    background: rgba(13, 29, 52, 0.5);
}

.enterprise-theme .enterprise-hero-copy .cta-button.secondary:hover {
    background: rgba(17, 35, 61, 0.74);
}

.enterprise-theme .hero-evidence-panel {
    padding: 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid #d4dfed;
    box-shadow: 0 14px 36px rgba(11, 32, 61, 0.12);
}

.enterprise-theme .hero-evidence-panel h2 {
    margin: 0 0 12px;
    padding: 0;
    font-size: 22px;
}

.enterprise-theme .hero-evidence-panel h2::before {
    display: none;
}

.enterprise-theme .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.enterprise-theme .hero-facts div {
    border: 1px solid #d4dfed;
    border-radius: 10px;
    background: #f8fbff;
    padding: 10px 10px 12px;
}

.enterprise-theme .hero-facts span {
    display: block;
    color: #5c7392;
    font-size: 12px;
    margin-bottom: 4px;
}

.enterprise-theme .hero-facts strong {
    color: #12325d;
    font-size: 16px;
    font-weight: 600;
}

.enterprise-theme .section {
    max-width: 1160px;
    margin: 72px auto;
    padding: 0 22px;
}

.enterprise-theme .gradient-heading {
    background: none;
    color: #10243e;
    -webkit-text-fill-color: #10243e;
}

.enterprise-theme h2 {
    font-size: clamp(24px, 2.8vw, 32px);
    padding-left: 0;
    margin-bottom: 18px;
    font-weight: 500;
    color: #10243e;
}

.enterprise-theme h2::before {
    display: none;
}

.enterprise-theme .box,
.enterprise-theme .service-card,
.enterprise-theme .case-study-card,
.enterprise-theme .contact-panel,
.enterprise-theme .enterprise-form {
    background: #ffffff;
    border: 1px solid #d4dfed;
    box-shadow: 0 12px 28px rgba(11, 32, 61, 0.08);
}

.enterprise-theme .box {
    padding: 30px;
    border-radius: 16px;
}

.enterprise-theme .box::before {
    display: none;
}

.enterprise-theme .box p,
.enterprise-theme .service-card p,
.enterprise-theme .case-study-card p,
.enterprise-theme .cta-note {
    color: #334c6b;
    font-weight: 400;
}

.enterprise-theme h3 {
    color: #16345a;
}

.enterprise-theme .challenge-list li {
    border-bottom: 1px solid #e4ebf5;
    color: #334c6b;
}

.enterprise-theme .challenge-list li i {
    background: none;
    -webkit-text-fill-color: #1d4ed8;
    color: #1d4ed8;
}

.enterprise-theme .flow-step {
    background: #ffffff;
    border: 1px solid #d4dfed;
    box-shadow: 0 12px 28px rgba(11, 32, 61, 0.08);
}

.enterprise-theme .flow-step h3 {
    color: #16345a;
}

.enterprise-theme .flow-step p {
    color: #3d5778;
}

.enterprise-theme .flow-node {
    background: #ffffff;
    border: 1px solid #d4dfed;
    box-shadow: 0 10px 24px rgba(11, 32, 61, 0.07);
}

.enterprise-theme .flow-node h3 {
    color: #16345a;
}

.enterprise-theme .flow-node p {
    color: #3d5778;
}

.enterprise-theme .flow-link {
    color: #1d4ed8;
    opacity: 0.7;
}

.enterprise-theme .faq-item {
    background: #ffffff;
    border: 1px solid #d4dfed;
    box-shadow: 0 10px 24px rgba(11, 32, 61, 0.06);
}

.enterprise-theme .faq-item:hover {
    border-color: #a7bfdc;
}

.enterprise-theme .faq-question {
    color: #16345a;
}

.enterprise-theme .faq-question::after {
    color: #1d4ed8;
}

.enterprise-theme .faq-answer {
    color: #3d5778;
}

.enterprise-theme .comparison-table {
    background: #ffffff;
    border: 1px solid #d4dfed;
}

.enterprise-theme .comparison-table th,
.enterprise-theme .comparison-table td {
    border-bottom: 1px solid #e4ebf5;
}

.enterprise-theme .comparison-table th {
    background: #eef4ff;
    color: #16345a;
}

.enterprise-theme .comparison-table td {
    color: #334c6b;
}

.enterprise-theme .comparison-table .highlight {
    background: #f5f9ff;
}

.enterprise-theme .comparison-table .plan-name {
    background: none;
    -webkit-text-fill-color: #12325d;
    color: #12325d;
}

.enterprise-theme .comparison-table strong,
.enterprise-theme .price-note {
    color: #16345a;
}

.enterprise-theme .visual-box {
    display: grid;
    gap: 20px;
}

.enterprise-theme .visual-intro {
    margin: 0;
    color: #334c6b;
    line-height: 1.85;
}

.enterprise-theme .simple-story {
    display: grid;
    gap: 18px;
}

.enterprise-theme .story-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.enterprise-theme .story-card {
    background: #f8fbff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    padding: 16px 14px;
}

.enterprise-theme .story-card i {
    color: #1d4ed8;
    font-size: 18px;
    margin-bottom: 8px;
}

.enterprise-theme .story-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #14365b;
}

.enterprise-theme .story-card p {
    margin: 0;
    font-size: 14px;
    color: #3d5778;
    line-height: 1.7;
}

.enterprise-theme .story-conclusion {
    background: linear-gradient(140deg, #edf4ff 0%, #e8f5f4 100%);
    border: 1px solid #b8d3e6;
    border-radius: 14px;
    padding: 14px 16px;
}

.enterprise-theme .story-conclusion h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #113557;
}

.enterprise-theme .story-conclusion p {
    margin: 0;
    color: #355274;
    font-size: 14px;
    line-height: 1.7;
}

.enterprise-theme .support-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.enterprise-theme .support-list-item {
    background: #ffffff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    padding: 15px 14px;
}

.enterprise-theme .support-tag {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid #a7bfdc;
    background: #eef4ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    margin-bottom: 8px;
}

.enterprise-theme .support-list-item h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #14365b;
}

.enterprise-theme .support-list-item p {
    margin: 0;
    font-size: 14px;
    color: #3d5778;
    line-height: 1.7;
}

.enterprise-theme .support-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.enterprise-theme .support-summary-card {
    background: #ffffff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    padding: 16px 14px;
}

.enterprise-theme .support-summary-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #14365b;
}

.enterprise-theme .support-summary-card p {
    margin: 0;
    font-size: 14px;
    color: #3d5778;
    line-height: 1.7;
}

.enterprise-theme .outcome-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.enterprise-theme .outcome-item {
    background: #f8fbff;
    border: 1px solid #d4dfed;
    border-radius: 12px;
    padding: 12px 13px;
    display: grid;
    gap: 4px;
}

.enterprise-theme .outcome-item strong {
    color: #12325d;
    font-size: 14px;
}

.enterprise-theme .outcome-item span {
    color: #3d5778;
    font-size: 13px;
    line-height: 1.6;
}

.enterprise-theme .logic-chain {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 10px;
    align-items: stretch;
}

.enterprise-theme .logic-item {
    background: #f8fbff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    padding: 14px 12px;
}

.enterprise-theme .logic-item.highlight {
    background: linear-gradient(140deg, #edf4ff 0%, #e6f6f4 100%);
    border-color: #9dc4dd;
}

.enterprise-theme .logic-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(120deg, #1d4ed8, #0f766e);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.enterprise-theme .logic-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #14365b;
}

.enterprise-theme .logic-item p {
    margin: 0;
    font-size: 13px;
    color: #3d5778;
    line-height: 1.6;
}

.enterprise-theme .logic-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: 14px;
    opacity: 0.85;
}

.enterprise-theme .risk-map {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
    gap: 10px;
}

.enterprise-theme .risk-node {
    background: linear-gradient(150deg, #f8fbff 0%, #edf4ff 100%);
    border: 1px solid #cfe0f4;
    border-radius: 14px;
    padding: 16px 14px;
}

.enterprise-theme .risk-node i {
    color: #1d4ed8;
    font-size: 20px;
    margin-bottom: 8px;
}

.enterprise-theme .risk-node h3 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #14365b;
}

.enterprise-theme .risk-node p {
    margin: 0;
    font-size: 13px;
    color: #3d5778;
    line-height: 1.7;
}

.enterprise-theme .risk-node-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1d4ed8;
    font-size: 15px;
    opacity: 0.8;
}

.enterprise-theme .risk-table-wrap {
    overflow-x: auto;
}

.enterprise-theme .risk-impact-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 920px;
    border: 1px solid #d4dfed;
    border-radius: 12px;
    overflow: hidden;
}

.enterprise-theme .risk-impact-table th,
.enterprise-theme .risk-impact-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid #e5edf7;
    color: #334c6b;
    font-size: 14px;
}

.enterprise-theme .risk-impact-table th {
    background: #eef4ff;
    color: #14365b;
    font-weight: 600;
}

.enterprise-theme .risk-impact-table tbody tr:last-child td {
    border-bottom: none;
}

.enterprise-theme .value-map-wrap {
    overflow-x: auto;
}

.enterprise-theme .value-map {
    min-width: 760px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #d4dfed;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.enterprise-theme .value-map > *:nth-child(2n) {
    border-left: 1px solid #e5edf7;
}

.enterprise-theme .value-head {
    background: #eef4ff;
    color: #14365b;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 14px;
}

.enterprise-theme .value-cell {
    color: #334c6b;
    font-size: 14px;
    line-height: 1.7;
    padding: 12px 14px;
    border-top: 1px solid #e5edf7;
}

.enterprise-theme .value-cell.issue {
    background: #fbfdff;
    color: #214266;
    font-weight: 500;
}

.enterprise-theme .support-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.enterprise-theme .support-step {
    background: #f7fbff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    padding: 14px 12px;
}

.enterprise-theme .support-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(120deg, #1d4ed8, #0f766e);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.enterprise-theme .support-step h3 {
    margin: 0 0 5px;
    font-size: 15px;
    color: #14365b;
}

.enterprise-theme .support-step p {
    margin: 0;
    font-size: 13px;
    color: #3d5778;
    line-height: 1.6;
}

.enterprise-theme .deliverable-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.enterprise-theme .deliverable-card {
    background: #ffffff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    padding: 15px 14px;
}

.enterprise-theme .deliverable-card i {
    color: #1d4ed8;
    font-size: 18px;
    margin-bottom: 8px;
}

.enterprise-theme .deliverable-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #14365b;
}

.enterprise-theme .deliverable-card p {
    margin: 0;
    color: #3d5778;
    font-size: 13px;
    line-height: 1.65;
}

.enterprise-theme .service-cards {
    gap: 18px;
}

.enterprise-theme .service-cards.four-col .service-card {
    width: calc(25% - 14px);
    text-align: left;
    border-radius: 16px;
    padding: 26px 22px;
}

.enterprise-theme .service-cards.three-col .service-card {
    width: calc(33.333% - 12px);
    text-align: left;
}

.enterprise-theme .compact-cards .service-card h3 {
    margin-bottom: 8px;
}

.enterprise-theme .service-card::before,
.enterprise-theme .service-card::after {
    display: none;
}

.enterprise-theme .service-card i {
    background: none;
    -webkit-text-fill-color: #1d4ed8;
    color: #1d4ed8;
    filter: none;
    font-size: 34px;
    margin-bottom: 16px;
}

.enterprise-theme .service-card:hover i {
    filter: none;
}

.enterprise-theme .service-card h3 {
    color: #132e51;
    margin-top: 0;
    font-weight: 600;
}

.enterprise-theme .service-card:hover {
    transform: none;
    border-color: #d4dfed;
    box-shadow: 0 12px 28px rgba(11, 32, 61, 0.08);
}

.enterprise-theme .service-card.link-card {
    cursor: pointer;
}

.enterprise-theme .service-card:not(.link-card) {
    cursor: default;
}

.enterprise-theme .service-card.link-card:hover {
    transform: translateY(-6px);
    border-color: #a7bfdc;
    box-shadow: 0 16px 32px rgba(11, 32, 61, 0.14);
}

.enterprise-theme .case-study-card {
    border-left: 5px solid #1d4ed8;
    border-radius: 14px;
    margin-bottom: 14px;
}

.enterprise-theme .case-study-badge {
    background: linear-gradient(120deg, #1d4ed8, #0f766e);
}

.enterprise-theme .case-study-title {
    color: #132e51;
}

.enterprise-theme .page-header {
    background-image:
        linear-gradient(118deg, rgba(3, 9, 20, 0.38) 0%, rgba(4, 13, 28, 0.46) 44%, rgba(5, 17, 36, 0.58) 100%),
        url("assets/images/fuklab-hero-dark-network-1800.webp");
    background-size: auto, cover;
    background-position: center, 50% 48%;
    background-repeat: no-repeat;
    min-height: 280px;
    height: auto;
    padding: 106px 20px 54px;
    border-bottom: 1px solid rgba(174, 199, 226, 0.35);
}

.enterprise-theme .page-header::before,
.enterprise-theme .page-header::after {
    opacity: 1;
}

.enterprise-theme .page-header::before {
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(235, 203, 149, 0.16) 50%,
        rgba(177, 210, 244, 0.14) 56%,
        transparent 65%
    );
    opacity: 0.22;
    animation: sweepLight 16s infinite linear;
}

.enterprise-theme .page-header::after {
    background:
        repeating-linear-gradient(
            90deg,
            rgba(166, 194, 226, 0.12) 0px,
            rgba(166, 194, 226, 0.12) 1px,
            transparent 1px,
            transparent 64px
        ),
        linear-gradient(
            112deg,
            transparent 30%,
            rgba(149, 201, 255, 0.22) 50%,
            transparent 70%
        );
    background-position: 0 0, -55% 0;
    background-size: auto, 220% 100%;
    mix-blend-mode: screen;
    opacity: 0.14;
    animation: enterpriseHeroGridMove 34s linear infinite;
}

.enterprise-theme .page-header h1 {
    color: #f7fbff;
    background: none;
    -webkit-text-fill-color: #f7fbff;
    font-size: clamp(30px, 4.2vw, 42px);
    font-weight: 500;
    text-shadow: 0 5px 18px rgba(2, 6, 14, 0.4);
}

.enterprise-theme .page-header p {
    color: #d4deee;
    font-size: 17px;
}

.enterprise-theme .cta-button {
    border-radius: 10px;
    padding: 14px 28px;
    min-width: 0;
}

.enterprise-theme .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.enterprise-theme .button-row .cta-button {
    width: auto;
    flex: 0 0 auto;
}

.enterprise-theme .cta-button.primary {
    background: linear-gradient(120deg, #1d4ed8, #0f766e);
    color: #fff;
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.22);
}

.enterprise-theme .cta-button.primary:hover {
    box-shadow: 0 14px 26px rgba(29, 78, 216, 0.3);
}

.enterprise-theme .cta-button.secondary {
    border: 1px solid #1d4ed8;
    color: #1d4ed8;
    background: #f8fbff;
}

.enterprise-theme .cta-button.secondary:hover {
    background: #eaf2ff;
    box-shadow: none;
}

.enterprise-theme .site-footer {
    background: linear-gradient(150deg, #0f2746 0%, #0b1f38 100%);
    border-top: none;
}

.enterprise-theme .footer-tagline,
.enterprise-theme .footer-column a {
    color: #c6d6ea;
}

.enterprise-theme .footer-column a:hover {
    color: #ffffff;
}

.enterprise-theme .contact-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 22px;
    align-items: start;
}

.enterprise-theme .contact-layout.one-col {
    grid-template-columns: 1fr;
}

.enterprise-theme .contact-panel {
    border-radius: 16px;
    padding: 24px;
}

.enterprise-theme .contact-side-panel h2 {
    margin-bottom: 16px;
}

.enterprise-theme .contact-meta-block {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #d4dfed;
}

.enterprise-theme .contact-meta-block h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.enterprise-theme .contact-meta-block p {
    margin: 0 0 12px;
    color: #365173;
}

.enterprise-theme .enterprise-form {
    border-radius: 12px;
    padding: 20px;
}

.enterprise-theme .enterprise-form input,
.enterprise-theme .enterprise-form textarea,
.enterprise-theme .enterprise-form select {
    border: 1px solid #c6d4e5;
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 15px;
    background: #fff;
    color: #16345a;
}

.enterprise-theme .enterprise-form select option {
    color: #16345a;
    background: #ffffff;
}

.enterprise-theme .enterprise-form select:required:invalid {
    color: #6c84a1;
}

.enterprise-theme .enterprise-form select option[value=""] {
    color: #6c84a1;
}

.enterprise-theme .enterprise-form label {
    color: #16345a;
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: #16345a;
    font-weight: 600;
    margin-bottom: 6px;
}

.enterprise-theme .enterprise-form .submit-button {
    background: linear-gradient(120deg, #1d4ed8, #0f766e);
    color: #f5f9ff;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(29, 78, 216, 0.24);
}

.enterprise-theme .enterprise-form .submit-button::before {
    display: none;
}

.enterprise-theme .enterprise-form .submit-button:hover {
    background: linear-gradient(120deg, #1e40af, #0f766e);
    color: #ffffff;
    box-shadow: 0 14px 24px rgba(29, 78, 216, 0.28);
    transform: translateY(-1px);
}

.enterprise-theme .contact-panel .gradient-heading {
    color: #132e51;
    -webkit-text-fill-color: #132e51;
}

.enterprise-theme .enterprise-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.enterprise-theme .enterprise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 12px;
    color: #2f4b6d;
}

.enterprise-theme .enterprise-list i {
    color: #1d4ed8;
    margin-top: 4px;
}

.enterprise-theme .company-overview {
    background: #ffffff;
    border: 1px solid #d4dfed;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(11, 32, 61, 0.08);
}

.enterprise-theme .company-overview .row {
    border-bottom: 1px solid #e4ebf5;
}

.enterprise-theme .company-overview .label {
    background: none;
    -webkit-text-fill-color: #1a3a5d;
    -webkit-background-clip: border-box;
    color: #1a3a5d;
    font-weight: 600;
}

.enterprise-theme .company-overview .value {
    color: #10243e;
    font-weight: 500;
}

.enterprise-theme .company-profile-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: start;
    background: #ffffff;
    border: 1px solid #d4dfed;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(11, 32, 61, 0.08);
    padding: 24px;
}

.enterprise-theme .company-profile-media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #d4dfed;
    box-shadow: 0 10px 22px rgba(11, 32, 61, 0.08);
}

.enterprise-theme .company-profile-body h3 {
    margin: 4px 0 10px;
    font-size: 28px;
    color: #10243e;
}

.enterprise-theme .company-profile-role {
    margin: 0;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.enterprise-theme .company-profile-summary {
    margin: 0;
    color: #365173;
    line-height: 1.9;
}

.enterprise-theme .company-profile-summary + .company-profile-summary {
    margin-top: 12px;
}

@media screen and (max-width: 1100px) {
    .enterprise-theme .enterprise-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 100px;
        padding-bottom: 72px;
    }

    .enterprise-theme .service-cards.four-col .service-card {
        width: calc(50% - 10px);
    }

    .enterprise-theme .service-cards.three-col .service-card {
        width: calc(50% - 10px);
    }

    .enterprise-theme .contact-layout {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .company-profile-card {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .company-profile-media {
        max-width: 260px;
    }

    .enterprise-theme .story-cards {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .outcome-strip {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .risk-map {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .risk-node-arrow {
        display: none;
    }

    .enterprise-theme .logic-chain {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .logic-arrow {
        transform: rotate(90deg);
    }

    .enterprise-theme .support-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-theme .deliverable-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-theme .support-list {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .support-summary-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 760px) {
    .enterprise-theme .hero.enterprise-hero {
        min-height: auto;
    }

    .enterprise-theme .enterprise-hero-inner {
        padding-top: 94px;
        padding-bottom: 58px;
    }

    .enterprise-theme .enterprise-hero .enterprise-kicker {
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-bottom: 12px;
    }

    .enterprise-theme .enterprise-hero h1 {
        font-size: clamp(23px, 7vw, 32px);
        line-height: 1.18;
    }

    .enterprise-theme .enterprise-hero p {
        font-size: 14px;
        line-height: 1.8;
    }

    .enterprise-theme .hero-flow-layer {
        opacity: 0.48;
    }

    .enterprise-theme .flow-line-2,
    .enterprise-theme .flow-line-4,
    .enterprise-theme .node-d,
    .enterprise-theme .node-e,
    .enterprise-theme .hero-warning-pulse::after {
        display: none;
    }

    .enterprise-theme .flow-line-1 {
        top: 30%;
        left: 5%;
        width: 86%;
    }

    .enterprise-theme .flow-line-3 {
        top: 66%;
        left: 2%;
        width: 92%;
    }

    .enterprise-theme .node-a {
        left: 8%;
    }

    .enterprise-theme .node-b {
        left: 72%;
    }

    .enterprise-theme .node-c {
        left: 18%;
    }

    .enterprise-theme .hero-warning-pulse::before {
        top: 48%;
        left: 72%;
        width: 52px;
        height: 52px;
    }

    .enterprise-theme .hero-scan-layer {
        opacity: 0.34;
    }

    .enterprise-theme .hero-light-sweep {
        opacity: 0.26;
    }

    .enterprise-theme .hero-facts {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .service-cards.four-col .service-card,
    .enterprise-theme .service-cards.three-col .service-card {
        width: 100%;
    }

    .enterprise-theme h2 {
        font-size: 24px;
    }

    .enterprise-theme .enterprise-hero-copy {
        max-width: 100%;
        padding: 0;
        border-radius: 0;
        animation: none;
    }

    .enterprise-theme .enterprise-hero-copy::after {
        display: none;
    }

    .enterprise-theme .enterprise-hero-copy .hero-cta {
        gap: 10px;
        margin-top: 22px;
    }

    .enterprise-theme .enterprise-hero-copy .cta-button {
        min-width: 148px;
        font-size: 14px;
        padding: 13px 18px;
    }

    .enterprise-theme .support-flow,
    .enterprise-theme .deliverable-cards {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .hero-signal-layer {
        opacity: 0.14;
    }

    .enterprise-theme .hero-aurora-layer {
        opacity: 0.18;
    }

    .enterprise-theme .hero-diagonal-grid {
        opacity: 0.05;
    }

    .enterprise-theme .company-profile-card {
        padding: 18px;
    }

    .enterprise-theme .company-profile-media {
        max-width: 220px;
        margin: 0 auto;
    }

    .enterprise-theme .company-profile-body h3 {
        font-size: 24px;
    }
}

/* Square card experiment */
.box,
.card,
.link-box,
.service-card,
.feature-card,
.price-card,
.case-study-card,
.challenge-card,
.problem-card,
.solution-card,
.integrated-card,
.pair-card,
.blog-item-link,
.blog-empty,
.faq-item,
.company-overview,
.company-profile-card,
.contact-panel,
.enterprise-form,
.story-card,
.story-conclusion,
.support-summary-card,
.support-list-item,
.support-step,
.outcome-item,
.logic-item,
.risk-node,
.risk-impact-table,
.value-map,
.deliverable-card,
.flow-step,
.flow-node,
.other-support-box,
.enterprise-theme .box,
.enterprise-theme .service-card,
.enterprise-theme .case-study-card,
.enterprise-theme .contact-panel,
.enterprise-theme .enterprise-form,
.enterprise-theme .story-card,
.enterprise-theme .story-conclusion,
.enterprise-theme .support-summary-card,
.enterprise-theme .support-list-item,
.enterprise-theme .support-step,
.enterprise-theme .company-overview,
.enterprise-theme .company-profile-card,
.enterprise-theme .company-profile-media img,
.enterprise-theme .deliverable-card,
.enterprise-theme .risk-node,
.enterprise-theme .risk-impact-table,
.enterprise-theme .value-map {
    border-radius: 0 !important;
}

/* Service expansion helpers */
.enterprise-theme .service-meta {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    text-align: left;
}

.enterprise-theme .service-meta div {
    border-top: 1px solid #e4ebf5;
    padding-top: 8px;
}

.enterprise-theme .service-meta dt {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
}

.enterprise-theme .service-meta dd {
    margin: 2px 0 0;
    color: #254566;
    font-size: 13px;
    line-height: 1.6;
}

.enterprise-theme .compact-service-list {
    margin-top: 14px;
}

.enterprise-theme .text-link {
    color: #1d4ed8;
    font-weight: 700;
}

.enterprise-theme .ai-risk-flow {
    margin-top: 24px;
}

.enterprise-theme .risk-copy {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.enterprise-theme .risk-heading {
    text-align: center;
}

.enterprise-theme .section-heading-center {
    text-align: center;
}

.enterprise-theme .risk-support-copy {
    max-width: 880px;
    margin: 0 auto;
    color: #12314f;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
}

.enterprise-theme .risk-support-section {
    max-width: none;
    margin: 76px 0;
    padding: 58px 22px;
    background: linear-gradient(135deg, #eef5fb 0%, #f7fbff 52%, #e9f2f9 100%);
}

.enterprise-theme .risk-support-layout {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 42px;
    max-width: 1080px;
    margin: 0 auto;
}

.enterprise-theme .risk-support-visual {
    margin: 0;
}

.enterprise-theme .risk-support-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
}

.enterprise-theme .risk-support-body .risk-support-copy {
    max-width: 620px;
    margin: 0;
    text-align: left;
}

.enterprise-theme .risk-copy p {
    color: #254566;
    font-size: 16px;
    line-height: 2;
    margin: 0 auto 18px;
}

.enterprise-theme .risk-copy .visual-intro {
    color: #254566;
    font-size: 16px;
    font-weight: 400;
}

.enterprise-theme .risk-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.enterprise-theme .risk-card {
    background: #f8fafc;
    border-left: 4px solid #1d9bf0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    padding: 26px 28px;
}

.enterprise-theme .risk-card h3 {
    color: #12314f;
    font-size: 20px;
    line-height: 1.45;
    margin: 0 0 14px;
}

.enterprise-theme .risk-card p {
    color: #254566;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.enterprise-theme .capability-lead {
    max-width: 820px;
    margin: -4px auto 30px;
    color: #254566;
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

.enterprise-theme .capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.enterprise-theme .capability-card {
    background: #ffffff;
    border: 1px solid #d9e4f0;
    border-top: 4px solid #1d9bf0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
    padding: 24px 24px 26px;
}

.enterprise-theme .capability-phase {
    display: inline-block;
    margin: 0 0 12px;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
}

.enterprise-theme .capability-card h3 {
    color: #12314f;
    font-size: 19px;
    line-height: 1.45;
    margin: 0 0 12px;
}

.enterprise-theme .capability-card p:last-child {
    color: #254566;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.enterprise-theme .service-tabs-lead {
    max-width: 760px;
    margin: -4px auto 28px;
    color: #254566;
    font-size: 16px;
    line-height: 1.9;
    text-align: center;
}

.enterprise-theme .service-tabs {
    max-width: 1080px;
    margin: 0 auto;
}

.enterprise-theme .service-tab-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 22px;
}

.enterprise-theme .grouped-service-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.enterprise-theme .service-tab-button {
    min-height: 74px;
    border: 1px solid #d8e3ef;
    border-left: 4px solid transparent;
    background: #ffffff;
    color: #12314f;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
    padding: 14px 12px;
    text-align: left;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.enterprise-theme .service-tab-button:hover,
.enterprise-theme .service-tab-button:focus-visible {
    border-color: #8fc8f2;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    outline: none;
}

.enterprise-theme .service-tab-button.active {
    background: #10243e;
    border-color: #10243e;
    border-left-color: #1d9bf0;
    color: #ffffff;
}

.enterprise-theme .service-tab-panels {
    background: #f8fafc;
    border: 1px solid #dbe6f2;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.enterprise-theme .service-tab-panel {
    padding: 34px 36px;
}

.enterprise-theme .service-tab-panel h3 {
    color: #10243e;
    font-size: 26px;
    line-height: 1.4;
    margin: 0 0 14px;
}

.enterprise-theme .service-tab-panel > p:not(.service-target) {
    color: #254566;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 22px;
}

.enterprise-theme .service-tab-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 24px;
}

.enterprise-theme .service-tab-meta div {
    background: #ffffff;
    border: 1px solid #dfe8f2;
    padding: 16px 18px;
}

.enterprise-theme .service-tab-meta dt {
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.enterprise-theme .service-tab-meta dd {
    color: #254566;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.enterprise-theme .service-group-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.enterprise-theme .service-group-items a {
    display: block;
    background: #ffffff;
    border: 1px solid #dfe8f2;
    color: #254566;
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.enterprise-theme .service-group-items a:hover,
.enterprise-theme .service-group-items a:focus-visible {
    border-color: #8fc8f2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    outline: none;
    transform: translateY(-2px);
}

.enterprise-theme .service-group-items strong {
    display: block;
    color: #12314f;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 8px;
}

.enterprise-theme .service-group-items span {
    display: block;
    font-size: 13px;
    line-height: 1.7;
}

.enterprise-theme .service-list-groups {
    display: grid;
    gap: 26px;
}

.enterprise-theme .service-list-group {
    display: grid;
    grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    background: #f8fafc;
    border: 1px solid #dbe6f2;
    border-left: 4px solid #1d9bf0;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.enterprise-theme .service-list-group-head h2 {
    color: #10243e;
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 12px;
}

.enterprise-theme .service-list-group-head p:not(.service-target) {
    color: #254566;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.enterprise-theme .service-list-items {
    display: grid;
    gap: 12px;
}

.enterprise-theme .service-list-item {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 22px;
    align-items: start;
    background: #ffffff;
    border: 1px solid #dfe8f2;
    color: inherit;
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.enterprise-theme .service-list-item:hover,
.enterprise-theme .service-list-item:focus-visible {
    border-color: #8fc8f2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    outline: none;
    transform: translateY(-2px);
}

.enterprise-theme .service-list-item h3 {
    color: #10243e;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 8px;
}

.enterprise-theme .service-list-item p {
    color: #254566;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.enterprise-theme .service-list-item dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.enterprise-theme .service-list-item dl div {
    border-left: 2px solid #d8e9f8;
    padding-left: 12px;
}

.enterprise-theme .service-list-item dt {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.enterprise-theme .service-list-item dd {
    color: #254566;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 901px) {
    .enterprise-theme .service-list-item dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 14px;
    }

    .enterprise-theme .service-list-item dl div:nth-child(n+3) {
        grid-column: 1 / -1;
    }
}

.enterprise-theme .page-header.partner-hero {
    min-height: 0;
    padding: 84px 20px 38px;
    text-align: center;
}

.enterprise-theme .page-header.partner-hero h1 {
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.35;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-theme .page-header.partner-hero > p:not(.service-target) {
    font-size: 15px;
    line-height: 1.85;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-theme .page-header.partner-hero .button-area {
    margin-top: 18px;
}

.enterprise-theme .page-header.partner-hero .cta-button {
    padding: 11px 22px;
}

.enterprise-theme .page-header.partner-hero .partner-labels {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 16px auto 0;
    max-width: 940px;
}

.enterprise-theme .page-header.partner-hero .partner-labels span {
    border: 1px solid rgba(29, 155, 240, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #eaf6ff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 9px;
}

.partner-copy {
    max-width: 940px;
    margin: 0 auto 28px;
    color: #254566;
    font-size: 16px;
    line-height: 2;
}

.partner-copy p {
    margin: 0 0 14px;
}

.partner-split-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.partner-split-copy {
    position: sticky;
    top: 96px;
}

.partner-split-copy h2 {
    margin-top: 0;
}

.partner-split-copy p {
    color: #254566;
    font-size: 15px;
    line-height: 1.9;
}

.partner-issue-list {
    display: grid;
    gap: 0;
    border-top: 1px solid #dbe6f2;
}

.partner-issue-list div {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    border-bottom: 1px solid #dbe6f2;
    padding: 18px 0;
}

.partner-issue-list span {
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    grid-row: 1 / span 2;
}

.partner-issue-list strong {
    color: #10243e;
    display: block;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 6px;
}

.partner-issue-list p {
    color: #254566;
    font-size: 14px;
    grid-column: 2;
    line-height: 1.75;
    margin: 0;
}

.partner-section-head {
    max-width: 920px;
    margin: 0 auto 28px;
    text-align: center;
}

.partner-section-head p:not(.service-target) {
    color: #254566;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

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

.partner-value-list article {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    background: #ffffff;
    border: 1px solid #dbe6f2;
    padding: 18px 20px;
}

.partner-value-list i {
    align-items: center;
    background: #eaf5ff;
    color: #1d4ed8;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.partner-value-list h3 {
    color: #10243e;
    font-size: 17px;
    line-height: 1.45;
    margin: 0 0 7px;
}

.partner-value-list p {
    color: #254566;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.partner-type-list,
.partner-deliverable-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #dbe6f2;
    border: 1px solid #dbe6f2;
}

.partner-type-list div,
.partner-deliverable-list div {
    background: #ffffff;
    padding: 20px 22px;
}

.partner-type-list strong,
.partner-deliverable-list strong {
    color: #10243e;
    display: block;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.partner-type-list span,
.partner-deliverable-list span {
    color: #254566;
    display: block;
    font-size: 14px;
    line-height: 1.75;
}

.partner-model-table td:first-child,
.partner-service-table td:first-child {
    width: 24%;
}

.partner-service-table a {
    color: #1d4ed8;
    font-weight: 800;
    text-decoration: none;
}

.partner-service-table a:hover,
.partner-service-table a:focus-visible {
    text-decoration: underline;
}

.partner-case-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
}

.partner-case-list article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border-top: 2px solid #dbe6f2;
    padding-top: 16px;
}

.partner-case-list span {
    align-items: center;
    background: #10243e;
    color: #ffffff;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.partner-case-list h3 {
    color: #10243e;
    font-size: 17px;
    line-height: 1.45;
    margin: 0 0 8px;
}

.partner-case-list p {
    color: #254566;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.partner-card-grid,
.partner-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.partner-card-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-card,
.partner-service-card {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-left: 4px solid #1d9bf0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
    color: inherit;
    padding: 22px;
    text-decoration: none;
}

.partner-card h3,
.partner-service-card h3 {
    color: #10243e;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 10px;
}

.partner-card p,
.partner-service-card p {
    color: #254566;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.partner-service-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.partner-service-card:hover,
.partner-service-card:focus-visible {
    border-color: #8fc8f2;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    outline: none;
    transform: translateY(-2px);
}

.partner-service-card dl {
    margin: 14px 0 0;
}

.partner-service-card dl div {
    border-top: 1px solid #e4edf6;
    padding-top: 12px;
}

.partner-service-card dt {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.partner-service-card dd {
    color: #254566;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.partner-band {
    background: linear-gradient(180deg, #f4f8fc 0%, #eef5fb 100%);
    border-top: 1px solid #dbe6f2;
    border-bottom: 1px solid #dbe6f2;
}

.partner-mini-section .partner-mini-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    border-left: 4px solid #1d9bf0;
}

.partner-mini-box h2 {
    margin-top: 0;
}

.partner-mini-box p:last-child {
    margin-bottom: 0;
}

.partner-flow.flow-steps {
    grid-template-columns: 1fr;
}

.partner-faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.partner-faq-item {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
    padding: 0;
}

.partner-faq-item summary {
    color: #10243e;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    list-style: none;
    padding: 18px 22px;
}

.partner-faq-item summary::-webkit-details-marker {
    display: none;
}

.partner-faq-item summary::after {
    color: #1d9bf0;
    content: "+";
    float: right;
    font-size: 20px;
    line-height: 1;
    margin-left: 16px;
}

.partner-faq-item[open] summary::after {
    content: "-";
}

.partner-faq-item p {
    border-top: 1px solid #e4edf6;
    color: #254566;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    padding: 16px 22px 20px;
}

.partner-note {
    margin-top: 18px;
}

.partner-cta-caption {
    color: #52667a;
    font-size: 13px;
    line-height: 1.7;
    margin: 18px 0 0;
}

.service-visual-section {
    margin-top: -48px;
}

.service-visual-box {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
    align-items: center;
    border-left: 4px solid #1d9bf0;
    overflow: hidden;
}

.service-visual-copy h2 {
    margin-top: 0;
}

.service-visual-copy p:last-child {
    margin-bottom: 0;
}

.service-visual-art {
    background:
        linear-gradient(135deg, rgba(29, 78, 216, 0.08), rgba(15, 118, 110, 0.08)),
        #f8fbff;
    border: 1px solid #dbe6f2;
    padding: 22px;
    min-height: 220px;
}

.service-visual-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 170px;
}

.service-visual-flow:not(.compact) {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
    margin: 0 auto;
}

.service-visual-flow.compact {
    flex-wrap: wrap;
    min-height: 120px;
}

.visual-node {
    background: #ffffff;
    border: 1px solid #cddfed;
    color: #10243e;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    min-width: 108px;
    padding: 12px 14px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.visual-node.alert {
    border-color: #f4a7a1;
    color: #9f241d;
}

.visual-node.result {
    background: #10243e;
    border-color: #10243e;
    color: #ffffff;
}

.visual-arrow {
    width: 28px;
    height: 2px;
    background: #7aaee0;
    position: relative;
}

.visual-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -4px;
    border-left: 8px solid #7aaee0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.service-visual-flow:not(.compact) .visual-arrow {
    height: 24px;
    margin: 0 auto;
    width: 2px;
}

.service-visual-flow:not(.compact) .visual-arrow::after {
    bottom: -1px;
    left: -4px;
    right: auto;
    top: auto;
    border-top: 8px solid #7aaee0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
}

.service-visual-table {
    border-collapse: collapse;
    margin-top: 16px;
    width: 100%;
}

.service-visual-table th,
.service-visual-table td {
    border: 1px solid #dbe6f2;
    color: #254566;
    font-size: 13px;
    line-height: 1.6;
    padding: 10px 12px;
    text-align: left;
}

.service-visual-table th {
    background: #10243e;
    color: #ffffff;
}

.service-visual-matrix {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 1px;
    background: #dbe6f2;
    border: 1px solid #dbe6f2;
}

.service-visual-matrix div {
    background: #ffffff;
    color: #254566;
    font-size: 14px;
    line-height: 1.7;
    padding: 15px 16px;
}

.service-visual-matrix .matrix-head {
    background: #10243e;
    color: #ffffff;
    font-weight: 700;
}

.service-visual-permission,
.service-visual-decision {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-visual-permission div,
.service-visual-decision div {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    padding: 18px;
}

.service-visual-permission strong,
.service-visual-decision strong {
    color: #10243e;
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.service-visual-permission span,
.service-visual-decision p {
    color: #254566;
    display: block;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.service-visual-decision span {
    color: #1d4ed8;
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-visual-chain {
    display: grid;
    gap: 12px;
}

.service-visual-chain span {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    color: #10243e;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 16px;
    position: relative;
}

.service-visual-chain span:not(:last-child)::after {
    bottom: -13px;
    color: #1d9bf0;
    content: "↓";
    left: 18px;
    position: absolute;
}

.service-visual-chain .chain-result {
    background: #10243e;
    border-color: #10243e;
    color: #ffffff;
}

.service-visual-balance {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 160px;
}

.balance-side,
.balance-center {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    color: #254566;
    padding: 18px;
    text-align: center;
}

.balance-side strong {
    color: #10243e;
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.balance-side span {
    font-size: 13px;
    line-height: 1.7;
}

.balance-center {
    background: #10243e;
    color: #ffffff;
    font-weight: 700;
}

.service-visual-cycle {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.service-visual-cycle div {
    aspect-ratio: 1;
    background: #ffffff;
    border: 1px solid #dbe6f2;
    color: #10243e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    padding: 16px;
    text-align: center;
    border-radius: 50%;
}

.service-detail-list-section {
    margin-top: 64px;
    margin-bottom: 64px;
}

.service-detail-list-section .gradient-heading {
    text-align: center;
}

.service-detail-list-section .box {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.service-detail-list-section .challenge-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.service-detail-list-section .challenge-list li {
    border-bottom: 0;
    min-height: 0;
    padding: 0;
}

.service-detail-list-section .challenge-list li i {
    flex: 0 0 auto;
}

.service-detail-targets .challenge-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-detail-targets .challenge-list li {
    align-items: center;
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-top: 4px solid #1d9bf0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    color: #10243e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    padding: 18px;
}

.service-detail-targets .challenge-list li i {
    align-items: center;
    background: #eaf5ff;
    color: #1d4ed8;
    display: inline-flex;
    height: 30px;
    justify-content: center;
    margin-top: 0;
    width: 30px;
}

.service-detail-viewpoints .challenge-list {
    counter-reset: viewpoint;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-viewpoints .challenge-list li {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(29, 78, 216, 0.08), rgba(15, 118, 110, 0.04)),
        #ffffff;
    border: 1px solid #dbe6f2;
    color: #254566;
    counter-increment: viewpoint;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    padding: 14px 16px 14px 58px;
    position: relative;
}

.service-detail-viewpoints .challenge-list li::before {
    align-items: center;
    background: #10243e;
    color: #ffffff;
    content: counter(viewpoint, decimal-leading-zero);
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    left: 16px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

.service-detail-viewpoints .challenge-list li i {
    display: none;
}

.service-detail-exclusions .challenge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-exclusions .challenge-list li {
    background: #fffafa;
    border: 1px solid #f0d2cf;
    color: #5f2b28;
    font-size: 14px;
    line-height: 1.65;
    padding: 14px 16px;
}

.service-detail-exclusions .challenge-list li i {
    color: #c24135;
}

.service-detail-prep .challenge-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-detail-prep .challenge-list li {
    align-items: center;
    background: #f8fbff;
    border: 1px dashed #b9d2ea;
    color: #254566;
    font-size: 14px;
    line-height: 1.65;
    padding: 14px 16px;
}

.service-detail-prep .challenge-list li i {
    color: #0f766e;
}

.service-detail-timing .challenge-list {
    gap: 12px;
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
    position: relative;
}

.service-detail-timing .challenge-list::before {
    background: #cddfed;
    bottom: 18px;
    content: "";
    left: 16px;
    position: absolute;
    top: 18px;
    width: 2px;
}

.service-detail-timing .challenge-list li {
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-left: 4px solid #1d9bf0;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    color: #254566;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    min-height: 56px;
    padding: 15px 18px 15px 64px;
    position: relative;
}

.service-detail-timing .challenge-list li i {
    align-items: center;
    background: #ffffff;
    border: 3px solid #dcecf8;
    color: #1d4ed8;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    left: 16px;
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    z-index: 1;
}

.enterprise-theme .related-support-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.enterprise-theme .related-support-item {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    color: inherit;
    padding: 22px 24px;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.enterprise-theme .related-support-item h3 {
    color: #10243e;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 10px;
}

.enterprise-theme .related-support-item p {
    color: #254566;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.enterprise-theme .flow-steps.five-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 30px auto 0;
    max-width: 880px;
    position: relative;
}

.enterprise-theme .flow-steps.five-col::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 28px;
    width: 2px;
    background: #cddfed;
}

.enterprise-theme .flow-steps.five-col .flow-step {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    background: transparent;
    border: 0;
    box-shadow: none;
    min-height: 0;
    padding: 0;
    text-align: left;
}

.enterprise-theme .flow-steps.five-col .flow-step::before {
    display: none;
}

.enterprise-theme .flow-step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    background: #10243e;
    border: 5px solid #e8f2fb;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(15, 36, 62, 0.18);
}

.enterprise-theme .flow-step-content {
    background: #ffffff;
    border: 1px solid #dbe6f2;
    border-left: 4px solid #1d9bf0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
    padding: 18px 22px;
}

.enterprise-theme .flow-steps.five-col .flow-step h3 {
    color: #10243e;
    font-size: 18px;
    line-height: 1.45;
    margin: 0 0 8px;
    padding: 0;
}

.enterprise-theme .flow-steps.five-col .flow-step p {
    color: #254566;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

.enterprise-theme .flow-steps.five-col .flow-step:hover {
    box-shadow: none;
    transform: none;
}

.enterprise-theme .strength-band-section {
    max-width: none;
    margin: 66px 0;
    padding: 52px 22px;
    background: linear-gradient(135deg, #eef5fb 0%, #f8fbff 48%, #e7f1f8 100%);
}

.enterprise-theme .strength-band-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.enterprise-theme .strength-story-list {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

.enterprise-theme .strength-story {
    display: grid;
    grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
}

.enterprise-theme .strength-story.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
}

.enterprise-theme .strength-story.reverse .strength-story-visual {
    order: 2;
}

.enterprise-theme .strength-story.reverse .strength-story-copy {
    order: 1;
}

.enterprise-theme .strength-story-visual {
    margin: 0;
}

.enterprise-theme .strength-story-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
}

.enterprise-theme .strength-story-copy {
    background: rgba(255, 255, 255, 0.74);
    border-left: 4px solid #1d9bf0;
    padding: 24px 28px;
}

.enterprise-theme .strength-story-copy h3 {
    color: #10243e;
    font-size: 23px;
    line-height: 1.45;
    margin: 0 0 10px;
}

.enterprise-theme .strength-story-copy p {
    color: #254566;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.enterprise-theme .home-service-cards {
    align-items: stretch;
}

.enterprise-theme .home-service-cards .service-card {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 0;
    padding: 20px 18px;
}

.enterprise-theme .home-service-cards .service-card h3 {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.45;
}

.enterprise-theme .home-service-cards .service-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
}

.enterprise-theme .home-service-cards .service-target {
    color: #1d4ed8;
    font-weight: 700;
}

@media (max-width: 960px) {
    .enterprise-theme .risk-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-theme .capability-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .strength-story,
    .enterprise-theme .strength-story.reverse {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .enterprise-theme .strength-story.reverse .strength-story-visual,
    .enterprise-theme .strength-story.reverse .strength-story-copy {
        order: initial;
    }

    .enterprise-theme .service-tab-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-theme .service-list-group,
    .enterprise-theme .service-list-item {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .related-support-list {
        grid-template-columns: 1fr;
    }

    .partner-card-grid,
    .partner-card-grid.two-col,
    .partner-service-grid,
    .service-visual-box,
    .partner-split-layout,
    .partner-value-list,
    .partner-type-list,
    .partner-deliverable-list,
    .partner-case-list {
        grid-template-columns: 1fr;
    }

    .partner-split-copy {
        position: static;
    }

    .partner-mini-section .partner-mini-box {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .flow-steps.five-col {
        max-width: 100%;
    }

    .enterprise-theme .grouped-service-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-theme .risk-support-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .enterprise-theme .risk-support-visual {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
    }

    .enterprise-theme .risk-support-body .risk-support-copy {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .enterprise-theme .risk-copy {
        text-align: left;
    }

    .enterprise-theme .risk-copy br {
        display: none;
    }

    .enterprise-theme .risk-copy p {
        font-size: 15px;
        line-height: 1.9;
    }

    .enterprise-theme .risk-support-copy {
        font-size: 18px;
        text-align: left;
    }

    .enterprise-theme .risk-support-copy br {
        display: none;
    }

    .enterprise-theme .risk-support-body .risk-support-copy {
        text-align: left;
    }

    .enterprise-theme .risk-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }

    .enterprise-theme .service-tab-list {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .service-tab-button {
        min-height: auto;
    }

    .enterprise-theme .service-tab-panel {
        padding: 26px 20px;
    }

    .enterprise-theme .service-tab-panel h3 {
        font-size: 22px;
    }

    .enterprise-theme .service-tab-meta {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .service-group-items {
        grid-template-columns: 1fr;
    }

    .enterprise-theme .page-header.partner-hero .partner-labels {
        justify-content: flex-start;
    }

    .enterprise-theme .page-header.partner-hero .partner-labels span {
        font-size: 12px;
    }

    .partner-card,
    .partner-service-card {
        padding: 20px;
    }

    .partner-faq-item summary {
        padding: 16px 18px;
    }

    .partner-faq-item p {
        padding: 14px 18px 18px;
    }

    .service-visual-section {
        margin-top: 48px;
    }

    .service-visual-art {
        min-height: 0;
        padding: 18px;
    }

    .service-visual-flow {
        align-items: stretch;
        flex-direction: column;
        min-height: 0;
    }

    .visual-arrow {
        height: 24px;
        margin: 0 auto;
        width: 2px;
    }

    .visual-arrow::after {
        bottom: -1px;
        left: -4px;
        right: auto;
        top: auto;
        border-top: 8px solid #7aaee0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-bottom: 0;
    }

    .service-visual-permission,
    .service-visual-decision,
    .service-visual-balance,
    .service-visual-cycle,
    .service-detail-targets .challenge-list,
    .service-detail-viewpoints .challenge-list,
    .service-detail-exclusions .challenge-list,
    .service-detail-prep .challenge-list {
        grid-template-columns: 1fr;
    }

    .service-detail-list-section {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .service-detail-list-section .gradient-heading {
        text-align: left;
    }

    .service-detail-targets .challenge-list li,
    .service-detail-viewpoints .challenge-list li,
    .service-detail-exclusions .challenge-list li,
    .service-detail-prep .challenge-list li {
        padding-left: 14px;
        padding-right: 14px;
    }

    .service-detail-viewpoints .challenge-list li {
        padding-left: 56px;
    }

    .service-detail-timing .challenge-list::before {
        left: 17px;
    }

    .service-detail-timing .challenge-list li {
        font-size: 15px;
        padding: 14px 14px 14px 58px;
    }

    .service-detail-timing .challenge-list li i {
        left: 12px;
    }

    .service-visual-cycle div {
        aspect-ratio: auto;
        border-radius: 0;
        min-height: 68px;
    }

    .enterprise-theme .flow-steps.five-col::before {
        left: 21px;
    }

    .enterprise-theme .flow-steps.five-col .flow-step {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .enterprise-theme .flow-step-number {
        width: 44px;
        height: 44px;
        border-width: 4px;
        font-size: 13px;
    }

    .enterprise-theme .flow-step-content {
        padding: 16px 18px;
    }

    .enterprise-theme .strength-band-section {
        padding: 46px 20px;
    }

    .enterprise-theme .strength-story-list {
        gap: 22px;
    }

    .enterprise-theme .strength-story-copy {
        padding: 24px 22px;
    }

    .enterprise-theme .strength-story-copy h3 {
        font-size: 22px;
    }

    .enterprise-theme .strength-story-copy p {
        font-size: 15px;
    }

    .enterprise-theme .risk-card {
        padding: 22px 20px;
    }

    .enterprise-theme .risk-card h3 {
        font-size: 18px;
    }
}
